https://github.com/ivanclay/gitops-fullcycle
It is a gitop course taught on the Full Cycle platform
https://github.com/ivanclay/gitops-fullcycle
gitops go golang
Last synced: 22 days ago
JSON representation
It is a gitop course taught on the Full Cycle platform
- Host: GitHub
- URL: https://github.com/ivanclay/gitops-fullcycle
- Owner: ivanclay
- Created: 2024-11-17T17:19:31.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-23T10:40:34.000Z (about 1 year ago)
- Last Synced: 2025-03-16T20:26:28.541Z (10 months ago)
- Topics: gitops, go, golang
- Language: Go
- Homepage:
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Git Ops Full Cycle








It is a GitOps course taught on the Full Cycle platform
## Build a Docker image
```sh
docker build -t /gitopsfc:latest .
```
## Execute app in Docker
```sh
docker run --rm -p 8080:8080 /gitopsfc:latest
```
## Create a local cluster (using `KIND`)
```sh
kind create cluster --name=gitopsfc
```
## Apply context
```sh
kubectl cluster-info --context kind-gitopsfc
```
**Verify GitHub Actions Permissoins**