Skip to content

Commit

Permalink
Merge pull request #677 from AmericanAirlines/bump-ct-chart-to-versio…
Browse files Browse the repository at this point in the history
…n-0.2.49

bump ct chart to version 0.2.49
  • Loading branch information
bobcallaway authored Jan 11, 2024
2 parents d2e17eb + 6f4ee74 commit 2abb40b
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/ctlog/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Certificate Log

type: application

version: 0.2.48
version: 0.2.49
appVersion: 0.6.10

keywords:
Expand Down
4 changes: 2 additions & 2 deletions charts/ctlog/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ctlog

![Version: 0.2.48](https://img.shields.io/badge/Version-0.2.48-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.6.10](https://img.shields.io/badge/AppVersion-0.6.10-informational?style=flat-square)
![Version: 0.2.49](https://img.shields.io/badge/Version-0.2.49-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 0.6.10](https://img.shields.io/badge/AppVersion-0.6.10-informational?style=flat-square)

Certificate Log

Expand Down Expand Up @@ -57,6 +57,7 @@ Certificate Log
| createtree.serviceAccount.name | string | `""` | |
| createtree.ttlSecondsAfterFinished | int | `3600` | |
| forceNamespace | string | `""` | |
| imagePullSecrets | list | `[]` | |
| namespace.create | bool | `false` | |
| namespace.name | string | `"ctlog-system"` | |
| server.config.key | string | `"treeID"` | |
Expand Down Expand Up @@ -114,4 +115,3 @@ Certificate Log
| trillian.logServer.name | string | `"trillian-logserver"` | |
| trillian.logServer.portRPC | int | `8091` | |
| trillian.namespace | string | `"trillian-system"` | |

4 changes: 4 additions & 0 deletions charts/ctlog/templates/createctconfig-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ spec:
securityContext:
{{ toYaml .Values.createctconfig.initContainerSecurityContext | indent 12 }}
{{- end }}
{{- if .Values.imagePullSecrets }}
imagePullSecrets:
{{ toYaml .Values.imagePullSecrets | indent 8 }}
{{- end }}
containers:
- name: {{ template "ctlog.createctconfig.fullname" . }}
image: "{{ template "ctlog.image" .Values.createctconfig.image }}"
Expand Down
4 changes: 4 additions & 0 deletions charts/ctlog/templates/createtree-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ spec:
serviceAccountName: {{ template "ctlog.serviceAccountName.createtree" . }}
restartPolicy: Never
automountServiceAccountToken: {{ .Values.createtree.serviceAccount.mountToken }}
{{- if .Values.imagePullSecrets }}
imagePullSecrets:
{{ toYaml .Values.imagePullSecrets | indent 8 }}
{{- end }}
containers:
- name: {{ template "ctlog.createtree.fullname" . }}
image: "{{ template "ctlog.image" .Values.createtree.image }}"
Expand Down
4 changes: 4 additions & 0 deletions charts/ctlog/templates/ctlog-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ spec:
{{- include "ctlog.labels" . | nindent 8 }}
spec:
serviceAccountName: {{ template "ctlog.serviceAccountName" . }}
{{- if .Values.imagePullSecrets }}
imagePullSecrets:
{{ toYaml .Values.imagePullSecrets | indent 8 }}
{{- end }}
containers:
- name: {{ template "ctlog.fullname" . }}
image: "{{ template "ctlog.image" .Values.server.image }}"
Expand Down
3 changes: 3 additions & 0 deletions charts/ctlog/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
"forceNamespace"
],
"properties": {
"imagePullSecrets": {
"type": "array"
},
"namespace": {
"type": "object",
"default": {},
Expand Down
2 changes: 2 additions & 0 deletions charts/ctlog/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ namespace:
create: false
name: ctlog-system

imagePullSecrets: []

server:
replicaCount: 1
config:
Expand Down

0 comments on commit 2abb40b

Please sign in to comment.