├── .editorconfig ├── .gitignore ├── .terraform.lock.hcl ├── LICENSE ├── README.md ├── Taskfile.dist.yml ├── cmd ├── cp-to-home │ └── main.go ├── kustomize │ └── main.go ├── mac-to-ip │ ├── main.go │ └── scan.go └── nodes-ready │ └── main.go ├── go.mod ├── go.sum ├── mac-to-ip.tf ├── manifests-bootstrap.tf ├── manifests-inline.tf ├── manifests ├── app-root.yaml ├── apps │ ├── argocd.yaml │ ├── cilium.yaml │ ├── kustomization.yaml │ ├── metrics-server.yaml │ └── talos-ccm.yaml ├── argocd │ ├── argocd.yaml │ ├── kustomization.yaml │ ├── kustomize-enable-helm.patch.yaml │ ├── kustomized-helm.yaml │ └── namespace.yaml ├── cilium │ ├── base │ │ ├── charts │ │ │ └── cilium │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── README.md.gotmpl │ │ │ │ ├── files │ │ │ │ ├── agent │ │ │ │ │ └── poststart-eni.bash │ │ │ │ ├── cilium-agent │ │ │ │ │ └── dashboards │ │ │ │ │ │ └── cilium-dashboard.json │ │ │ │ ├── cilium-envoy │ │ │ │ │ └── configmap │ │ │ │ │ │ └── bootstrap-config.json │ │ │ │ ├── cilium-operator │ │ │ │ │ └── dashboards │ │ │ │ │ │ └── cilium-operator-dashboard.json │ │ │ │ ├── hubble │ │ │ │ │ └── dashboards │ │ │ │ │ │ ├── hubble-dashboard.json │ │ │ │ │ │ ├── hubble-dns-namespace.json │ │ │ │ │ │ ├── hubble-l7-http-metrics-by-workload.json │ │ │ │ │ │ └── hubble-network-overview-namespace.json │ │ │ │ ├── nodeinit │ │ │ │ │ ├── prestop.bash │ │ │ │ │ └── startup.bash │ │ │ │ └── spire │ │ │ │ │ ├── init.bash │ │ │ │ │ └── wait-for-spire.bash │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── cilium-agent │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ ├── dashboards-configmap.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── cilium-ca-bundle-configmap.yaml │ │ │ │ ├── cilium-ca-secret.yaml │ │ │ │ ├── cilium-configmap.yaml │ │ │ │ ├── cilium-envoy │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── cilium-flowlog-configmap.yaml │ │ │ │ ├── cilium-gateway-api-class.yaml │ │ │ │ ├── cilium-ingress-class.yaml │ │ │ │ ├── cilium-ingress-service.yaml │ │ │ │ ├── cilium-nodeinit │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ ├── cilium-operator │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── dashboards-configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── secret.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── cilium-preflight │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ ├── cilium-resource-quota.yaml │ │ │ │ ├── cilium-secrets-namespace.yaml │ │ │ │ ├── clustermesh-apiserver │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── metrics-service.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── tls-certmanager │ │ │ │ │ │ ├── admin-secret.yaml │ │ │ │ │ │ ├── client-secret.yaml │ │ │ │ │ │ ├── remote-secret.yaml │ │ │ │ │ │ └── server-secret.yaml │ │ │ │ │ ├── tls-cronjob │ │ │ │ │ │ ├── _job-spec.tpl │ │ │ │ │ │ ├── cronjob.yaml │ │ │ │ │ │ ├── job.yaml │ │ │ │ │ │ ├── role.yaml │ │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ ├── tls-helm │ │ │ │ │ │ ├── admin-secret.yaml │ │ │ │ │ │ ├── client-secret.yaml │ │ │ │ │ │ ├── remote-secret.yaml │ │ │ │ │ │ └── server-secret.yaml │ │ │ │ │ ├── tls-provided │ │ │ │ │ │ ├── admin-secret.yaml │ │ │ │ │ │ ├── client-secret.yaml │ │ │ │ │ │ ├── remote-secret.yaml │ │ │ │ │ │ └── server-secret.yaml │ │ │ │ │ └── users-configmap.yaml │ │ │ │ ├── clustermesh-config │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clustermesh-secret.yaml │ │ │ │ │ └── kvstoremesh-secret.yaml │ │ │ │ ├── etcd-operator │ │ │ │ │ ├── cilium-etcd-operator-clusterrole.yaml │ │ │ │ │ ├── cilium-etcd-operator-clusterrolebinding.yaml │ │ │ │ │ ├── cilium-etcd-operator-deployment.yaml │ │ │ │ │ ├── cilium-etcd-operator-serviceaccount.yaml │ │ │ │ │ ├── etcd-operator-clusterrole.yaml │ │ │ │ │ ├── etcd-operator-clusterrolebinding.yaml │ │ │ │ │ ├── etcd-operator-serviceaccount.yaml │ │ │ │ │ └── poddisruptionbudget.yaml │ │ │ │ ├── hubble-relay │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── metrics-service.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── hubble-ui │ │ │ │ │ ├── _nginx.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ ├── hubble │ │ │ │ │ ├── dashboards-configmap.yaml │ │ │ │ │ ├── metrics-service.yaml │ │ │ │ │ ├── peer-service.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── tls-certmanager │ │ │ │ │ │ ├── relay-client-secret.yaml │ │ │ │ │ │ ├── relay-server-secret.yaml │ │ │ │ │ │ ├── server-secret.yaml │ │ │ │ │ │ └── ui-client-certs.yaml │ │ │ │ │ ├── tls-cronjob │ │ │ │ │ │ ├── _job-spec.tpl │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── cronjob.yaml │ │ │ │ │ │ ├── job.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ ├── tls-helm │ │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ │ ├── relay-client-secret.yaml │ │ │ │ │ │ ├── relay-server-secret.yaml │ │ │ │ │ │ ├── server-secret.yaml │ │ │ │ │ │ └── ui-client-certs.yaml │ │ │ │ │ └── tls-provided │ │ │ │ │ │ ├── relay-client-secret.yaml │ │ │ │ │ │ ├── relay-server-secret.yaml │ │ │ │ │ │ ├── server-secret.yaml │ │ │ │ │ │ └── ui-client-certs.yaml │ │ │ │ ├── spire │ │ │ │ │ ├── agent │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── daemonset.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ ├── bundle-configmap.yaml │ │ │ │ │ ├── namespace.yaml │ │ │ │ │ └── server │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ │ ├── role.yaml │ │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ │ ├── service.yaml │ │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ │ └── statefulset.yaml │ │ │ │ └── validate.yaml │ │ │ │ ├── values.yaml │ │ │ │ └── values.yaml.tmpl │ │ ├── kustomization.yaml │ │ ├── kustomization.yaml.tpl │ │ ├── namespace.yaml │ │ └── values.yaml │ ├── bgp-peering-policy.yaml.tpl │ ├── high-priority-scheduling.yaml │ └── kustomization.yaml ├── kustomization.yaml ├── metrics-server │ ├── kustomization.yaml │ └── metrics-server.yaml └── talos-ccm │ ├── kustomization.yaml │ └── talos-ccm.yaml ├── nodes-ready.tf ├── output └── .gitignore ├── providers.tf ├── talos-boot.tf ├── talos-config.tf ├── talos-config ├── control-plane.yaml.tpl ├── default.yaml.tpl ├── node-labels.yaml.tpl ├── worker-node-disk.yaml.tpl └── worker-node.yaml.tpl ├── talos-image └── bare-metal.yaml ├── talos-output.tf ├── vars-cluster.tf ├── vars-harbor.tf ├── vars-iso.tf ├── vars-manifests.tf ├── vars-network.tf ├── vars-proxmox.tf ├── vars-vms.tf ├── versions.tf ├── vm-control-plane.tf └── vm-worker-node.tf /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/.gitignore -------------------------------------------------------------------------------- /.terraform.lock.hcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/.terraform.lock.hcl -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/README.md -------------------------------------------------------------------------------- /Taskfile.dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/Taskfile.dist.yml -------------------------------------------------------------------------------- /cmd/cp-to-home/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/cmd/cp-to-home/main.go -------------------------------------------------------------------------------- /cmd/kustomize/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/cmd/kustomize/main.go -------------------------------------------------------------------------------- /cmd/mac-to-ip/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/cmd/mac-to-ip/main.go -------------------------------------------------------------------------------- /cmd/mac-to-ip/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/cmd/mac-to-ip/scan.go -------------------------------------------------------------------------------- /cmd/nodes-ready/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/cmd/nodes-ready/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/go.sum -------------------------------------------------------------------------------- /mac-to-ip.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/mac-to-ip.tf -------------------------------------------------------------------------------- /manifests-bootstrap.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests-bootstrap.tf -------------------------------------------------------------------------------- /manifests-inline.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests-inline.tf -------------------------------------------------------------------------------- /manifests/app-root.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/app-root.yaml -------------------------------------------------------------------------------- /manifests/apps/argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/apps/argocd.yaml -------------------------------------------------------------------------------- /manifests/apps/cilium.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/apps/cilium.yaml -------------------------------------------------------------------------------- /manifests/apps/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/apps/kustomization.yaml -------------------------------------------------------------------------------- /manifests/apps/metrics-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/apps/metrics-server.yaml -------------------------------------------------------------------------------- /manifests/apps/talos-ccm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/apps/talos-ccm.yaml -------------------------------------------------------------------------------- /manifests/argocd/argocd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/argocd/argocd.yaml -------------------------------------------------------------------------------- /manifests/argocd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/argocd/kustomization.yaml -------------------------------------------------------------------------------- /manifests/argocd/kustomize-enable-helm.patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/argocd/kustomize-enable-helm.patch.yaml -------------------------------------------------------------------------------- /manifests/argocd/kustomized-helm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/argocd/kustomized-helm.yaml -------------------------------------------------------------------------------- /manifests/argocd/namespace.yaml: -------------------------------------------------------------------------------- 1 | --- 2 | apiVersion: v1 3 | kind: Namespace 4 | metadata: 5 | name: argocd 6 | -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/.helmignore -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/Chart.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/LICENSE -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/README.md -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/README.md.gotmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/README.md.gotmpl -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/files/agent/poststart-eni.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/files/agent/poststart-eni.bash -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/files/cilium-agent/dashboards/cilium-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/files/cilium-agent/dashboards/cilium-dashboard.json -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/files/cilium-envoy/configmap/bootstrap-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/files/cilium-envoy/configmap/bootstrap-config.json -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/files/cilium-operator/dashboards/cilium-operator-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/files/cilium-operator/dashboards/cilium-operator-dashboard.json -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/files/hubble/dashboards/hubble-dashboard.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/files/hubble/dashboards/hubble-dashboard.json -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/files/hubble/dashboards/hubble-dns-namespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/files/hubble/dashboards/hubble-dns-namespace.json -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/files/hubble/dashboards/hubble-l7-http-metrics-by-workload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/files/hubble/dashboards/hubble-l7-http-metrics-by-workload.json -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/files/hubble/dashboards/hubble-network-overview-namespace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/files/hubble/dashboards/hubble-network-overview-namespace.json -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/files/nodeinit/prestop.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/files/nodeinit/prestop.bash -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/files/nodeinit/startup.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/files/nodeinit/startup.bash -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/files/spire/init.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/files/spire/init.bash -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/files/spire/wait-for-spire.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/files/spire/wait-for-spire.bash -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/NOTES.txt -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/_helpers.tpl -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-agent/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-agent/clusterrole.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-agent/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-agent/clusterrolebinding.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-agent/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-agent/daemonset.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-agent/dashboards-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-agent/dashboards-configmap.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-agent/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-agent/role.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-agent/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-agent/rolebinding.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-agent/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-agent/service.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-agent/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-agent/serviceaccount.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-agent/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-agent/servicemonitor.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-ca-bundle-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-ca-bundle-configmap.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-ca-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-ca-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-configmap.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-envoy/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-envoy/configmap.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-envoy/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-envoy/daemonset.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-envoy/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-envoy/service.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-envoy/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-envoy/serviceaccount.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-envoy/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-envoy/servicemonitor.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-flowlog-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-flowlog-configmap.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-gateway-api-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-gateway-api-class.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-ingress-class.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-ingress-class.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-ingress-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-ingress-service.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-nodeinit/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-nodeinit/daemonset.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-nodeinit/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-nodeinit/serviceaccount.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-operator/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-operator/_helpers.tpl -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-operator/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-operator/clusterrole.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-operator/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-operator/clusterrolebinding.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-operator/dashboards-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-operator/dashboards-configmap.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-operator/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-operator/deployment.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-operator/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-operator/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-operator/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-operator/role.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-operator/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-operator/rolebinding.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-operator/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-operator/secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-operator/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-operator/service.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-operator/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-operator/serviceaccount.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-operator/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-operator/servicemonitor.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-preflight/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-preflight/clusterrole.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-preflight/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-preflight/clusterrolebinding.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-preflight/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-preflight/daemonset.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-preflight/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-preflight/deployment.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-preflight/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-preflight/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-preflight/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-preflight/serviceaccount.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-resource-quota.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-resource-quota.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/cilium-secrets-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/cilium-secrets-namespace.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/_helpers.tpl -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/clusterrole.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/clusterrolebinding.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/deployment.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/metrics-service.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/service.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/serviceaccount.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/servicemonitor.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/admin-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/admin-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/client-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/client-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/remote-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/remote-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/server-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-certmanager/server-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/_job-spec.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/_job-spec.tpl -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/cronjob.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/job.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/role.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/rolebinding.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-cronjob/serviceaccount.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-helm/admin-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-helm/admin-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-helm/client-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-helm/client-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-helm/remote-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-helm/remote-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-helm/server-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-helm/server-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-provided/admin-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-provided/admin-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-provided/client-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-provided/client-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-provided/remote-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-provided/remote-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-provided/server-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/tls-provided/server-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/users-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-apiserver/users-configmap.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-config/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-config/_helpers.tpl -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-config/clustermesh-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-config/clustermesh-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/clustermesh-config/kvstoremesh-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/clustermesh-config/kvstoremesh-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/etcd-operator/cilium-etcd-operator-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/etcd-operator/cilium-etcd-operator-clusterrole.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/etcd-operator/cilium-etcd-operator-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/etcd-operator/cilium-etcd-operator-clusterrolebinding.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/etcd-operator/cilium-etcd-operator-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/etcd-operator/cilium-etcd-operator-deployment.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/etcd-operator/cilium-etcd-operator-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/etcd-operator/cilium-etcd-operator-serviceaccount.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/etcd-operator/etcd-operator-clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/etcd-operator/etcd-operator-clusterrole.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/etcd-operator/etcd-operator-clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/etcd-operator/etcd-operator-clusterrolebinding.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/etcd-operator/etcd-operator-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/etcd-operator/etcd-operator-serviceaccount.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/etcd-operator/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/etcd-operator/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble-relay/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble-relay/configmap.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble-relay/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble-relay/deployment.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble-relay/metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble-relay/metrics-service.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble-relay/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble-relay/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble-relay/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble-relay/service.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble-relay/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble-relay/serviceaccount.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble-relay/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble-relay/servicemonitor.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble-ui/_nginx.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble-ui/_nginx.tpl -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble-ui/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble-ui/clusterrole.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble-ui/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble-ui/clusterrolebinding.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble-ui/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble-ui/configmap.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble-ui/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble-ui/deployment.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble-ui/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble-ui/ingress.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble-ui/poddisruptionbudget.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble-ui/poddisruptionbudget.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble-ui/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble-ui/service.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble-ui/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble-ui/serviceaccount.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/dashboards-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/dashboards-configmap.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/metrics-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/metrics-service.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/peer-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/peer-service.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/servicemonitor.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-certmanager/relay-client-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-certmanager/relay-client-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-certmanager/relay-server-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-certmanager/relay-server-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-certmanager/server-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-certmanager/server-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-certmanager/ui-client-certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-certmanager/ui-client-certs.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-cronjob/_job-spec.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-cronjob/_job-spec.tpl -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-cronjob/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-cronjob/clusterrole.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-cronjob/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-cronjob/clusterrolebinding.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-cronjob/cronjob.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-cronjob/cronjob.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-cronjob/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-cronjob/job.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-cronjob/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-cronjob/serviceaccount.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-helm/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-helm/_helpers.tpl -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-helm/relay-client-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-helm/relay-client-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-helm/relay-server-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-helm/relay-server-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-helm/server-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-helm/server-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-helm/ui-client-certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-helm/ui-client-certs.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-provided/relay-client-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-provided/relay-client-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-provided/relay-server-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-provided/relay-server-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-provided/server-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-provided/server-secret.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/hubble/tls-provided/ui-client-certs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/hubble/tls-provided/ui-client-certs.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/spire/agent/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/spire/agent/clusterrole.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/spire/agent/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/spire/agent/clusterrolebinding.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/spire/agent/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/spire/agent/configmap.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/spire/agent/daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/spire/agent/daemonset.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/spire/agent/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/spire/agent/serviceaccount.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/spire/bundle-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/spire/bundle-configmap.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/spire/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/spire/namespace.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/spire/server/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/spire/server/clusterrole.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/spire/server/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/spire/server/clusterrolebinding.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/spire/server/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/spire/server/configmap.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/spire/server/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/spire/server/role.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/spire/server/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/spire/server/rolebinding.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/spire/server/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/spire/server/service.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/spire/server/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/spire/server/serviceaccount.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/spire/server/statefulset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/spire/server/statefulset.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/templates/validate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/templates/validate.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/values.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/charts/cilium/values.yaml.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/charts/cilium/values.yaml.tmpl -------------------------------------------------------------------------------- /manifests/cilium/base/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/kustomization.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/kustomization.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/kustomization.yaml.tpl -------------------------------------------------------------------------------- /manifests/cilium/base/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/namespace.yaml -------------------------------------------------------------------------------- /manifests/cilium/base/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/base/values.yaml -------------------------------------------------------------------------------- /manifests/cilium/bgp-peering-policy.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/bgp-peering-policy.yaml.tpl -------------------------------------------------------------------------------- /manifests/cilium/high-priority-scheduling.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/high-priority-scheduling.yaml -------------------------------------------------------------------------------- /manifests/cilium/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/cilium/kustomization.yaml -------------------------------------------------------------------------------- /manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/kustomization.yaml -------------------------------------------------------------------------------- /manifests/metrics-server/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - metrics-server.yaml 3 | -------------------------------------------------------------------------------- /manifests/metrics-server/metrics-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/metrics-server/metrics-server.yaml -------------------------------------------------------------------------------- /manifests/talos-ccm/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - talos-ccm.yaml 3 | -------------------------------------------------------------------------------- /manifests/talos-ccm/talos-ccm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/manifests/talos-ccm/talos-ccm.yaml -------------------------------------------------------------------------------- /nodes-ready.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/nodes-ready.tf -------------------------------------------------------------------------------- /output/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/output/.gitignore -------------------------------------------------------------------------------- /providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/providers.tf -------------------------------------------------------------------------------- /talos-boot.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/talos-boot.tf -------------------------------------------------------------------------------- /talos-config.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/talos-config.tf -------------------------------------------------------------------------------- /talos-config/control-plane.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/talos-config/control-plane.yaml.tpl -------------------------------------------------------------------------------- /talos-config/default.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/talos-config/default.yaml.tpl -------------------------------------------------------------------------------- /talos-config/node-labels.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/talos-config/node-labels.yaml.tpl -------------------------------------------------------------------------------- /talos-config/worker-node-disk.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/talos-config/worker-node-disk.yaml.tpl -------------------------------------------------------------------------------- /talos-config/worker-node.yaml.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/talos-config/worker-node.yaml.tpl -------------------------------------------------------------------------------- /talos-image/bare-metal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/talos-image/bare-metal.yaml -------------------------------------------------------------------------------- /talos-output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/talos-output.tf -------------------------------------------------------------------------------- /vars-cluster.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/vars-cluster.tf -------------------------------------------------------------------------------- /vars-harbor.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/vars-harbor.tf -------------------------------------------------------------------------------- /vars-iso.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/vars-iso.tf -------------------------------------------------------------------------------- /vars-manifests.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/vars-manifests.tf -------------------------------------------------------------------------------- /vars-network.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/vars-network.tf -------------------------------------------------------------------------------- /vars-proxmox.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/vars-proxmox.tf -------------------------------------------------------------------------------- /vars-vms.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/vars-vms.tf -------------------------------------------------------------------------------- /versions.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/versions.tf -------------------------------------------------------------------------------- /vm-control-plane.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/vm-control-plane.tf -------------------------------------------------------------------------------- /vm-worker-node.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roeldev/iac-talos-cluster/HEAD/vm-worker-node.tf --------------------------------------------------------------------------------