sbulav / do-k8s-challenge

Digital Ocean Kubernetes Challenge repo

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

do-k8s-challenge

Digital Ocean Kubernetes Challenge repo, focusing on automation via GitHub Actions.

Deploy Kyverno with new Values Deploy updated Kyverno policies

Lint Code Base

Introduction

This repo contains Helm values and Github actions for the installation of the Kyverno.

Initial installation of the Kyverno is triggered by the manual pipeline. Any changes to the Helm values will trigger Helm upgrade.

Policies located in the Policies directory and will be updated automatically if any policy has changed.

Main branch is write protected and all changes should be done through the Pull Request. Each PR is linted and validated.

Prerequisites

Style

This repo follows Conventional Commits. All commits are validated for following this convention.

Initialization

Steps required for initial deployment of Kyverno:

  1. Set up Github secret with DO personal access token in variable DO_K8S_TOKEN
  2. Set up Github secret with DO k8s cluster name in variable DO_K8S_CLUSTER_NAME
  3. Set up Github secret with GitHub PAT in variable RELEASE_PAT
  4. Trigger the manual pipeline Manual deployment of Kyverno for the initial installation of kyverno Helm Chart into your Kubernetes cluster. For this, set DRY-RUN to false. This will also install kyverno-policy and apply custom policies.

manual_deploy01

  1. Check that pipeline finished successfully.

manual_deploy02

Example: modifying Kyverno helm values

In this example, we'll modify Kyverno Helm values, adding new reponame label:

modifying_values01

Create a new branch, push your changes and create a new Pull Request:

modifying_values02

Make sure that all checks have passed. Notice that you can check helm diff directly in PR.

Merge the PR and notice that deployment has been triggered automatically:

modifying_values03

After successful deployment, you'll see new repo applied to Kyverno deployment:

modifying_values04

If our commits had breaking changes, features or fixes, new PR with new RELEASE will be created automatically:

modifying_values05

Example: Adding new Kyverno policy

In this example, we'll add new custom Kyverno policy, allowing images only from allowed registries.

Create a new branch, push your changes and create a new Pull Request:

adding_policy01

Make sure that all checks have passed.

Merge the PR and notice that deployment has been triggered automatically:

adding_policy02

Now let's push an image into our Digital Ocean Container Registry. I'll use nginx:latest for that:

docker tag nginx:latest registry.digitalocean.com/do-k8s-challenge-cr/nginx:latest
docker push registry.digitalocean.com/do-k8s-challenge-cr/nginx:latest

After successful deployment new Policies should enforce:

  • label app.kubernetes.io/name is set
  • only images from registry.digitalocean.com are allowed

Let's try to run Pods with images from different registries:

adding_policy03

As you can see, image from DockerHub was blocked, and label is required for Pod creation.

After requirements were satisfied, Pod with image from registry.digitalocean.com was created.

About

Digital Ocean Kubernetes Challenge repo

License:MIT License