Compare commits
No commits in common. "737ef56e3bdad52f0c4bf0b28cddf56fcf5d59a0" and "86d84c9f52783079fd2e5abba5f8eca8fef8c1dc" have entirely different histories.
737ef56e3b
...
86d84c9f52
4
alpine-cluster/files/00_setdns.cfg
Normal file
4
alpine-cluster/files/00_setdns.cfg
Normal file
@ -0,0 +1,4 @@
|
||||
#cloud-config
|
||||
bootcmd:
|
||||
- nmcli con mod "cloud-init eth0" ipv4.dns 10.0.96.30
|
||||
- nmcli con up id "cloud-init eth0"
|
||||
22
applications/cert-manager/cert-manager-helmrelease.yaml
Normal file
22
applications/cert-manager/cert-manager-helmrelease.yaml
Normal file
@ -0,0 +1,22 @@
|
||||
---
|
||||
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
||||
kind: HelmRelease
|
||||
metadata:
|
||||
name: cert-manager
|
||||
namespace: flux-system
|
||||
spec:
|
||||
chart:
|
||||
spec:
|
||||
chart: cert-manager
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: jetstack
|
||||
namespace: flux-system
|
||||
version: ">=1.7.0"
|
||||
values:
|
||||
installCRDs: true
|
||||
install:
|
||||
createNamespace: true
|
||||
interval: 1m0s
|
||||
targetNamespace: cert-manager
|
||||
|
||||
10
applications/cert-manager/cert-manager-source.yaml
Normal file
10
applications/cert-manager/cert-manager-source.yaml
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
apiVersion: source.toolkit.fluxcd.io/v1beta1
|
||||
kind: HelmRepository
|
||||
metadata:
|
||||
name: jetstack
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 3m0s
|
||||
url: https://charts.jetstack.io
|
||||
|
||||
17
applications/default/secret-generator-helmrelease.yaml
Normal file
17
applications/default/secret-generator-helmrelease.yaml
Normal file
@ -0,0 +1,17 @@
|
||||
---
|
||||
apiVersion: helm.toolkit.fluxcd.io/v2beta1
|
||||
kind: HelmRelease
|
||||
metadata:
|
||||
name: secret-generator
|
||||
namespace: flux-system
|
||||
spec:
|
||||
chart:
|
||||
spec:
|
||||
chart: kubernetes-secret-generator
|
||||
sourceRef:
|
||||
kind: HelmRepository
|
||||
name: secret-generator-source
|
||||
namespace: flux-system
|
||||
version: 3.3.4
|
||||
interval: 3m0s
|
||||
targetNamespace: default
|
||||
10
applications/default/secret-generator-source.yaml
Normal file
10
applications/default/secret-generator-source.yaml
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
apiVersion: source.toolkit.fluxcd.io/v1beta1
|
||||
kind: HelmRepository
|
||||
metadata:
|
||||
name: secret-generator-source
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 8h0m0s
|
||||
url: https://helm.mittwald.de
|
||||
|
||||
5939
applications/flux-system/gotk-components.yaml
Normal file
5939
applications/flux-system/gotk-components.yaml
Normal file
File diff suppressed because it is too large
Load Diff
27
applications/flux-system/gotk-sync.yaml
Normal file
27
applications/flux-system/gotk-sync.yaml
Normal file
@ -0,0 +1,27 @@
|
||||
# This manifest was generated by flux. DO NOT EDIT.
|
||||
---
|
||||
apiVersion: source.toolkit.fluxcd.io/v1beta2
|
||||
kind: GitRepository
|
||||
metadata:
|
||||
name: flux-system
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 1m0s
|
||||
ref:
|
||||
branch: master
|
||||
secretRef:
|
||||
name: flux-system
|
||||
url: https://git.thejimnicholson.com/homelab/new-cluster.git
|
||||
---
|
||||
apiVersion: kustomize.toolkit.fluxcd.io/v1beta2
|
||||
kind: Kustomization
|
||||
metadata:
|
||||
name: flux-system
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 10m0s
|
||||
path: ./applications
|
||||
prune: true
|
||||
sourceRef:
|
||||
kind: GitRepository
|
||||
name: flux-system
|
||||
5
applications/flux-system/kustomization.yaml
Normal file
5
applications/flux-system/kustomization.yaml
Normal file
@ -0,0 +1,5 @@
|
||||
apiVersion: kustomize.config.k8s.io/v1beta1
|
||||
kind: Kustomization
|
||||
resources:
|
||||
- gotk-components.yaml
|
||||
- gotk-sync.yaml
|
||||
15
applications/gitea/gitea-kustomization.yaml
Normal file
15
applications/gitea/gitea-kustomization.yaml
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
apiVersion: kustomize.toolkit.fluxcd.io/v1beta2
|
||||
kind: Kustomization
|
||||
metadata:
|
||||
name: gitea
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 3m0s
|
||||
path: ./
|
||||
prune: true
|
||||
sourceRef:
|
||||
kind: GitRepository
|
||||
name: gitea
|
||||
targetNamespace: gitea
|
||||
|
||||
12
applications/gitea/gitea-source.yaml
Normal file
12
applications/gitea/gitea-source.yaml
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
apiVersion: source.toolkit.fluxcd.io/v1beta1
|
||||
kind: GitRepository
|
||||
metadata:
|
||||
name: gitea
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 3m0s
|
||||
ref:
|
||||
branch: master
|
||||
url: https://github.com/thejimnicholson/gitea
|
||||
|
||||
1
applications/heimdall/README.md
Normal file
1
applications/heimdall/README.md
Normal file
@ -0,0 +1 @@
|
||||
flux create secret git heimdall-k8s-auth --url=ssh://git@github.com/thejimnicholson/heimdall-k8s.git --private-key-file=/home/jim/.ssh/id_rsa
|
||||
15
applications/heimdall/heimdall-kustomization.yaml
Normal file
15
applications/heimdall/heimdall-kustomization.yaml
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
apiVersion: kustomize.toolkit.fluxcd.io/v1beta2
|
||||
kind: Kustomization
|
||||
metadata:
|
||||
name: heimdall
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 5m0s
|
||||
path: ./
|
||||
prune: true
|
||||
sourceRef:
|
||||
kind: GitRepository
|
||||
name: heimdall
|
||||
namespace: flux-system
|
||||
|
||||
14
applications/heimdall/heimdall-source.yaml
Normal file
14
applications/heimdall/heimdall-source.yaml
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
apiVersion: source.toolkit.fluxcd.io/v1beta1
|
||||
kind: GitRepository
|
||||
metadata:
|
||||
name: heimdall
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 1m0s
|
||||
ref:
|
||||
branch: master
|
||||
secretRef:
|
||||
name: heimdall-k8s-auth
|
||||
url: ssh://git@github.com/thejimnicholson/heimdall-k8s.git
|
||||
|
||||
15
applications/jenkins/jenkins-deployment.yaml
Normal file
15
applications/jenkins/jenkins-deployment.yaml
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
apiVersion: kustomize.toolkit.fluxcd.io/v1beta2
|
||||
kind: Kustomization
|
||||
metadata:
|
||||
name: jenkins
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 3m0s
|
||||
path: ./
|
||||
prune: true
|
||||
sourceRef:
|
||||
kind: GitRepository
|
||||
name: jenkins
|
||||
targetNamespace: jenkins
|
||||
|
||||
12
applications/jenkins/jenkins-source.yaml
Normal file
12
applications/jenkins/jenkins-source.yaml
Normal file
@ -0,0 +1,12 @@
|
||||
---
|
||||
apiVersion: source.toolkit.fluxcd.io/v1beta1
|
||||
kind: GitRepository
|
||||
metadata:
|
||||
name: jenkins
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 3m0s
|
||||
ref:
|
||||
branch: master
|
||||
url: https://github.com/thejimnicholson/jenkins.git
|
||||
|
||||
14
applications/nexus-repo/nexus-repo-kustomization.yaml
Normal file
14
applications/nexus-repo/nexus-repo-kustomization.yaml
Normal file
@ -0,0 +1,14 @@
|
||||
---
|
||||
apiVersion: kustomize.toolkit.fluxcd.io/v1beta2
|
||||
kind: Kustomization
|
||||
metadata:
|
||||
name: nexus
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 15m0s
|
||||
path: ./
|
||||
prune: true
|
||||
sourceRef:
|
||||
kind: GitRepository
|
||||
name: nexus-repo-source
|
||||
targetNamespace: nexus
|
||||
11
applications/nexus-repo/nexus-repo-source.yaml
Normal file
11
applications/nexus-repo/nexus-repo-source.yaml
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
apiVersion: source.toolkit.fluxcd.io/v1beta1
|
||||
kind: GitRepository
|
||||
metadata:
|
||||
name: nexus-repo-source
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 3m0s
|
||||
ref:
|
||||
branch: master
|
||||
url: https://github.com/thejimnicholson/nexus-k8s.git
|
||||
15
applications/pdns-admin/pdns-admin-kustomization.yaml
Normal file
15
applications/pdns-admin/pdns-admin-kustomization.yaml
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
apiVersion: kustomize.toolkit.fluxcd.io/v1beta2
|
||||
kind: Kustomization
|
||||
metadata:
|
||||
name: pdns-admin
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 15m0s
|
||||
path: ./
|
||||
prune: true
|
||||
sourceRef:
|
||||
kind: GitRepository
|
||||
name: pdns-admin-source
|
||||
targetNamespace: pdns
|
||||
|
||||
11
applications/pdns-admin/pdns-admin-source.yaml
Normal file
11
applications/pdns-admin/pdns-admin-source.yaml
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
apiVersion: source.toolkit.fluxcd.io/v1beta1
|
||||
kind: GitRepository
|
||||
metadata:
|
||||
name: pdns-admin-source
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 3m0s
|
||||
ref:
|
||||
branch: master
|
||||
url: https://github.com/thejimnicholson/pdns-admin.git
|
||||
15
applications/system-upgrade-controller/deployment.yaml
Normal file
15
applications/system-upgrade-controller/deployment.yaml
Normal file
@ -0,0 +1,15 @@
|
||||
---
|
||||
apiVersion: kustomize.toolkit.fluxcd.io/v1beta2
|
||||
kind: Kustomization
|
||||
metadata:
|
||||
name: system-upgrade-controller
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 5m0s
|
||||
path: ./
|
||||
prune: true
|
||||
sourceRef:
|
||||
kind: GitRepository
|
||||
name: system-upgrade-controller
|
||||
targetNamespace: system-upgrade
|
||||
|
||||
11
applications/system-upgrade-controller/source.yaml
Normal file
11
applications/system-upgrade-controller/source.yaml
Normal file
@ -0,0 +1,11 @@
|
||||
---
|
||||
apiVersion: source.toolkit.fluxcd.io/v1beta1
|
||||
kind: GitRepository
|
||||
metadata:
|
||||
name: system-upgrade-controller
|
||||
namespace: flux-system
|
||||
spec:
|
||||
interval: 3m0s
|
||||
ref:
|
||||
branch: master
|
||||
url: https://github.com/rancher/system-upgrade-controller.git
|
||||
@ -1 +1 @@
|
||||
Subproject commit b2b31ec58cc28729b891ad3d737b89c9488aac84
|
||||
Subproject commit 14a802885e3fe145a997c4590b0f8e1ffb7a6811
|
||||
Loading…
Reference in New Issue
Block a user