Browse Source

added option to use Service Account (#766)

* added option to create Service Account

* remove old packages
pull/768/head
Sander Verhoeven 4 years ago
committed by GitHub
parent
commit
2fa6695f47
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      helm/index.yaml
  2. BIN
      helm/squidex-1.0.0.tgz
  3. BIN
      helm/squidex-1.1.0.tgz
  4. BIN
      helm/squidex-1.2.0.tgz
  5. 3
      helm/squidex/templates/deployment.yaml

8
helm/index.yaml

@ -3,14 +3,14 @@ entries:
squidex: squidex:
- apiVersion: v2 - apiVersion: v2
appVersion: 5.9.0 appVersion: 5.9.0
created: "2021-09-14T12:45:07.461676+02:00" created: "2021-09-16T16:06:57.441843+02:00"
dependencies: dependencies:
- condition: mongodb-replicaset.enabled - condition: mongodb-replicaset.enabled
name: mongodb-replicaset name: mongodb-replicaset
repository: https://kubernetes-charts.storage.googleapis.com/ repository: https://kubernetes-charts.storage.googleapis.com/
version: 3.9.6 version: 3.9.6
description: Squidex CMS description: Squidex CMS
digest: a43c063a49326332b4a03e6d50fee1605ccd6ead9f04e9946b05a830e8c1be54 digest: 22ecd83b2795d407a4695d3685bbd5a24ad638d3d1cadebf9c7445925ea12d2e
home: https://squidex.io/ home: https://squidex.io/
keywords: keywords:
- cms - cms
@ -24,6 +24,6 @@ entries:
- https://github.com/Squidex/squidex - https://github.com/Squidex/squidex
type: application type: application
urls: urls:
- https://squidex.github.io/squidex/helm/squidex-1.0.0.tgz - https://squidex.github.io/squidex/helm/squidex-1.2.0.tgz
version: 1.2.0 version: 1.2.0
generated: "2021-09-14T12:45:07.458758+02:00" generated: "2021-09-16T16:06:57.439521+02:00"

BIN
helm/squidex-1.0.0.tgz

Binary file not shown.

BIN
helm/squidex-1.1.0.tgz

Binary file not shown.

BIN
helm/squidex-1.2.0.tgz

Binary file not shown.

3
helm/squidex/templates/deployment.yaml

@ -93,3 +93,6 @@ spec:
{{- toYaml .Values.affinity | nindent 8 }} {{- toYaml .Values.affinity | nindent 8 }}
tolerations: tolerations:
{{- toYaml .Values.tolerations | nindent 8 }} {{- toYaml .Values.tolerations | nindent 8 }}
{{- if (.Values.deployment.serviceAccountName) }}
serviceAccountName: {{ .Values.deployment.serviceAccountName}}
{{- end }}
Loading…
Cancel
Save