Skip to content

Instantly share code, notes, and snippets.

@Rajpratik71
Created September 15, 2022 17:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Rajpratik71/8630f94ba8d65672fd1fd4fca4aef96b to your computer and use it in GitHub Desktop.
Save Rajpratik71/8630f94ba8d65672fd1fd4fca4aef96b to your computer and use it in GitHub Desktop.
apiVersion: v1
kind: Pod
metadata:
name: influxdb
spec:
containers:
- name: influxdb
image: influxdb
ports:
- containerPort: 8086
---
kind: Service
apiVersion: v1
metadata:
name: influxdb
spec:
type: ClusterIP
ports:
- port: 8086
targetPort: 8086
selector:
name: influxdb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment