Compare commits
4 commits
3e83ea437b
...
5ac5b5c3e7
Author | SHA1 | Date | |
---|---|---|---|
5ac5b5c3e7 | |||
1c97e131ee | |||
f943f7940c | |||
56889452b7 |
7 changed files with 67 additions and 4 deletions
|
@ -17,6 +17,9 @@ spec:
|
|||
namespace: flux-system
|
||||
interval: 30m
|
||||
values:
|
||||
image:
|
||||
repository: ghcr.io/jahanson/hccm
|
||||
tag: v1.19.1
|
||||
env:
|
||||
ROBOT_USER:
|
||||
valueFrom:
|
||||
|
@ -30,6 +33,12 @@ spec:
|
|||
name: hcloud
|
||||
key: robot-password
|
||||
optional: true
|
||||
HCLOUD_TOKEN:
|
||||
valueFrom:
|
||||
secretKeyRef:
|
||||
name: hcloud
|
||||
key: token
|
||||
optional: true
|
||||
metrics:
|
||||
enabled: true
|
||||
networking:
|
||||
|
|
|
@ -6,4 +6,3 @@ namespace: network
|
|||
resources:
|
||||
- ./hsn-dev/helmrelease.yaml
|
||||
- ./hsn-dev/externalsecret.yaml
|
||||
- ./dns_endpoint-crd.yaml
|
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
# yaml-language-server: $schema=https://json.schemastore.org/kustomization
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
namespace: network
|
||||
resources:
|
||||
- ./dns_endpoint-crd.yaml
|
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
# yaml-language-server: $schema=https://json.schemastore.org/kustomization
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
namespace: network
|
||||
resources:
|
||||
- ./helmrelease.yaml
|
||||
- ./externalsecret.yaml
|
|
@ -1,13 +1,53 @@
|
|||
---
|
||||
# yaml-language-server: $schema=https://raw.githubusercontent.com/fluxcd-community/flux2-schemas/main/kustomization-kustomize-v1.json
|
||||
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
||||
kind: Kustomization
|
||||
metadata:
|
||||
name: cluster-apps-externaldns
|
||||
name: cluster-apps-externaldns-hsn-dev
|
||||
namespace: flux-system
|
||||
labels:
|
||||
substitution.flux.home.arpa/enabled: "true"
|
||||
spec:
|
||||
interval: 10m
|
||||
path: "./kubernetes/apps/network/external-dns/app"
|
||||
path: "./kubernetes/apps/network/external-dns/app/hsn-dev"
|
||||
prune: true
|
||||
sourceRef:
|
||||
kind: GitRepository
|
||||
name: valinor
|
||||
wait: true
|
||||
dependsOn:
|
||||
- name: cluster-apps-external-secrets-stores
|
||||
---
|
||||
# yaml-language-server: $schema=https://raw.githubusercontent.com/fluxcd-community/flux2-schemas/main/kustomization-kustomize-v1.json
|
||||
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
||||
kind: Kustomization
|
||||
metadata:
|
||||
name: cluster-apps-externaldns-valinor-social
|
||||
namespace: flux-system
|
||||
labels:
|
||||
substitution.flux.home.arpa/enabled: "true"
|
||||
spec:
|
||||
interval: 10m
|
||||
path: "./kubernetes/apps/network/external-dns/app/valinor-social"
|
||||
prune: true
|
||||
sourceRef:
|
||||
kind: GitRepository
|
||||
name: valinor
|
||||
wait: true
|
||||
dependsOn:
|
||||
- name: cluster-apps-external-secrets-stores
|
||||
---
|
||||
# yaml-language-server: $schema=https://raw.githubusercontent.com/fluxcd-community/flux2-schemas/main/kustomization-kustomize-v1.json
|
||||
apiVersion: kustomize.toolkit.fluxcd.io/v1
|
||||
kind: Kustomization
|
||||
metadata:
|
||||
name: cluster-apps-externaldns-shared
|
||||
namespace: flux-system
|
||||
labels:
|
||||
substitution.flux.home.arpa/enabled: "true"
|
||||
spec:
|
||||
interval: 10m
|
||||
path: "./kubernetes/apps/network/external-dns/app/shared"
|
||||
prune: true
|
||||
sourceRef:
|
||||
kind: GitRepository
|
||||
|
|
|
@ -17,7 +17,7 @@ spec:
|
|||
interval: 30m
|
||||
values:
|
||||
controller:
|
||||
replicaCount: 3
|
||||
replicaCount: 2
|
||||
updateStrategy:
|
||||
type: RollingUpdate
|
||||
allowSnippetAnnotations: true
|
||||
|
|
Reference in a new issue