This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# print usage | |
DOMAIN=$1 | |
if [ -z "$1" ]; then | |
echo "USAGE: $0 domain.lan" | |
echo "" | |
echo "This will generate a non-secure self-signed wildcard certificate for given domain." | |
echo "This should only be used in a development environment." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
VM_ID=200 | |
RELEASE=jammy | |
PROJECT_PATH=/opt/homelab/ubuntu-template/ | |
# cleanup before start | |
rm -f $PROJECT_PATH/jammy-server-cloudimg-amd64.img | |
qm destroy $VM_ID | |
# image download |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
` kubectl logs -f deployments/awx-operator-controller-manager -c awx-manager -n awx` | |
``` | |
{"level":"info","ts":1648823811.349973,"logger":"cmd","msg":"Version","Go Version":"go1.16.9","GOOS":"linux","GOARCH":"amd64","ansible-operator":"v1.12.0","commit":"d3b2761afdb78f629a7eaf4461b0fb8ae3b02860"} | |
{"level":"info","ts":1648823811.3501859,"logger":"cmd","msg":"Watching single namespace.","Namespace":"awx"} | |
{"level":"info","ts":1648823812.1558785,"logger":"controller-runtime.metrics","msg":"metrics server is starting to listen","addr":"127.0.0.1:8080"} | |
{"level":"info","ts":1648823812.1563756,"logger":"watches","msg":"Environment variable not set; using default value","envVar":"ANSIBLE_VERBOSITY_AWX_AWX_ANSIBLE_COM","default":2} | |
{"level":"info","ts":1648823812.1564317,"logger":"watches","msg":"Environment variable not set; using default value","envVar":"ANSIBLE_VERBOSITY_AWXBACKUP_AWX_ANSIBLE_COM","default":2} | |
{"level":"info","ts":1648823812.1564555,"logger":"watches","msg":"Environment variable not set; using def |