helm-charts icon indicating copy to clipboard operation
helm-charts copied to clipboard

Personal Helm charts repository

Results 26 helm-charts issues
Sort by recently updated
recently updated
newest added

Support volumeClaimTemplates in generic-app helm chart

Currently gitlab-ci-pipelines-exporter ships bitname/redis 17.11.3 with redis 7.0.11 This version of redis is affected from two HIGH security vulnerabilities with potential remote code execution. Please bump the redis subchart at...

The exporter allows you to set the gitlab token via an environmental variable. However the helm chart does not. From the pipeline exporter documentation (https://github.com/mvisonneau/gitlab-ci-pipelines-exporter#helm) ``` # Configure a minimal...

port in svc hard-codded to 8080

The template was changed to `app.serviceAccountName` from `exporter.serviceAccountName` but the definition was not #71 solves it

In the file `deployment.yml` of the `gitlab-ci-pipeline-exporter` helm chart, on line 36-38 we have : https://github.com/mvisonneau/helm-charts/blob/fb4d2e5819d4acdf7e1e768ef9f794926107d2e4/charts/gitlab-ci-pipelines-exporter/templates/deployment.yaml#L36-L38 Where we should have : ``` {{- with .Values.image.pullSecrets }} imagePullSecrets: {{ toYaml ....

https://github.com/mvisonneau/helm-charts/blob/3c50eb36c030336b7a7b68afb4d87203d91fd1e6/charts/gitlab-ci-pipelines-exporter/templates/serviceaccount.yaml#L21-L23 I'd like to suggest to insert the current Namespace: ```yaml subjects: - kind: ServiceAccount name: {{ template "exporter.serviceAccountName" . }} namespace: {{ .Release.namespace }} ``` Kubernetes expects a namespace...

Hello, I have this helm chart installed and working fine. I can watch the logs and see my incoming requests. However there is no reply. Here is the issue from...

my values: ``` image: pullPolicy: Always fullnameOverride: pipelines-exporter config: log: format: json gitlab: url: https://my-gitlab.local token: some_token enable_health_check: false projects: - name: some_group/some_project serviceMonitor: enabled: true livenessProbe: {} readinessProbe: {}...

enhancement
help wanted