Created
October 10, 2024 00:12
-
-
Save vyta/b6e8dffd8630989955313e8217e4b9ac to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
app: fortio | |
name: fortio | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: fortio | |
template: | |
metadata: | |
labels: | |
app: fortio | |
name: fortio | |
spec: | |
containers: | |
- name: fortio-server | |
image: fortio/fortio | |
imagePullPolicy: Always | |
ports: | |
- containerPort: 8080 | |
- containerPort: 8079 | |
args: | |
- server | |
--- | |
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: fortio | |
spec: | |
ports: | |
- port: 8079 | |
name: grpc-ping | |
- port: 8080 | |
name: http2-fortio | |
selector: | |
app: fortio |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment