Skip to content

Commit

Permalink
update to docker tag v0.5.0 and add logging.level helm parameter (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
jessebot authored Jul 9, 2024
1 parent 0ff2f02 commit abb2b88
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/appset-secret-plugin/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ maintainers:
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
type: application

version: 0.6.2
version: 0.7.0

# renovate: image=jessebot/argocd-appset-secret-plugin
appVersion: "v0.4.1"
appVersion: "v0.5.0"
3 changes: 2 additions & 1 deletion charts/appset-secret-plugin/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# appset-secret-plugin

![Version: 0.6.2](https://img.shields.io/badge/Version-0.6.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.4.1](https://img.shields.io/badge/AppVersion-v0.4.1-informational?style=flat-square)
![Version: 0.7.0](https://img.shields.io/badge/Version-0.7.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v0.5.0](https://img.shields.io/badge/AppVersion-v0.5.0-informational?style=flat-square)

A Helm chart for adding a K8s Secret Plugin Generator to Argo CD ApplicationSets

Expand All @@ -24,6 +24,7 @@ A Helm chart for adding a K8s Secret Plugin Generator to Argo CD ApplicationSets
| image.repository | string | `"jessebot/argocd-appset-secret-plugin"` | image repo to use for the docker container |
| image.tag | string | `""` | Overrides the image tag whose default is the chart appVersion. |
| imagePullSecrets | list | `[]` | |
| logging.level | string | `"warning"` | logging level for docker container. Can be one of: debug, info, warning, error |
| nameOverride | string | `""` | override the autogenerated name of this helm chart release |
| nodeSelector | object | `{}` | deploy chart to a specific k8s node |
| podAnnotations | object | `{}` | any additional annotations you'd like the pod to have |
Expand Down
3 changes: 3 additions & 0 deletions charts/appset-secret-plugin/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ spec:
mountPath: "/var/run/secret-plugin/secret_vars.yaml"
subPath: "secret_vars.yaml"
readOnly: true
env:
- name: LOG_LEVEL
value: {{ .Values.logging.level }}
resources:
{{- toYaml .Values.resources | nindent 12 }}
volumes:
Expand Down
4 changes: 4 additions & 0 deletions charts/appset-secret-plugin/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ token:
# -- the name of an existing secret to use for the token that argoCD and the plugin will use for communication
existingSecret: ""

logging:
# -- logging level for docker container. Can be one of: debug, info, warning, error
level: warning

serviceAccount:
# -- Specifies whether a service account should be created
create: true
Expand Down

0 comments on commit abb2b88

Please sign in to comment.