diff --git a/charts/GPP-app/Chart.lock b/charts/GPP-app/Chart.lock deleted file mode 100644 index 9d74dca..0000000 --- a/charts/GPP-app/Chart.lock +++ /dev/null @@ -1,6 +0,0 @@ -dependencies: -- name: redis - repository: https://charts.bitnami.com/bitnami - version: 20.2.1 -digest: sha256:11511f501bb4d7473337f866bcee20a4fc9b26e0d546b1f44eb3fa74c2d9aa23 -generated: "2024-11-13T15:48:30.211651182+01:00" diff --git a/charts/GPP-app/Chart.yaml b/charts/GPP-app/Chart.yaml index 3c8b691..6adf7c5 100644 --- a/charts/GPP-app/Chart.yaml +++ b/charts/GPP-app/Chart.yaml @@ -8,9 +8,3 @@ type: application version: 0.1.0 appVersion: 0.0.0 -dependencies: - - name: redis - version: 20.2.1 - repository: https://charts.bitnami.com/bitnami - tags: - - redis diff --git a/charts/GPP-app/README.md b/charts/GPP-app/README.md index c819055..931a903 100644 --- a/charts/GPP-app/README.md +++ b/charts/GPP-app/README.md @@ -4,12 +4,6 @@ A helm chart for the ICATT GPP app. -## Requirements - -| Repository | Name | Version | -|------------|------|---------| -| https://charts.bitnami.com/bitnami | redis | 20.2.1 | - ## Values | Key | Type | Default | Description | @@ -59,13 +53,6 @@ A helm chart for the ICATT GPP app. | readinessProbe.periodSeconds | int | `10` | | | readinessProbe.successThreshold | int | `1` | | | readinessProbe.timeoutSeconds | int | `5` | | -| redis.architecture | string | `"standalone"` | | -| redis.auth.enabled | bool | `false` | | -| redis.master.persistence.enabled | bool | `true` | | -| redis.master.persistence.size | string | `"8Gi"` | | -| redis.master.persistence.storageClass | string | `""` | | -| redis.master.resources.requests.cpu | string | `"10m"` | | -| redis.master.resources.requests.memory | string | `"20Mi"` | | | replicaCount | int | `1` | | | resources | object | `{}` | | | securityContext.capabilities.drop[0] | string | `"ALL"` | | @@ -96,6 +83,5 @@ A helm chart for the ICATT GPP app. | settings.oidc.idClaimType | string | `""` | | | settings.oidc.nameClaimType | string | `""` | | | settings.oidc.roleClaimType | string | `""` | | -| tags.redis | bool | `true` | | | tolerations | list | `[]` | | diff --git a/charts/GPP-app/templates/deployment.yaml b/charts/GPP-app/templates/deployment.yaml index ceb484b..f795195 100644 --- a/charts/GPP-app/templates/deployment.yaml +++ b/charts/GPP-app/templates/deployment.yaml @@ -51,7 +51,7 @@ spec: protocol: TCP livenessProbe: httpGet: - path: / + path: /healthz port: http httpHeaders: - name: Host @@ -59,7 +59,7 @@ spec: {{- toYaml .Values.livenessProbe | nindent 12 }} readinessProbe: httpGet: - path: / + path: /healthz port: http httpHeaders: - name: Host diff --git a/charts/GPP-app/values.yaml b/charts/GPP-app/values.yaml index f16fcee..9d812eb 100644 --- a/charts/GPP-app/values.yaml +++ b/charts/GPP-app/values.yaml @@ -3,9 +3,6 @@ global: # -- Global databasehost, overrides setting.database.host databaseHost: "" -tags: - redis: true - replicaCount: 1 image: @@ -172,21 +169,3 @@ settings: environment: "" httpPorts: "" - -################## -# Redis subchart # -################## - -redis: - architecture: standalone - auth: - enabled: false - master: - persistence: - enabled: true - size: 8Gi - storageClass: "" - resources: - requests: - cpu: 10m - memory: 20Mi