github.com/solo-io/cue@v0.4.7/doc/tutorial/kubernetes/manual/services/kitchen/dishwasher/kube.cue (about)

     1  package kube
     2  
     3  deployment: dishwasher: _kitchenDeployment & {
     4  	replicas: 5
     5  	image:    "gcr.io/myproj/dishwasher:v0.2.13"
     6  	arg: "ssh-tunnel-key": "/etc/certs/tunnel-private.pem"
     7  	volume: "secret-ssh-key": {
     8  		mountPath: "/sslcerts"
     9  		readOnly:  true
    10  		spec: secret: secretName: "secrets"
    11  	}
    12  }