Skip to content

Commit 77fabb2

Browse files
Kentaro1043terinjokes
authored andcommitted
fix(deploy): use fully qualified image name
Use the fully qualified name of the controller image on Docker Hub, rather than the historical short version. This ensures the manifests work as intended out of the box on CRI-O. Fixes: #188 Reference: https://github.com/cri-o/cri-o/releases/tag/v1.34.0 [squashed and reworded commits, bumped chart version] Acked-by: Terin Stock <[email protected]>
1 parent 106f4f0 commit 77fabb2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

deploy/charts/origin-ca-issuer/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apiVersion: v2
22
type: application
33
name: origin-ca-issuer
4-
version: 0.6.1
4+
version: 0.6.2
55
appVersion: 0.13.0
66
description: A Helm chart for origin-ca-issuer
77
home: https://github.com/cloudflare/origin-ca-issuer

deploy/charts/origin-ca-issuer/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ global:
1717
# Value specific to the origin-ca-issuer controller
1818
controller:
1919
image:
20-
repository: cloudflare/origin-ca-issuer
20+
repository: docker.io/cloudflare/origin-ca-issuer
2121
tag: v0.13.0
2222
pullPolicy: Always
2323

deploy/manifests/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ spec:
1616
serviceAccountName: originissuer-control
1717
containers:
1818
- name: origin-ca-controller
19-
image: cloudflare/origin-ca-issuer:v0.13.0
19+
image: docker.io/cloudflare/origin-ca-issuer:v0.13.0
2020
args:
2121
- --cluster-resource-namespace=$(POD_NAMESPACE)
2222
env:

0 commit comments

Comments
 (0)