1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- apiVersion: v1
- kind: ServiceAccount
- metadata:
- name: httpbin
- ---
- apiVersion: v1
- kind: Service
- metadata:
- name: httpbin
- labels:
- app: httpbin
- spec:
- ports:
- - name: http
- port: 8000
- targetPort: 80
- selector:
- app: httpbin
- ---
- apiVersion: apps/v1
- kind: Deployment
- metadata:
- name: httpbin
- spec:
- replicas: 1
- selector:
- matchLabels:
- app: httpbin
- version: v1
- template:
- metadata:
- labels:
- app: httpbin
- version: v1
- spec:
- serviceAccountName: httpbin
- containers:
- - image: docker.io/kennethreitz/httpbin
- imagePullPolicy: IfNotPresent
- name: httpbin
- ports:
- - containerPort: 80
|