Set up a complete GitOps pipeline using Flux CD to manage a minikube cluster. Includes bootstrap script, Traefik ingress controller via HelmRelease, and a hello-world nginx deployment. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
17 lines
256 B
YAML
17 lines
256 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: nginx-hello
|
|
namespace: nginx-hello
|
|
labels:
|
|
app: nginx-hello
|
|
spec:
|
|
type: ClusterIP
|
|
selector:
|
|
app: nginx-hello
|
|
ports:
|
|
- port: 80
|
|
targetPort: http
|
|
protocol: TCP
|
|
name: http
|