Giter VIP home page Giter VIP logo

home-lab's Introduction

Template for deploying k3s backed by Flux

Highly opinionated template for deploying a single k3s cluster with Ansible and Terraform backed by Flux and SOPS.

The purpose here is to showcase how you can deploy an entire Kubernetes cluster and show it off to the world using the GitOps tool Flux. When completed, your Git repository will be driving the state of your Kubernetes cluster. In addition with the help of the Ansible, Terraform and Flux SOPS integrations you'll be able to commit Age encrypted secrets to your public repo.

Overview

๐Ÿ‘‹ Introduction

The following components will be installed in your k3s cluster by default. Most are only included to get a minimum viable cluster up and running.

  • flux - GitOps operator for managing Kubernetes clusters from a Git repository
  • kube-vip - Load balancer for the Kubernetes control plane nodes
  • metallb - Load balancer for Kubernetes services
  • cert-manager - Operator to request SSL certificates and store them as Kubernetes resources
  • calico - Container networking interface for inter pod and service networking
  • external-dns - Operator to publish DNS records to Cloudflare (and other providers) based on Kubernetes ingresses
  • k8s_gateway - DNS resolver that provides local DNS to your Kubernetes ingresses
  • ingress-nginx - Kubernetes ingress controller used for a HTTP reverse proxy of Kubernetes ingresses
  • local-path-provisioner - provision persistent local storage with Kubernetes

Additional applications include hajimari, error-pages, echo-server, system-upgrade-controller, reloader, and kured

For provisioning the following tools will be used:

  • Ansible - Sets up the operating system and installs k3s
  • Terraform - Provisions an existing Cloudflare domain and certain DNS records to be used with your Kubernetes cluster

๐Ÿ“ Prerequisites

Note: This template has not been tested on cloud providers like AWS EC2, Hetzner, Scaleway etc... Those cloud offerings probably have a better way of provsioning a Kubernetes cluster and it's advisable to use those instead of the Ansible playbooks included here. This repository can still be tweaked for the GitOps/Flux portion if there's a cluster working in one those environments.

First and foremost some experience in debugging/troubleshooting problems and a positive attitude is required ;)

๐Ÿ“š Reading material

๐Ÿ’ป Systems

  • One or more nodes with a fresh install of Fedora Server 36 or Ubuntu 22.04 Server.
    • These nodes can be ARM64/AMD64 bare metal or VMs.
    • An odd number of control plane nodes, greater than or equal to 3 is required if deploying more than one control plane node.
  • A Cloudflare account with a domain, this will be managed by Terraform and external-dns. You can register new domains directly thru Cloudflare.

๐Ÿ“ It is recommended to have 3 master nodes for a highly available control plane.

๐Ÿ“‚ Repository structure

The Git repository contains the following directories under kubernetes and are ordered below by how Flux will apply them.

๐Ÿ“ kubernetes      # Kubernetes cluster defined as code
โ”œโ”€๐Ÿ“ bootstrap     # Flux installation
โ”œโ”€๐Ÿ“ flux          # Main Flux configuration of repository
โ””โ”€๐Ÿ“ apps          # Apps deployed into the cluster grouped by namespace

๐Ÿš€ Lets go

Very first step will be to create a new public repository by clicking the big green Use this template button on this page.

Clone your new repo to you local workstation and cd into it.

๐Ÿ“ All of the below commands are run on your local workstation, not on any of your cluster nodes.

๐Ÿ”ง Workstation Tools

๐Ÿ“ Install the most recent version of the CLI tools below. If you are having trouble with future steps, it is very likely you don't have the most recent version of these CLI tools, !especially sops AND yq!.

  1. Install the following CLI tools on your workstation, if you are NOT using Homebrew on MacOS or Linux ignore steps 4 and 5.

  2. This guide heavily relies on go-task as a framework for setting things up. It is advised to learn and understand the commands it is running under the hood.

  3. Install Python 3 and pip3 using your Linux OS package manager, or Homebrew if using MacOS.

    • Ensure pip3 is working on your command line by running pip3 --version
  4. [Homebrew] Install go-task

    brew install go-task/tap/go-task
  5. [Homebrew] Install workstation dependencies

    task init

โš ๏ธ pre-commit

It is advisable to install pre-commit and the pre-commit hooks that come with this repository.

  1. Enable Pre-Commit

    task precommit:init
  2. Update Pre-Commit, though it will occasionally make mistakes, so verify its results.

    task precommit:update

๐Ÿ” Setting up Age

๐Ÿ“ Here we will create a Age Private and Public key. Using SOPS with Age allows us to encrypt secrets and use them in Ansible, Terraform and Flux.

  1. Create a Age Private / Public Key

    age-keygen -o age.agekey
  2. Set up the directory for the Age key and move the Age file to it

    mkdir -p ~/.config/sops/age
    mv age.agekey ~/.config/sops/age/keys.txt
  3. Export the SOPS_AGE_KEY_FILE variable in your bashrc, zshrc or config.fish and source it, e.g.

    export SOPS_AGE_KEY_FILE=~/.config/sops/age/keys.txt
    source ~/.bashrc
  4. Fill out the Age public key in the appropriate variable in configuration section below, note the public key should start with age...

โ˜๏ธ Global Cloudflare API Key

In order to use Terraform and cert-manager with the Cloudflare DNS challenge you will need to create a API key.

  1. Head over to Cloudflare and create a API key by going here.

  2. Under the API Keys section, create a global API Key.

  3. Use the API Key in the appropriate variable in configuration section below.

๐Ÿ“ You may wish to update this later on to a Cloudflare API Token which can be scoped to certain resources. I do not recommend using a Cloudflare API Key, however for the purposes of this template it is easier getting started without having to define which scopes and resources are needed. For more information see the Cloudflare docs on API Keys and Tokens.

๐Ÿ“„ Configuration

๐Ÿ“ The .config.env file contains necessary configuration that is needed by Ansible, Terraform and Flux.

  1. Copy the .config.sample.env to .config.env and start filling out all the environment variables.

    All are required unless otherwise noted in the comments.

    cp .config.sample.env .config.env
  2. Once that is done, verify the configuration is correct by running:

    task verify
  3. If you do not encounter any errors run start having the script wire up the templated files and place them where they need to be.

    task configure

โšก Preparing Fedora or Ubuntu Server with Ansible

๐Ÿ“ Here we will be running a Ansible Playbook to prepare Fedora or Ubuntu Server for running a Kubernetes cluster.

๐Ÿ“ Nodes are not security hardened by default, you can do this with dev-sec/ansible-collection-hardening or similar if supported. This is an advanced configuration and generally not recommended unless you want to DevSecOps your cluster and nodes.

  1. Ensure you are able to SSH into your nodes from your workstation using a private SSH key without a passphrase. This is how Ansible is able to connect to your remote nodes.

    How to configure SSH key-based authentication

  2. Install the Ansible deps

    task ansible:init
  3. Verify Ansible can view your config

    task ansible:list
  4. Verify Ansible can ping your nodes

    task ansible:ping
  5. Run the Fedora/Ubuntu Server Ansible prepare playbook

    task ansible:prepare
  6. Reboot the nodes (if not done in step 5)

    task ansible:force-reboot

โ›ต Installing k3s with Ansible

๐Ÿ“ Here we will be running a Ansible Playbook to install k3s with this wonderful k3s Ansible galaxy role. After completion, Ansible will drop a kubeconfig in ./kubeconfig for use with interacting with your cluster with kubectl.

โ˜ข๏ธ If you run into problems, you can run task ansible:nuke to destroy the k3s cluster and start over.

  1. Verify Ansible can view your config

    task ansible:list
  2. Verify Ansible can ping your nodes

    task ansible:ping
  3. Install k3s with Ansible

    task ansible:install
  4. Verify the nodes are online

    task cluster:nodes
    # NAME           STATUS   ROLES                       AGE     VERSION
    # k8s-0          Ready    control-plane,master      4d20h   v1.21.5+k3s1
    # k8s-1          Ready    worker                    4d20h   v1.21.5+k3s1

โ˜๏ธ Configuring Cloudflare DNS with Terraform

๐Ÿ“ Review the Terraform scripts under ./terraform/cloudflare/ and make sure you understand what it's doing (no really review it).

If your domain already has existing DNS records be sure to export those DNS settings before you continue.

  1. Pull in the Terraform deps

    task terraform:init
  2. Review the changes Terraform will make to your Cloudflare domain

    task terraform:plan
  3. Have Terraform apply your Cloudflare settings

    task terraform:apply

If Terraform was ran successfully you can log into Cloudflare and validate the DNS records are present.

The cluster application external-dns will be managing the rest of the DNS records you will need.

๐Ÿ”น GitOps with Flux

๐Ÿ“ Here we will be installing flux after some quick bootstrap steps.

  1. Verify Flux can be installed

    task cluster:verify
    # โ–บ checking prerequisites
    # โœ” kubectl 1.21.5 >=1.18.0-0
    # โœ” Kubernetes 1.21.5+k3s1 >=1.16.0-0
    # โœ” prerequisites checks passed
  2. Push you changes to git

    ๐Ÿ“ Verify all the *.sops.yaml and *.sops.yml files under the ./ansible, ./kubernetes, and ./terraform folders are encrypted with SOPS

    git add -A
    git commit -m "Initial commit :rocket:"
    git push
  3. Install Flux and sync the cluster to the Git repository

    task cluster:install
    # namespace/flux-system configured
    # customresourcedefinition.apiextensions.k8s.io/alerts.notification.toolkit.fluxcd.io created
  4. Verify Flux components are running in the cluster

    task cluster:pods -- -n flux-system
    # NAME                                       READY   STATUS    RESTARTS   AGE
    # helm-controller-5bbd94c75-89sb4            1/1     Running   0          1h
    # kustomize-controller-7b67b6b77d-nqc67      1/1     Running   0          1h
    # notification-controller-7c46575844-k4bvr   1/1     Running   0          1h
    # source-controller-7d6875bcb4-zqw9f         1/1     Running   0          1h

๐ŸŽค Verification Steps

Mic check, 1, 2 - In a few moments applications should be lighting up like a Christmas tree ๐ŸŽ„

You are able to run all the commands below with one task

task cluster:resources
  1. View the Flux Git Repositories

    task cluster:gitrepositories
  2. View the Flux kustomizations

    task cluster:kustomizations
  3. View all the Flux Helm Releases

    task cluster:helmreleases
  4. View all the Flux Helm Repositories

    task cluster:helmrepositories
  5. View all the Pods

    task cluster:pods
  6. View all the certificates and certificate requests

    task cluster:certificates
  7. View all the ingresses

    task cluster:ingresses

๐Ÿ† Congratulations if all goes smooth you'll have a Kubernetes cluster managed by Flux, your Git repository is driving the state of your cluster.

โ˜ข๏ธ If you run into problems, you can run task ansible:nuke to destroy the k3s cluster and start over.

๐Ÿง  Now it's time to pause and go get some coffee โ˜• because next is describing how DNS is handled.

๐Ÿ“ฃ Post installation

๐ŸŒฑ Environment

direnv will make it so anytime you cd to your repo's directory it export the required environment variables (e.g. KUBECONFIG). To set this up make sure you hook it into your shell and after that is done, run direnv allow while in your repos directory.

๐ŸŒ DNS

๐Ÿ“ The external-dns application created in the kube-system namespace will handle creating public DNS records. By default, echo-server is the only public domain exposed on your Cloudflare domain. In order to make additional applications public you must set an ingress annotation like in the HelmRelease for echo-server. You do not need to use Terraform to create additional DNS records unless you need a record outside the purposes of your Kubernetes cluster (e.g. setting up MX records).

k8s_gateway is deployed on the IP choosen for ${BOOTSTRAP_METALLB_K8S_GATEWAY_ADDR}. Inorder to test DNS you can point your clients DNS to the ${BOOTSTRAP_METALLB_K8S_GATEWAY_ADDR} IP address and load https://hajimari.${BOOTSTRAP_CLOUDFLARE_DOMAIN} in your browser.

You can also try debugging with the command dig, e.g. dig @${BOOTSTRAP_METALLB_K8S_GATEWAY_ADDR} hajimari.${BOOTSTRAP_CLOUDFLARE_DOMAIN} and you should get a valid answer containing your ${BOOTSTRAP_METALLB_INGRESS_ADDR} IP address.

If your router (or Pi-Hole, Adguard Home or whatever) supports conditional DNS forwarding (also know as split-horizon DNS) you may have DNS requests for ${SECRET_DOMAIN} only point to the ${BOOTSTRAP_METALLB_K8S_GATEWAY_ADDR} IP address. This will ensure only DNS requests for ${SECRET_DOMAIN} will only get routed to your k8s_gateway service thus providing DNS resolution to your cluster applications/ingresses.

To access services from the outside world port forwarded 80 and 443 in your router to the ${BOOTSTRAP_METALLB_INGRESS_ADDR} IP, in a few moments head over to your browser and you should be able to access https://echo-server.${BOOTSTRAP_CLOUDFLARE_DOMAIN} from a device outside your LAN.

Now if nothing is working, that is expected. This is DNS after all!

๐Ÿค– Renovatebot

Renovatebot will scan your repository and offer PRs when it finds dependencies out of date. Common dependencies it will discover and update are Flux, Ansible Galaxy Roles, Terraform Providers, Kubernetes Helm Charts, Kubernetes Container Images, Pre-commit hooks updates, and more!

The base Renovate configuration provided in your repository can be view at .github/renovate.json5. If you notice this only runs on weekends and you can change the schedule to anything you want or simply remove it.

To enable Renovate on your repository, click the 'Configure' button over at their Github app page and choose your repository. Over time Renovate will create PRs for out-of-date dependencies it finds. Any merged PRs that are in the kubernetes directory Flux will deploy.

๐Ÿช Github Webhook

Flux is pull-based by design meaning it will periodically check your git repository for changes, using a webhook you can enable Flux to update your cluster on git push. In order to configure Github to send push events from your repository to the Flux webhook receiver you will need two things:

  1. Webhook URL - Your webhook receiver will be deployed on https://flux-webhook.${BOOTSTRAP_CLOUDFLARE_DOMAIN}/hook/:hookId. In order to find out your hook id you can run the following command:

    kubectl -n flux-system get receiver/github-receiver
    # NAME              AGE    READY   STATUS
    # github-receiver   6h8m   True    Receiver initialized with URL: /hook/12ebd1e363c641dc3c2e430ecf3cee2b3c7a5ac9e1234506f6f5f3ce1230e123

    So if my domain was onedr0p.com the full url would look like this:

    https://flux-webhook.onedr0p.com/hook/12ebd1e363c641dc3c2e430ecf3cee2b3c7a5ac9e1234506f6f5f3ce1230e123
    
  2. Webhook secret - Your webhook secret can be found by decrypting the secret.sops.yaml using the following command:

    sops -d ./kubernetes/flux/config/webhooks/github/secret.sops.yaml | yq .stringData.token

    Note: Don't forget to update the BOOTSTRAP_FLUX_GITHUB_WEBHOOK_SECRET variable in your .config.env file so it matches the generated secret if applicable

Now that you have the webhook url and secret, it's time to set everything up on the Github repository side. Navigate to the settings of your repository on Github, under "Settings/Webhooks" press the "Add webhook" button. Fill in the webhook url and your secret.

๐Ÿ’พ Storage

Rancher's local-path-provisioner is a great start for storage but soon you might find you need more features like replicated block storage, or to connect to a NFS/SMB/iSCSI server. Check out the projects below to read up more on some storage solutions that might work for you.

๐Ÿ” Authenticate Flux over SSH

Authenticating Flux to your git repository has a couple benefits like using a private git repository and/or using the Flux Image Automation Controllers.

By default this template only works on a public GitHub repository, it is advised to keep your repository public.

The benefits of a public repository include:

  • Debugging or asking for help, you can provide a link to a resource you are having issues with.
  • Adding a topic to your repository of k8s-at-home to be included in the k8s-at-home-search. This search helps people discover different configurations of Helm charts across others Flux based repositories.
Expand to read guide on adding Flux SSH authentication
  1. Generate new SSH key:
    ssh-keygen -t ecdsa -b 521 -C "github-deploy-key" -f ./kubernetes/bootstrap/github-deploy.key -q -P ""
  2. Paste public key in the deploy keys section of your repository settings
  3. Create sops secret in ./kubernetes/bootstrap/github-deploy-key.sops.yaml with the contents of:
    apiVersion: v1
    kind: Secret
    metadata:
        name: github-deploy-key
        namespace: flux-system
    stringData:
        # 3a. Contents of github-deploy-key
        identity: |
            -----BEGIN OPENSSH PRIVATE KEY-----
                ...
            -----END OPENSSH PRIVATE KEY-----
        # 3b. Output of curl --silent https://api.github.com/meta | jq --raw-output '"github.com "+.ssh_keys[]'
        known_hosts: |
            github.com ssh-ed25519 ...
            github.com ecdsa-sha2-nistp256 ...
            github.com ssh-rsa ...
  4. Encrypt secret:
    sops --encrypt --in-place ./kubernetes/bootstrap/github-deploy-key.sops.yaml
  5. Apply secret to cluster:
    sops --decrypt ./kubernetes/bootstrap/github-deploy-key.sops.yaml | kubectl apply -f -
  6. Update ./kubernetes/flux/config/cluster.yaml:
    apiVersion: source.toolkit.fluxcd.io/v1beta2
    kind: GitRepository
    metadata:
      name: home-kubernetes
      namespace: flux-system
    spec:
      interval: 10m
      # 6a: Change this to your user and repo names
      url: ssh://[email protected]/$user/$repo
      ref:
        branch: main
      secretRef:
        name: github-deploy-key
  7. Commit and push changes
  8. Force flux to reconcile your changes
    task cluster:reconcile
  9. Verify git repository is now using SSH:
    task cluster:gitrepositories
  10. Optionally set your repository to Private in your repository settings.

๐Ÿ’จ Kubernetes Dashboard

Included in your cluster is the Kubernetes Dashboard. Inorder to log into this you will have to get the secret token from the cluster using the command below.

kubectl -n monitoring get secret kubernetes-dashboard -o jsonpath='{.data.token}' | base64 -d

You should be able to access the dashboard at https://kubernetes.${SECRET_DOMAIN}

๐Ÿ‘‰ Help

โ” What's next

The world is your cluster, have at it!

๐Ÿค Thanks

Big shout out to all the authors and contributors to the projects that we are using in this repository.

@whazor created this website as a creative way to search Helm Releases across GitHub. You may use it as a means to get ideas on how to configure an applications' Helm values.

home-lab's People

Contributors

vdhict avatar renovate[bot] avatar

Watchers

 avatar

home-lab's Issues

Broken links detected ๐Ÿ”—

Summary

Status Count
๐Ÿ” Total 78
โœ… Successful 0
โณ Timeouts 0
๐Ÿ”€ Redirected 0
๐Ÿ‘ป Excluded 2
โ“ Unknown 0
๐Ÿšซ Errors 76

Errors per input

Errors in README.md

Full Github Actions output

Action Required: Fix Renovate Configuration

There is an error with this repository's Renovate configuration that needs to be fixed. As a precaution, Renovate will stop PRs until it is resolved.

Error type: Cannot find preset's package (github>vdhict/home-lab//.github/renovate/allowedVersions.json5)

Renovate Dashboard ๐Ÿค–

This issue lists Renovate updates and detected dependencies. Read the Dependency Dashboard docs to learn more.

Open

These updates have all been created already. Click a checkbox below to force a retry/rebase of any.

Detected dependencies

ansible-galaxy
ansible/requirements.yml
  • community.general 7.2.0
  • community.sops 1.6.5
  • ansible.posix 1.5.4
  • ansible.utils 2.10.3
  • kubernetes.core 2.4.0
  • xanmanning.k3s v3.4.2
flux
kubernetes/apps/cert-manager/cert-manager/app/helmrelease.yaml
  • cert-manager v1.12.3
kubernetes/apps/default/echo-server/app/helmrelease.yaml
  • app-template 1.5.1
kubernetes/apps/default/hajimari/app/helmrelease.yaml
  • hajimari 2.0.2
kubernetes/apps/default/lidarr/app/helmrelease.yaml
  • app-template 1.5.1
kubernetes/apps/flux-system/weave-gitops/app/helmrelease.yaml
  • weave-gitops 4.0.26
kubernetes/apps/home-automation/esphome/app/helmrelease.yaml
  • app-template 1.5.1
kubernetes/apps/home-automation/home-assistant/app/helmrelease.yaml
  • home-assistant 13.4.2
kubernetes/apps/home-automation/mosquitto/app/helmrelease.yaml
kubernetes/apps/home-automation/node-red/app/helmrelease.yaml
  • node-red 0.25.0
kubernetes/apps/home-automation/zwavejs2mqtt/app/helmrelease.yaml
  • zwavejs2mqtt 5.4.2
kubernetes/apps/kube-system/kured/app/helmrelease.yaml
  • kured 4.6.0
kubernetes/apps/kube-system/local-path-provisioner/app/helmrelease.yaml
kubernetes/apps/kube-system/metrics-server/app/helmrelease.yaml
  • metrics-server 3.10.0
kubernetes/apps/kube-system/node-feature-discovery/app/helmrelease.yaml
  • node-feature-discovery 0.13.3
kubernetes/apps/kube-system/reloader/app/helmrelease.yaml
  • reloader 1.0.33
kubernetes/apps/monitoring/kubernetes-dashboard/app/helmrelease.yaml
  • kubernetes-dashboard 7.0.3
kubernetes/apps/networking/cloudflare-ddns/app/helmrelease.yaml
  • app-template 1.5.1
kubernetes/apps/networking/external-dns/app/helmrelease.yaml
  • external-dns 1.13.0
kubernetes/apps/networking/ingress-nginx/app/helmrelease.yaml
  • ingress-nginx 4.7.1
kubernetes/apps/networking/k8s-gateway/app/helmrelease.yaml
  • k8s-gateway 2.0.4
kubernetes/apps/networking/metallb/app/helmrelease.yaml
  • metallb 0.13.10
kubernetes/apps/networking/pihole/app/helmrelease.yaml
kubernetes/apps/storage/longhorn/app/helmrelease.yaml
  • longhorn 1.4.1
kubernetes/flux/config/cluster.yaml
kubernetes/flux/config/flux.yaml
  • ghcr.io/fluxcd/flux-manifests v2.0.0-rc.1
kubernetes/flux/repositories/git/local-path-provisioner.yaml
  • local-path-provisioner v0.0.24
tmpl/kubernetes/flux/cluster.yaml
github-actions
.github/workflows/link-check.yaml
  • actions/checkout v3.6.0@f43a0e5ff2bd294095638e18286ca9a3d1956744
  • actions/cache v3.3.2@704facf57e6136b1bc63b828d79edcd491f0ee84
  • lycheeverse/lychee-action v1.9.1@c3089c702fbb949e3f7a8122be0c33c017904f9b
  • micalevisk/last-issue-action v2.3.0@0d40124cc99ac8601c2516007f0c98ef3d27537b
  • peter-evans/create-issue-from-file v4.0.1@433e51abf769039ee20ba1293a088ca19d573b7f
.github/workflows/meta-labeler.yaml
  • actions/labeler v4.3.0@ac9175f8a1f3625fd0d4fb234536d26811351594
.github/workflows/meta-sync-labels.yaml
  • actions/checkout v3.6.0@f43a0e5ff2bd294095638e18286ca9a3d1956744
  • EndBug/label-sync v2.3.2@da00f2c11fdb78e4fae44adac2fdd713778ea3e8
.github/workflows/release-drafter.yaml
  • release-drafter/release-drafter v5.25.0@09c613e259eb8d4e7c81c2cb00618eb5fc4575a7
.github/workflows/release.yaml
  • ivangabriele/publish-latest-release v3@df1a4afd8aea9d1f0ba5ebeb89452aeac7bca0a9
helm-values
kubernetes/apps/default/echo-server/app/helmrelease.yaml
  • docker.io/jmalloc/echo-server 0.3.5
kubernetes/apps/default/lidarr/app/helmrelease.yaml
  • ghcr.io/onedr0p/lidarr-develop 1.3.3.3432@sha256:45804b8d819bdbf1dc1fc365894d29f11d09da4a2d5581360bcfa09af6aef96a
kubernetes/apps/home-automation/esphome/app/helmrelease.yaml
  • esphome/esphome 2023.7.0
kubernetes/apps/home-automation/home-assistant/app/helmrelease.yaml
  • ghcr.io/home-assistant/home-assistant 2023.7.3
  • codercom/code-server 4.16.0
  • postgres 14.8
kubernetes/apps/home-automation/node-red/app/helmrelease.yaml
  • nodered/node-red 3.1.3
kubernetes/apps/home-automation/zwavejs2mqtt/app/helmrelease.yaml
  • ghcr.io/zwave-js/zwave-js-ui 8.21.2
kubernetes/apps/kube-system/kube-vip/app/daemonset.yaml
  • ghcr.io/kube-vip/kube-vip v0.6.0
kubernetes/apps/kube-system/local-path-provisioner/app/helmrelease.yaml
kubernetes/apps/networking/cloudflare-ddns/app/helmrelease.yaml
  • ghcr.io/onedr0p/kubernetes-kubectl 1.27.4@sha256:00a2d149524ec73f877e66032378209c6d8b700c78f371a3f0d4feed39008689
kubernetes/apps/networking/ingress-nginx/app/helmrelease.yaml
  • ghcr.io/tarampampam/error-pages 2.24.0
kubernetes/apps/networking/pihole/app/helmrelease.yaml
  • pihole/pihole 2023.05.2
kubernetes/apps/system-upgrade/system-upgrade-controller/plans/agent.yaml
kubernetes/apps/system-upgrade/system-upgrade-controller/plans/server.yaml
kubernetes/manifests/tigera-operator.yaml
kubernetes
ansible/playbooks/templates/kube-vip-daemonset.yaml.j2
  • ghcr.io/kube-vip/kube-vip v0.6.0
  • DaemonSet apps/v1
kubernetes/apps/cert-manager/cert-manager/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/cert-manager/cert-manager/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/cert-manager/cert-manager/issuers/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/cert-manager/cert-manager/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/cert-manager/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/default/echo-server/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/default/echo-server/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/default/echo-server/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/default/hajimari/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/default/hajimari/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/default/hajimari/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/default/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/default/lidarr/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/default/lidarr/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/default/lidarr/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/flux-system/addons/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/flux-system/addons/webhooks/github/ingress.yaml
  • Ingress networking.k8s.io/v1
kubernetes/apps/flux-system/addons/webhooks/github/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/flux-system/addons/webhooks/github/receiver.yaml
  • Receiver notification.toolkit.fluxcd.io/v1beta1
kubernetes/apps/flux-system/addons/webhooks/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/flux-system/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/flux-system/weave-gitops/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/flux-system/weave-gitops/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/flux-system/weave-gitops/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/home-automation/esphome/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/home-automation/esphome/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/home-automation/esphome/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/home-automation/home-assistant/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/home-automation/home-assistant/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/home-automation/home-assistant/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/home-automation/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/home-automation/mosquitto/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/home-automation/mosquitto/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/home-automation/mosquitto/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/home-automation/node-red/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/home-automation/node-red/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/home-automation/node-red/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/home-automation/zwavejs2mqtt/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/home-automation/zwavejs2mqtt/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/home-automation/zwavejs2mqtt/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/kube-system/kube-vip/app/daemonset.yaml
  • ghcr.io/kube-vip/kube-vip v0.6.0
  • DaemonSet apps/v1
kubernetes/apps/kube-system/kube-vip/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/kube-system/kube-vip/app/rbac.yaml
  • ClusterRole rbac.authorization.k8s.io/v1
  • ClusterRoleBinding rbac.authorization.k8s.io/v1
kubernetes/apps/kube-system/kube-vip/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/kube-system/kured/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/kube-system/kured/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/kube-system/kured/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/kube-system/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/kube-system/local-path-provisioner/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/kube-system/local-path-provisioner/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/kube-system/local-path-provisioner/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/kube-system/metrics-server/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/kube-system/metrics-server/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/kube-system/metrics-server/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/kube-system/node-feature-discovery/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/kube-system/node-feature-discovery/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/kube-system/node-feature-discovery/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/kube-system/reloader/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/kube-system/reloader/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/kube-system/reloader/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/monitoring/kubernetes-dashboard/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/monitoring/kubernetes-dashboard/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/monitoring/kubernetes-dashboard/app/rbac.yaml
  • ClusterRoleBinding rbac.authorization.k8s.io/v1
kubernetes/apps/monitoring/kubernetes-dashboard/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/monitoring/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/networking/cloudflare-ddns/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/networking/cloudflare-ddns/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/networking/cloudflare-ddns/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/networking/external-dns/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/networking/external-dns/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/networking/external-dns/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/networking/ingress-nginx/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/networking/ingress-nginx/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/networking/ingress-nginx/certificates/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/networking/ingress-nginx/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/networking/k8s-gateway/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/networking/k8s-gateway/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/networking/k8s-gateway/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/networking/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/networking/metallb/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/networking/metallb/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/networking/metallb/config/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/networking/metallb/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/networking/pihole/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/networking/pihole/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/networking/pihole/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/storage/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/storage/longhorn/app/helmrelease.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
kubernetes/apps/storage/longhorn/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/storage/longhorn/config/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/storage/longhorn/config/snapshotbackup.yaml
  • StorageClass storage.k8s.io/v1
kubernetes/apps/storage/longhorn/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/system-upgrade/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/system-upgrade/system-upgrade-controller/app/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/system-upgrade/system-upgrade-controller/ks.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kubernetes/apps/system-upgrade/system-upgrade-controller/plans/agent.yaml
kubernetes/apps/system-upgrade/system-upgrade-controller/plans/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/apps/system-upgrade/system-upgrade-controller/plans/server.yaml
kubernetes/bootstrap/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/flux/apps.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1
kubernetes/flux/config/cluster.yaml
  • GitRepository source.toolkit.fluxcd.io/v1
  • Kustomization kustomize.toolkit.fluxcd.io/v1
kubernetes/flux/config/flux.yaml
  • OCIRepository source.toolkit.fluxcd.io/v1beta2
  • Kustomization kustomize.toolkit.fluxcd.io/v1
kubernetes/flux/config/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/flux/repositories/git/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/flux/repositories/git/local-path-provisioner.yaml
  • GitRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/helm/bitnami.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/helm/bjw-s.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/helm/external-dns.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/helm/hajimari.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/helm/ingress-nginx.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/helm/jetstack.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/helm/k8s-at-home.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/helm/k8s-gateway.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/helm/kubereboot.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/helm/kubernetes-dashboard.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/helm/kubernetes-sigs-nfd.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta1
kubernetes/flux/repositories/helm/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/flux/repositories/helm/longhorn.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/helm/metallb.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/helm/metrics-server.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/helm/mojo2600.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/helm/node-red.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/helm/stakater.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/helm/t3n.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta1
kubernetes/flux/repositories/helm/weave-gitops.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
kubernetes/flux/repositories/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/flux/vars/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kubernetes/manifests/tigera-operator.yaml
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • CustomResourceDefinition apiextensions.k8s.io/v1
  • ClusterRole rbac.authorization.k8s.io/v1
  • ClusterRoleBinding rbac.authorization.k8s.io/v1
  • Deployment apps/v1
tmpl/kubernetes/flux/cluster.yaml
  • GitRepository source.toolkit.fluxcd.io/v1beta2
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
kustomize
kubernetes/apps/system-upgrade/system-upgrade-controller/app/kustomization.yaml
  • rancher/system-upgrade-controller v0.13.0
  • rancher/system-upgrade-controller v0.13.0
kubernetes/bootstrap/kustomization.yaml
  • fluxcd/flux2 v2.0.1
pip_requirements
ansible/requirements.txt
  • openshift ==0.13.2
pre-commit
.pre-commit-config.yaml
  • adrienverge/yamllint v1.32.0
  • gruntwork-io/pre-commit v0.1.22
regex
ansible/inventory/group_vars/kubernetes/k3s.yml
  • k3s-io/k3s v1.27.1+k3s1
kubernetes/apps/system-upgrade/system-upgrade-controller/plans/agent.yaml
  • k3s-io/k3s v1.27.1+k3s1
kubernetes/apps/system-upgrade/system-upgrade-controller/plans/server.yaml
  • k3s-io/k3s v1.27.1+k3s1
terraform
terraform/cloudflare/main.tf
  • cloudflare 4.11.0
  • http 3.4.0
  • sops 0.7.2

  • Check this box to trigger a request for Renovate to run again on this repository

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.