Skip to content

Instantly share code, notes, and snippets.

View nil1729's full-sized avatar
:octocat:
Learning

Nilanjan Deb nil1729

:octocat:
Learning
View GitHub Profile
@nil1729
nil1729 / contour-init.sh
Last active June 2, 2025 08:53
Kubernetes Cluster Setup
# project contour setup
# https://projectcontour.io/getting-started/
# helm installation
helm repo add bitnami https://charts.bitnami.com/bitnami
helm install projectcontour bitnami/contour --namespace projectcontour --create-namespace
# verify resources
kubectl -n projectcontour get po,svc
@nil1729
nil1729 / auto_deployment_setup.md
Last active November 27, 2022 20:19
Server setup for auto deployment

Prerequisites for Deployment

  • A remote server (I am using Digital Ocean)
  • A Gitlab Account (for container registry)

Step 1 (Creating Droplet)

  • Create a droplet (ubuntu) on Digital Ocean and choose your suitable authentication method (ssh or password)
  • log into the droplet using root and go to second step

Step 2 (Creating User)

  • Add a new user with sudo privilages [see user_add.sh]