busykoala / rs-operator-poc

POC to look into rust k8s api usage from within the cluster.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dummy 🦀 'operator'

This is a quick and dirty rust experiment to learn about how to use the k8s api using rust from within a namespace using the service account token in the container.

Quick setup

# start minikube
minikube start
# put minikube docker context into scope
eval $(minikube docker-env)
# build image (in minikube context)
docker build -t poc-operator .
# apply the resources
kubectl create ns poc-operator
kubectl apply -f setup.yaml

About

POC to look into rust k8s api usage from within the cluster.


Languages

Language:Rust 86.8%Language:Dockerfile 13.2%