Skip to content

Commit

Permalink
Add imagepullsecrets (#99)
Browse files Browse the repository at this point in the history
* add imagePullSecrets

* bump up chart version
  • Loading branch information
valeriano-manassero authored Dec 22, 2021
1 parent d573a7a commit 9d771f1
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion valeriano-manassero/trino/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "365"
description: High performance, distributed SQL query engine for big data
name: trino
version: 1.8.1
version: 1.9.0
home: https://trino.io
icon: https://trino.io/assets/images/trino-logo/trino-ko_tiny-alt.svg
sources:
Expand Down
3 changes: 2 additions & 1 deletion valeriano-manassero/trino/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# trino

![Version: 1.8.1](https://img.shields.io/badge/Version-1.8.1-informational?style=flat-square) ![AppVersion: 365](https://img.shields.io/badge/AppVersion-365-informational?style=flat-square)
![Version: 1.9.0](https://img.shields.io/badge/Version-1.9.0-informational?style=flat-square) ![AppVersion: 365](https://img.shields.io/badge/AppVersion-365-informational?style=flat-square)

High performance, distributed SQL query engine for big data

Expand Down Expand Up @@ -31,6 +31,7 @@ High performance, distributed SQL query engine for big data
| image.securityContext.runAsGroup | int | `1000` | |
| image.securityContext.runAsUser | int | `1000` | |
| image.tag | int | `365` | |
| imagePullSecrets | list | `[]` | |
| ingress.annotations | object | `{}` | |
| ingress.enabled | bool | `false` | |
| ingress.host | string | `""` | |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ spec:
initContainers:
{{- tpl (toYaml .Values.initContainers.coordinator) . | nindent 6 }}
{{- end }}
imagePullSecrets:
{{- toYaml .Values.imagePullSecrets | nindent 8 }}
containers:
- name: {{ .Chart.Name }}-coordinator
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
Expand Down
2 changes: 2 additions & 0 deletions valeriano-manassero/trino/templates/deployment-worker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ spec:
initContainers:
{{- tpl (toYaml .Values.initContainers.worker) . | nindent 6 }}
{{- end }}
imagePullSecrets:
{{- toYaml .Values.imagePullSecrets | nindent 8 }}
containers:
- name: {{ .Chart.Name }}-worker
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
Expand Down
5 changes: 5 additions & 0 deletions valeriano-manassero/trino/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ image:
runAsUser: 1000
runAsGroup: 1000

imagePullSecrets: []
# For example:
# imagePullSecrets:
# - name: registry-credentials

env: []
# Both worker & coordinator can use environment variables to expose information about itself to Containers running in the Pod

Expand Down

0 comments on commit 9d771f1

Please sign in to comment.