From 01f707cbe15f12b0ffda6ea9d37d8ac620256a7f Mon Sep 17 00:00:00 2001 From: wlthomson Date: Tue, 14 Apr 2026 19:10:34 +1200 Subject: [PATCH] Fix incomplete argo manifest --- .../instances/automated-installation.md | 61 +++++++++++-------- 1 file changed, 34 insertions(+), 27 deletions(-) diff --git a/src/pages/docs/argo-cd/instances/automated-installation.md b/src/pages/docs/argo-cd/instances/automated-installation.md index 602299e0e7..2d52a3c8b7 100644 --- a/src/pages/docs/argo-cd/instances/automated-installation.md +++ b/src/pages/docs/argo-cd/instances/automated-installation.md @@ -142,31 +142,38 @@ The application YAML required to install the helm chart is as follows (replacing 4. Apply the Argo CD application (or commit this manifest to your git-ops repository already synced by Argo CD) ```yaml - project: default - source: - repoURL: registry-1.docker.io/octopusdeploy - chart: octopus-argocd-gateway-chart - targetRevision: 1.23.0 - helm: - valuesObject: - registration: - octopus: - name: - serverApiUrl: https://your-instance.octopus.app - serverAccessTokenSecretName: octopus-server-access-token - serverAccessTokenSecretKey: OCTOPUS_SERVER_ACCESS_TOKEN - spaceId: Spaces-1 - gateway: - octopus: - serverGrpcUrl: grpc://your-instance.octopus.app:8443 - argocd: - serverGrpcUrl: grpc://argocd-server.argocd.svc.cluster.local - authenticationTokenSecretName: argocd-auth-token - authenticationTokenSecretKey: ARGOCD_AUTH_TOKEN - autoUpdate: - # should be disabled, otherwise the auto-update job will keep trying to update the instance, while argo cd syncs it back to original state - enabled: false - destination: - server: https://kubernetes.default.svc - namespace: octopus-argo-gateway-your-namespace + apiVersion: argoproj.io/v1alpha1 + kind: Application + metadata: + finalizers: + - resources-finalizer.argocd.argoproj.io + name: octopus-argo-gateway + spec: + project: default + source: + repoURL: registry-1.docker.io/octopusdeploy + chart: octopus-argocd-gateway-chart + targetRevision: 1.23.0 + helm: + valuesObject: + registration: + octopus: + name: + serverApiUrl: https://your-instance.octopus.app + serverAccessTokenSecretName: octopus-server-access-token + serverAccessTokenSecretKey: OCTOPUS_SERVER_ACCESS_TOKEN + spaceId: Spaces-1 + gateway: + octopus: + serverGrpcUrl: grpc://your-instance.octopus.app:8443 + argocd: + serverGrpcUrl: grpc://argocd-server.argocd.svc.cluster.local + authenticationTokenSecretName: argocd-auth-token + authenticationTokenSecretKey: ARGOCD_AUTH_TOKEN + autoUpdate: + # should be disabled, otherwise the auto-update job will keep trying to update the instance, while argo cd syncs it back to original state + enabled: false + destination: + server: https://kubernetes.default.svc + namespace: octopus-argo-gateway-your-namespace ```