All checks were successful
Build and Push to ACR / Build and Push (push) Successful in 45s
Change-Id: Iccb9a69a29ce96d618762c5c852c8ec43d9b78df
46 lines
782 B
YAML
46 lines
782 B
YAML
apiVersion: score.dev/v1b1
|
|
metadata:
|
|
name: test-micro-alex-stable-1
|
|
|
|
containers:
|
|
app:
|
|
image: .
|
|
variables:
|
|
PORT: "3000"
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /health
|
|
port: 3000
|
|
readinessProbe:
|
|
httpGet:
|
|
path: /health
|
|
port: 3000
|
|
resources:
|
|
limits:
|
|
memory: "256Mi"
|
|
cpu: "300m"
|
|
requests:
|
|
memory: "64Mi"
|
|
cpu: "50m"
|
|
|
|
service:
|
|
ports:
|
|
http:
|
|
port: 80
|
|
targetPort: 3000
|
|
|
|
resources:
|
|
env:
|
|
type: environment
|
|
|
|
dns:
|
|
type: dns
|
|
|
|
# ----- Uncomment to add a PostgreSQL database (deployment_profile: db-only or db+cache) -----
|
|
# db:
|
|
# type: postgres
|
|
|
|
# ----- Uncomment to add Redis cache (deployment_profile: db+cache) -----
|
|
# cache:
|
|
# type: redis
|