diff --git a/charts/gitea-actions/Chart.yaml b/charts/gitea-actions/Chart.yaml index 9d28c7e..4e472ed 100644 --- a/charts/gitea-actions/Chart.yaml +++ b/charts/gitea-actions/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v2 name: gitea-actions -version: 0.1.0 +version: 0.1.1 description: Gitea Actions keywords: - cicd diff --git a/charts/gitea-actions/README.md b/charts/gitea-actions/README.md index dd6ae46..705f205 100644 --- a/charts/gitea-actions/README.md +++ b/charts/gitea-actions/README.md @@ -1,6 +1,6 @@ # gitea-actions -![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![AppVersion: 0.261.3](https://img.shields.io/badge/AppVersion-0.261.3-informational?style=flat-square) +![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![AppVersion: 0.261.3](https://img.shields.io/badge/AppVersion-0.261.3-informational?style=flat-square) Gitea Actions @@ -27,26 +27,8 @@ Gitea Actions | global.imageRegistry | string | `""` | | | global.nameOverride | string | `""` | | | global.storageClass | string | `""` | | -| image.digest | string | `""` | | -| image.fullOverride | string | `""` | | -| image.pullPolicy | string | `"IfNotPresent"` | | -| image.registry | string | `"docker.gitea.com"` | | -| image.repository | string | `"gitea"` | | -| image.rootless | bool | `true` | | -| image.tag | string | `""` | | | init.image.repository | string | `"busybox"` | | | init.image.tag | string | `"1.37.0"` | | -| persistence.accessModes[0] | string | `"ReadWriteOnce"` | | -| persistence.annotations."helm.sh/resource-policy" | string | `"keep"` | | -| persistence.claimName | string | `"gitea-shared-storage"` | | -| persistence.create | bool | `true` | | -| persistence.enabled | bool | `true` | | -| persistence.labels | object | `{}` | | -| persistence.mount | bool | `true` | | -| persistence.size | string | `"10Gi"` | | -| persistence.storageClass | string | `nil` | | -| persistence.subPath | string | `nil` | | -| persistence.volumeName | string | `""` | | | statefulset.actRunner.config | string | `"log:\n level: debug\ncache:\n enabled: false\n"` | | | statefulset.actRunner.extraVolumeMounts | list | `[]` | | | statefulset.actRunner.pullPolicy | string | `"IfNotPresent"` | | diff --git a/charts/gitea-actions/values.yaml b/charts/gitea-actions/values.yaml index 80a1bf2..2f8a723 100644 --- a/charts/gitea-actions/values.yaml +++ b/charts/gitea-actions/values.yaml @@ -90,52 +90,6 @@ existingSecretKey: "" ## Specify the root URL of the Gitea instance giteaRootURL: "" -## @section Persistence -# -## @param persistence.enabled Enable persistent storage -## @param persistence.create Whether to create the persistentVolumeClaim for shared storage -## @param persistence.mount Whether the persistentVolumeClaim should be mounted (even if not created) -## @param persistence.claimName Use an existing claim to store repository information -## @param persistence.size Size for persistence to store repo information -## @param persistence.accessModes AccessMode for persistence -## @param persistence.labels Labels for the persistence volume claim to be created -## @param persistence.annotations.helm.sh/resource-policy Resource policy for the persistence volume claim -## @param persistence.storageClass Name of the storage class to use -## @param persistence.subPath Subdirectory of the volume to mount at -## @param persistence.volumeName Name of persistent volume in PVC -persistence: - enabled: true - create: true - mount: true - claimName: gitea-shared-storage - size: 10Gi - accessModes: - - ReadWriteOnce - labels: {} - storageClass: - subPath: - volumeName: "" - annotations: - helm.sh/resource-policy: keep - -## @section Image -## @param image.registry image registry, e.g. gcr.io,docker.io -## @param image.repository Image to start for this pod -## @param image.tag Visit: [Image tag](https://hub.docker.com/r/gitea/gitea/tags?page=1&ordering=last_updated). Defaults to `appVersion` within Chart.yaml. -## @param image.digest Image digest. Allows to pin the given image tag. Useful for having control over mutable tags like `latest` -## @param image.pullPolicy Image pull policy -## @param image.rootless Wether or not to pull the rootless version of Gitea, only works on Gitea 1.14.x or higher -## @param image.fullOverride Completely overrides the image registry, path/image, tag and digest. **Adjust `image.rootless` accordingly and review [Rootless defaults](#rootless-defaults).** -image: - registry: "docker.gitea.com" - repository: gitea - # Overrides the image tag whose default is the chart appVersion. - tag: "" - digest: "" - pullPolicy: IfNotPresent - rootless: true - fullOverride: "" - ## @section Global # ## @param global.imageRegistry global image registry override