Move Kubernetes controller manifests from kube-controller/ subdirectory to the apps/pangolin/ root directory so Argo CD will sync them. Files renamed with pangolin-controller- prefix: - configmap.yaml -> pangolin-controller-config.yaml - deployment.yaml -> pangolin-controller-deployment.yaml - rbac.yaml -> pangolin-controller-rbac.yaml - service.yaml -> pangolin-controller-service.yaml Argo CD was not recursing into the subdirectory, so controller resources were not being synced. Moving to root directory resolves this. Co-Authored-By: Paperclip <noreply@paperclip.ing>
18 lines
342 B
YAML
18 lines
342 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: pangolin-controller-metrics
|
|
namespace: pangolin
|
|
labels:
|
|
app: pangolin-controller
|
|
component: controller
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- name: metrics
|
|
port: 8080
|
|
targetPort: 8080
|
|
protocol: TCP
|
|
selector:
|
|
app: pangolin-controller
|
|
component: controller
|