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

     1  package kube
     2  
     3  deployment: watcher: {
     4  	image: "gcr.io/myproj/watcher:v0.1.0"
     5  
     6  	volume: "secret-volume": {
     7  		mountPath: "/etc/ssl"
     8  		spec: secret: secretName: "star-example-com-secrets"
     9  	}
    10  	port: http: 7080
    11  	expose: port: https: 7788
    12  }