Skip to content
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.

Commit

Permalink
Work in progress
Browse files Browse the repository at this point in the history
  • Loading branch information
skhaz committed Nov 17, 2023
1 parent d3666b3 commit 7d054f7
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,25 +51,25 @@ jobs:
apiVersion: serving.knative.dev/v1
kind: Service
metadata:
name: $SERVICE_NAME
name: "$SERVICE_NAME"
labels:
cloud.googleapis.com/location: $REGION
cloud.googleapis.com/location: "$REGION"
annotations:
run.googleapis.com/execution-environment: gen2
run.googleapis.com/execution-environment: "gen2"
run.googleapis.com/startup-cpu-boost: "true"
autoscaling.knative.dev/maxScale: 16
autoscaling.knative.dev/maxScale: "16"
spec:
template:
spec:
containerConcurrency: 120
timeoutSeconds: 60
containerConcurrency: "120"
timeoutSeconds: "60"
containers:
- image: $REGISTRY/$SERVICE_NAME:$GITHUB_SHA
name: play
- image: "$REGISTRY/$SERVICE_NAME:$GITHUB_SHA"
name: "play"
resources:
limits:
cpu: 4000m
memory: 8Gi
cpu: "4000m"
memory: "8Gi"
EOF
gcloud run services replace service.yaml

0 comments on commit 7d054f7

Please sign in to comment.