Browse Source

Update rolebindings and storage config.

pull/860/head
Sebastian 4 years ago
parent
commit
9f06acd749
  1. 2
      helm/index.yaml
  2. BIN
      helm/squidex-1.2.0.tgz
  3. BIN
      helm/squidex-1.3.0.tgz
  4. 2
      helm/squidex/Chart.yaml
  5. 5
      helm/squidex/templates/deployment.yaml
  6. 21
      helm/squidex/templates/rolebinding.yaml
  7. 3
      helm/squidex/values.yaml

2
helm/index.yaml

@ -25,5 +25,5 @@ entries:
type: application
urls:
- https://squidex.github.io/squidex/helm/squidex-1.2.0.tgz
version: 1.2.0
version: 1.3.0
generated: "2021-09-16T16:06:57.439521+02:00"

BIN
helm/squidex-1.2.0.tgz

Binary file not shown.

BIN
helm/squidex-1.3.0.tgz

Binary file not shown.

2
helm/squidex/Chart.yaml

@ -4,7 +4,7 @@ type: application
name: squidex
description: Squidex CMS
version: 1.2.0
version: 1.3.0
appVersion: "5.9.0"
home: https://squidex.io/

5
helm/squidex/templates/deployment.yaml

@ -67,6 +67,11 @@ spec:
value: {{ $mongoDefaultConnectionString | quote }}
{{- end }}
{{- if (not .Values.env.ASSETSTORE__MONGODB__CONFIGURATION) }}
- name: "ASSETSTORE__MONGODB__CONFIGURATION"
value: {{ $mongoDefaultConnectionString | quote }}
{{- end }}
- name: ORLEANS_SERVICE_ID
valueFrom:
fieldRef:

21
helm/squidex/templates/rolebinding.yaml

@ -0,0 +1,21 @@
kind: Role
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: pod-reader
rules:
- apiGroups: [ "" ]
resources: ["pods"]
verbs: ["get", "watch", "list"]
---
kind: RoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: pod-reader-binding
subjects:
- kind: ServiceAccount
name: default
apiGroup: ''
roleRef:
kind: Role
name: pod-reader
apiGroup: ''

3
helm/squidex/values.yaml

@ -20,6 +20,9 @@ affinity: { }
clusterSuffix: cluster.local
auth:
##
ingress:
## If true, Squidex Ingress will be created.
##

Loading…
Cancel
Save