Skip to content

Commit abb2b88

Browse files
authored
update to docker tag v0.5.0 and add logging.level helm parameter (#35)
1 parent 0ff2f02 commit abb2b88

File tree

4 files changed

+11
-3
lines changed

4 files changed

+11
-3
lines changed

charts/appset-secret-plugin/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ maintainers:
1515
# pipeline. Library charts do not define any templates and therefore cannot be deployed.
1616
type: application
1717

18-
version: 0.6.2
18+
version: 0.7.0
1919

2020
# renovate: image=jessebot/argocd-appset-secret-plugin
21-
appVersion: "v0.4.1"
21+
appVersion: "v0.5.0"

charts/appset-secret-plugin/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# appset-secret-plugin
22

3-
![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)
3+
![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)
44

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

@@ -24,6 +24,7 @@ A Helm chart for adding a K8s Secret Plugin Generator to Argo CD ApplicationSets
2424
| image.repository | string | `"jessebot/argocd-appset-secret-plugin"` | image repo to use for the docker container |
2525
| image.tag | string | `""` | Overrides the image tag whose default is the chart appVersion. |
2626
| imagePullSecrets | list | `[]` | |
27+
| logging.level | string | `"warning"` | logging level for docker container. Can be one of: debug, info, warning, error |
2728
| nameOverride | string | `""` | override the autogenerated name of this helm chart release |
2829
| nodeSelector | object | `{}` | deploy chart to a specific k8s node |
2930
| podAnnotations | object | `{}` | any additional annotations you'd like the pod to have |

charts/appset-secret-plugin/templates/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ spec:
4646
mountPath: "/var/run/secret-plugin/secret_vars.yaml"
4747
subPath: "secret_vars.yaml"
4848
readOnly: true
49+
env:
50+
- name: LOG_LEVEL
51+
value: {{ .Values.logging.level }}
4952
resources:
5053
{{- toYaml .Values.resources | nindent 12 }}
5154
volumes:

charts/appset-secret-plugin/values.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ token:
2626
# -- the name of an existing secret to use for the token that argoCD and the plugin will use for communication
2727
existingSecret: ""
2828

29+
logging:
30+
# -- logging level for docker container. Can be one of: debug, info, warning, error
31+
level: warning
32+
2933
serviceAccount:
3034
# -- Specifies whether a service account should be created
3135
create: true

0 commit comments

Comments
 (0)