Hits: 56

https://github.com/kzorluoglu/chameleon-bash
#ChameleonShop #runtimeDeveloperConsole #InteractiveDebugger #psysh #symfony #php
Developer, Maker.
Hits: 56
https://github.com/kzorluoglu/chameleon-bash
#ChameleonShop #runtimeDeveloperConsole #InteractiveDebugger #psysh #symfony #php
Hits: 255
#!/bin/bash #set -x print_usage() { printf "Usage: aliastest.sh -a alis-domain.tld -d domain.tld domain2.tld" } # Get the options while getopts ":h:a:d:" option; do case $option in h) # display Help print_usage exit;; a) # The alias hostname for check hostname=$OPTARG ;; d) # Domain or domains domains=$OPTARG ;; esac done for domain in $domains do echo "Check for $domain:" echo "-------------------" CNAME=$(dig +short CNAME $domain) if [ "${CNAME}" == "${hostname}." ]; then echo "$domain is alias for $hostname" else echo "$domain is NOT alias for $hostname" fi done
Hits: 282
Cert-manager is easy to install with Helm Package Manager. The first step is add Jetstack repository in our repository and becoming the package info with update
helm repo add jetstack https://charts.jetstack.io helm repo update
Now we can install Cert-Manager with CRDs into our cluster:
helm install cert-manager jetstack/cert-manager --namespace cert-manager --create-namespace --set installCRDs=true
Cert-manager have also a kubectl plugin to easily manage configs and resources
OS=$(go env GOOS); ARCH=$(go env GOARCH); curl -sSL -o kubectl-cert-manager.tar.gz https://github.com/cert-manager/cert-manager/releases/download/v1.7.2/kubectl-cert_manager-$OS-$ARCH.tar.gz tar xzf kubectl-cert-manager.tar.gz sudo mv kubectl-cert_manager /usr/local/bin
Hits: 1335
Updated: 07.12.2022 – etc/hosts step added, all metada-name with release.name refactored, hostPath in values.yaml defined.
Continue reading “Simple Private Docker Registry via Helm (as Helm Chart)”Hits: 449
Install Ubuntu on WSL2 on Windows
After the Docker Desktop installation we need to enable the following WSL integrations at Docker Desktop: