A collection of helpful kubernetes related commands.
kubectl config set-context --current --namespace=example
| #!/bin/bash | |
| ################################################# | |
| # Setup Fedora 23 Gnome3 with xRDP via XFCE4 | |
| ################################################# | |
| # install the XFCE4 desktop | |
| sudo dnf groupinstall xfce-desktop | |
| # open standard RDP ports | |
| sudo firewall-cmd --add-port=3389/tcp |
| #!/usr/bin/env bash | |
| # Fedora 35 VM using libvirt on Fedora 36 workstation | |
| # Clean OS install with with user account 'admin' created with administrator privileges | |
| # turning off firewalld for testing purposes | |
| # refer to firewall-cmd documentation to configure firewall ports on container host | |
| sudo systemctl stop firewalld | |
| sudo dnf install -y podman-compose | |
| mkdir -p /home/admin/pihole/etc-pihole |