Skip to content

Instantly share code, notes, and snippets.

@vfarcic
Last active January 18, 2022 00:46
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vfarcic/855b8d70f3fa49b42d930144ed1606f1 to your computer and use it in GitHub Desktop.
Save vfarcic/855b8d70f3fa49b42d930144ed1606f1 to your computer and use it in GitHub Desktop.
# Links to gists for creating a cluster with jx
# gke-jx.sh: https://gist.github.com/86e10c8771582c4b6a5249e9c513cd18
# eks-jx.sh: https://gist.github.com/dfaf2b91819c0618faf030e6ac536eac
# aks-jx.sh: https://gist.github.com/6e01717c398a5d034ebe05b195514060
# install.sh: https://gist.github.com/3dd5592dc5d582ceeb68fb3c1cc59233
# External IP
LB_IP=$(kubectl -n kube-system \
get service jxing-nginx-ingress-controller \
--output jsonpath="{.status.loadBalancer.ingress[0].ip}")
# The domain through which
# we can access the applications
DOMAIN=serverless.$LB_IP.nip.io
# The Namespace where Ingress is running
INGRESS_NS=kube-system
# The name of the NGINX Ingress Deployment
INGRESS_DEP=jxing-nginx-ingress-controller
PROVIDER=[...]
jx install \
--provider $PROVIDER \
--external-ip $LB_IP \
--domain $DOMAIN \
--default-admin-password=admin \
--ingress-namespace $INGRESS_NS \
--ingress-deployment $INGRESS_DEP \
--default-environment-prefix tekton \
--git-provider-kind github \
--namespace cd \
--prow \
--tekton \
-b
jx get teams
jx team jx
jx team cd
jx create quickstart \
--filter golang-http \
--project-name jx-serverless \
--batch-mode
cd jx-serverless
ls -l
cat jenkins-x.yml
jx get activities \
--filter jx-serverless \
--watch
kubectl -n cd get pods
jx get pipelines
jx console
jx get build logs
cd ..
GH_USER=[...]
hub delete -y \
$GH_USER/environment-jx-rocks-staging
hub delete -y \
$GH_USER/environment-jx-rocks-production
hub delete -y \
$GH_USER/environment-tekton-staging
hub delete -y \
$GH_USER/environment-tekton-production
hub delete -y $GH_USER/jx-serverless
rm -rf jx-serverless
rm -rf ~/.jx/environments/$GH_USER/environment-jx-rocks-*
rm -rf ~/.jx/environments/$GH_USER/environment-tekton-*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment