Last active
December 21, 2021 11:42
-
-
Save hnts/ef15535d033380a4a7a2c6ccfd2db45f 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
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: enumerate | |
spec: | |
containers: | |
- image: nginx | |
name: nginx | |
imagePullPolicy: IfNotPresent | |
livenessProbe: | |
httpGet: | |
host: 192.168.11.1 # ターゲットにしたいIPアドレス | |
port: 80 | |
restartPolicy: Never |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment