Merge branch 'master' into master
This commit is contained in:
commit
3a4ae812df
7 changed files with 45 additions and 3 deletions
17
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
17
.github/ISSUE_TEMPLATE/bug_report.yaml
vendored
|
@ -11,6 +11,23 @@ body:
|
||||||
validations:
|
validations:
|
||||||
required: true
|
required: true
|
||||||
|
|
||||||
|
- type: dropdown
|
||||||
|
attributes:
|
||||||
|
label: Related helm chart
|
||||||
|
description: You may select more than one.
|
||||||
|
multiple: true
|
||||||
|
options:
|
||||||
|
- argo-cd
|
||||||
|
- argo-events
|
||||||
|
- argo-rollouts
|
||||||
|
- argo-workflows
|
||||||
|
- argocd-applicationset
|
||||||
|
- argocd-image-updater
|
||||||
|
- argocd-notifications
|
||||||
|
- other
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: To Reproduce
|
label: To Reproduce
|
||||||
|
|
17
.github/ISSUE_TEMPLATE/feature_request.yaml
vendored
17
.github/ISSUE_TEMPLATE/feature_request.yaml
vendored
|
@ -13,6 +13,23 @@ body:
|
||||||
validations:
|
validations:
|
||||||
required: false
|
required: false
|
||||||
|
|
||||||
|
- type: dropdown
|
||||||
|
attributes:
|
||||||
|
label: Related helm chart
|
||||||
|
description: You may select more than one.
|
||||||
|
multiple: true
|
||||||
|
options:
|
||||||
|
- argo-cd
|
||||||
|
- argo-events
|
||||||
|
- argo-rollouts
|
||||||
|
- argo-workflows
|
||||||
|
- argocd-applicationset
|
||||||
|
- argocd-image-updater
|
||||||
|
- argocd-notifications
|
||||||
|
- other
|
||||||
|
validations:
|
||||||
|
required: true
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
attributes:
|
attributes:
|
||||||
label: Describe the solution you'd like
|
label: Describe the solution you'd like
|
||||||
|
|
2
.github/workflows/stale.yml
vendored
2
.github/workflows/stale.yml
vendored
|
@ -7,7 +7,7 @@ jobs:
|
||||||
stale:
|
stale:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/stale@v3
|
- uses: actions/stale@v4
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
# Number of days of inactivity before an issue becomes stale
|
# Number of days of inactivity before an issue becomes stale
|
||||||
|
|
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
name: argocd-applicationset
|
name: argocd-applicationset
|
||||||
description: A Helm chart for installing ArgoCD ApplicationSet
|
description: A Helm chart for installing ArgoCD ApplicationSet
|
||||||
type: application
|
type: application
|
||||||
version: 1.4.0
|
version: 1.5.0
|
||||||
appVersion: "v0.2.0"
|
appVersion: "v0.2.0"
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
icon: https://argocd-applicationset.readthedocs.io/en/stable/assets/logo.png
|
icon: https://argocd-applicationset.readthedocs.io/en/stable/assets/logo.png
|
||||||
|
@ -14,4 +14,4 @@ maintainers:
|
||||||
- name: maruina
|
- name: maruina
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Added]: Configuration for Pod labels"
|
- "[Added]: Add extraArgs to define additional CLI parameters"
|
||||||
|
|
|
@ -65,6 +65,7 @@ kubectl apply -k https://github.com/argoproj-labs/applicationset.git/manifests/c
|
||||||
| args.namespace | string | `"argocd"` | The default Argo CD repo namespace |
|
| args.namespace | string | `"argocd"` | The default Argo CD repo namespace |
|
||||||
| args.policy | string | `"sync"` | How application is synced between the generator and the cluster |
|
| args.policy | string | `"sync"` | How application is synced between the generator and the cluster |
|
||||||
| args.probeBindAddr | string | `":8081"` | The default health check port |
|
| args.probeBindAddr | string | `":8081"` | The default health check port |
|
||||||
|
| extraArgs | list | `[]` | List of extra cli args to add |
|
||||||
| extraVolumeMounts | list | `[]` | List of extra mounts to add (normally used with extraVolumes) |
|
| extraVolumeMounts | list | `[]` | List of extra mounts to add (normally used with extraVolumes) |
|
||||||
| extraVolumes | list | `[]` | List of extra volumes to add |
|
| extraVolumes | list | `[]` | List of extra volumes to add |
|
||||||
| fullnameOverride | string | `""` | Override the default fully qualified app name |
|
| fullnameOverride | string | `""` | Override the default fully qualified app name |
|
||||||
|
|
|
@ -44,6 +44,9 @@ spec:
|
||||||
- --policy={{ .Values.args.policy }}
|
- --policy={{ .Values.args.policy }}
|
||||||
- --debug={{ .Values.args.debug }}
|
- --debug={{ .Values.args.debug }}
|
||||||
- --dry-run={{ .Values.args.dryRun }}
|
- --dry-run={{ .Values.args.dryRun }}
|
||||||
|
{{- with .Values.extraArgs }}
|
||||||
|
{{- toYaml . | nindent 12 }}
|
||||||
|
{{- end }}
|
||||||
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
|
||||||
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
imagePullPolicy: {{ .Values.image.pullPolicy }}
|
||||||
ports:
|
ports:
|
||||||
|
|
|
@ -113,3 +113,7 @@ extraVolumeMounts: []
|
||||||
extraVolumes: []
|
extraVolumes: []
|
||||||
# - name: foobar
|
# - name: foobar
|
||||||
# emptyDir: {}
|
# emptyDir: {}
|
||||||
|
|
||||||
|
# -- List of extra cli args to add
|
||||||
|
extraArgs: []
|
||||||
|
# - --loglevel=warn
|
||||||
|
|
Loading…
Reference in a new issue