Merge branch 'master' into master

This commit is contained in:
Sean Johnson 2019-11-26 10:02:22 +11:00 committed by GitHub
commit af51c86dc5
13 changed files with 309 additions and 63 deletions

View file

@ -0,0 +1,2 @@
*.tgz
output

View file

@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "1.3.0" appVersion: "1.3.0"
description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes. description: A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
name: argo-cd name: argo-cd
version: 1.0.9 version: 1.2.3
home: https://github.com/argoproj/argo-helm home: https://github.com/argoproj/argo-helm
icon: https://raw.githubusercontent.com/argoproj/argo/master/argo.png icon: https://raw.githubusercontent.com/argoproj/argo/master/argo.png
keywords: keywords:

View file

@ -2,8 +2,6 @@ Argo CD Chart
====== ======
A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes. A Helm chart for ArgoCD, a declarative, GitOps continuous delivery tool for Kubernetes.
Current chart version is `1.0.4`
Source code can be found [here](https://argoproj.github.io/argo-cd/) Source code can be found [here](https://argoproj.github.io/argo-cd/)
## Additional Information ## Additional Information

View file

@ -92,6 +92,17 @@ Create the name of the ArgoCD server service account to use
{{- end -}} {{- end -}}
{{- end -}} {{- end -}}
{{/*
Create the name of the repo-server service account to use
*/}}
{{- define "argo-cd.repoServerServiceAccountName" -}}
{{- if .Values.repoServer.serviceAccount.create -}}
{{ default (include "argo-cd.fullname" .) .Values.repoServer.serviceAccount.name }}
{{- else -}}
{{ default "default" .Values.repoServer.serviceAccount.name }}
{{- end -}}
{{- end -}}
{{/* {{/*
Create chart name and version as used by the chart label. Create chart name and version as used by the chart label.
*/}} */}}

View file

@ -105,6 +105,7 @@ spec:
affinity: affinity:
{{- toYaml .Values.repoServer.affinity | nindent 8 }} {{- toYaml .Values.repoServer.affinity | nindent 8 }}
{{- end }} {{- end }}
serviceAccountName: {{ template "argo-cd.repoServerServiceAccountName" . }}
volumes: volumes:
{{- if .Values.repoServer.volumes }} {{- if .Values.repoServer.volumes }}
{{- toYaml .Values.repoServer.volumes | nindent 8}} {{- toYaml .Values.repoServer.volumes | nindent 8}}

View file

@ -0,0 +1,18 @@
{{- if .Values.configs.repositoryCredentials }}
apiVersion: v1
kind: Secret
metadata:
name: argocd-repository-credentials
labels:
app.kubernetes.io/name: {{ include "argo-cd.name" . }}-secret
helm.sh/chart: {{ include "argo-cd.chart" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
app.kubernetes.io/part-of: argocd
app.kubernetes.io/component: {{ .Values.server.name }}
type: Opaque
data:
{{- range $key, $value := .Values.configs.repositoryCredentials }}
{{ $key }}: {{ $value | b64enc }}
{{- end }}
{{- end }}

View file

@ -0,0 +1,17 @@
{{- if .Values.repoServer.serviceAccount.create }}
apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: {{ template "argo-cd.repoServer.fullname" . }}
labels:
app.kubernetes.io/name: {{ include "argo-cd.name" . }}-{{ .Values.repoServer.name }}
helm.sh/chart: {{ include "argo-cd.chart" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
app.kubernetes.io/part-of: argocd
app.kubernetes.io/component: {{ .Values.repoServer.name }}
rules:
{{- if .Values.repoServer.rbac }}
{{toYaml .Values.repoServer.rbac }}
{{- end }}
{{- end }}

View file

@ -0,0 +1,21 @@
{{- if .Values.repoServer.serviceAccount.create }}
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: {{ template "argo-cd.repoServer.fullname" . }}
labels:
app.kubernetes.io/name: {{ include "argo-cd.name" . }}-{{ .Values.repoServer.name }}
helm.sh/chart: {{ include "argo-cd.chart" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
app.kubernetes.io/part-of: argocd
app.kubernetes.io/component: {{ .Values.repoServer.name }}
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: {{ template "argo-cd.repoServer.fullname" . }}
subjects:
- kind: ServiceAccount
name: {{ template "argo-cd.repoServerServiceAccountName" . }}
namespace: {{ .Release.Namespace }}
{{- end }}

View file

@ -0,0 +1,19 @@
{{- if .Values.repoServer.serviceAccount.create }}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ template "argo-cd.repoServerServiceAccountName" . }}
{{- if .Values.repoServer.serviceAccount.annotations }}
annotations:
{{- range $key, $value := .Values.repoServer.serviceAccount.annotations }}
{{ $key }}: {{ $value | quote }}
{{- end }}
{{- end }}
labels:
app.kubernetes.io/name: {{ include "argo-cd.name" . }}-{{ .Values.repoServer.name }}
helm.sh/chart: {{ include "argo-cd.chart" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
app.kubernetes.io/part-of: argocd
app.kubernetes.io/component: {{ .Values.repoServer.name }}
{{- end }}

View file

@ -1,3 +1,4 @@
{{- if .Values.installCRDs }}
apiVersion: apiextensions.k8s.io/v1beta1 apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition kind: CustomResourceDefinition
metadata: metadata:
@ -416,7 +417,7 @@ spec:
type: object type: object
type: array type: array
revision: revision:
description: Revision is the git revision in which to sync the application description: Revision is the revision in which to sync the application
to. If omitted, will use the revision specified in app spec. to. If omitted, will use the revision specified in app spec.
type: string type: string
source: source:
@ -424,6 +425,9 @@ spec:
This is typically set in a Rollback operation and nil during a This is typically set in a Rollback operation and nil during a
Sync operation Sync operation
properties: properties:
chart:
description: Chart is a Helm chart name
type: string
directory: directory:
description: Directory holds path/directory specific options description: Directory holds path/directory specific options
properties: properties:
@ -492,6 +496,10 @@ spec:
items: items:
type: string type: string
type: array type: array
values:
description: Values is Helm values, typically defined as
a block
type: string
type: object type: object
ksonnet: ksonnet:
description: Ksonnet holds ksonnet specific options description: Ksonnet holds ksonnet specific options
@ -536,8 +544,7 @@ spec:
type: string type: string
type: object type: object
path: path:
description: Path is a directory path within the repository description: Path is a directory path within the Git repository
containing a
type: string type: string
plugin: plugin:
description: ConfigManagementPlugin holds config management description: ConfigManagementPlugin holds config management
@ -561,7 +568,7 @@ spec:
type: string type: string
type: object type: object
repoURL: repoURL:
description: RepoURL is the git repository URL of the application description: RepoURL is the repository URL of the application
manifests manifests
type: string type: string
targetRevision: targetRevision:
@ -571,7 +578,6 @@ spec:
type: string type: string
required: required:
- repoURL - repoURL
- path
type: object type: object
syncStrategy: syncStrategy:
description: SyncStrategy describes how to perform the sync description: SyncStrategy describes how to perform the sync
@ -634,7 +640,6 @@ spec:
namespace: namespace:
type: string type: string
required: required:
- group
- kind - kind
- jsonPointers - jsonPointers
type: object type: object
@ -661,6 +666,9 @@ spec:
description: Source is a reference to the location ksonnet application description: Source is a reference to the location ksonnet application
definition definition
properties: properties:
chart:
description: Chart is a Helm chart name
type: string
directory: directory:
description: Directory holds path/directory specific options description: Directory holds path/directory specific options
properties: properties:
@ -729,6 +737,9 @@ spec:
items: items:
type: string type: string
type: array type: array
values:
description: Values is Helm values, typically defined as a block
type: string
type: object type: object
ksonnet: ksonnet:
description: Ksonnet holds ksonnet specific options description: Ksonnet holds ksonnet specific options
@ -773,8 +784,7 @@ spec:
type: string type: string
type: object type: object
path: path:
description: Path is a directory path within the repository containing description: Path is a directory path within the Git repository
a
type: string type: string
plugin: plugin:
description: ConfigManagementPlugin holds config management plugin description: ConfigManagementPlugin holds config management plugin
@ -798,8 +808,7 @@ spec:
type: string type: string
type: object type: object
repoURL: repoURL:
description: RepoURL is the git repository URL of the application description: RepoURL is the repository URL of the application manifests
manifests
type: string type: string
targetRevision: targetRevision:
description: TargetRevision defines the commit, tag, or branch in description: TargetRevision defines the commit, tag, or branch in
@ -807,7 +816,6 @@ spec:
type: string type: string
required: required:
- repoURL - repoURL
- path
type: object type: object
syncPolicy: syncPolicy:
description: SyncPolicy controls when a sync will be performed description: SyncPolicy controls when a sync will be performed
@ -867,6 +875,9 @@ spec:
type: string type: string
source: source:
properties: properties:
chart:
description: Chart is a Helm chart name
type: string
directory: directory:
description: Directory holds path/directory specific options description: Directory holds path/directory specific options
properties: properties:
@ -936,6 +947,10 @@ spec:
items: items:
type: string type: string
type: array type: array
values:
description: Values is Helm values, typically defined
as a block
type: string
type: object type: object
ksonnet: ksonnet:
description: Ksonnet holds ksonnet specific options description: Ksonnet holds ksonnet specific options
@ -980,8 +995,7 @@ spec:
type: string type: string
type: object type: object
path: path:
description: Path is a directory path within the repository description: Path is a directory path within the Git repository
containing a
type: string type: string
plugin: plugin:
description: ConfigManagementPlugin holds config management description: ConfigManagementPlugin holds config management
@ -1005,7 +1019,7 @@ spec:
type: string type: string
type: object type: object
repoURL: repoURL:
description: RepoURL is the git repository URL of the application description: RepoURL is the repository URL of the application
manifests manifests
type: string type: string
targetRevision: targetRevision:
@ -1015,7 +1029,6 @@ spec:
type: string type: string
required: required:
- repoURL - repoURL
- path
type: object type: object
required: required:
- revision - revision
@ -1024,6 +1037,8 @@ spec:
type: object type: object
type: array type: array
observedAt: observedAt:
description: ObservedAt indicates when the application state was updated
without querying latest git state
format: date-time format: date-time
type: string type: string
operationState: operationState:
@ -1071,15 +1086,18 @@ spec:
type: object type: object
type: array type: array
revision: revision:
description: Revision is the git revision in which to sync description: Revision is the revision in which to sync the
the application to. If omitted, will use the revision application to. If omitted, will use the revision specified
specified in app spec. in app spec.
type: string type: string
source: source:
description: Source overrides the source definition set description: Source overrides the source definition set
in the application. This is typically set in a Rollback in the application. This is typically set in a Rollback
operation and nil during a Sync operation operation and nil during a Sync operation
properties: properties:
chart:
description: Chart is a Helm chart name
type: string
directory: directory:
description: Directory holds path/directory specific description: Directory holds path/directory specific
options options
@ -1155,6 +1173,10 @@ spec:
items: items:
type: string type: string
type: array type: array
values:
description: Values is Helm values, typically defined
as a block
type: string
type: object type: object
ksonnet: ksonnet:
description: Ksonnet holds ksonnet specific options description: Ksonnet holds ksonnet specific options
@ -1200,8 +1222,8 @@ spec:
type: string type: string
type: object type: object
path: path:
description: Path is a directory path within the repository description: Path is a directory path within the Git
containing a repository
type: string type: string
plugin: plugin:
description: ConfigManagementPlugin holds config management description: ConfigManagementPlugin holds config management
@ -1225,8 +1247,8 @@ spec:
type: string type: string
type: object type: object
repoURL: repoURL:
description: RepoURL is the git repository URL of the description: RepoURL is the repository URL of the application
application manifests manifests
type: string type: string
targetRevision: targetRevision:
description: TargetRevision defines the commit, tag, description: TargetRevision defines the commit, tag,
@ -1235,7 +1257,6 @@ spec:
type: string type: string
required: required:
- repoURL - repoURL
- path
type: object type: object
syncStrategy: syncStrategy:
description: SyncStrategy describes how to perform the sync description: SyncStrategy describes how to perform the sync
@ -1322,12 +1343,15 @@ spec:
type: object type: object
type: array type: array
revision: revision:
description: Revision holds the git commit SHA of the sync description: Revision holds the revision of the sync
type: string type: string
source: source:
description: Source records the application source information description: Source records the application source information
of the sync, used for comparing auto-sync of the sync, used for comparing auto-sync
properties: properties:
chart:
description: Chart is a Helm chart name
type: string
directory: directory:
description: Directory holds path/directory specific options description: Directory holds path/directory specific options
properties: properties:
@ -1399,6 +1423,10 @@ spec:
items: items:
type: string type: string
type: array type: array
values:
description: Values is Helm values, typically defined
as a block
type: string
type: object type: object
ksonnet: ksonnet:
description: Ksonnet holds ksonnet specific options description: Ksonnet holds ksonnet specific options
@ -1444,8 +1472,7 @@ spec:
type: string type: string
type: object type: object
path: path:
description: Path is a directory path within the repository description: Path is a directory path within the Git repository
containing a
type: string type: string
plugin: plugin:
description: ConfigManagementPlugin holds config management description: ConfigManagementPlugin holds config management
@ -1469,7 +1496,7 @@ spec:
type: string type: string
type: object type: object
repoURL: repoURL:
description: RepoURL is the git repository URL of the application description: RepoURL is the repository URL of the application
manifests manifests
type: string type: string
targetRevision: targetRevision:
@ -1479,7 +1506,6 @@ spec:
type: string type: string
required: required:
- repoURL - repoURL
- path
type: object type: object
required: required:
- revision - revision
@ -1490,6 +1516,8 @@ spec:
- startedAt - startedAt
type: object type: object
reconciledAt: reconciledAt:
description: ReconciledAt indicates when the application state was reconciled
using the latest git version
format: date-time format: date-time
type: string type: string
resources: resources:
@ -1553,6 +1581,9 @@ spec:
type: object type: object
source: source:
properties: properties:
chart:
description: Chart is a Helm chart name
type: string
directory: directory:
description: Directory holds path/directory specific options description: Directory holds path/directory specific options
properties: properties:
@ -1624,6 +1655,10 @@ spec:
items: items:
type: string type: string
type: array type: array
values:
description: Values is Helm values, typically defined
as a block
type: string
type: object type: object
ksonnet: ksonnet:
description: Ksonnet holds ksonnet specific options description: Ksonnet holds ksonnet specific options
@ -1669,8 +1704,7 @@ spec:
type: string type: string
type: object type: object
path: path:
description: Path is a directory path within the repository description: Path is a directory path within the Git repository
containing a
type: string type: string
plugin: plugin:
description: ConfigManagementPlugin holds config management description: ConfigManagementPlugin holds config management
@ -1694,7 +1728,7 @@ spec:
type: string type: string
type: object type: object
repoURL: repoURL:
description: RepoURL is the git repository URL of the application description: RepoURL is the repository URL of the application
manifests manifests
type: string type: string
targetRevision: targetRevision:
@ -1704,7 +1738,6 @@ spec:
type: string type: string
required: required:
- repoURL - repoURL
- path
type: object type: object
required: required:
- source - source
@ -1726,3 +1759,4 @@ spec:
- name: v1alpha1 - name: v1alpha1
served: true served: true
storage: true storage: true
{{- end }}

View file

@ -1,3 +1,4 @@
{{- if .Values.installCRDs }}
apiVersion: apiextensions.k8s.io/v1beta1 apiVersion: apiextensions.k8s.io/v1beta1
kind: CustomResourceDefinition kind: CustomResourceDefinition
metadata: metadata:
@ -434,6 +435,15 @@ spec:
- kind - kind
type: object type: object
type: array type: array
orphanedResources:
description: OrphanedResources specifies if controller should monitor
orphaned resources of apps in this project
properties:
warn:
description: Warn indicates if warning condition should be created
for apps which have orphaned resources
type: boolean
type: object
roles: roles:
description: Roles are user defined RBAC roles associated with this description: Roles are user defined RBAC roles associated with this
project project
@ -477,11 +487,51 @@ spec:
type: object type: object
type: array type: array
sourceRepos: sourceRepos:
description: SourceRepos contains list of git repository URLs which description: SourceRepos contains list of repository URLs which can
can be used for deployment be used for deployment
items: items:
type: string type: string
type: array type: array
syncWindows:
description: SyncWindows controls when syncs can be run for apps in
this project
items:
properties:
applications:
description: Applications contains a list of applications that
the window will apply to
items:
type: string
type: array
clusters:
description: Clusters contains a list of clusters that the window
will apply to
items:
type: string
type: array
duration:
description: Duration is the amount of time the sync window will
be open
type: string
kind:
description: Kind defines if the window allows or blocks syncs
type: string
manualSync:
description: ManualSync enables manual syncs when they would otherwise
be blocked
type: boolean
namespaces:
description: Namespaces contains a list of namespaces that the
window will apply to
items:
type: string
type: array
schedule:
description: Schedule is the time the window will begin, specified
in cron format
type: string
type: object
type: array
type: object type: object
required: required:
- metadata - metadata
@ -491,3 +541,4 @@ spec:
- name: v1alpha1 - name: v1alpha1
served: true served: true
storage: true storage: true
{{- end }}

View file

@ -28,7 +28,7 @@ spec:
initContainers: initContainers:
- name: copyutil - name: copyutil
image: {{ default .Values.global.image.repository .Values.dex.initImage.repository }}:{{ default .Values.global.image.tag .Values.dex.initImage.tag }} image: {{ default .Values.global.image.repository .Values.dex.initImage.repository }}:{{ default .Values.global.image.tag .Values.dex.initImage.tag }}
imagePullPolicy: {{ default .Values.global.image.imagePullPolicy .Values.dex.initImage.pullPolicy }} imagePullPolicy: {{ default .Values.global.image.imagePullPolicy .Values.dex.initImage.imagePullPolicy }}
command: command:
- cp - cp
- /usr/local/bin/argocd-util - /usr/local/bin/argocd-util
@ -73,4 +73,4 @@ spec:
volumes: volumes:
{{- toYaml .Values.dex.volumes | nindent 8}} {{- toYaml .Values.dex.volumes | nindent 8}}
{{- end }} {{- end }}
{{- end }} {{- end }}

View file

@ -2,21 +2,25 @@
## Ref: https://github.com/argoproj/argo-cd ## Ref: https://github.com/argoproj/argo-cd
## ##
nameOverride: argocd nameOverride: argocd
fullnameOverride: ""
# Optional CRD installation for those without Helm hooks
installCRDs: true
global: global:
image: image:
repository: argoproj/argocd repository: argoproj/argocd
tag: v1.2.4 tag: v1.3.0
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
## Controller ## Controller
controller: controller:
name: application-controller name: application-controller
image: {} image:
# repository: argoproj/argocd repository: # argoproj/argocd
# tag: v1.2.1 tag: # v1.3.0
# imagePullPolicy: IfNotPresent imagePullPolicy: # IfNotPresent
## Argo controller commandline flags ## Argo controller commandline flags
args: args:
@ -27,7 +31,7 @@ controller:
logLevel: info logLevel: info
## Additional command line arguments to pass to argocd-controller ## Additional command line arguments to pass to argocd-controller
## - key: value ## key: value
extraArgs: [] extraArgs: []
## Annotations to be added to controller pods ## Annotations to be added to controller pods
@ -118,7 +122,10 @@ dex:
repository: quay.io/dexidp/dex repository: quay.io/dexidp/dex
tag: v2.14.0 tag: v2.14.0
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
initImage: {} initImage:
repository:
tag:
imagePullPolicy:
serviceAccount: serviceAccount:
create: true create: true
@ -187,19 +194,22 @@ redis:
# cpu: 100m # cpu: 100m
# memory: 64Mi # memory: 64Mi
volumeMounts: []
volumes: []
## Server ## Server
server: server:
name: server name: server
image: {} image:
# repository: argoproj/argocd repository: # argoproj/argocd
# tag: v1.2.1 tag: # v1.3.0
# imagePullPolicy: IfNotPresent imagePullPolicy: # IfNotPresent
## Additional command line arguments to pass to argocd-server ## Additional command line arguments to pass to argocd-server
## - key: value ## key: value
# extraArgs: [] # extraArgs: []
# - insecure: true # insecure: true
extraArgs: [] extraArgs: []
## Argo server log level ## Argo server log level
@ -297,11 +307,13 @@ server:
## Hostnames must be provided if Ingress is enabled. ## Hostnames must be provided if Ingress is enabled.
## Secrets must be manually created in the namespace ## Secrets must be manually created in the namespace
## ##
hosts: [] hosts:
[]
# - argocd.example.com # - argocd.example.com
paths: paths:
- / - /
tls: [] tls:
[]
# - secretName: argocd-example-tls # - secretName: argocd-example-tls
# hosts: # hosts:
# - argocd.example.com # - argocd.example.com
@ -321,10 +333,34 @@ server:
url: https://argocd.example.com url: https://argocd.example.com
# Argo CD instance label key # Argo CD instance label key
application.instanceLabelKey: argocd.argoproj.io/instance application.instanceLabelKey: argocd.argoproj.io/instance
# repositories: |
# - url: git@github.com:group/repo.git
# sshPrivateKeySecret:
# name: secret-name
# key: sshPrivateKey
# - type: helm
# url: https://kubernetes-charts.storage.googleapis.com
# name: stable
# - type: helm
# url: https://argoproj.github.io/argo-helm
# name: argo
# oidc.config: |
# name: AzureAD
# issuer: https://login.microsoftonline.com/TENANT_ID/v2.0
# clientID: CLIENT_ID
# clientSecret: $oidc.azuread.clientSecret
# requestedIDTokenClaims:
# groups:
# essential: true
# requestedScopes:
# - openid
# - profile
# - email
## ArgoCD rbac config ## ArgoCD rbac config
## reference https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/rbac.md ## reference https://github.com/argoproj/argo-cd/blob/master/docs/operator-manual/rbac.md
rbacConfig: {} rbacConfig:
{}
# policy.csv is an file containing user-defined RBAC policies and role definitions (optional). # policy.csv is an file containing user-defined RBAC policies and role definitions (optional).
# Policy rules are in the form: # Policy rules are in the form:
# p, subject, resource, action, object, effect # p, subject, resource, action, object, effect
@ -340,7 +376,6 @@ server:
# authorizing API requests (optional). If omitted or empty, users may be still be able to login, # authorizing API requests (optional). If omitted or empty, users may be still be able to login,
# but will see no apps, projects, etc... # but will see no apps, projects, etc...
# policy.default: role:readonly # policy.default: role:readonly
# scopes controls which OIDC scopes to examine during rbac enforcement (in addition to `sub` scope). # scopes controls which OIDC scopes to examine during rbac enforcement (in addition to `sub` scope).
# If omitted, defaults to: '[groups]'. The scope value can be a string, or a list of strings. # If omitted, defaults to: '[groups]'. The scope value can be a string, or a list of strings.
# scopes: '[cognito:groups, email]' # scopes: '[cognito:groups, email]'
@ -398,13 +433,13 @@ server:
repoServer: repoServer:
name: repo-server name: repo-server
image: {} image:
# repository: argoproj/argocd repository: # argoproj/argocd
# tag: v1.2.1 tag: # v1.3.0
# imagePullPolicy: IfNotPresent imagePullPolicy: # IfNotPresent
## Additional command line arguments to pass to argocd-repo-server ## Additional command line arguments to pass to argocd-repo-server
## - key: value ## key: value
extraArgs: [] extraArgs: []
## Argo repoServer log level ## Argo repoServer log level
@ -480,6 +515,25 @@ repoServer:
# namespace: monitoring # namespace: monitoring
# additionalLabels: {} # additionalLabels: {}
## Repo server service account
## If create is set to true, make sure to uncomment the name and update the rbac section below
serviceAccount:
create: false
# name: argocd-repo-server
## Annotations applied to created service account
annotations: {}
## Repo server rbac rules
# rbac:
# - apiGroups:
# - argoproj.io
# resources:
# - applications
# verbs:
# - get
# - list
# - watch
## Argo Configs ## Argo Configs
configs: configs:
knownHosts: knownHosts:
@ -492,7 +546,8 @@ configs:
gitlab.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsj2bNKTBSpIYDEGk9KxsGh3mySTRgMtXL583qmBpzeQ+jqCMRgBqB98u3z++J1sKlXHWfM9dyhSevkMwSbhoR8XIq/U0tCNyokEi/ueaBMCvbcTHhO7FcwzY92WK4Yt0aGROY5qX2UKSeOvuP4D6TPqKF1onrSzH9bx9XUf2lEdWT/ia1NEKjunUqu1xOB/StKDHMoX4/OKyIzuS0q/T1zOATthvasJFoPrAjkohTyaDUz2LN5JoH839hViyEG82yB+MjcFV5MU3N1l1QL3cVUCh93xSaua1N85qivl+siMkPGbO5xR/En4iEY6K2XPASUEMaieWVNTRCtJ4S8H+9 gitlab.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCsj2bNKTBSpIYDEGk9KxsGh3mySTRgMtXL583qmBpzeQ+jqCMRgBqB98u3z++J1sKlXHWfM9dyhSevkMwSbhoR8XIq/U0tCNyokEi/ueaBMCvbcTHhO7FcwzY92WK4Yt0aGROY5qX2UKSeOvuP4D6TPqKF1onrSzH9bx9XUf2lEdWT/ia1NEKjunUqu1xOB/StKDHMoX4/OKyIzuS0q/T1zOATthvasJFoPrAjkohTyaDUz2LN5JoH839hViyEG82yB+MjcFV5MU3N1l1QL3cVUCh93xSaua1N85qivl+siMkPGbO5xR/En4iEY6K2XPASUEMaieWVNTRCtJ4S8H+9
ssh.dev.azure.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7Hr1oTWqNqOlzGJOfGJ4NakVyIzf1rXYd4d7wo6jBlkLvCA4odBlL0mDUyZ0/QUfTTqeu+tm22gOsv+VrVTMk6vwRU75gY/y9ut5Mb3bR5BV58dKXyq9A9UeB5Cakehn5Zgm6x1mKoVyf+FFn26iYqXJRgzIZZcZ5V6hrE0Qg39kZm4az48o0AUbf6Sp4SLdvnuMa2sVNwHBboS7EJkm57XQPVU3/QpyNLHbWDdzwtrlS+ez30S3AdYhLKEOxAG8weOnyrtLJAUen9mTkol8oII1edf7mWWbWVf0nBmly21+nZcmCTISQBtdcyPaEno7fFQMDD26/s0lfKob4Kw8H ssh.dev.azure.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7Hr1oTWqNqOlzGJOfGJ4NakVyIzf1rXYd4d7wo6jBlkLvCA4odBlL0mDUyZ0/QUfTTqeu+tm22gOsv+VrVTMk6vwRU75gY/y9ut5Mb3bR5BV58dKXyq9A9UeB5Cakehn5Zgm6x1mKoVyf+FFn26iYqXJRgzIZZcZ5V6hrE0Qg39kZm4az48o0AUbf6Sp4SLdvnuMa2sVNwHBboS7EJkm57XQPVU3/QpyNLHbWDdzwtrlS+ez30S3AdYhLKEOxAG8weOnyrtLJAUen9mTkol8oII1edf7mWWbWVf0nBmly21+nZcmCTISQBtdcyPaEno7fFQMDD26/s0lfKob4Kw8H
vs-ssh.visualstudio.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7Hr1oTWqNqOlzGJOfGJ4NakVyIzf1rXYd4d7wo6jBlkLvCA4odBlL0mDUyZ0/QUfTTqeu+tm22gOsv+VrVTMk6vwRU75gY/y9ut5Mb3bR5BV58dKXyq9A9UeB5Cakehn5Zgm6x1mKoVyf+FFn26iYqXJRgzIZZcZ5V6hrE0Qg39kZm4az48o0AUbf6Sp4SLdvnuMa2sVNwHBboS7EJkm57XQPVU3/QpyNLHbWDdzwtrlS+ez30S3AdYhLKEOxAG8weOnyrtLJAUen9mTkol8oII1edf7mWWbWVf0nBmly21+nZcmCTISQBtdcyPaEno7fFQMDD26/s0lfKob4Kw8H vs-ssh.visualstudio.com ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC7Hr1oTWqNqOlzGJOfGJ4NakVyIzf1rXYd4d7wo6jBlkLvCA4odBlL0mDUyZ0/QUfTTqeu+tm22gOsv+VrVTMk6vwRU75gY/y9ut5Mb3bR5BV58dKXyq9A9UeB5Cakehn5Zgm6x1mKoVyf+FFn26iYqXJRgzIZZcZ5V6hrE0Qg39kZm4az48o0AUbf6Sp4SLdvnuMa2sVNwHBboS7EJkm57XQPVU3/QpyNLHbWDdzwtrlS+ez30S3AdYhLKEOxAG8weOnyrtLJAUen9mTkol8oII1edf7mWWbWVf0nBmly21+nZcmCTISQBtdcyPaEno7fFQMDD26/s0lfKob4Kw8H
tlsCerts: {} tlsCerts:
{}
# data: # data:
# argocd.example.com: | # argocd.example.com: |
# -----BEGIN CERTIFICATE----- # -----BEGIN CERTIFICATE-----
@ -529,6 +584,25 @@ configs:
# +LB9LGh4OAp68ImTjqf6ioGKG0RBSznwME+r4nXtT1S/qLR6ASWUS4ViWRhbRlNK # +LB9LGh4OAp68ImTjqf6ioGKG0RBSznwME+r4nXtT1S/qLR6ASWUS4ViWRhbRlNK
# XWyb96wrUlv+E8I= # XWyb96wrUlv+E8I=
# -----END CERTIFICATE----- # -----END CERTIFICATE-----
# Creates a secret with optional repository credentials
repositoryCredentials:
{}
# sample-ssh-key: |
# -----BEGIN RSA PRIVATE KEY-----
# MIICXAIBAAKBgQCcmiVJXGUvL8zqWmRRETbCKgFadtjJ9WDQpSwiZzMiktpYBo0N
# z0cThzGQfWqvdiJYEy72MrKCaSYssV3eHP5zTffk4VBDktNfdl1kgkOpqnh7tQO4
# nBONRLzcK6KEbKUsmiTbW8Jb4UFYDhyyyveby7y3vYePmaRQIrlEenVfKwIDAQAB
# AoGAbbg+WZjnt9jYzHWKhZX29LDzg8ty9oT6URT4yB3gIOAdJMFqQHuyg8cb/e0x
# O0AcrfK623oHwgEj4vpeFwnfaBdtM5GfH9zaj6pnXV7VZc3oBHrBnHUgFT3NEYUe
# tt6rtatIguBH61Aj/pyij9sOfF0xDj0s1nwFTbdHtZR/31kCQQDIwcVTqhKkDNW6
# cvdz+Wt3v9x1wNg+VhZhyA/pKILz3+qtn3GogLrQqhpVi+Y7tdvEv9FvgKaCjUp8
# 6Lfp6dDFAkEAx7HpQbXFdrtcveOi9kosKRDX1PT4zdhB08jAXGlV8jr0jkrZazVM
# hV5rVCuu35Vh6x1fiyGwwiVsqhgWE+KPLwJAWrDemasM/LsnmjDxhJy6ZcBwsWlK
# xu5Q8h9UwLmiXtVayNBsofh1bGpLtzWZ7oN7ImidDkgJ8JQvgDoJS0xrGQJBALPJ
# FkMFnrjtqGqBVkc8shNqyZY90v6oM2OzupO4dht2PpUZCDPAMZtlTWXjSjabbCPc
# NxexBk1UmkdtFftjHxsCQGjG+nhRYH92MsmrbvZyFzgxg9SIOu6xel7D3Dq9l5Le
# XG+bpHPF4SiCpAxthP5WNa17zuvk+CDsMZgZNuhYNMo=
# -----END RSA PRIVATE KEY-----
secret: secret:
createSecret: true createSecret: true
githubSecret: "" githubSecret: ""