Skip to content

Instantly share code, notes, and snippets.

@derekm1215
Created March 29, 2018 07:30
Show Gist options
  • Save derekm1215/ea35b97deda0500408841b88c0e2fb84 to your computer and use it in GitHub Desktop.
Save derekm1215/ea35b97deda0500408841b88c0e2fb84 to your computer and use it in GitHub Desktop.
resource "kubernetes_pod" "ghost_alpine" {
metadata {
name = "ghost-alpine"
}
spec {
host_network = "true"
container {
image = "ghost:alpine"
name = "ghost-alpine"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment