82e05429f1
gitea-gke and vault-gke were pointing at the dead k3s-internal Gitea (http://gitea.git.svc.cluster.local:3000). gke-apps already uses https://git.neuralplatform.ai and syncs successfully — update child apps to match. Once gke-apps picks this up, gitea-gke will sync the pending GITEA__actions__ENABLED=true commit.
34 lines
1.1 KiB
YAML
34 lines
1.1 KiB
YAML
apiVersion: argoproj.io/v1alpha1
|
|
kind: Application
|
|
metadata:
|
|
name: vault-gke
|
|
namespace: argocd
|
|
annotations:
|
|
# Syncs plain k8s manifests for Vault to the GKE cluster.
|
|
# The Vault Helm release itself is in vault-helm-gke.yaml.
|
|
#
|
|
# Apply to Legion Argo CD after registering the GKE cluster:
|
|
# 1. gcloud container clusters get-credentials neuron-platform \
|
|
# --region us-central1 --project neuron-785695
|
|
# 2. argocd cluster add <context-name> --name gke-neuron-platform
|
|
# 3. Update GKE_CLUSTER_ENDPOINT in all argocd-apps/*.yaml:
|
|
# terraform -chdir=servers/gcp output -raw gke_cluster_endpoint
|
|
spec:
|
|
project: default
|
|
source:
|
|
repoURL: https://git.neuralplatform.ai/will/infrastructure.git
|
|
targetRevision: main
|
|
path: servers/gcp/k8s/vault
|
|
destination:
|
|
# Replace GKE_CLUSTER_ENDPOINT after `terraform apply`:
|
|
# terraform -chdir=servers/gcp output -raw gke_cluster_endpoint
|
|
server: https://34.63.89.52
|
|
namespace: vault
|
|
syncPolicy:
|
|
automated:
|
|
prune: true
|
|
selfHeal: true
|
|
syncOptions:
|
|
- CreateNamespace=true
|
|
- ServerSideApply=true
|