Deployment
Step 1: Publish image to Docker Hub
Install Docker
In your root directory create
Dockerfile
(copy from another GitHub repo)docker build -t csesocprojects/cselectives:latest .
csesocprojects/
will create it in thecsesocprojects
directory in Docker HubPotential Error: Sym link not recognised - you are not in the directory that
Dockerfile
is inPotential Error: Permission denied - see https://www.digitalocean.com/community/questions/how-to-fix-docker-got-permission-denied-while-trying-to-connect-to-the-docker-daemon-socket
If running this command on M1 mac, use
docker build -t csesocprojects/cselectives:latest . --platform linux/amd64
Run
docker images
to see that it's been created successfullydocker login
and use Projects Dockerhub creds from Vaultdocker push csesocprojects/cselectives:latest
Step 2: Deploying for the first time
Log in using GitHub
Create a namespace for your project (created
cselectives
)default config settings are fine
make sure the namespace is in the same project
Create a deployment
Namespace:
cselectives
Name:
frontend
Container image:
csesocprojects/cselectives:latest
(from before)Command > stdin: Yes. ✅ TTY status:OPTIONAL? idk
Set scaling and upgrade policy to 1 Pods Max Surge and 0 Pods Max Surge
5. Add an ingress (make sure you’re not in Cluster Explorer view)
6. https://csesoc.atlassian.net/wiki/spaces/Projects/pages/874971229 to get a new certificate.
Step 3: Redeployment
Do Step 1 with your most up to date changes. This should push the most up to date image to the Docker directory.
Go to the project in the Cluster Manager (not Cluster Explorer)
Click Redeploy
Redeployment should take less than a minute, and the new version of the site should be up!
Related content
UNSW CSESoc