Skip to content

Commit 0ca9cab

Browse files
fix(post): fix commands
1 parent 4393852 commit 0ca9cab

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
lines changed

_posts/2022-05-13-flux-devops-gitops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ flux create image policy podinfo \
9191
--export > ./clusters/my-cluster/podinfo-policy.yaml
9292
```
9393

94-
Then deploy the `ImageRepository` and `ImagePolicy `
94+
Then deploy the `ImageRepository` and `ImagePolicy`
9595

9696
```bash
9797
git add -A && \

_posts/2022-08-06-kube-traefik-cert-manager-le.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,31 @@ Update repo
8383
helm repo update
8484
```
8585

86+
Create our namespace
87+
88+
```bash
89+
kubectl create namespace traefik
90+
```
91+
92+
Get all namespaces
93+
94+
```bash
95+
kubectl get namespaces
96+
```
97+
98+
We should see
99+
100+
```console
101+
NAME STATUS AGE
102+
cert-manager Active 12s
103+
default Active 21h
104+
kube-node-lease Active 21h
105+
kube-public Active 21h
106+
kube-system Active 21h
107+
metallb-system Active 21h
108+
traefik Active 12s
109+
```
110+
86111
Install traefik
87112

88113
```bash
@@ -266,7 +291,6 @@ From `issuers` folder
266291

267292
```bash
268293
kubectl apply -f secret-cf-token.yaml
269-
kubectl apply -f secret-cf-email.yaml
270294
```
271295

272296
Apply staging `ClusterIssuer`

0 commit comments

Comments
 (0)