- Disable Secure Boot in BIOS, enable Boot of Ubuntu
- Boot this ISO via USB stick: https://plus.google.com/+IanMORRISON/posts/igAkD5j3MAq
- Use arch-bootstrap to install Arch Linux on the stick: https://github.com/tokland/arch-bootstrap
- aloso install the wifi driver https://aur.archlinux.org/packages/rtl8723bs-dkms-git/
- Copy Firmware
rtl8723bs_nic.binfor Wifi from https://github.com/hadess/rtl8723bs - Update Compute Stick Firmware (to make headless work): https://communities.intel.com/message/347428#347428 https://downloadcenter.intel.com/download/25506
- To boot headless: add kernel parameters
text(maybe not needed anymore)
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
| frontend stats | |
| bind *:9000 | |
| stats enable | |
| stats uri /haproxy_stats | |
| stats refresh 10s | |
| ### ocp 4 dev stuff | |
| frontend ocp4-dev-api-server | |
| bind *:6443 |
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
| #Login to openshift and retrieve token | |
| curl -u admin -kv -H "X-CSRF-Token: xxx" \ | |
| 'https://master.cluster.local:8443/oauth/authorize?client_id=openshift-challenging-client&response_type=token' | |
| #It should give you a bearer token like this | |
| https://master.cluster.local:8443/oauth/token/implicit#access_token=aRVmsEHbUEhd4WeP2bctj0n57ogHMBvOIcrtjc7tCw4&expires_in=86400&scope=user%3Afull&token_type=Bearer | |
| TOKEN="aRVmsEHbUEhd4WeP2bctj0n57ogHMBvOIcrtjc7tCw4" | |
| #Get a configmap named configmaptest |