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
{ | |
"keys":[ | |
{"e":"AQAB","kid":"iISpkVPZ7-xVov1EVjgS3vgBtk6sxgJyAM6lxmmjId4","kty":"RSA","n":"vsMElLv4sCcHKV8yjRydmb_3QOv7jzg6dJBEXkU9rwzbTnUoY4Kdb0lebMFggRwPDMHEyjKuoRvcHYW7WSnR626GvwFxqoghsBt-k8-e-uu4vKwasl-tzIrKKhoa2WoQUfaflBTAvaWdgIwqYy2_JIcb6_ka2X5toPdTSSAUBQOMTlg-BgTlGr-HqdbqZgtUn2ZTv5EfEMxIgW1c9N91KscKWqW6ozVFeKtV9fjDFWR6WpXnn6AXQ3nhYH3IjmD5PEwLl-ostTFs01zFn__7A5_opjbEoBSfLz11Azn12PBSVQSi6Vsi21myLXscfKl7jcCBhOFjdFiDtCCwoPfVtw"} | |
] | |
} |
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
{ | |
"keys":[ | |
{ | |
"e":"AQAB", | |
"kid":"iISpkVPZ7-xVov1EVjgS3vgBtk6sxgJyAM6lxmmjId4", | |
"kty":"RSA", | |
"n":"vsMElLv4sCcHKV8yjRydmb_3QOv7jzg6dJBEXkU9rwzbTnUoY4Kdb0lebMFggRwPDMHEyjKuoRvcHYW7WSnR626GvwFxqoghsBt-k8-e-uu4vKwasl-tzIrKKhoa2WoQUfaflBTAvaWdgIwqYy2_JIcb6_ka2X5toPdTSSAUBQOMTlg-BgTlGr-HqdbqZgtUn2ZTv5EfEMxIgW1c9N91KscKWqW6ozVFeKtV9fjDFWR6WpXnn6AXQ3nhYH3IjmD5PEwLl-ostTFs01zFn__7A5_opjbEoBSfLz11Azn12PBSVQSi6Vsi21myLXscfKl7jcCBhOFjdFiDtCCwoPfVtw" | |
} | |
] | |
} |
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
wget --output-document=/dev/null http://speedtest.wdc01.softlayer.com/downloads/test500.zip |
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
scrape_configs: | |
- job_name: 'your_kubernetes_pod' | |
dns_sd_configs: | |
- refresh_interval: 15s | |
names: | |
- {headless-service-name}.default.svc.cluster.local | |
relabel_configs: | |
# Change default port we get from DNS (0) to expected port ({your_pod_port}) | |
- source_labels: [__address__] | |
action: replace |
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
The WSL 2 docker-desktop-data vm disk image would normally reside in: %USERPROFILE%\AppData\Local\Docker\wsl\data\ext4.vhdx | |
Follow the following to relocate it to other drive/directory, with all existing docker data preserved (tested against Docker Desktop 2.3.0.4 (46911), and continued to work after updating the 3.1.0 (51484)): | |
First, shut down your docker desktop by right click on the Docker Desktop icon and select Quit Docker Desktop | |
Then, open your command prompt: | |
wsl --list -v | |
You should be able to see, make sure the STATE for both is Stopped.(wsl --shutdown) |
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
// This example demonstrates how to use go to walk a directory | |
// and filter the contents by using filepath.Walk with | |
// variables in the external scope to provide the filter and | |
// to capture the file names. | |
// | |
// To build: | |
// go build walk.go | |
// Usage: | |
// walk <pattern> <files> | |
// |
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
## GitLab Runner Image | |
## | |
## By default it's using gitlab/gitlab-runner:alpine-v{VERSION} | |
## where {VERSION} is taken from Chart.yaml from appVersion field | |
## | |
## ref: https://hub.docker.com/r/gitlab/gitlab-runner/tags/ | |
## | |
# image: gitlab/gitlab-runner:alpine-v11.6.0 | |
## Specify a imagePullPolicy |