mirror of
https://github.com/wardviaene/kubernetes-course.git
synced 2026-02-14 17:49:56 +00:00
10 lines
458 B
Bash
Executable File
10 lines
458 B
Bash
Executable File
#!/bin/bash
|
|
echo 'export PATH=$PATH:~/.pgo/pgo/' >> ~/.bashrc
|
|
echo 'export PGOUSER="${HOME?}/.pgo/pgo/pgouser"' >> ~/.bashrc
|
|
echo 'export PGO_CA_CERT="${HOME?}/.pgo/pgo/client.crt"' >> ~/.bashrc
|
|
echo 'export PGO_CLIENT_CERT="${HOME?}/.pgo/pgo/client.crt"' >> ~/.bashrc
|
|
echo 'export PGO_CLIENT_KEY="${HOME?}/.pgo/pgo/client.key"' >> ~/.bashrc
|
|
echo 'export PGO_APISERVER_URL='https://127.0.0.1:8443'' >> ~/.bashrc
|
|
echo 'export PGO_NAMESPACE=pgo' >> ~/.bashrc
|
|
|