Skip to content

Commit

Permalink
Add all files for sync
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanprodan committed Aug 19, 2019
1 parent 8925f74 commit aa9d358
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Makefile
@@ -1,5 +1,5 @@
MSG?="up"

sync:
git add . && git commit -m $(MSG) && git push origin master
git add -A && git commit -m $(MSG) && git push origin master
fluxctl --k8s-fwd-ns=fluxcd sync
8 changes: 4 additions & 4 deletions docs/canary/README.md
Expand Up @@ -32,7 +32,7 @@ spec:
Apply changes:

```sh
git add . && \
git add -A && \
git commit -m "prep canary" && \
git push origin master && \
fluxctl sync
Expand Down Expand Up @@ -74,7 +74,7 @@ spec:
Apply changes:

```sh
git add . && \
git add -A && \
git commit -m "add canary" && \
git push origin master && \
fluxctl sync
Expand Down Expand Up @@ -127,7 +127,7 @@ spec:
Apply changes:

```sh
git add . && \
git add -A && \
git commit -m "update podinfo" && \
git push origin master && \
fluxctl sync
Expand Down Expand Up @@ -160,7 +160,7 @@ spec:
Apply changes:

```sh
git add . && \
git add -A && \
git commit -m "update podinfo" && \
git push origin master && \
fluxctl sync
Expand Down
8 changes: 4 additions & 4 deletions docs/helm/README.md
Expand Up @@ -52,7 +52,7 @@ spec:
Apply changes:

```sh
git add . && \
git add -A && \
git commit -m "install ingress" && \
git push origin master && \
fluxctl sync
Expand Down Expand Up @@ -126,7 +126,7 @@ spec:
Apply changes:

```sh
git add . && \
git add -A && \
git commit -m "install podinfo" && \
git push origin master && \
fluxctl sync
Expand Down Expand Up @@ -163,7 +163,7 @@ metadata:
Commit and push the changes to GitHub:

```sh
git add . && git commit -m "automate podinfo" && git push origin master
git add -A && git commit -m "automate podinfo" && git push origin master
```

Sync the the changes on the cluster:
Expand Down Expand Up @@ -216,7 +216,7 @@ spec:
Apply changes:

```sh
git add . && \
git add -A && \
git commit -m "install sealed-secrets" && \
git push origin master && \
fluxctl sync
Expand Down
4 changes: 2 additions & 2 deletions docs/test/README.md
Expand Up @@ -82,7 +82,7 @@ spec:
Apply changes:

```sh
git add . && \
git add -A && \
git commit -m "update podinfo" && \
git push origin master && \
fluxctl sync
Expand Down Expand Up @@ -117,7 +117,7 @@ spec:
Apply changes:

```sh
git add . && \
git add -A && \
git commit -m "update podinfo" && \
git push origin master && \
fluxctl sync
Expand Down

0 comments on commit aa9d358

Please sign in to comment.