Browse Source

A few improvements to helm.

pull/768/head
Sebastian 5 years ago
parent
commit
fcc005cfaa
  1. 4
      helm/index.yaml
  2. 21
      helm/setup-roles.yml
  3. BIN
      helm/squidex-1.0.0.tgz
  4. BIN
      helm/squidex-1.1.0.tgz
  5. 4
      helm/squidex/Chart.yaml
  6. 1
      helm/squidex/templates/deployment.yaml
  7. 2
      helm/squidex/templates/ingress.yaml
  8. 4
      helm/squidex/values.yaml

4
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"

21
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: ''

BIN
helm/squidex-1.0.0.tgz

Binary file not shown.

BIN
helm/squidex-1.1.0.tgz

Binary file not shown.

4
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/

1
helm/squidex/templates/deployment.yaml

@ -38,6 +38,7 @@ spec:
httpGet:
path: /healthz
port: http
initialDelaySeconds: 300
readinessProbe:
httpGet:
path: /readiness

2
helm/squidex/templates/ingress.yaml

@ -26,7 +26,7 @@ spec:
http:
paths:
- path: /
pathType: Prefix
pathType: ImplementationSpecific
backend:
service:
name: {{ $fullName }}

4
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

Loading…
Cancel
Save