Skip to content

Instantly share code, notes, and snippets.

@garethr
Created February 1, 2015 08:56
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 garethr/494b00e0fc12c94fbe38 to your computer and use it in GitHub Desktop.
Save garethr/494b00e0fc12c94fbe38 to your computer and use it in GitHub Desktop.
{
  "kind": "Service",
  "apiVersion": "v1beta1",
  "id": "example",
  "port": 8000,
  "labels": {
     "name": "nginx"
  },
  "selector": {
     "name": "nginx"
  }
}
kubernetes_service { 'example':
  port => 8000,
  labels => {
    'name' => 'nginx'
  },
  selector => {
    'name' => 'nginx'
  },
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment