Skip to content

Commit 6107313

Browse files
committed
chore(workflow): change drycc.cc to www.drycc.cc
1 parent 3ef93b7 commit 6107313

14 files changed

Lines changed: 32 additions & 21 deletions

File tree

.drone/drone.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ steps:
77
commands:
88
- make docker-build docker-build-docs
99
- cp _scripts/* _build/html
10-
- cd _build/html && echo "drycc.cc" > CNAME && echo "www.drycc.cc" >> CNAME && git init
10+
- cd _build/html && echo "www.drycc.cc" > CNAME && echo "drycc.cc" >> CNAME && git init
1111
environment:
1212
SSH_DEPLOY_KEY:
1313
from_secret: ssh_deploy_key

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Contributing to Drycc
22

33
This project is part of Drycc. You can find the latest contribution
4-
guidelines [in our documentation](https://drycc.cc/docs/workflow/contributing/overview/).
4+
guidelines [in our documentation](https://www.drycc.cc/docs/workflow/contributing/overview/).

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
**Drycc Workflow** is an open source Container as a Service (CaaS) that adds a developer-friendly layer to any [Kubernetes][k8s-home] cluster, making it easy to deploy and manage applications.
44

5-
To **get started** with **Drycc Workflow** please read the [Quick Start Guide](https://drycc.cc/quickstart/).
5+
To **get started** with **Drycc Workflow** please read the [Quick Start Guide](https://www.drycc.cc/quickstart/).
66

7-
Visit [https://drycc.cc](https://drycc.cc) for more information on [why you should use Drycc Workflow](https://drycc.cc/understanding-workflow/concepts/) or [learn about its features](https://drycc.cc/understanding-workflow/architecture/).
7+
Visit [https://www.drycc.cc](https://www.drycc.cc) for more information on [why you should use Drycc Workflow](https://www.drycc.cc/understanding-workflow/concepts/) or [learn about its features](https://www.drycc.cc/understanding-workflow/architecture/).
88

99
This repository contains the source code for Drycc Workflow documentation. If you're looking for individual components, they live in their own repositories.
1010

@@ -67,4 +67,4 @@ Then view the documentation on [http://localhost:8000](http://localhost:8000) or
6767
[mkdocs]: http://www.mkdocs.org/
6868
[issues]: https://github.com/drycc/workflow/issues
6969
[prs]: https://github.com/drycc/workflow/pulls
70-
[Drycc website]: http://drycc.cc/
70+
[Drycc website]: https://www.drycc.cc/

_scripts/generate_cache.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,17 @@ helm fetch metallb/metallb
2323
helm fetch traefik/traefik
2424
helm fetch jetstack/cert-manager
2525

26+
# remove v from cert-manager version
27+
filename=$(find cert-manager-v* 2>/dev/null || echo "")
28+
if [[ ! -z $filename ]]; then
29+
tar -xvzf $filename
30+
rm -rf $filename
31+
version=${filename#cert-manager-v}
32+
version=${version%.tgz}
33+
helm package -u cert-manager --version $version
34+
rm -rf cert-manager
35+
fi
36+
2637
for tar in `ls $tmp | grep .tgz`
2738
do
2839
helm push $tar oci://$DRYCC_REGISTRY/$([ -z $DRONE_TAG ] && echo charts-testing || echo charts)

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# names
44
#
55
site_name: Drycc Workflow Documentation
6-
site_url: https://drycc.cc/docs/workflow
6+
site_url: https://www.drycc.cc/docs/workflow
77
nav:
88
- Home: index.md
99
- Quick Start:

src/applications/inter-app-communication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Inter-app Communication
22

3-
A common architecture pattern of multi-process applications is to have one process serve public requests while having multiple other processes supporting the public one to, for example, perform actions on a schedule or process work items from a queue. To implement this system of apps in Drycc Workflow, set up the apps to communicate using DNS resolution, as shown above, and hide the supporting processes from public view by removing them from the Drycc Workflow router. See [Drycc Blog: Private Applications on Workflow](https://drycc.cc/blog/2016/private-applications-on-drycc-workflow/) for more details, which walks through an example of removing an app from the router.
3+
A common architecture pattern of multi-process applications is to have one process serve public requests while having multiple other processes supporting the public one to, for example, perform actions on a schedule or process work items from a queue. To implement this system of apps in Drycc Workflow, set up the apps to communicate using DNS resolution, as shown above, and hide the supporting processes from public view by removing them from the Drycc Workflow router. See [Drycc Blog: Private Applications on Workflow](https://www.drycc.cc/blog/2016/private-applications-on-drycc-workflow/) for more details, which walks through an example of removing an app from the router.
44

55
### DNS Service Discovery
66

src/applications/using-buildpacks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ Use `git push drycc master` to deploy your application.
8484

8585
Use 'drycc open' to view this application in your browser
8686

87-
To learn more, use 'drycc help' or visit http://drycc.cc
87+
To learn more, use 'drycc help' or visit https://www.drycc.cc
8888

8989
To ssh://git@drycc.staging-2.drycc.cc:2222/skiing-keypunch.git
9090
* [new branch] master -> master

src/applications/using-dockerfiles.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ Use `git push drycc master` to deploy your application.
107107
-----> folksy-offshoot deployed to Drycc
108108
http://folksy-offshoot.local3.dryccapp.com
109109

110-
To learn more, use `drycc help` or visit http://drycc.cc
110+
To learn more, use `drycc help` or visit https://www.drycc.cc
111111

112112
To ssh://git@local3.dryccapp.com:2222/folksy-offshoot.git
113113
* [new branch] master -> master

src/contributing/community.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ Drycc projects are bounty-friendly. We believe open source bounty sites can be
1414

1515

1616
[github]: https://github.com/drycc
17-
[ey]: https://drycc.cc/community
17+
[ey]: https://www.drycc.cc/community
1818
[bdfl]: http://en.wikipedia.org/wiki/Benevolent_Dictator_for_Life
1919
[gabriel]: https://github.com/gabrtv

src/managing-workflow/upgrading-workflow.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ drycc-rabbitmq-0 1/1 Running 0 5m
7272
Users of Drycc Workflow should now upgrade their drycc client to avoid getting `WARNING: Client and server API versions do not match. Please consider upgrading.` warnings.
7373

7474
```
75-
curl -sfL https://drycc.cc/install-cli.sh | bash - && sudo mv drycc $(which drycc)
75+
curl -sfL https://www.drycc.cc/install-cli.sh | bash - && sudo mv drycc $(which drycc)
7676
```
7777

7878
[Configuring Object Storage]: ../installing-workflow/configuring-object-storage.md

0 commit comments

Comments
 (0)