Projekt

Obecné

Profil

Stáhnout (491 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
apiVersion: apps/v1
2
kind: Deployment
3
metadata:
4
  labels:
5
    io.kompose.service: frontend
6
  name: frontend
7
spec:
8
  replicas: 1
9
  selector:
10
    matchLabels:
11
      io.kompose.service: frontend
12
  strategy: {}
13
  template:
14
    metadata:
15
      labels:
16
        io.kompose.service: frontend
17
    spec:
18
      containers:
19
        - image: schwobik/frontend-app:1.2
20
          name: frontend
21
          ports:
22
            - containerPort: 80
23
          resources: {}
24
      restartPolicy: Always
25
status: {}
(11-11/16)