Resource Type: kubernetes_endpoints

Defined in:
lib/puppet/type/kubernetes_endpoints.rb
Providers:
swagger

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}]
  },

]

Properties

  • ensure (defaults to: present)

    The basic property that the resource should be in.

    Supported values:
    • present
    • absent
  • metadata
  • subsets

    The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service.

Parameters

  • name (namevar)

    Name of the endpoints.

  • provider

    The specific backend to use for this ‘kubernetes_endpoints` resource. You will seldom need to specify this — Puppet will usually discover the appropriate provider for your platform.