Categories
DevOps Documentation git

Deploying Mkdocs with Gitlab CI and Gitlab Pages

Gitlab does not have mkdocs in their prexisting ci/cd templates. .gitlab-ci.yml On your repo create a .gitlab-ci.yml file with the following contents: image: python:3.8-buster before_script: – pip install –upgrade pip && pip install -r requirements.txt pages: stage: deploy script: – mkdocs build – mv site public artifacts: paths: – public only: – master All Gitlab […]

Categories
Mountain Biking

Best MTB Trails in South Africa List

This is a list of the top mountainbike (MTB) trails in South Africa (not all of them…) To view a map of all the routes, use trailforks.com The price of the trail is in brackets Hillcrest / Contermanskloof – Cape Town (R60) Hoogekraal / Faircape – Cape Town (R60) Drakensburg Trails – KZN (R135) Carkloof […]

Categories
Keycloak

keycloak single sig on not working making me auth on each platform

nEver forced to login on all clients with keycloak SSO. This has to do with your Authentication flow. Under Browser flow -> Forms should be alternative not Required

Categories
Containerisation Containers DevOps Kubernetes

Minikube: Deploy a container using a private image registry

This post is mainly for wanting to test a private image on your local k8s instance. At this point in time I feel minikube is the lightweight standard for this. You should have a private registry with the image you want to deploy, otherwise – use a public image. Getting Started Install minikube Once minikube […]

Categories
Containerisation Containers Continuous Integration DevOps git Uncategorized

Cannot use harbor robot account ImagePullBackOff pull access denied

This post is mainly about harbor robot accounts. Robot accounts are accounts used to run automated operations and have no access to the frontend. The account to use in your continuous integration or k8s registry secrets. You create a robot account by going to: Project -> Robot Accounts -> New Robot Account The Problem $ […]