-
Notifications
You must be signed in to change notification settings - Fork 199
feat: add helm generic plugin #438
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
90c4519
to
6129497
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't use the default config with the argocd plugin here.
# whether to wait for the release to be deployed or not | ||
wait: true | ||
# the time to wait for any individual Kubernetes operation (like Jobs for hooks). This defaults to 5m0s | ||
timeout: 5m | ||
# whether to perform a CRD upgrade during installation | ||
upgradeCRDs: true | ||
# custom configuration (Optional). You can refer to [ArgoCD values.yaml](https://github.com/argoproj/argo-helm/blob/master/charts/argo-cd/values.yaml) | ||
# custom configuration (Optional). e.g. You can refer to [ArgoCD values.yaml](https://github.com/argoproj/argo-helm/blob/master/charts/argo-cd/values.yaml) | ||
values_yaml: | | ||
controller: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
controller: xxx
is used for ArgoCD. Maybe we can leave FOO: BAR
here.
It seems values_yaml doesn't work. Config: tools:
- name: helm-generic
instanceID: nginx
options:
create_namespace: true
repo:
name: bitnami
url: https://charts.bitnami.com/bitnami
chart:
chart_name: bitnami/nginx
release_name: my-nginx
namespace: nginx
wait: true
timeout: 5m
values_yaml: |
replicaCount: 2
service:
type: ClusterIP |
Summary
add a new plugin for helm-type plugin install
Description
see the proposal #424
Related Issues
#424
Current Behavior