Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Auitabs
directionhorizontal
Auitabspage
titleUsing the Kubernetes API to Resolve Pod IP Addresses

Follow the steps below to configure the Kubernetes Membership Scheme to use the Kubernets API:

  1. Update the axis2.xml file, in the <CARBON_HOME>/repository/conf/axis2 directory with the following configurations. 

    ParameterDescription
    membershipSchemeThis is the membership scheme that will be used to manage membership of nodes in a cluster, e.g., kubernetes.
    domain

    This is the clustering domain/group.

    There will not be any interference between nodes in different domains. Messages received from members outside the domain will generally be ignored. For special messages, such as cluster management messages or membership messages from members outside the group will be allowed.

    mcastPort

    This is the multicast port.

    This parameter is only considerd when the membershipScheme is set to multicast.

    mcastTTL

    This controls the scope of the multicast by defining the default time-to-live for multicast packets.

    Default value: 32. Maximum value: 255.

    mcastTimeout

    This defines the duration in seconds that a node should wait for a valid multicast response from another node running in the network before declaring it self as a master node and creating its own cluster.

    This applies only to the startup nodes where no master has been assigned yet.

    Default value: 2.

    localMemberHost

    This is the hostname or the IP address of the member. Set it to the pod's local IP address. Do not set it to localhost or 127.0.0.1.

    When a container/pod gets started, the init.sh dynamically replaces the local member IP address in WSO2 Docker images. For customizations, please change the init.sh.

    localMemberPortThis is the TCP port that is used by this member and through which other members will contact this member.
    propertiesWhen a member joins a group, these properties are bound to this member so that other members in the group can detect these properties. 
    membershipSchemeClassName
    KUBERNETES_NAMESPACEThis is the Kubernetes Namespace in which the pods are deployed,
    KUBERNETES_SERVICESThese are the Kubernetes Services that belong in the cluster.
    KUBERNETES_MASTER_SKIP_SSL_VERIFICATIONThis defines whether the SSL certificate verification of the Kubernetes API should be carried out or not.
    USE_DNSThis configures the membership schme to DNS (default) or Kuberntes API for pod IP resolution. Set this to false .

    Example:

    The following clustering parameters are required to communicate with the Kubernetes API.

    • KUBERNETES_API_SERVER : This is the Kubernetes API endpoint,e.g., http://172.17.8.101:8080 . Alternatively, an https endpoint can be set via KUBERNETES_SERVICE_HOST and KUBERNETES_SERVICE_PORT_HTTPS.
    • KUBERNETES_SERVICE_HOST : This is the Kubernetes API host name or IP address, e.g., kuberneteshostname 
    • KUBERNETES_SERVICE_PORT_HTTPS : This is the Kubernetes API https listening port. This must be an Integer value.
    • KUBERNETES_API_SERVER_TOKEN : This is the Kubernetes Master token for authentication (optional), e.g., yourkubernetestoken. Alternatively basic authentication can be set through KUBERNETES_API_SERVER_USERNAME and KUBERNETES_API_SERVER_PASSWORD.
    • KUBERNETES_API_SERVER_USERNAME : This is the Kubernetes Master username (optional), e.g., admin.
    • KUBERNETES_API_SERVER_PASSWORD : This is the Kubernetes Master password (optional).
    • KUBERNETES_NAMESPACE : This is the Kubernetes Namespace in which the pods are deployed.
    • KUBERNETES_SERVICES : These are the Kubernetes Services that are in the cluster.
    • KUBERNETES_MASTER_SKIP_SSL_VERIFICATION : This defines whether the SSL certificate verification of the Kubernetes API should be carried out or not.
    • USE_DNS : This configures the membership schme to DNS (default) or Kuberntes API for pod IP resolution. For Kubernetes, set this to false . For DNS set this to true..
Auitabspage
titleUsing the DNS Lookup to Resolve Pod IP Addresses

Follow the steps below to use DNS lookups to reolve pod IP addresses:

  1. Download and copy the dnsjava-2.1.8.jar dependency library for DNS lookups  to the <CARBON_HOME>/repository/components/lib directory.

  2. Update the axis2.xml file, in the <CARBON_HOME>/repository/conf/axis2 directory with the following configurations. 

    ParameterDescription
    membershipSchemeThis is the membership scheme that will be used to manage membership of nodes in a cluster, e.g., kubernetes.
    domain

    This is the clustering domain/group.

    There will not be any interference between nodes in different domains. Messages received from members outside the domain will generally be ignored. For special messages, such as cluster management messages or membership messages from members outside the group will be allowed.

    mcastPort

    This is the multicast port.

    This parameter is only considerd when the membershipScheme is set to multicast.

    mcastTTL

    This controls the scope of the multicast by defining the default time-to-live for multicast packets.

    Default value: 32. Maximum value: 255

    .

    mcastTimeout

    This defines the duration in seconds that a node should wait for a valid multicast response from another node running in the network before declaring it self as a master node and creating its own cluster.

    This applies only to the startup nodes where no master has been assigned yet.

    Default value: 2.

    localMemberHost

    This is the hostname or the IP address of the member. Set it to the pod's local IP address. Do not set it to localhost or 127.0.0.1 .

    When a container/pod gets started, the init.sh dynamically replaces the local member IP address in WSO2 Docker images. For customizations, please change the init.sh.

    localMemberPortThis is the TCP port that is used by this member and through which other members will contact this member.
    propertiesWhen a member joins a group, these properties are bound to this member so that other members in the group can detect these properties. 
    membershipSchemeClassName
    KUBERNETES_NAMESPACEThis is the Kubernetes Namespace in which the pods are deployed,
    KUBERNETES_SERVICESThese are the Kubernetes Services that belong in the cluster.
    KUBERNETES_MASTER_SKIP_SSL_VERIFICATIONThis defines whether the SSL certificate verification of the Kubernetes API should be carried out or not.
    USE_DNSThis configures the membership schme to DNS (default) or Kuberntes API for pod IP resolution. Set this to true .

    Example:

    The following clustering parameters are required to perform DNS lookups.

    • KUBERNETES_SERVICES : These are the Kubernetes Services that are in the cluster.
    • KUBERNETES_NAMESPACE : This is the Kubernetes Namespace in which the pods are deployed.

    The services that are used for the DNS lookup should be headless with no cluster IP. For more information, see DNS in Kubernetes.