update gitea chart and fix typo

This commit is contained in:
2024-07-20 01:43:00 +10:00
parent 705a6e6387
commit 86ab46d1be
6 changed files with 35 additions and 28 deletions

View File

@@ -1,8 +1,12 @@
# Changelog # Changelog
## 2.3.13 (2024-07-15) ## 2.3.14 (2024-07-16)
* [bitnami/gitea] Include goss-wait test to improve test results ([#27980](https://github.com/bitnami/charts/pull/27980)) * [bitnami/gitea] Global StorageClass as default value ([#28023](https://github.com/bitnami/charts/pull/28023))
## <small>2.3.13 (2024-07-15)</small>
* [bitnami/gitea] Include goss-wait test to improve test results (#27980) ([c690b0d](https://github.com/bitnami/charts/commit/c690b0d818d06feb79ad473ae1447d5b3b345518)), closes [#27980](https://github.com/bitnami/charts/issues/27980)
## <small>2.3.12 (2024-07-15)</small> ## <small>2.3.12 (2024-07-15)</small>

View File

@@ -4,6 +4,6 @@ dependencies:
version: 15.5.16 version: 15.5.16
- name: common - name: common
repository: oci://registry-1.docker.io/bitnamicharts repository: oci://registry-1.docker.io/bitnamicharts
version: 2.20.4 version: 2.20.5
digest: sha256:5c93d00902a9a347213e2cd1598f037c662eb189713320b1ea327b3715208c58 digest: sha256:30f7d33e4d16133de8f39c7ff6664a2e0ddc2f2d7ef8bfa5b4f91790514cd356
generated: "2024-07-15T08:32:04.304332975Z" generated: "2024-07-16T12:06:55.322856+02:00"

View File

@@ -12,29 +12,29 @@ annotations:
apiVersion: v2 apiVersion: v2
appVersion: 1.22.1 appVersion: 1.22.1
dependencies: dependencies:
- condition: postgresql.enabled - condition: postgresql.enabled
name: postgresql name: postgresql
repository: oci://registry-1.docker.io/bitnamicharts repository: oci://registry-1.docker.io/bitnamicharts
version: 15.x.x version: 15.x.x
- name: common - name: common
repository: oci://registry-1.docker.io/bitnamicharts repository: oci://registry-1.docker.io/bitnamicharts
tags: tags:
- bitnami-common - bitnami-common
version: 2.x.x version: 2.x.x
description: Gitea is a lightweight code hosting solution. Written in Go, features low resource consumption, easy upgrades and multiple databases. description: Gitea is a lightweight code hosting solution. Written in Go, features low resource consumption, easy upgrades and multiple databases.
home: https://bitnami.com home: https://bitnami.com
icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png icon: https://bitnami.com/assets/stacks/gitea/img/gitea-stack-220x234.png
keywords: keywords:
- gitea - gitea
- analytics - analytics
- http - http
- web - web
- application - application
- php - php
maintainers: maintainers:
- name: Broadcom, Inc. All Rights Reserved. - name: Broadcom, Inc. All Rights Reserved.
url: https://github.com/bitnami/charts url: https://github.com/bitnami/charts
name: gitea name: gitea
sources: sources:
- https://github.com/bitnami/charts/tree/main/bitnami/gitea - https://github.com/bitnami/charts/tree/main/bitnami/gitea
version: 2.3.13 version: 2.3.14

View File

@@ -130,7 +130,8 @@ helm install my-release --set persistence.existingClaim=PVC_NAME oci://REGISTRY_
| ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------ | | ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------ |
| `global.imageRegistry` | Global Docker image registry | `""` | | `global.imageRegistry` | Global Docker image registry | `""` |
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` | | `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
| `global.storageClass` | Global StorageClass for Persistent Volume(s) | `""` | | `global.defaultStorageClass` | Global default StorageClass for Persistent Volume(s) | `""` |
| `global.storageClass` | DEPRECATED: use global.defaultStorageClass instead | `""` |
| `global.compatibility.openshift.adaptSecurityContext` | Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation) | `auto` | | `global.compatibility.openshift.adaptSecurityContext` | Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation) | `auto` |
### Common parameters ### Common parameters

View File

@@ -151,7 +151,7 @@ spec:
name: gitea-secrets name: gitea-secrets
key: db_name key: db_name
- name: GITEA_DATABASE_USERNAME - name: GITEA_DATABASE_USERNAME
vvalueFrom: valueFrom:
secretKeyRef: secretKeyRef:
name: gitea-secrets name: gitea-secrets
key: db_user key: db_user

View File

@@ -9,7 +9,8 @@
## @param global.imageRegistry Global Docker image registry ## @param global.imageRegistry Global Docker image registry
## @param global.imagePullSecrets Global Docker registry secret names as an array ## @param global.imagePullSecrets Global Docker registry secret names as an array
## @param global.storageClass Global StorageClass for Persistent Volume(s) ## @param global.defaultStorageClass Global default StorageClass for Persistent Volume(s)
## @param global.storageClass DEPRECATED: use global.defaultStorageClass instead
## ##
global: global:
imageRegistry: "" imageRegistry: ""
@@ -18,6 +19,7 @@ global:
## - myRegistryKeySecretName ## - myRegistryKeySecretName
## ##
imagePullSecrets: [] imagePullSecrets: []
defaultStorageClass: ""
storageClass: "" storageClass: ""
## Compatibility adaptations for Kubernetes platforms ## Compatibility adaptations for Kubernetes platforms
## ##
@@ -254,7 +256,7 @@ persistence:
## Requires persistence.enabled: true ## Requires persistence.enabled: true
## If defined, PVC must be created manually before volume will be bound ## If defined, PVC must be created manually before volume will be bound
## ##
existingClaim: "gitea-pvc" existingClaim: ""
## @param persistence.hostPath If defined, the gitea-data volume will mount to the specified hostPath. ## @param persistence.hostPath If defined, the gitea-data volume will mount to the specified hostPath.
## Requires persistence.enabled: true ## Requires persistence.enabled: true
## Requires persistence.existingClaim: nil|false ## Requires persistence.existingClaim: nil|false