Skip to content

Instantly share code, notes, and snippets.

@vfarcic
Last active January 18, 2022 00:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vfarcic/a6a6ebc16f75e2cd8902f7695cbce5a5 to your computer and use it in GitHub Desktop.
Save vfarcic/a6a6ebc16f75e2cd8902f7695cbce5a5 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
# jx.sh: https://gist.github.com/3dd5592dc5d582ceeb68fb3c1cc59233
jx console
jx create quickstart
jx create quickstart \
--filter golang-http \
--project-name jx-go \
--batch-mode
open "https://github.com/jenkins-x-quickstarts"
ls -1 ~/.jx/draft/packs/github.com/jenkins-x-buildpacks/jenkins-x-kubernetes/packs
ls -1 ~/.jx/draft/packs/github.com/jenkins-x-buildpacks/jenkins-x-kubernetes/packs/go
GH_USER=[...]
open "https://github.com/$GH_USER/jx-go"
cd jx-go
ls -1
cat Makefile
cat Dockerfile
cat skaffold.yaml
ls -1 charts
ls -1 charts/jx-go
cat Jenkinsfile
open "https://github.com/$GH_USER/jx-go/settings/hooks"
jx console
jx get activities
jx get activities --filter jx-go --watch
jx get build logs
jx get build logs -f jx-go
jx get build logs $GH_USER/jx-go/master
jx get pipelines
jx get applications
jx get env
jx get applications --env staging
jx get applications --env production
open "https://github.com/$GH_USER/jx-go/releases"
ADDR=$(kubectl --namespace jx-staging \
get ingress jx-go \
-o jsonpath="{.spec.rules[0].host}")
curl "http://$ADDR"
hub delete -y \
$GH_USER/environment-jx-rocks-staging
hub delete -y \
$GH_USER/environment-jx-rocks-production
hub delete -y $GH_USER/jx-go
rm -rf ~/.jx/environments/$GH_USER/environment-jx-rocks-*
cd ..
rm -rf jx-go
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment