- GitHub Staff
View microk8s
This file contains 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
snap install microk8s --classic | |
sudo ufw default allow routed | |
sudo iptables -P FORWARD ACCEPT | |
microk8s.enable dns dashboard metrics-server | |
# grafana/dashboard | |
# http://IP:8080/api/v1/namespaces/kube-system/services/monitoring-grafana/proxy/ | |
# http://IP:8080/api/v1/namespaces/kube-system/services/https:kubernetes-dashboard:/proxy/#!/pod?namespace=default | |
microk8s.enable istio |
View pre-request.js
This file contains 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
var url = require('url'); | |
var { Property } = require('postman-collection'); | |
const id = pm.variables.get('veracodeApiKeyId'); | |
const key = pm.variables.get('veracodeApiKeySecret'); | |
const authorizationScheme = 'VERACODE-HMAC-SHA-256'; | |
const requestVersion = "vcode_request_version_1"; | |
const nonceSize = 16; |