(still a work-in-progress)
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
| apiVersion: kyverno.io/v1 | |
| # The `ClusterPolicy` kind applies to the entire cluster. | |
| kind: ClusterPolicy | |
| metadata: | |
| name: disable-workers | |
| spec: | |
| # The `validationFailureAction` tells Kyverno if the resource being validated should be allowed but reported (`Audit`) or blocked (`Enforce`). | |
| validationFailureAction: Enforce | |
| rules: | |
| - name: disable-workers |
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
| [user] | |
| name = Pavan Kumar Sunkara | |
| email = [email protected] | |
| username = pksunkara | |
| [core] | |
| editor = vim | |
| whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol | |
| pager = delta | |
| [sendemail] | |
| smtpencryption = tls |
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
| # Set variables in .bashrc file | |
| # don't forget to change your path correctly! | |
| export GOPATH=$HOME/golang | |
| export GOROOT=/usr/local/opt/go/libexec | |
| export PATH=$PATH:$GOPATH/bin | |
| export PATH=$PATH:$GOROOT/bin |
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
| [root@localhost ~]# INSTALL_K3S_SKIP_DOWNLOAD=true ./install.sh | |
| [INFO] Skipping k3s download and verify | |
| [INFO] Creating /usr/local/bin/kubectl symlink to k3s | |
| [INFO] Creating /usr/local/bin/crictl symlink to k3s | |
| [INFO] Skipping /usr/local/bin/ctr symlink to k3s, command exists in PATH at /bin/ctr | |
| [INFO] Creating killall script /usr/local/bin/k3s-killall.sh | |
| [INFO] Creating uninstall script /usr/local/bin/k3s-uninstall.sh | |
| [INFO] env: Creating environment file /etc/systemd/system/k3s.service.env | |
| [INFO] systemd: Creating service file /etc/systemd/system/k3s.service | |
| [INFO] systemd: Enabling k3s unit |