roperator 0.3.0

Easily create Kubernetes Operators with Rust
Documentation
1
2
3
4
5
6
7
8
9
10
# This is an example instance of the custom resource defined in crd.yaml
# You need to first create the CRD using `kubectl apply -f examples/echo-server/crd.yaml` before
# you can create this resource by using `kubectl apply -f examples/echo-server/example.yaml`
apiVersion: example.roperator.com/v1alpha1
kind: EchoServer
metadata:
  namespace: default
  name: foo
spec:
  serviceName: my-test-service