@@ -54,11 +54,11 @@ Docker Hub account, namespace, access token, or repository secret.
5454Use semantic version tags:
5555
5656``` bash
57- git tag v0.1.2
58- git push origin v0.1.2
57+ git tag v0.1.3
58+ git push origin v0.1.3
5959```
6060
61- Replace ` v0.1.2 ` with the release tag you are publishing.
61+ Replace ` v0.1.3 ` with the release tag you are publishing.
6262
6363Pushing the tag starts both workflows:
6464
@@ -67,8 +67,8 @@ Pushing the tag starts both workflows:
6767- ` .github/workflows/docker.yml ` builds and pushes a multi-architecture image:
6868
6969 ``` text
70- ghcr.io/colvin-y/kubernetes-ontology:v0.1.2
71- ghcr.io/colvin-y/kubernetes-ontology:0.1.2
70+ ghcr.io/colvin-y/kubernetes-ontology:v0.1.3
71+ ghcr.io/colvin-y/kubernetes-ontology:0.1.3
7272 ghcr.io/colvin-y/kubernetes-ontology:latest
7373 ```
7474
@@ -87,13 +87,13 @@ gh run list --workflow Docker --limit 5
8787Check the release assets:
8888
8989``` bash
90- gh release view v0.1.2
90+ gh release view v0.1.3
9191```
9292
9393Pull the image:
9494
9595``` bash
96- docker pull ghcr.io/colvin-y/kubernetes-ontology:v0.1.2
96+ docker pull ghcr.io/colvin-y/kubernetes-ontology:v0.1.3
9797```
9898
9999Deploy through Helm:
@@ -103,7 +103,7 @@ helm upgrade --install kubernetes-ontology ./charts/kubernetes-ontology \
103103 --namespace kubernetes-ontology \
104104 --create-namespace \
105105 --set image.repository=ghcr.io/colvin-y/kubernetes-ontology \
106- --set image.tag=v0.1.2 \
106+ --set image.tag=v0.1.3 \
107107 --set cluster=your-logical-cluster \
108108 --set contextNamespaces=' {default,kube-system}'
109109```
0 commit comments