OpenShift DeploymentConfig Definition: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 59: Line 59:
                                         '''name''': <font color=SandyBrown>config</font>
                                         '''name''': <font color=SandyBrown>config</font>
                                         '''items''':
                                         '''items''':
                                           - '''key''': app.ini
                                           - '''key''': <font color=SandyBrown>app.ini</font>
                                             '''path''': app.ini
                                             '''path''': <font color=SandyBrown>app.ini</font>
             '''triggers''': {...}
             '''triggers''': {...}
  '''status''':
  '''status''':

Revision as of 06:55, 23 November 2017

Internal

Definition

apiVersion: v1

kind:       DeploymentConfig

metadata: 
            name:     blue

            labels:   ?
  
spec: 
            replicas: 1

            selector: 
                      app:              ?
                      deploymentconfig: ?

            strategy: 
                      type: Recreate

            template: 

                      metadata: 
                              labels:   ?

                      spec: 
                           containers:  
                                        - name: blue
                                          image: 
                                          imagePullPolicy: Always
                                          ports:
                                                 - containerPort: 1234
                                                   protocol: TCP
                                          volumeMounts:
                                                 - name: data
                                                   mountPath: /opt/blue/data
                                                 - name: config
                                                   mountPath: /etc/blue/conf
                                          livenessProbe: {...}
                                          readinessProbe: {...}
                                          terminationMessagePath: /dev/termination-log
                                          resources: {...}
                           dnsPolicy: ClusterFirst
                           restartPolicy: Always
                           securityContext: {...}
                           terminationGracePeriodSeconds: 30
                           volumes:  
                                   - name: data
                                     persistentVolumeClaim:
                                       claimName: data
                                   - name: config
                                     configMap:
                                       name: config
                                       items:
                                         - key: app.ini
                                           path: app.ini
            triggers: {...}
status: