/
githubmirror
/
origin
Обзор
Документация
Войти
/
githubmirror
/
origin
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
test/extended/testdata/test-deployment.yaml
32 строки
697 B
Jan Chaloupka
[sig-cli] oc: extend DC testing to Deployments
12 авг 2024, 21:48
12 авг 2024, 21:48
c3a0913
Код
Авторство
О чём код?
apiVersion: apps/v1 kind: Deployment metadata: name: test-deployment spec: replicas: 1 selector: matchLabels: name: test-deployment strategy: type: Recreate template: metadata: labels: name: test-deployment spec: containers: - image: image-registry.openshift-image-registry.svc:5000/openshift/tools:latest imagePullPolicy: IfNotPresent name: ruby-helloworld ports: - containerPort: 8080 protocol: TCP resources: limits: cpu: 100m memory: 3Gi dnsPolicy: ClusterFirst restartPolicy: Always volumes: - emptyDir: {} name: vol1