mirror of
https://github.com/mariadb-corporation/dev-example-orders.git
synced 2026-01-13 20:19:30 +00:00
17 lines
451 B
YAML
17 lines
451 B
YAML
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: engines-test-api-deployment
|
|
spec:
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels: # labels to select/identify the deployment
|
|
app: engines-test-api
|
|
spec: # pod spec
|
|
containers:
|
|
- name: engines-test-api
|
|
image: gcr.io/mariadb-technical-marketing/engines-test-api-image:v1 # image we pushed
|
|
ports:
|
|
- containerPort: 8080
|