|
|
@@ -0,0 +1,123 @@ |
|
|
apiVersion: v1 |
|
|
kind: DeploymentConfig |
|
|
metadata: |
|
|
creationTimestamp: null |
|
|
name: hello |
|
|
spec: |
|
|
replicas: 7 |
|
|
revisionHistoryLimit: 2 |
|
|
strategy: |
|
|
resources: {} |
|
|
type: Rolling |
|
|
template: |
|
|
metadata: |
|
|
annotations: |
|
|
sidecar.istio.io/status: '{"version":"b826a2e335f1ed7d6c4fc3e2b937ebb3d84d5e7712c046c278943013c3febfef","initContainers":["istio-init"],"containers":["istio-proxy"],"volumes":["istio-envoy","istio-certs"]}' |
|
|
creationTimestamp: null |
|
|
labels: |
|
|
app: hello |
|
|
tier: backend |
|
|
track: stable |
|
|
spec: |
|
|
containers: |
|
|
- image: fake.docker.io/google-samples/hello-go-gke:1.0 |
|
|
name: hello |
|
|
ports: |
|
|
- containerPort: 80 |
|
|
name: http |
|
|
resources: {} |
|
|
- args: |
|
|
- proxy |
|
|
- sidecar |
|
|
- --configPath |
|
|
- /etc/istio/proxy |
|
|
- --binaryPath |
|
|
- /usr/local/bin/envoy |
|
|
- --serviceCluster |
|
|
- hello |
|
|
- --drainDuration |
|
|
- 2s |
|
|
- --parentShutdownDuration |
|
|
- 3s |
|
|
- --discoveryAddress |
|
|
- istio-pilot:15003 |
|
|
- --discoveryRefreshDelay |
|
|
- 1s |
|
|
- --zipkinAddress |
|
|
- "" |
|
|
- --connectTimeout |
|
|
- 1s |
|
|
- --statsdUdpAddress |
|
|
- "" |
|
|
- --proxyAdminPort |
|
|
- "15000" |
|
|
- --controlPlaneAuthPolicy |
|
|
- NONE |
|
|
env: |
|
|
- name: POD_NAME |
|
|
valueFrom: |
|
|
fieldRef: |
|
|
fieldPath: metadata.name |
|
|
- name: POD_NAMESPACE |
|
|
valueFrom: |
|
|
fieldRef: |
|
|
fieldPath: metadata.namespace |
|
|
- name: INSTANCE_IP |
|
|
valueFrom: |
|
|
fieldRef: |
|
|
fieldPath: status.podIP |
|
|
image: docker.io/istio/proxy:unittest |
|
|
imagePullPolicy: IfNotPresent |
|
|
name: istio-proxy |
|
|
resources: {} |
|
|
securityContext: |
|
|
privileged: false |
|
|
readOnlyRootFilesystem: true |
|
|
runAsUser: 1337 |
|
|
volumeMounts: |
|
|
- mountPath: /etc/istio/proxy |
|
|
name: istio-envoy |
|
|
- mountPath: /etc/certs/ |
|
|
name: istio-certs |
|
|
readOnly: true |
|
|
initContainers: |
|
|
- args: |
|
|
- -p |
|
|
- "15001" |
|
|
- -u |
|
|
- "1337" |
|
|
image: docker.io/istio/proxy_init:unittest |
|
|
imagePullPolicy: IfNotPresent |
|
|
name: istio-init |
|
|
resources: {} |
|
|
securityContext: |
|
|
capabilities: |
|
|
add: |
|
|
- NET_ADMIN |
|
|
volumes: |
|
|
- emptyDir: |
|
|
medium: Memory |
|
|
name: istio-envoy |
|
|
- name: istio-certs |
|
|
secret: |
|
|
optional: true |
|
|
secretName: istio.default |
|
|
test: false |
|
|
triggers: |
|
|
- type: ConfigChange |
|
|
- imageChangeParams: |
|
|
automatic: true |
|
|
containerNames: |
|
|
- helloworld |
|
|
from: |
|
|
kind: ImageStreamTag |
|
|
name: hello-go-gke:1.0 |
|
|
type: ImageChange |
|
|
status: |
|
|
availableReplicas: 0 |
|
|
latestVersion: 0 |
|
|
observedGeneration: 0 |
|
|
replicas: 0 |
|
|
unavailableReplicas: 0 |
|
|
updatedReplicas: 0 |
|
|
--- |