Created
November 11, 2021 13:37
-
-
Save mark-church/775fe688ad953369d163d271aa6418d1 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
kind: Namespace | |
apiVersion: v1 | |
metadata: | |
name: traffic-test | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: store | |
namespace: traffic-test | |
spec: | |
replicas: 2 | |
selector: | |
matchLabels: | |
app: store | |
version: v1 | |
template: | |
metadata: | |
labels: | |
app: store | |
version: v1 | |
spec: | |
containers: | |
- name: whereami | |
image: gcr.io/google-samples/whereami:v1.2.2 | |
ports: | |
- containerPort: 8080 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment