Last active
October 7, 2021 07:48
-
-
Save emreozkangit/be5ca3f7571b23515ac358cd37fceeb5 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
**hostNetwork:** | |
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: influxdb | |
spec: | |
hostNetwork: true | |
containers: | |
- name: influxdb | |
image: influxdb | |
**hostPort:** | |
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: influxdb | |
spec: | |
containers: | |
- name: influxdb | |
image: influxdb | |
ports: | |
- containerPort: 8086 | |
hostPort: 8086 | |
**NodePort:** | |
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: influxdb | |
labels: | |
name: influxdb | |
spec: | |
containers: | |
- name: influxdb | |
image: influxdb | |
ports: | |
- containerPort: 8086 | |
kind: Service | |
apiVersion: v1 | |
metadata: | |
name: influxdb | |
spec: | |
type: NodePort | |
ports: | |
- port: 8086 | |
nodePort: 30000 | |
selector: | |
name: influxdb | |
**hostPID and hostIPC:** | |
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: ubuntu | |
labels: | |
app: ubuntu | |
spec: | |
containers: | |
- image: ubuntu | |
command: | |
- "sleep" | |
- "3600" # adjust this as needed -- use only as long as you need | |
imagePullPolicy: IfNotPresent | |
name: ubuntu | |
securityContext: | |
capabilities: | |
add: ["NET_ADMIN", "SYS_ADMIN"] # add the capabilities you need https://man7.org/linux/man-pages/man7/capabilities.7.html | |
runAsUser: 0 # run as root (or any other user) | |
restartPolicy: Never # we want to be intentional about running this pod | |
hostIPC: true # Use the host's ipc namespace https://www.man7.org/linux/man-pages/man7/ipc_namespaces.7.html | |
hostPID: true # Use the |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment