Git Product home page Git Product logo

new_template_k3s's Introduction

Template for deploying k3s backed by Flux

k3s pre-commit renovate GitHub license

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
  • traefik - 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, echo-server, system-upgrade-controller, reflector, and reloader

For provisioning the following tools will be used:

  • Ubuntu - this is a pretty universal operating system that supports running all kinds of home related workloads in Kubernetes
  • Ansible - this will be used to provision the Ubuntu operating system to be ready for Kubernetes and also to install k3s
  • Terraform - in order to help with the DNS settings this will be used to provision an already existing Cloudflare domain and certain DNS settings

๐Ÿ“ 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 used for the GitOps/Flux portion if there's a cluster working in one those environments.

๐Ÿ’ป Systems

  • One or more nodes with a fresh install of Ubuntu Server 22.04.
    • These nodes can be 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.
  • Some experience in debugging problems and a positive attitude ;)

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

๐Ÿ”ง Workstation Tools

  1. Install the most recent versions of the following CLI tools on your workstation, if you are using Homebrew on MacOS or Linux skip to steps 3 and 4.

  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 go-task via Brew

    brew install go-task/tap/go-task
  4. Install workstation dependencies via Brew

    task init

โš ๏ธ pre-commit

It is advisable to install pre-commit and the pre-commit hooks that come with this repository. sops-pre-commit and gitleaks will check to make sure you are not by accident committing un-encrypted secrets.

  1. Enable Pre-Commit

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

    task precommit:update

๐Ÿ“‚ Repository structure

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

  • base directory is the entrypoint to Flux
  • crds directory contains custom resource definitions (CRDs) that need to exist globally in your cluster before anything else exists
  • core directory (depends on crds) are important infrastructure applications (grouped by namespace) that should never be pruned by Flux
  • apps directory (depends on core) is where your common applications (grouped by namespace) could be placed, Flux will prune resources here if they are not tracked by Git anymore
cluster
โ”œโ”€โ”€ apps
โ”‚   โ”œโ”€โ”€ default
โ”‚   โ”œโ”€โ”€ kube-system
โ”‚   โ”œโ”€โ”€ networking
โ”‚   โ””โ”€โ”€ system-upgrade
โ”œโ”€โ”€ base
โ”‚   โ””โ”€โ”€ flux-system
โ”œโ”€โ”€ core
โ”‚   โ”œโ”€โ”€ cert-manager
โ”‚   โ”œโ”€โ”€ kube-system
โ”‚   โ”œโ”€โ”€ metallb-system
โ”‚   โ””โ”€โ”€ namespaces
โ””โ”€โ”€ crds
    โ”œโ”€โ”€ cert-manager
    โ”œโ”€โ”€ system-upgrade-controller
    โ””โ”€โ”€ traefik

๐Ÿš€ Lets go

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

Clone the 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.

๐Ÿ” 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 .config.env under BOOTSTRAP_AGE_PUBLIC_KEY, 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 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 Ubuntu with Ansible

๐Ÿ“ Here we will be running a Ansible Playbook to prepare Ubuntu 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 it supports Ubuntu 22.04.

  1. Ensure you are able to SSH into your nodes from your workstation using your private ssh key. 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 Ubuntu Prepare Ansible playbook

    task ansible:prepare
  6. Reboot the nodes

    task ansible: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 ./provision/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 ./provision/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:flux:verify
    # โ–บ checking prerequisites
    # โœ” kubectl 1.21.5 >=1.18.0-0
    # โœ” Kubernetes 1.21.5+k3s1 >=1.16.0-0
    # โœ” prerequisites checks passed
  2. Create the flux-system namespace

    task cluster:flux:namespace
  3. Add the Age key to your cluster as a secret in-order for Flux to decrypt SOPS secrets

    task cluster:flux:secret

    ๐Ÿ“ Variables defined in ./cluster/base/cluster-secrets.sops.yaml and ./cluster/base/cluster-settings.yaml will be usable anywhere in your YAML manifests under ./cluster except ./cluster/base

  4. Push you changes to git

    ๐Ÿ“ Verify all the *.sops.yaml and *.sops.yml files under the ./cluster and ./provision folders are encrypted with SOPS

    git add -A
    git commit -m "initial commit"
    git push
  5. Install Flux

    ๐Ÿ“ Due to race conditions with the Flux CRDs you will have to run the below command twice. There should be no errors on this second run.

    task cluster:flux:install
    # namespace/flux-system configured
    # customresourcedefinition.apiextensions.k8s.io/alerts.notification.toolkit.fluxcd.io created
    # ...
    # unable to recognize "./cluster/base/flux-system": no matches for kind "HelmRepository" in version "source.toolkit.fluxcd.io/v1beta1"
  6. 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

๐Ÿ† 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

๐ŸŒ DNS

๐Ÿ“ The external-dns application created in the networking 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_TRAEFIK_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_TRAEFIK_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 cluster 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-receiver.${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 --kubeconfig=./provision/kubeconfig
    # NAME              AGE    READY   STATUS
    # github-receiver   6h8m   True    Receiver initialized with URL: /hook/12ebd1e363c641dc3c2e430ecf3cee2b3c7a5ac9e1234506f6f5f3ce1230e123

    So if my domain was k8s-at-home.com the full url would look like this:

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

    sops -d ./cluster/apps/flux-system/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.

๐Ÿ‘‰ Troubleshooting

Our wiki (WIP, contributions welcome) is a good place to start troubleshooting issues. If that doesn't cover your issue, come join and say Hi in our Discord server by starting a new thread in the #kubernetes support channel.

You may also open a issue on this GitHub repo or open a discussion on GitHub.

โ” What's next

The world is your cluster, see below for important things you could work on adding.

Our Check out our wiki (WIP, contributions welcome) for more integrations!

๐Ÿค Thanks

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

Community member @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.

Many people have shared their awesome repositories over at awesome-home-kubernetes.

new_template_k3s's People

Contributors

nvanmeurs avatar renovate-bot avatar renovate[bot] avatar snoopy82481 avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

new_template_k3s's Issues

Refactor cluster

Details

Describe the solution you'd like:

Update Cluster to match new template structure
Update mettlelb to 0.13.x

Anything else you would like to add:

Additional Information:

Renovate Dashboard

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

Errored

These updates encountered an error and will be retried. Click on a checkbox below to force a retry now.

  • fix(github-release): update k3s-io/k3s to v1.24.6+k3s1
  • fix(helm): update chart reloader to v0.0.121
  • feat(github-release): update fluxcd/flux2 to v0.35.0
  • feat(helm): update chart kube-prometheus-stack to 40.3.1

โš  Dependency Lookup Warnings โš 

  • Renovate failed to look up the following dependencies: kured.

Files affected: cluster/apps/kube-system/kured/helm-release.yaml


Open

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

Detected dependencies

ansible-galaxy
provision/ansible/requirements.yml
  • community.general 5.6.0
  • community.sops 1.4.1
  • ansible.posix 1.4.0
  • ansible.utils 2.6.1
  • kubernetes.core 2.3.2
  • xanmanning.k3s v3.3.0
flux
cluster/apps/default/heimdall/helm-release.yaml
  • app-template 0.2.1
cluster/apps/downloads/qbittorrent/helm-release.yaml
  • app-template 0.2.1
cluster/apps/kube-system/kured/helm-release.yaml
  • kured 3.0.1
cluster/apps/kube-system/metrics-server/helm-release.yaml
  • metrics-server 3.8.2
cluster/apps/kube-system/reloader/helm-release.yaml
  • reloader v0.0.119
cluster/apps/media/bazarr/helm-release.yaml
  • app-template 0.2.1
cluster/apps/media/overseerr/helm-release.yaml
  • app-template 0.2.1
cluster/apps/media/prowlarr/flaresolverr.yaml
  • app-template 0.2.1
cluster/apps/media/prowlarr/helm-release.yaml
  • app-template 0.2.1
cluster/apps/media/radarr/helm-release.yaml
  • app-template 0.2.1
cluster/apps/media/radarr4k/helm-release.yaml
  • app-template 0.2.1
cluster/apps/media/recyclarr/helm-release.yaml
  • app-template 0.2.1
cluster/apps/media/sabnzbd/helm-release.yaml
  • app-template 0.2.1
cluster/apps/media/sonarr/helm-release.yaml
  • app-template 0.2.1
cluster/apps/media/sonarranime-widowmaker/helm-release.yaml
  • app-template 0.2.1
cluster/apps/media/sonarranime/helm-release.yaml
  • app-template 0.2.1
cluster/apps/media/tautulli/helm-release.yaml
  • app-template 0.2.1
cluster/apps/monitoring/grafana/helm-release.yaml
cluster/apps/monitoring/kube-prometheus-stack/helm-release.yaml
  • kube-prometheus-stack 40.1.2
cluster/apps/networking/external-dns/helm-release.yaml
  • external-dns 1.11.0
cluster/apps/networking/ingress-nginx/helm-release.yaml
  • ingress-nginx 4.2.5
cluster/apps/networking/k8s-gateway/helm-release.yaml
  • k8s-gateway 1.1.15
cluster/apps/networking/metallb/helm-release.yaml
  • metallb 0.13.5
cluster/apps/networking/theme-park/helm-release.yaml
  • app-template 0.2.1
cluster/apps/tigera-operator/tigera-operator/helm-release.yaml
  • tigera-operator v3.24.1
cluster/apps/vpn/vpn-gateway/helm-release.yaml
  • pod-gateway 5.6.2
cluster/core/cert-manager/helm-release.yaml
  • cert-manager v1.9.1
cluster/core/rook-ceph/cluster/helm-release.yaml
cluster/core/rook-ceph/operator/helm-release.yaml
github-actions
.github/workflows/helm-release-differ.yaml
  • actions/checkout v3
  • dorny/paths-filter v2
  • actions/checkout v3
  • tibdex/github-app-token v1
  • actions/checkout v3
  • azure/setup-helm v3
  • peter-evans/find-comment v2
  • peter-evans/create-or-update-comment v2
.github/workflows/lint.yaml
  • actions/checkout v3
  • tibdex/github-app-token v1
  • oxsecurity/megalinter v6.10.0
.github/workflows/meta-label-size.yaml
  • tibdex/github-app-token v1
  • pascalgn/size-label-action v0.4.3
.github/workflows/meta-labeler.yml
  • tibdex/github-app-token v1
  • actions/labeler v4
.github/workflows/meta-sync-labels.yaml
  • actions/checkout v3
  • tibdex/github-app-token v1
  • EndBug/label-sync v2
.github/workflows/scan-containers.yaml
  • actions/checkout v3
  • dorny/paths-filter v2
  • actions/checkout v3
  • actions/checkout v3
  • aquasecurity/trivy-action 0.7.1
  • github/codeql-action v2
.github/workflows/schedule-cloudflare-proxied-networks-update.yaml
  • actions/checkout v3
  • tibdex/github-app-token v1
  • peter-evans/create-pull-request v4
.github/workflows/schedule-link-checker.yaml
  • actions/checkout v3
  • tibdex/github-app-token v1
  • lycheeverse/lychee-action v1.5.1
  • micalevisk/last-issue-action v2
  • peter-evans/create-issue-from-file v4
.github/workflows/schedule-renovate.yaml
  • actions/checkout v3
  • tibdex/github-app-token v1
  • renovatebot/github-action v32.209.0
helm-values
cluster/apps/default/heimdall/helm-release.yaml
  • ghcr.io/linuxserver/heimdall v2.4.13-ls186@sha256:550e844865454bf9dac45baa0fa21433b9349a69d3ee5bb0d26c2ae6f171f023
cluster/apps/downloads/qbittorrent/helm-release.yaml
  • ghcr.io/onedr0p/qbittorrent 4.4.3.1@sha256:cea2a1647727f49582ca3d517bc45d53d00abe211fc667c429020f042635ea34
cluster/apps/kube-system/kube-vip/daemon-set.yaml
  • ghcr.io/kube-vip/kube-vip v0.5.0
cluster/apps/media/bazarr/helm-release.yaml
  • ghcr.io/onedr0p/bazarr 1.1.1@sha256:cbeb7cc09c7689e8e26b55d74160b10f4030d3436fa9f160f09fed901cf28388
cluster/apps/media/overseerr/helm-release.yaml
  • ghcr.io/sct/overseerr 1.30.0@sha256:f38b4762a4c75496d31904b9c5d3e0d98cf499ce6ffa5dbf49544af7ff999e72
cluster/apps/media/prowlarr/flaresolverr.yaml
  • ghcr.io/flaresolverr/flaresolverr v2.2.9@sha256:f87b57e28a156b650094a93dbfbd02b38224f39fd2a95667da77da9852a61123
cluster/apps/media/prowlarr/helm-release.yaml
  • ghcr.io/onedr0p/prowlarr-nightly 0.4.7.1995@sha256:3fcf89060364f2847b2770cceb5998dcdd6ca70ed81e70d666b85939e0a5cbc4
cluster/apps/media/radarr/helm-release.yaml
  • ghcr.io/onedr0p/radarr 4.2.4.6635@sha256:21d2d1cfc838f04167989076ac0505e09de110e1f5ea4dd955d5c46463577ad1
cluster/apps/media/radarr4k/helm-release.yaml
  • ghcr.io/onedr0p/radarr 4.2.4.6635@sha256:21d2d1cfc838f04167989076ac0505e09de110e1f5ea4dd955d5c46463577ad1
cluster/apps/media/recyclarr/helm-release.yaml
  • ghcr.io/recyclarr/recyclarr 2.5.0@sha256:6155263648f96fda5a8e7094b8b7e723ed4390b8d04abb8eb4d2caa0f152fb53
  • ghcr.io/recyclarr/recyclarr 2.5.0@sha256:6155263648f96fda5a8e7094b8b7e723ed4390b8d04abb8eb4d2caa0f152fb53
cluster/apps/media/sabnzbd/helm-release.yaml
  • ghcr.io/onedr0p/sabnzbd 3.6.1@sha256:64e23a151f0b9e52474bf8edc12d7e0fced10d24970cc2fe1346a91489e6e80e
cluster/apps/media/sonarr/helm-release.yaml
  • ghcr.io/onedr0p/sonarr 3.0.9.1549@sha256:5956752ec9ff621838e87e5369da7a5bbc5cbf8039669afbeb0de442ed738c5b
cluster/apps/media/sonarranime-widowmaker/helm-release.yaml
  • ghcr.io/onedr0p/sonarr-widowmaker 4.0.0.2179@sha256:493d550cf436f005b7d36291e3fdb81a303580efe7334a2a797d19f1d42adfb7
cluster/apps/media/sonarranime/helm-release.yaml
  • ghcr.io/onedr0p/sonarr 3.0.9.1549@sha256:5956752ec9ff621838e87e5369da7a5bbc5cbf8039669afbeb0de442ed738c5b
cluster/apps/media/tautulli/helm-release.yaml
  • ghcr.io/onedr0p/tautulli 2.10.4@sha256:4275df0318a55a1c21f4a56e536f371da31cdf315919ee8317a2446246a1d4b9
cluster/apps/monitoring/kube-prometheus-stack/helm-release.yaml
  • quay.io/thanos/thanos v0.28.0
cluster/apps/networking/ingress-nginx/helm-release.yaml
  • ghcr.io/tarampampam/error-pages 2.18.0
cluster/apps/networking/theme-park/helm-release.yaml
  • ghcr.io/onedr0p/theme-park 1.10.1@sha256:0dcde933654316b6d0f4c9c8d4130f3a95e02927d753952f5199fe348627d7b5
cluster/apps/system-upgrade/system-upgrade-controller/plans/agent.yaml
cluster/apps/system-upgrade/system-upgrade-controller/plans/server.yaml
cluster/apps/tigera-operator/tigera-operator/helm-release.yaml
cluster/apps/vpn/vpn-gateway/helm-release.yaml
  • ghcr.io/angelnu/pod-gateway v1.8.0@sha256:91a51d0cfcec00834ba3878e07fca2d7c3ce72ac259e2a2787600d0222dbdd9b
  • qmcgaw/gluetun v3.31.1@sha256:dabf4efdadafd6acce67bf89b11396e5c87dd1e25705b36fc9211730c943db47
  • ghcr.io/angelnu/gateway-admision-controller v3.6.1@sha256:d607e73a3d9254b05123d252ffae9fdeb754e1f9ae9c1f64b093b07415f54359
cluster/core/rook-ceph/rook-direct-mount/deployment.yaml
  • rook/ceph v1.10.1
kubernetes
cluster/apps/default/heimdall/config-pvc.yaml
  • PersistentVolumeClaim v1
cluster/apps/default/heimdall/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/default/heimdall/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/default/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/default/namespace.yaml
  • Namespace v1
cluster/apps/downloads/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/downloads/namespace.yaml
  • Namespace v1
cluster/apps/downloads/qbittorrent/config-pvc.yaml
  • PersistentVolumeClaim v1
cluster/apps/downloads/qbittorrent/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/downloads/qbittorrent/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/flux-system/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/flux-system/namespace.yaml
  • Namespace v1
cluster/apps/flux-system/webhooks/github/ingress.yaml
  • Ingress networking.k8s.io/v1
cluster/apps/flux-system/webhooks/github/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/flux-system/webhooks/github/receiver.yaml
  • Receiver notification.toolkit.fluxcd.io/v1beta1
cluster/apps/flux-system/webhooks/github/secret.sops.yaml
  • Secret v1
cluster/apps/flux-system/webhooks/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/kube-system/kube-vip/daemon-set.yaml
  • ghcr.io/kube-vip/kube-vip v0.5.0
  • DaemonSet apps/v1
cluster/apps/kube-system/kube-vip/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/kube-system/kube-vip/rbac.yaml
  • ServiceAccount v1
  • Secret v1
  • ClusterRole rbac.authorization.k8s.io/v1
  • ClusterRoleBinding rbac.authorization.k8s.io/v1
cluster/apps/kube-system/kured/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/kube-system/kured/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/kube-system/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/kube-system/metrics-server/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/kube-system/metrics-server/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/kube-system/namespace.yaml
  • Namespace v1
cluster/apps/kube-system/reloader/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/kube-system/reloader/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/media/bazarr/config-pvc.yaml
  • PersistentVolumeClaim v1
cluster/apps/media/bazarr/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/media/bazarr/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/media/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/media/namespace.yaml
  • Namespace v1
cluster/apps/media/overseerr/config-pvc.yaml
  • PersistentVolumeClaim v1
cluster/apps/media/overseerr/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/media/overseerr/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/media/prowlarr/config-pvc.yaml
  • PersistentVolumeClaim v1
cluster/apps/media/prowlarr/flaresolverr.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/media/prowlarr/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/media/prowlarr/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/media/radarr/config-pvc.yaml
  • PersistentVolumeClaim v1
cluster/apps/media/radarr/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/media/radarr/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/media/radarr4k/config-pvc.yaml
  • PersistentVolumeClaim v1
cluster/apps/media/radarr4k/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/media/radarr4k/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/media/recyclarr/helm-release.yaml
  • ghcr.io/recyclarr/recyclarr 2.5.0@sha256:6155263648f96fda5a8e7094b8b7e723ed4390b8d04abb8eb4d2caa0f152fb53
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/media/recyclarr/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/media/recyclarr/secret.sops.yaml
  • Secret v1
cluster/apps/media/sabnzbd/config-pvc.yaml
  • PersistentVolumeClaim v1
cluster/apps/media/sabnzbd/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/media/sabnzbd/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/media/sonarr/config-pvc.yaml
  • PersistentVolumeClaim v1
cluster/apps/media/sonarr/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/media/sonarr/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/media/sonarranime-widowmaker/config-pvc.yaml
  • PersistentVolumeClaim v1
cluster/apps/media/sonarranime-widowmaker/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/media/sonarranime-widowmaker/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/media/sonarranime/config-pvc.yaml
  • PersistentVolumeClaim v1
cluster/apps/media/sonarranime/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/media/sonarranime/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/media/tautulli/config-pvc.yaml
  • PersistentVolumeClaim v1
cluster/apps/media/tautulli/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/media/tautulli/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/monitoring/grafana/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/monitoring/grafana/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/monitoring/grafana/secret.sops.yaml
  • Secret v1
cluster/apps/monitoring/kube-prometheus-stack/helm-release.yaml
  • quay.io/thanos/thanos v0.28.0
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/monitoring/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/monitoring/namespace.yaml
  • Namespace v1
cluster/apps/networking/external-dns/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/networking/external-dns/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/networking/external-dns/secrets.sops.yaml
  • Secret v1
cluster/apps/networking/ingress-nginx/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/networking/ingress-nginx/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/networking/k8s-gateway/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/networking/k8s-gateway/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/networking/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/networking/metallb/address-pool.yaml
  • IPAddressPool metallb.io/v1beta1
  • L2Advertisement metallb.io/v1beta1
cluster/apps/networking/metallb/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/networking/metallb/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/networking/namespace.yaml
  • Namespace v1
cluster/apps/networking/theme-park/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/networking/theme-park/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/system-upgrade/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/system-upgrade/namespace.yaml
  • Namespace v1
cluster/apps/system-upgrade/system-upgrade-controller/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/system-upgrade/system-upgrade-controller/plans/agent.yaml
  • Plan upgrade.cattle.io/v1
cluster/apps/system-upgrade/system-upgrade-controller/plans/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/system-upgrade/system-upgrade-controller/plans/server.yaml
  • Plan upgrade.cattle.io/v1
cluster/apps/tigera-operator/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/tigera-operator/namespace.yaml
  • Namespace v1
cluster/apps/tigera-operator/tigera-operator/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/tigera-operator/tigera-operator/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/vpn/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/vpn/namespace.yaml
  • Namespace v1
cluster/apps/vpn/vpn-gateway/config-pvc.yaml
  • PersistentVolumeClaim v1
cluster/apps/vpn/vpn-gateway/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/apps/vpn/vpn-gateway/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/apps/vpn/vpn-gateway/network-policy.yaml
  • NetworkPolicy networking.k8s.io/v1
cluster/apps/vpn/vpn-gateway/vpnConfig.sops.yaml
  • Secret v1
cluster/bootstrap/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/config/cluster-secrets.sops.yaml
  • Secret v1
cluster/config/cluster-settings.yaml
  • ConfigMap v1
cluster/config/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/core/cert-manager/cluster-issuers/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/core/cert-manager/cluster-issuers/letsencrypt-production.yaml
  • ClusterIssuer cert-manager.io/v1
cluster/core/cert-manager/cluster-issuers/letsencrypt-staging.yaml
  • ClusterIssuer cert-manager.io/v1
cluster/core/cert-manager/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/core/cert-manager/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/core/cert-manager/secret.sops.yaml
  • Secret v1
cluster/core/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/core/rook-ceph/cluster/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/core/rook-ceph/cluster/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/core/rook-ceph/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/core/rook-ceph/namespace.yaml
  • Namespace v1
cluster/core/rook-ceph/operator/helm-release.yaml
  • HelmRelease helm.toolkit.fluxcd.io/v2beta1
cluster/core/rook-ceph/operator/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/core/rook-ceph/rook-direct-mount/deployment.yaml
  • rook/ceph v1.10.1
  • Deployment apps/v1
cluster/core/rook-ceph/rook-direct-mount/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/crds/calico/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/crds/cert-manager/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/crds/kube-prometheus-stack/crds.yaml
  • GitRepository source.toolkit.fluxcd.io/v1beta2
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
cluster/crds/kube-prometheus-stack/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/crds/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/crds/metallb/crds.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
cluster/crds/metallb/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/crds/rook-ceph/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/crds/system-upgrade-controller/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/flux/apps.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
cluster/flux/config.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
cluster/flux/core.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
cluster/flux/crds.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
cluster/flux/flux-system/flux-installation.yaml
  • GitRepository source.toolkit.fluxcd.io/v1beta2
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
cluster/flux/flux-system/github-deploy-key.sops.yaml
  • Secret v1
cluster/flux/flux-system/home-cluster.yaml
  • GitRepository source.toolkit.fluxcd.io/v1beta2
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
cluster/flux/flux-system/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/flux/repositories.yaml
  • Kustomization kustomize.toolkit.fluxcd.io/v1beta2
cluster/repositories/git/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/repositories/git/metallb.yaml
  • GitRepository source.toolkit.fluxcd.io/v1beta2
cluster/repositories/helm/bitnami-charts.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
cluster/repositories/helm/bjw-s-charts.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
cluster/repositories/helm/calico-charts.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
cluster/repositories/helm/external-dns-charts.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
cluster/repositories/helm/ingress-nginx-charts.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
cluster/repositories/helm/jetstack-charts.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
cluster/repositories/helm/k8s-at-home-charts.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
cluster/repositories/helm/k8s-gateway-charts.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
cluster/repositories/helm/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
cluster/repositories/helm/metallb-charts.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
cluster/repositories/helm/metrics-server-charts.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
cluster/repositories/helm/prometheus-community-charts.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
cluster/repositories/helm/rook-ceph-charts.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
cluster/repositories/helm/stakater-charts.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
cluster/repositories/helm/weaveworks-kured-charts.yaml
  • HelmRepository source.toolkit.fluxcd.io/v1beta2
cluster/repositories/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
provision/ansible/playbooks/templates/calico-installation.yaml.j2
  • Installation operator.tigera.io/v1
provision/ansible/playbooks/templates/kube-vip-daemonset.yaml.j2
  • ghcr.io/kube-vip/kube-vip v0.5.0
  • DaemonSet apps/v1
provision/ansible/playbooks/templates/kube-vip-rbac.yaml.j2
  • ServiceAccount v1
  • ClusterRole rbac.authorization.k8s.io/v1
  • ClusterRoleBinding rbac.authorization.k8s.io/v1
tmpl/cluster/flux-system/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
tmpl/cluster/flux-system/webhooks/github/ingress.yaml
  • Ingress networking.k8s.io/v1
tmpl/cluster/flux-system/webhooks/github/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
tmpl/cluster/flux-system/webhooks/github/receiver.yaml
  • Receiver notification.toolkit.fluxcd.io/v1beta1
tmpl/cluster/flux-system/webhooks/github/secret.sops.yaml
  • Secret v1
tmpl/cluster/flux-system/webhooks/kustomization.yaml
  • Kustomization kustomize.config.k8s.io/v1beta1
kustomize
cluster/apps/system-upgrade/system-upgrade-controller/kustomization.yaml
  • rancher/system-upgrade-controller v0.9.1
  • docker.io/rancher/system-upgrade-controller v0.9.1
cluster/bootstrap/kustomization.yaml
  • fluxcd/flux2 v0.34.0
pre-commit
.pre-commit-config.yaml
  • adrienverge/yamllint v1.28.0
  • pre-commit/pre-commit-hooks v4.3.0
  • Lucas-C/pre-commit-hooks v1.3.1
  • sirosen/fix-smartquotes 0.2.0
  • k8s-at-home/sops-pre-commit v2.1.1
  • zricethezav/gitleaks v8.13.0
regex
cluster/crds/cert-manager/kustomization.yaml
cluster/crds/kube-prometheus-stack/crds.yaml
  • kube-prometheus-stack 40.1.2
cluster/crds/system-upgrade-controller/kustomization.yaml
  • rancher/system-upgrade-controller v0.9.1
cluster/apps/system-upgrade/system-upgrade-controller/plans/agent.yaml
  • k3s-io/k3s v1.24.4+k3s1
cluster/apps/system-upgrade/system-upgrade-controller/plans/server.yaml
  • k3s-io/k3s v1.24.4+k3s1
cluster/flux/flux-system/flux-installation.yaml
  • fluxcd/flux2 v0.34.0
provision/ansible/inventory/group_vars/kubernetes/k3s.yml
  • k3s-io/k3s v1.24.4+k3s1
terraform
provision/terraform/cloudflare/main.tf
  • cloudflare 3.24.0
  • http 3.1.0
  • sops 0.7.1

  • 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.