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

     1  package kube
     2  
     3  deployment: dishwasher: spec: {
     4  	replicas: 5
     5  	template: spec: {
     6  		volumes: [{
     7  		}, {
     8  		}, {
     9  			name: "secret-ssh-key"
    10  			secret: secretName: "dishwasher-secrets"
    11  		}]
    12  		containers: [{
    13  			image: "gcr.io/myproj/dishwasher:v0.2.13"
    14  			volumeMounts: [{
    15  			}, {
    16  				mountPath: "/sslcerts"
    17  			}, {
    18  				mountPath: "/etc/certs"
    19  				name:      "secret-ssh-key"
    20  				readOnly:  true
    21  			}]
    22  			args: [
    23  				"-env=prod",
    24  				"-ssh-tunnel-key=/etc/certs/tunnel-private.pem",
    25  				"-logdir=/logs",
    26  				"-event-server=events:7788",
    27  			]
    28  		}]
    29  	}
    30  }