Skip to content

Instantly share code, notes, and snippets.

View ctcampbell's full-sized avatar
🏠
Working from home

Chris Campbell ctcampbell

🏠
Working from home
  • GitHub Staff
  • London
View GitHub Profile
@ctcampbell
ctcampbell / microk8s
Last active July 13, 2022 05:32 — forked from caglar10ur/microk8s
microk8s setup with istio and bookinfo
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
@ctcampbell
ctcampbell / pre-request.js
Last active January 26, 2023 02:13
Postman pre-request to add Veracode HMAC header
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;
---
apiVersion: v1
kind: ServiceAccount
metadata:
name: cleaner
namespace: tekton-pipelines
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata: