Puppet Type: kubernetes_endpoints_type
- Defined in:
- lib/puppet/type/kubernetes_endpoints.rb
Overview
Endpoints is a collection of endpoints that implement the actual service. Example:
Name: 'mysvc',
Subsets: [
{
Addresses: [{'ip': '10.10.1.1'}, {'ip': '10.10.2.2'}],
Ports: [{'name': 'a', 'port': 8675}, {'name': 'b', 'port': 309}]
},
{
Addresses: [{'ip': '10.10.3.3'}],
Ports: [{'name': 'a', 'port': 93}, {'name': 'b', 'port': 76}]
},
]