/explore

Click through on any links that interest you or select the planets on the right to continue exploring the Outer Web.
You are here

stephennimmo.com
| | eradman.com
1.5 parsecs away

Travel
| | [AI summary] This article provides steps for deploying Redash on Kubernetes, including configuration files, service descriptions, and database initialization commands.
| | managing.blue
1.7 parsecs away

Travel
| | While creating a Deployment earlier today, I faced a weird situation where a specific environment variable that was held as a Secret, was not being set. I tried deleting and recreating the secret, with no success. Mind you this was a long YAML with volumes, volumeMounts, ConfigMaps as enviroment variables, lots of lines. In the...
| | devopsdirective.com
1.6 parsecs away

Travel
| | [AI summary] The article explains how to create a maintenance page for a Kubernetes service using nginx and ConfigMaps without requiring a custom container image.
| | blog.nobugware.com
13.2 parsecs away

Travel
| Following my earlier post about Traefik 2 and Kubernetes, here are some advanced configuration examples and a full yaml example at the end of this post: Protecting a route with a password Create an htpasswd file named users for a user admin htpasswd -c users admin Use kubectl to create the secret (easier for multi lines file). kubectl create secret generic admin-authsecret --from-file=users Create a middleware for authentication: apiVersion: traefik.containo.us/v1alpha1 kind: Middleware metadata: name: a...