Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 18 additions & 1 deletion charts/aws-pca-issuer/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,24 @@ IfNotPresent
<td>image.tag</td>
<td>

Image tag
Image tag (used only when digest is empty)

</td>
<td>string</td>
<td>

```yaml
""
```

</td>
</tr>
<tr>

<td>image.digest</td>
<td>

Image digest (overrides tag when set). Example: sha256:aaaaaa...

</td>
<td>string</td>
Expand Down
2 changes: 1 addition & 1 deletion charts/aws-pca-issuer/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ spec:
- name: {{ .Chart.Name }}
securityContext:
{{- toYaml .Values.securityContext | nindent 12 }}
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
image: "{{ .Values.image.repository }}{{- if .Values.image.digest }}@{{ .Values.image.digest }}{{- else }}:{{ .Values.image.tag | default .Chart.AppVersion }}{{- end }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
command:
- /manager
Expand Down
5 changes: 3 additions & 2 deletions charts/aws-pca-issuer/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,10 @@ image:
repository: public.ecr.aws/k1n1h4h4/cert-manager-aws-privateca-issuer
# Image pull policy
pullPolicy: IfNotPresent
# Image tag
# Image tag (used only when digest is empty)
tag: ""

# Image digest (overrides tag when set). Example: sha256:aaaaaa...
digest: ""
# Disable waiting for CertificateRequests to be Approved before signing
disableApprovedCheck: false

Expand Down