OpenShift DeploymentConfig Definition: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 18: | Line 18: | ||
'''replicas''': 1 | '''replicas''': 1 | ||
'''selector''': | '''selector''': | ||
'''app''': <font color=SandyBrown>?</font> | |||
'''deploymentconfig'''': <font color=SandyBrown>?</font> | |||
'''strategy''': | '''strategy''': | ||
'''template''': | '''template''': | ||
'''triggers''': | '''triggers''': | ||
'''status''': | '''status''': | ||
=Toerase= | =Toerase= |
Revision as of 06:08, 23 November 2017
Internal
Definition
apiVersion: v1 kind: DeploymentConfig metadata: name: deployment-config-name labels: ? spec: replicas: 1 selector: app: ? deploymentconfig': ? strategy: template: triggers: status:
Toerase
{ "spec": { "template": { "metadata": { "labels": { "name": "frontend" } }, "spec": { "containers": [ { "name": "helloworld", "image": "openshift/origin-ruby-sample", "ports": [ { "containerPort": 8080, "protocol": "TCP" } ] } ] } } "replicas": 5, "selector": { "name": "frontend" }, "triggers": [ { "type": "ConfigChange" }, { "type": "ImageChange", "imageChangeParams": { "automatic": true, "containerNames": [ "helloworld" ], "from": { "kind": "ImageStreamTag", "name": "origin-ruby-sample:latest" } } } ], "strategy": { "type": "Rolling" } } }