diff --git a/helm/index.yaml b/helm/index.yaml index 085c5338b..3d400f79c 100644 --- a/helm/index.yaml +++ b/helm/index.yaml @@ -2,7 +2,7 @@ apiVersion: v1 entries: squidex: - apiVersion: v2 - appVersion: 5.8.0 + appVersion: 5.9.0 created: "2021-09-14T12:45:07.461676+02:00" dependencies: - condition: mongodb-replicaset.enabled @@ -25,5 +25,5 @@ entries: type: application urls: - https://squidex.github.io/squidex/helm/squidex-1.0.0.tgz - version: 1.0.0 + version: 1.1.0 generated: "2021-09-14T12:45:07.458758+02:00" diff --git a/helm/setup-roles.yml b/helm/setup-roles.yml new file mode 100644 index 000000000..65c73d71a --- /dev/null +++ b/helm/setup-roles.yml @@ -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: '' \ No newline at end of file diff --git a/helm/squidex-1.0.0.tgz b/helm/squidex-1.0.0.tgz index f0f671b05..592a8aabf 100644 Binary files a/helm/squidex-1.0.0.tgz and b/helm/squidex-1.0.0.tgz differ diff --git a/helm/squidex-1.1.0.tgz b/helm/squidex-1.1.0.tgz new file mode 100644 index 000000000..e303c751f Binary files /dev/null and b/helm/squidex-1.1.0.tgz differ diff --git a/helm/squidex/Chart.yaml b/helm/squidex/Chart.yaml index c9831da46..d12a81cb7 100644 --- a/helm/squidex/Chart.yaml +++ b/helm/squidex/Chart.yaml @@ -4,8 +4,8 @@ type: application name: squidex description: Squidex CMS -version: 1.0.0 -appVersion: "5.8.0" +version: 1.1.0 +appVersion: "5.9.0" home: https://squidex.io/ diff --git a/helm/squidex/templates/deployment.yaml b/helm/squidex/templates/deployment.yaml index df17fb668..633f2d459 100644 --- a/helm/squidex/templates/deployment.yaml +++ b/helm/squidex/templates/deployment.yaml @@ -38,6 +38,7 @@ spec: httpGet: path: /healthz port: http + initialDelaySeconds: 300 readinessProbe: httpGet: path: /readiness diff --git a/helm/squidex/templates/ingress.yaml b/helm/squidex/templates/ingress.yaml index 6b6c67211..805f26358 100644 --- a/helm/squidex/templates/ingress.yaml +++ b/helm/squidex/templates/ingress.yaml @@ -26,7 +26,7 @@ spec: http: paths: - path: / - pathType: Prefix + pathType: ImplementationSpecific backend: service: name: {{ $fullName }} diff --git a/helm/squidex/values.yaml b/helm/squidex/values.yaml index f58b0b170..f6e994462 100644 --- a/helm/squidex/values.yaml +++ b/helm/squidex/values.yaml @@ -75,8 +75,8 @@ env: # LOGGING SETTINGS LOGGING__LEVEL: INFORMATION # Trace, Debug, Information, Warning, Error, Fatal - LOGGING__HUMAN: true # Setting the flag to true, enables well formatteds json logs - LOGGING__COLORS: true # Set to true, to use colors + LOGGING__HUMAN: false # Setting the flag to true, enables well formatteds json logs + LOGGING__COLORS: false # Set to true, to use colors LOGGING__LOGREQUESTS: true # Set to false to disable logging of http requests LOGGING__STOREENABLED: true # False to disable the log store LOGGING__STORERETENTIONINDAYS: 90 # The number of days request log items will be stored