-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: option for app-controller Deployment instead of StatefulSet (#77)
Signed-off-by: Justin Marquis <[email protected]>
- Loading branch information
1 parent
21e9987
commit ff6c77e
Showing
5 changed files
with
298 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
287 changes: 287 additions & 0 deletions
287
charts/argo-cd/templates/application-controller/deployment.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,287 @@ | ||
{{- if .Values.controller.deployment }} | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
labels: | ||
app.kubernetes.io/name: argocd-application-controller | ||
app.kubernetes.io/part-of: argocd | ||
app.kubernetes.io/component: application-controller | ||
name: argocd-application-controller | ||
namespace: {{ .Release.Namespace }} | ||
spec: | ||
selector: | ||
matchLabels: | ||
app.kubernetes.io/name: argocd-application-controller | ||
replicas: 1 | ||
template: | ||
metadata: | ||
labels: | ||
app.kubernetes.io/name: argocd-application-controller | ||
spec: | ||
containers: | ||
- args: | ||
- /usr/local/bin/argocd-application-controller | ||
{{- with .Values.controller.extraArgs }} | ||
{{- . | toYaml | nindent 8 }} | ||
{{- end }} | ||
{{- with .Values.controller.resources }} | ||
resources: | ||
{{- toYaml . | nindent 10 }} | ||
{{- end }} | ||
env: | ||
{{- with .Values.controller.env }} | ||
{{- toYaml . | nindent 10 }} | ||
{{- end }} | ||
- name: REDIS_PASSWORD | ||
valueFrom: | ||
secretKeyRef: | ||
key: auth | ||
name: argocd-redis | ||
- name: ARGOCD_RECONCILIATION_TIMEOUT | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cm | ||
key: timeout.reconciliation | ||
optional: true | ||
- name: ARGOCD_HARD_RECONCILIATION_TIMEOUT | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cm | ||
key: timeout.hard.reconciliation | ||
optional: true | ||
- name: ARGOCD_RECONCILIATION_JITTER | ||
valueFrom: | ||
configMapKeyRef: | ||
key: timeout.reconciliation.jitter | ||
name: argocd-cm | ||
optional: true | ||
- name: ARGOCD_REPO_ERROR_GRACE_PERIOD_SECONDS | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.repo.error.grace.period.seconds | ||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_REPO_SERVER | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: repo.server | ||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_REPO_SERVER_TIMEOUT_SECONDS | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.repo.server.timeout.seconds | ||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_STATUS_PROCESSORS | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.status.processors | ||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_OPERATION_PROCESSORS | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.operation.processors | ||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_LOGFORMAT | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.log.format | ||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_LOGLEVEL | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.log.level | ||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_METRICS_CACHE_EXPIRATION | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.metrics.cache.expiration | ||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_SELF_HEAL_TIMEOUT_SECONDS | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.self.heal.timeout.seconds | ||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_REPO_SERVER_PLAINTEXT | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.repo.server.plaintext | ||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_REPO_SERVER_STRICT_TLS | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.repo.server.strict.tls | ||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_PERSIST_RESOURCE_HEALTH | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.resource.health.persist | ||
optional: true | ||
- name: ARGOCD_APP_STATE_CACHE_EXPIRATION | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.app.state.cache.expiration | ||
optional: true | ||
- name: REDIS_SERVER | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: redis.server | ||
optional: true | ||
- name: REDIS_COMPRESSION | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: redis.compression | ||
optional: true | ||
- name: REDISDB | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: redis.db | ||
optional: true | ||
- name: ARGOCD_DEFAULT_CACHE_EXPIRATION | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.default.cache.expiration | ||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_OTLP_ADDRESS | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: otlp.address | ||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_OTLP_INSECURE | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: otlp.insecure | ||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_OTLP_HEADERS | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: otlp.headers | ||
optional: true | ||
- name: ARGOCD_APPLICATION_NAMESPACES | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: application.namespaces | ||
optional: true | ||
- name: ARGOCD_CONTROLLER_SHARDING_ALGORITHM | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.sharding.algorithm | ||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_KUBECTL_PARALLELISM_LIMIT | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.kubectl.parallelism.limit | ||
optional: true | ||
- name: ARGOCD_K8SCLIENT_RETRY_MAX | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.k8sclient.retry.max | ||
optional: true | ||
- name: ARGOCD_K8SCLIENT_RETRY_BASE_BACKOFF | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.k8sclient.retry.base.backoff | ||
optional: true | ||
- name: ARGOCD_APPLICATION_CONTROLLER_SERVER_SIDE_DIFF | ||
valueFrom: | ||
configMapKeyRef: | ||
name: argocd-cmd-params-cm | ||
key: controller.diff.server.side | ||
optional: true | ||
image: {{ include "argo-cd.image" (dict "root" . "image" .Values.controller.image ) }} | ||
imagePullPolicy: {{ default .Values.global.image.pullPolicy .Values.controller.image.pullPolicy }} | ||
name: argocd-application-controller | ||
ports: | ||
- containerPort: 8082 | ||
readinessProbe: | ||
httpGet: | ||
path: /healthz | ||
port: 8082 | ||
initialDelaySeconds: 5 | ||
periodSeconds: 10 | ||
securityContext: | ||
runAsNonRoot: true | ||
readOnlyRootFilesystem: true | ||
allowPrivilegeEscalation: false | ||
capabilities: | ||
drop: | ||
- ALL | ||
seccompProfile: | ||
type: RuntimeDefault | ||
workingDir: /home/argocd | ||
volumeMounts: | ||
{{- with .Values.controller.volumeMounts }} | ||
{{- toYaml . | nindent 8 }} | ||
{{- end }} | ||
- name: argocd-repo-server-tls | ||
mountPath: /app/config/controller/tls | ||
- name: argocd-home | ||
mountPath: /home/argocd | ||
- name: argocd-cmd-params-cm | ||
mountPath: /home/argocd/params | ||
serviceAccountName: argocd-application-controller | ||
affinity: | ||
podAntiAffinity: | ||
preferredDuringSchedulingIgnoredDuringExecution: | ||
- weight: 100 | ||
podAffinityTerm: | ||
labelSelector: | ||
matchLabels: | ||
app.kubernetes.io/name: argocd-application-controller | ||
topologyKey: kubernetes.io/hostname | ||
- weight: 5 | ||
podAffinityTerm: | ||
labelSelector: | ||
matchLabels: | ||
app.kubernetes.io/part-of: argocd | ||
topologyKey: kubernetes.io/hostname | ||
volumes: | ||
{{- with .Values.controller.volumes }} | ||
{{- toYaml . | nindent 6}} | ||
{{- end }} | ||
- emptyDir: {} | ||
name: argocd-home | ||
- name: argocd-repo-server-tls | ||
secret: | ||
secretName: argocd-repo-server-tls | ||
optional: true | ||
items: | ||
- key: tls.crt | ||
path: tls.crt | ||
- key: tls.key | ||
path: tls.key | ||
- key: ca.crt | ||
path: ca.crt | ||
- name: argocd-cmd-params-cm | ||
configMap: | ||
optional: true | ||
name: argocd-cmd-params-cm | ||
items: | ||
- key: controller.profile.enabled | ||
path: profiler.enabled | ||
nodeSelector: | ||
kubernetes.io/os: linux | ||
{{- end }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters