apiVersion: serving.knative.dev/v1
kind: Service
# ...
spec:
template:
spec:
containers:
- name: first-container
image: <image>
ports:
- containerPort: 8080
# ...
startupProbe: (1)
httpGet:
port: 8080
path: "/"
- name: second-container
image: <image>
# ...
startupProbe: (2)
httpGet:
port: 8081
path: "/"