Skip to content

Commit cf684b6

Browse files
committed
chore: merging
2 parents 95f9b8e + b4dbe56 commit cf684b6

4 files changed

Lines changed: 22 additions & 0 deletions

File tree

src/cloud-api-adaptor/install/charts/peerpods/templates/daemonset.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ spec:
2323
{{- end }}
2424
spec:
2525
serviceAccountName: cloud-api-adaptor
26+
{{- with .Values.imagePullSecrets }}
27+
imagePullSecrets:
28+
{{- toYaml . | nindent 8 }}
29+
{{- end }}
2630
containers:
2731
- command:
2832
{{- toYaml .Values.daemonset.command | nindent 8 }}

src/cloud-api-adaptor/install/charts/peerpods/values.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,13 @@ image:
8282
name: quay.io/confidential-containers/cloud-api-adaptor
8383
tag: "2d2e7c2c0736ec41c889cd98442a598b8b93bc0b"
8484

85+
# imagePullSecrets attached to the cloud-api-adaptor DaemonSet pods for
86+
# pulling the CAA image from a private registry.
87+
# Example:
88+
# imagePullSecrets:
89+
# - name: regcred
90+
imagePullSecrets: []
91+
8592
# Cloud provider: libvirt, aws, azure, gcp, ibmcloud, vsphere
8693
provider: libvirt
8794

src/peerpod-ctrl/chart/templates/deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,10 @@ spec:
120120
securityContext:
121121
runAsNonRoot: false
122122
serviceAccountName: {{ .Values.namePrefix }}controller-manager
123+
{{- with .Values.imagePullSecrets }}
124+
imagePullSecrets:
125+
{{- toYaml . | nindent 8 }}
126+
{{- end }}
123127
terminationGracePeriodSeconds: 10
124128
volumes:
125129
- name: ssh

src/peerpod-ctrl/chart/values.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ image:
77
tag: 2d2e7c2c0736ec41c889cd98442a598b8b93bc0b
88
pullPolicy: IfNotPresent
99

10+
# imagePullSecrets attached to the controller-manager pod for pulling the
11+
# manager and (when enabled) kube-rbac-proxy images from private registries.
12+
# Example:
13+
# imagePullSecrets:
14+
# - name: regcred
15+
imagePullSecrets: []
16+
1017
# kube-rbac-proxy: Sidecar container that protects the /metrics endpoint with RBAC authentication
1118
# When enabled, only authenticated clients with proper RBAC permissions can access metrics
1219
# Set to false to expose metrics without authentication (not recommended for production)

0 commit comments

Comments
 (0)