This repository is part of the Compliant Kubernetes (compliantkubernetes) platform. The platform consists of the following repositories:
- compliantkubernetes-kubespray - Code for managing Kubernetes clusters and the infrastructure around them.
- compliantkubernetes-apps - Code, configuration and tools for running various services and applications on top of Kubernetes clusters.
The Elastisys Compliant Kubernetes (compliantkubernetes) platform runs two Kubernetes clusters. One called "service" and one called "workload".
The service cluster provides observability, log aggregation, private container registry with vulnerability scanning and authentication using the following services:
- Prometheus and Grafana
- OpenSearch and OpenSearch Dashboards
- Harbor
- Dex
The workload cluster manages the user applications as well as providing intrusion detection, security policies, log forwarding and monitoring using the following services:
- Falco
- Open Policy Agent
- Fluentd
- Prometheus
This repository installs all the applications of ck8s on top of already created clusters. To setup the clusters see compliantkubernetes-kubespray. A service-cluster (sc) or workload-cluster (wc) can be created separately but all of the applications will not work correctly unless both are running.
All config files will be located under CK8S_CONFIG_PATH
.
There will be four config files: common-config.yaml
, wc-config.yaml
, sc-config.yaml
and secrets.yaml
.
See Quickstart for instructions on how to initialize the repo
Currently we support four cloud providers: Exoscale, Safespring, Citycloud, Elastx and AWS (beta). In addition to this we support running Compliant Kubernetes on bare metal (beta).
The apps are installed using a combination of helm charts and manifests with the help of helmfile and some bash scripts.
- A running cluster based on compliantkubernetes-kubespray
- kubectl (tested with 1.20.7)
- helm (tested with 3.8.0)
- helmfile (tested with v0.144.0)
- helm-diff (tested with 3.1.2)
- helm-secrets (tested with 3.12.0)
- jq (tested with jq-1.6)
- sops (tested with 3.6.1)
- s3cmd available directly in ubuntus repositories (tested with 2.0.1)
- yq (tested with 3.4.1)
- pwgen available directly in ubuntus repostitories (tested with 2.08)
- htpasswd available directly in ubuntus repostitories (tested with 2.4.41)
Installs requirements using the ansible playbook get-requirements.yaml
ansible-playbook -e 'ansible_python_interpreter=/usr/bin/python3' --ask-become-pass --connection local --inventory 127.0.0.1, get-requirements.yaml
Note that you will need a service and workload cluster.
See DEVELOPMENT.md.
Configuration secrets in ck8s are encrypted using SOPS. We currently only support using PGP when encrypting secrets. Because of this, before you can start using ck8s, you need to generate your own PGP key:
gpg --full-generate-key
Note that it's generally preferable that you generate and store your primary key and revocation certificate offline. That way you can make sure you're able to revoke keys in the case of them getting lost, or worse yet, accessed by someone that's not you.
Instead create subkeys for specific devices such as your laptop that you use for encryption and/or signing.
If this is all new to you, here's a link worth reading!
You probably want to check the compliantkubernetes-kubespray repository first, since compliantkubernetes-apps depends on having two clusters already set up.
In addition to this, you will need to set up the following DNS entries (replace example.com
with your domain).
- Point these domains to the workload cluster ingress controller:
*.example.com
- Point these domains to the service cluster ingress controller:
*.ops.example.com
dex.example.com
grafana.example.com
harbor.example.com
notary.harbor.example.com
opensearch.example.com
Assuming you already have everything needed to install the apps, this is what you need to do.
-
Decide on a name for this environment, the cloud provider to use as well as the flavor and set them as environment variables: Note that these will be later kept as global values in the common defaults config to prevent them from being inadvertently changed, as they will affect the default options of the configuration when generated or updated. To change them remove the common defaults config, set the new environment variables, and then generate a new configuration.
export CK8S_ENVIRONMENT_NAME=my-ck8s-cluster export CK8S_CLOUD_PROVIDER=[exoscale|safespring|citycloud|elastx|aws|baremetal] export CK8S_FLAVOR=[dev|prod] # defaults to dev
-
Then set the path to where the ck8s configuration should be stored and the PGP fingerprint of the key(s) to use for encryption:
export CK8S_CONFIG_PATH=${HOME}/.ck8s/my-ck8s-cluster export CK8S_PGP_FP=<PGP-fingerprint1,PGP-fingerprint2,...>
-
Initialize your environment and configuration: Note that the configuration is split between read-only default configs found in the
defaults/
directory, and the override configscommon-config.yaml
,sc-config.yaml
andwc-config.yaml
which are editable and will override any default value. Thecommon-config.yaml
will be applied to both the service and workload cluster, although it will be overriden by the any value set in thesc-config.yaml
orwc-config.yaml
respectively. When new configs are created this will generate new random passwords for all services. When configs are updated this will not overwrite existing values in the override configs. It will create a backup of the old override configs placed inbackups/
, generate new default configs indefaults/
, merge common values intocommon-config.yaml
, and clear out redundant values set in the override configs that matches the default values. See compliantkubernetes.io if you are uncertain about what order you should do things in../bin/ck8s init
-
Edit the configuration files that have been initialized in the configuration path. Make sure that the
objectStorage
values are set incommon-config.yaml
orsc-config.yaml
andwc-config.yaml
, as well as required credentials insecrets.yaml
according to yourobjectStorage.type
. The type may already be set in the default configuration found in thedefaults/
directory depending on your selected cloud provider. SetobjectStorage.s3.*
if you are using S3 orobjectStorage.gcs.*
if you are using GCS. -
Create S3 buckets - optional If you have set
objectStorage.type: s3
, then you need to create the buckets specified underobjectStorage.buckets
in your configuration files. You can run the scriptscripts/S3/entry.sh create
to create the buckets required. The script usess3cmd
in the background and it uses the${HOME}/.s3cfg
file for configuration and authentication for your S3 provider. There's also a helper scriptscripts/S3/generate-s3cfg.sh
that will allow you to generate an appropriates3cfg
config file for a few providers.# Use your s3cmd config file. scripts/S3/entry.sh create # Use custom config file for s3cmd. scripts/S3/generate-s3cfg.sh aws ${AWS_ACCESS_KEY} ${AWS_ACCESS_SECRET_KEY} s3.eu-north-1.amazonaws.com eu-north-1 > s3cfg-aws scripts/S3/entry.sh --s3cfg s3cfg-aws create
-
Test S3 configuration - optional If you enable object storage you also need to make sure that the buckets specified in
objecStorage.buckets
exist. You can run the following snippet to ensure that you've configured S3 correctly:( access_key=$(sops exec-file ${CK8S_CONFIG_PATH}/secrets.yaml 'yq r {} "objectStorage.s3.accessKey"') secret_key=$(sops exec-file ${CK8S_CONFIG_PATH}/secrets.yaml 'yq r {} "objectStorage.s3.secretKey"') sc_config=$(yq m ${CK8S_CONFIG_PATH}/defaults/common-config.yaml ${CK8S_CONFIG_PATH}/defaults/sc-config.yaml ${CK8S_CONFIG_PATH}/common-config.yaml ${CK8S_CONFIG_PATH}/sc-config.yaml -a overwrite -x) region=$(echo ${sc_config} | yq r - 'objectStorage.s3.region') host=$(echo ${sc_config} | yq r - 'objectStorage.s3.regionEndpoint') for bucket in $(echo ${sc_config} | yq r - 'objectStorage.buckets.*'); do s3cmd --access_key=${access_key} --secret_key=${secret_key} \ --region=${region} --host=${host} \ ls s3://${bucket} > /dev/null [ ${?} = 0 ] && echo "Bucket ${bucket} exists!" done )
-
Note, for this step each cluster need to be up and running already. Deploy the apps:
./bin/ck8s apply sc ./bin/ck8s apply wc
-
Test that the cluster is running correctly with:
./bin/ck8s test sc ./bin/ck8s test wc
-
You should now have a fully working environment. Check the next section for some additional steps to finalize it and set up user access.
If you followed the steps in the quickstart above, you should now have deployed the applications and have a fully functioning environment. However, there are a few steps remaining to make all applications ready for the user.
After the cluster setup has completed RBAC resources and namespaces will have been created for the user.
You can configure what namespaces should be created and which users that should get access using the following configuration options in wc-config.yaml
:
user:
namespaces:
- demo1
- demo2
adminUsers:
- [email protected]
- [email protected]"
A kubeconfig file for the user (${CK8S_CONFIG_PATH}/user/kubeconfig.yaml
) can be created by running the script bin/ck8s kubeconfig user
.
The user kubeconfig will be configured to use the first namespace by default.
OpenSearch Dashboards access for the user can be provided either by setting up OIDC or using the internal user database in OpenSearch:
- OIDC:
- Set
opensearch.sso.enabled=true
insc-config.yaml
. - Configure extra role mappings under
opensearch.extraRoleMappings
to give the users the necessary roles.extraRoleMappings: - mapping_name: kibana_user definition: users: - "configurer" - "User Name" - mapping_name: kubernetes_log_reader definition: users: - "User Name"
- Set
- Internal user database:
- Log in to OpenSearch Dashboards using the admin account.
- Create an account for the user.
- Give the
kibana_user
andkubernetes_log_reader
roles to the user.
Users will be able to log in to Grafana using dex, but they will have read only access by default. To give them more privileges, you need to first ask them to log in (so that they show up in the users list) and then change their roles.
Harbor works in a multi-tenant way so that each logged in user will be able to create their own projects and manage them as admins (including adding more users as members). However, users will not be able to see each others (private) projects (unless explicitly invited) and won't have global admin access in Harbor. This also naturally means that container images uploaded to these private registries cannot automatically be pulled in to the Kubernetes cluster. The user will first need to add pull secrets that gives some ServiceAccount access to them before they can be used.
For more details and a list of available services see the user guide.
The bin/ck8s
script provides an entrypoint to the clusters.
It should be used instead of using for example kubectl
or helmfile
directly as an operator.
To use the script, set the CK8S_CONFIG_PATH
to the environment you want to access:
export CK8S_CONFIG_PATH=${HOME}/.ck8s/my-ck8s-cluster
Run the script to see what options are available.
-
Bootstrap and deploy apps to the workload cluster:
./bin/ck8s apply wc
-
Run tests on the service cluster:
./bin/ck8s test sc
-
Port-forward to a Service in the workload cluster:
./bin/ck8s ops kubectl wc port-forward svc/<service> --namespace <namespace> <port>
-
Run
helmfile diff
on a helm release:./bin/ck8s ops helmfile sc -l <label=selector> diff
Add this to ~/.bashrc
:
CK8S_APPS_PATH= # fill this in
source <($CK8S_APPS_PATH/bin/ck8s completion bash)
There are two simple scripts that can be used to clean up you clusters.
To clean up the service cluster run:
./scripts/clean-sc.sh
To clean up the workload cluster run:
./scripts/clean-wc.sh
See https://compliantkubernetes.io/operator-manual/.
-
Go to the Google console and create a project.
-
Go to the Oauth consent screen and name the application with the same name as the project of your google cloud project add the top level domain e.g.
elastisys.se
to Authorized domains. -
Go to Credentials and press
Create credentials
and selectOAuth client ID
. Selectweb application
and give it a name and add the URL to dex in theAuthorized Javascript origins
field, e.g.dex.demo.elastisys.se
. Add<dex url>/callback
to Authorized redirect URIs field, e.g.dex.demo.elastisys.se/callback
. -
Configure the following options in
CK8S_CONFIG_PATH/secrets.yaml
dex: googleClientID: googleClientSecret:
- When using local volumes, OpenSearch might not start properly unless all worker nodes in the cluster has a local volume attatched to it.
- Users must explicitly be given privileges in Grafana, OpenSearch and Kubernetes instead of automatically getting assigned roles based on group membership when logging in using OIDC.
- The OPA policies are not enforced by default. Unfortunately the policies breaks cert-manager so they have been set to "dry-run" by default.
- OpenSearch Dashboards Single Sign On (SSO) via OpenID/Dex requires LetsEncrypt Production.
For more, please the the public GitHub issues: https://github.com/elastisys/compliantkubernetes-apps/issues.