All in one image for deploys for k8s
4.1K
A Kubectl image bundled with the Google Cloud console.
Image on Docker hub: thecodingmachine/k8s-gitlabci
It also feature useful scripts to easily create secrets and a script to delete images in Gitlab Registry.
You can automate connection to a GKE cluster by setting these environment variables:
Then, simply call:
# connect
Or if you want to connect automatically on container startup, set the environment variable:
If a "kubeconfig" file is enough to connect to your environement, you can automate connection to your cluster
by setting the KUBE_CONFIG_FILE environment variable.
Then, simply call:
# connect
Or if you want to connect automatically on container startup, set the environment variable:
Any environment variable starting with "K8S_SECRET_" in Gilab can be ported to a Kubernetes secret.
Usage:
$ kutils secret:create --name=my_secrets_name > secret.yaml
If you want to change the prefix (for instance to get all environment variables starting with "K8S_DB_SECRET_"), use:
$ kutils secret:create --name=my_secrets_name --prefix=K8S_DB_SECRET_ > secret.yaml
If you already have a secrets YAML file and you want to edit it, you can use the secret:add command.
Usage:
$ kutils secret:add secret.yaml --secret-name=DB_PASSWORD --secret-value=foobar [--name=my-secrets]
The "--name" is optional and can be used to specify the name of the secret resource to edit (in case your YAML file contains multiple documents with multiple secrets).
You can also ask secret:add to populate the secret from the content of an environment variable:
$ kutils secret:add secret.yaml --secret-name=DB_PASSWORD --secret-value-from-env=MYSQL_PASSWORD
In the example above, the $MYSQL_PASSWORD environment variable will be turned in a secret whose name is "DB_PASSWORD".
You can change the "host" of an Ingress file with a single command:
$ kutils ingress:edit-host ingress.yaml https://example.com
If your file contains many Ingresses, or if your Ingress contains many rules with many hosts, use:
$ kutils ingress:edit-host ingress.yaml https://example.com --ingress-name=my-ingress --host-position=0
Out of the box, there is no easy way to delete a special tag of a given image in the Gitlab registry (as of version 10.8).
This image provides a simple script that enables you to delete images easily.
If you want to do continuous deployment, it is not uncommon to build one image per pipeline in Gitlab. You will typically tag all your images using the commit SHA or the branch name. You will soon end up having a lot of images in your Gitlab registry. Docker images are big, and disk-space is finite so at some point, you will need to have a mechanism to automatically delete an image when it is no more needed.
As it turns out, deleting an image is surprisingly difficult, due to a number of outstanding issues:
This image is here to help.
You will typically use this image in your .gitlab-ci.yml file.
.gitlab-ci.yml
delete_image:
stage: cleanup
image: thecodingmachine/k8s-gitlabci:latest
script:
- /delete_image.sh registry.gitlab.mycompany.com/path/to/image:$CI_COMMIT_REF_NAME
when: manual
environment:
name: review/$CI_COMMIT_REF_NAME
action: stop
only:
- branches
except:
- master
The /delete_image.sh script takes one single argument: the full path to the image to be deleted (including the tag).
Important: for the script to work, you must add a "Secret variable" in Gitlab CI named CI_ACCOUNT.
This variable must be in the form [user]:[password] where [user] is a Gitlab user that has access to the registry
and [password] is the Gitlab password of the user. This can be regarded obviously as a security issue if you don't trust
all developers who have access to the CI environment (as they will be able to "echo" this secret variable).
This is needed because the default Gitlab registry token available to the CI does not have the rights to delete an image by default. An issue is opened in Gitlab to fix this issue: #39490 - Allow to bulk delete docker images
All the hard work has been done by Alessandro Lai and Vincent Composieux.
I've only put your ideas in a Docker image.
This image also contains kubectl (the command line tool for Kubernetes) that can be useful to perform cleanup actions
in a Kubernetes cluster.
Content type
Image
Digest
Size
185.5 MB
Last updated
over 6 years ago
docker pull thecodingmachine/k8s-gitlabci