Kubernetes Elasticsearch Cluster yaml

apiVersion: v1
kind: Pod
metadata:
  annotations:
    cni.projectcalico.org/podIP: 10.42.0.180/32
    cni.projectcalico.org/podIPs: 10.42.0.180/32
  creationTimestamp: "2021-04-11T16:06:17Z"
  generateName: elasticsearch-master-
  labels:
    app: elasticsearch-master
    chart: elasticsearch-7.3.0
    controller-revision-hash: elasticsearch-master-6b6cbdf4dd
    heritage: Tiller
    release: efk
    statefulset.kubernetes.io/pod-name: elasticsearch-master-0
  name: elasticsearch-master-0
  namespace: efk
  ownerReferences:
  - apiVersion: apps/v1
    blockOwnerDeletion: true
    controller: true
    kind: StatefulSet
    name: elasticsearch-master
    uid: a1b5af70-0a20-44b3-adb5-298d51c296d0
  resourceVersion: "313207"
  selfLink: /api/v1/namespaces/efk/pods/elasticsearch-master-0
  uid: f6e6615c-7532-43ef-a0e9-3a1a87e1352b
spec:
  affinity:
    podAntiAffinity:
      preferredDuringSchedulingIgnoredDuringExecution:
      - podAffinityTerm:
          labelSelector:
            matchExpressions:
            - key: app
              operator: In
              values:
              - elasticsearch-master
          topologyKey: kubernetes.io/hostname
        weight: 1
  containers:
  - env:
    - name: node.name
      valueFrom:
        fieldRef:
          apiVersion: v1
          fieldPath: metadata.name
    - name: cluster.initial_master_nodes
      value: elasticsearch-master-0,elasticsearch-master-1,elasticsearch-master-2,
    - name: discovery.seed_hosts
      value: elasticsearch-master-headless
    - name: cluster.name
      value: elasticsearch
    - name: network.host
      value: 0.0.0.0
    - name: ES_JAVA_OPTS
      value: -Xmx1g -Xms1g
    - name: node.data
      value: "true"
    - name: node.ingest
      value: "true"
    - name: node.master
      value: "true"
    image: ranchercharts/elasticsearch-elasticsearch:7.3.0
    imagePullPolicy: IfNotPresent
    name: elasticsearch
    ports:
    - containerPort: 9200
      name: http
      protocol: TCP
    - containerPort: 9300
      name: transport
      protocol: TCP
    readinessProbe:
      exec:
        command:
        - sh
        - -c
        - |
          #!/usr/bin/env bash -e
          # If the node is starting up wait for the cluster to be ready (request params: 'wait_for_status=green&timeout=1s' )
          # Once it has started only check that the node itself is responding
          START_FILE=/tmp/.es_start_file

          http () {
              local path="${1}"
              if [ -n "${ELASTIC_USERNAME}" ] && [ -n "${ELASTIC_PASSWORD}" ]; then
                BASIC_AUTH="-u ${ELASTIC_USERNAME}:${ELASTIC_PASSWORD}"
              else
                BASIC_AUTH=''
              fi
              curl -XGET -s -k --fail ${BASIC_AUTH} http://127.0.0.1:9200${path}
          }

          if [ -f "${START_FILE}" ]; then
              echo 'Elasticsearch is already running, lets check the node is healthy'
              http "/"
          else
              echo 'Waiting for elasticsearch cluster to become cluster to be ready (request params: "wait_for_status=green&timeout=1s" )'
              if http "/_cluster/health?wait_for_status=green&timeout=1s" ; then
                  touch ${START_FILE}
                  exit 0
              else
                  echo 'Cluster is not yet ready (request params: "wait_for_status=green&timeout=1s" )'
                  exit 1
              fi
          fi
      failureThreshold: 3
      initialDelaySeconds: 10
      periodSeconds: 10
      successThreshold: 3
      timeoutSeconds: 5
    resources:
      limits:
        cpu: "1"
        memory: 2Gi
      requests:
        cpu: 100m
        memory: 2Gi
    securityContext:
      capabilities:
        drop:
        - ALL
      runAsNonRoot: true
      runAsUser: 1000
    terminationMessagePath: /dev/termination-log
    terminationMessagePolicy: File
    volumeMounts:
    - mountPath: /usr/share/elasticsearch/data
      name: elasticsearch-master
    - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
      name: default-token-xqsn2
      readOnly: true
  dnsPolicy: ClusterFirst
  enableServiceLinks: true
  hostname: elasticsearch-master-0
  initContainers:
  - command:
    - sysctl
    - -w
    - vm.max_map_count=262144
    image: ranchercharts/elasticsearch-elasticsearch:7.3.0
    imagePullPolicy: IfNotPresent
    name: configure-sysctl
    resources: {}
    securityContext:
      privileged: true
      runAsUser: 0
    terminationMessagePath: /dev/termination-log
    terminationMessagePolicy: File
    volumeMounts:
    - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
      name: default-token-xqsn2
      readOnly: true
  nodeName: 192.168.204.139
  priority: 0
  restartPolicy: Always
  schedulerName: default-scheduler
  securityContext:
    fsGroup: 1000
  serviceAccount: default
  serviceAccountName: default
  subdomain: elasticsearch-master-headless
  terminationGracePeriodSeconds: 120
  tolerations:
  - effect: NoExecute
    key: node.kubernetes.io/not-ready
    operator: Exists
    tolerationSeconds: 300
  - effect: NoExecute
    key: node.kubernetes.io/unreachable
    operator: Exists
    tolerationSeconds: 300
  volumes:
  - name: elasticsearch-master
    persistentVolumeClaim:
      claimName: elasticsearch-master-elasticsearch-master-0
  - name: default-token-xqsn2
    secret:
      defaultMode: 420
      secretName: default-token-xqsn2
status:
  conditions:
  - lastProbeTime: null
    lastTransitionTime: "2021-04-11T16:06:19Z"
    status: "True"
    type: Initialized
  - lastProbeTime: null
    lastTransitionTime: "2021-04-11T16:06:57Z"
    status: "True"
    type: Ready
  - lastProbeTime: null
    lastTransitionTime: "2021-04-11T16:06:57Z"
    status: "True"
    type: ContainersReady
  - lastProbeTime: null
    lastTransitionTime: "2021-04-11T16:06:17Z"
    status: "True"
    type: PodScheduled
  containerStatuses:
  - containerID: docker://7ee20dc3683259847554412c52241a6a64638f228b12d7fd916feb08ca73a6b9
    image: ranchercharts/elasticsearch-elasticsearch:7.3.0
    imageID: docker-pullable://ranchercharts/elasticsearch-elasticsearch@sha256:4c36f5486f292aff534c28506e8cd0f86e4ae177ffce06005bbfa5b312738838
    lastState: {}
    name: elasticsearch
    ready: true
    restartCount: 0
    started: true
    state:
      running:
        startedAt: "2021-04-11T16:06:19Z"
  hostIP: 192.168.204.139
  initContainerStatuses:
  - containerID: docker://e943b905ff851effa892a7a864b679fd0f1eefaa4fc7953df2aa5fd0c062af84
    image: ranchercharts/elasticsearch-elasticsearch:7.3.0
    imageID: docker-pullable://ranchercharts/elasticsearch-elasticsearch@sha256:4c36f5486f292aff534c28506e8cd0f86e4ae177ffce06005bbfa5b312738838
    lastState: {}
    name: configure-sysctl
    ready: true
    restartCount: 0
    state:
      terminated:
        containerID: docker://e943b905ff851effa892a7a864b679fd0f1eefaa4fc7953df2aa5fd0c062af84
        exitCode: 0
        finishedAt: "2021-04-11T16:06:19Z"
        reason: Completed
        startedAt: "2021-04-11T16:06:19Z"
  phase: Running
  podIP: 10.42.0.180
  podIPs:
  - ip: 10.42.0.180
  qosClass: Burstable
  startTime: "2021-04-11T16:06:17Z"

apiVersion: v1
kind: Pod
metadata:
  annotations:
    cni.projectcalico.org/podIP: 10.42.2.145/32
    cni.projectcalico.org/podIPs: 10.42.2.145/32
  creationTimestamp: "2021-04-11T16:06:17Z"
  generateName: elasticsearch-master-
  labels:
    app: elasticsearch-master
    chart: elasticsearch-7.3.0
    controller-revision-hash: elasticsearch-master-6b6cbdf4dd
    heritage: Tiller
    release: efk
    statefulset.kubernetes.io/pod-name: elasticsearch-master-1
  name: elasticsearch-master-1
  namespace: efk
  ownerReferences:
  - apiVersion: apps/v1
    blockOwnerDeletion: true
    controller: true
    kind: StatefulSet
    name: elasticsearch-master
    uid: a1b5af70-0a20-44b3-adb5-298d51c296d0
  resourceVersion: "313226"
  selfLink: /api/v1/namespaces/efk/pods/elasticsearch-master-1
  uid: 17cc103a-87a5-4866-8e2e-ffdeb99312a8
spec:
  affinity:
    podAntiAffinity:
      preferredDuringSchedulingIgnoredDuringExecution:
      - podAffinityTerm:
          labelSelector:
            matchExpressions:
            - key: app
              operator: In
              values:
              - elasticsearch-master
          topologyKey: kubernetes.io/hostname
        weight: 1
  containers:
  - env:
    - name: node.name
      valueFrom:
        fieldRef:
          apiVersion: v1
          fieldPath: metadata.name
    - name: cluster.initial_master_nodes
      value: elasticsearch-master-0,elasticsearch-master-1,elasticsearch-master-2,
    - name: discovery.seed_hosts
      value: elasticsearch-master-headless
    - name: cluster.name
      value: elasticsearch
    - name: network.host
      value: 0.0.0.0
    - name: ES_JAVA_OPTS
      value: -Xmx1g -Xms1g
    - name: node.data
      value: "true"
    - name: node.ingest
      value: "true"
    - name: node.master
      value: "true"
    image: ranchercharts/elasticsearch-elasticsearch:7.3.0
    imagePullPolicy: IfNotPresent
    name: elasticsearch
    ports:
    - containerPort: 9200
      name: http
      protocol: TCP
    - containerPort: 9300
      name: transport
      protocol: TCP
    readinessProbe:
      exec:
        command:
        - sh
        - -c
        - |
          #!/usr/bin/env bash -e
          # If the node is starting up wait for the cluster to be ready (request params: 'wait_for_status=green&timeout=1s' )
          # Once it has started only check that the node itself is responding
          START_FILE=/tmp/.es_start_file

          http () {
              local path="${1}"
              if [ -n "${ELASTIC_USERNAME}" ] && [ -n "${ELASTIC_PASSWORD}" ]; then
                BASIC_AUTH="-u ${ELASTIC_USERNAME}:${ELASTIC_PASSWORD}"
              else
                BASIC_AUTH=''
              fi
              curl -XGET -s -k --fail ${BASIC_AUTH} http://127.0.0.1:9200${path}
          }

          if [ -f "${START_FILE}" ]; then
              echo 'Elasticsearch is already running, lets check the node is healthy'
              http "/"
          else
              echo 'Waiting for elasticsearch cluster to become cluster to be ready (request params: "wait_for_status=green&timeout=1s" )'
              if http "/_cluster/health?wait_for_status=green&timeout=1s" ; then
                  touch ${START_FILE}
                  exit 0
              else
                  echo 'Cluster is not yet ready (request params: "wait_for_status=green&timeout=1s" )'
                  exit 1
              fi
          fi
      failureThreshold: 3
      initialDelaySeconds: 10
      periodSeconds: 10
      successThreshold: 3
      timeoutSeconds: 5
    resources:
      limits:
        cpu: "1"
        memory: 2Gi
      requests:
        cpu: 100m
        memory: 2Gi
    securityContext:
      capabilities:
        drop:
        - ALL
      runAsNonRoot: true
      runAsUser: 1000
    terminationMessagePath: /dev/termination-log
    terminationMessagePolicy: File
    volumeMounts:
    - mountPath: /usr/share/elasticsearch/data
      name: elasticsearch-master
    - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
      name: default-token-xqsn2
      readOnly: true
  dnsPolicy: ClusterFirst
  enableServiceLinks: true
  hostname: elasticsearch-master-1
  initContainers:
  - command:
    - sysctl
    - -w
    - vm.max_map_count=262144
    image: ranchercharts/elasticsearch-elasticsearch:7.3.0
    imagePullPolicy: IfNotPresent
    name: configure-sysctl
    resources: {}
    securityContext:
      privileged: true
      runAsUser: 0
    terminationMessagePath: /dev/termination-log
    terminationMessagePolicy: File
    volumeMounts:
    - mountPath: /var/run/secrets/kubernetes.io/serviceaccount
      name: default-token-xqsn2
      readOnly: true
  nodeName: 192.168.204.138
  priority: 0
  restartPolicy: Always
  schedulerName: default-scheduler
  securityContext:
    fsGroup: 1000
  serviceAccount: default
  serviceAccountName: default
  subdomain: elasticsearch-master-headless
  terminationGracePeriodSeconds: 120
  tolerations:
  - effect: NoExecute
    key: node.kubernetes.io/not-ready
    operator: Exists
    tolerationSeconds: 300
  - effect: NoExecute
    key: node.kubernetes.io/unreachable
    operator: Exists
    tolerationSeconds: 300
  volumes:
  - name: elasticsearch-master
    persistentVolumeClaim:
      claimName: elasticsearch-master-elasticsearch-master-1
  - name: default-token-xqsn2
    secret:
      defaultMode: 420
      secretName: default-token-xqsn2
status:
  conditions:
  - lastProbeTime: null
    lastTransitionTime: "2021-04-11T16:06:20Z"
    status: "True"
    type: Initialized
  - lastProbeTime: null
    lastTransitionTime: "2021-04-11T16:06:59Z"
    status: "True"
    type: Ready
  - lastProbeTime: null
    lastTransitionTime: "2021-04-11T16:06:59Z"
    status: "True"
    type: ContainersReady
  - lastProbeTime: null
    lastTransitionTime: "2021-04-11T16:06:17Z"
    status: "True"
    type: PodScheduled
  containerStatuses:
  - containerID: docker://d3b96c62a007957da29b760e1596b7c45c47218760f1a0b7aece479e2bd56566
    image: ranchercharts/elasticsearch-elasticsearch:7.3.0
    imageID: docker-pullable://ranchercharts/elasticsearch-elasticsearch@sha256:4c36f5486f292aff534c28506e8cd0f86e4ae177ffce06005bbfa5b312738838
    lastState: {}
    name: elasticsearch
    ready: true
    restartCount: 0
    started: true
    state:
      running:
        startedAt: "2021-04-11T16:06:20Z"
  hostIP: 192.168.204.138
  initContainerStatuses:
  - containerID: docker://6ec812dcf93911cce587b34926a331ecd155221fb0793e5234bf3ecebcfc02f8
    image: ranchercharts/elasticsearch-elasticsearch:7.3.0
    imageID: docker-pullable://ranchercharts/elasticsearch-elasticsearch@sha256:4c36f5486f292aff534c28506e8cd0f86e4ae177ffce06005bbfa5b312738838
    lastState: {}
    name: configure-sysctl
    ready: true
    restartCount: 0
    state:
      terminated:
        containerID: docker://6ec812dcf93911cce587b34926a331ecd155221fb0793e5234bf3ecebcfc02f8
        exitCode: 0
        finishedAt: "2021-04-11T16:06:20Z"
        reason: Completed
        startedAt: "2021-04-11T16:06:20Z"
  phase: Running
  podIP: 10.42.2.145
  podIPs:
  - ip: 10.42.2.145
  qosClass: Burstable
  startTime: "2021-04-11T16:06:17Z"

apiVersion: apps/v1
kind: StatefulSet
metadata:
  annotations:
    esMajorVersion: "7"
  creationTimestamp: "2021-04-11T16:06:17Z"
  generation: 1
  labels:
    app: elasticsearch-master
    chart: elasticsearch-7.3.0
    heritage: Tiller
    io.cattle.field/appId: efk
    release: efk
  name: elasticsearch-master
  namespace: efk
  resourceVersion: "313252"
  selfLink: /apis/apps/v1/namespaces/efk/statefulsets/elasticsearch-master
  uid: a1b5af70-0a20-44b3-adb5-298d51c296d0
spec:
  podManagementPolicy: Parallel
  replicas: 3
  revisionHistoryLimit: 10
  selector:
    matchLabels:
      app: elasticsearch-master
  serviceName: elasticsearch-master-headless
  template:
    metadata:
      creationTimestamp: null
      labels:
        app: elasticsearch-master
        chart: elasticsearch-7.3.0
        heritage: Tiller
        release: efk
      name: elasticsearch-master
    spec:
      affinity:
        podAntiAffinity:
          preferredDuringSchedulingIgnoredDuringExecution:
          - podAffinityTerm:
              labelSelector:
                matchExpressions:
                - key: app
                  operator: In
                  values:
                  - elasticsearch-master
              topologyKey: kubernetes.io/hostname
            weight: 1
      containers:
      - env:
        - name: node.name
          valueFrom:
            fieldRef:
              apiVersion: v1
              fieldPath: metadata.name
        - name: cluster.initial_master_nodes
          value: elasticsearch-master-0,elasticsearch-master-1,elasticsearch-master-2,
        - name: discovery.seed_hosts
          value: elasticsearch-master-headless
        - name: cluster.name
          value: elasticsearch
        - name: network.host
          value: 0.0.0.0
        - name: ES_JAVA_OPTS
          value: -Xmx1g -Xms1g
        - name: node.data
          value: "true"
        - name: node.ingest
          value: "true"
        - name: node.master
          value: "true"
        image: ranchercharts/elasticsearch-elasticsearch:7.3.0
        imagePullPolicy: IfNotPresent
        name: elasticsearch
        ports:
        - containerPort: 9200
          name: http
          protocol: TCP
        - containerPort: 9300
          name: transport
          protocol: TCP
        readinessProbe:
          exec:
            command:
            - sh
            - -c
            - |
              #!/usr/bin/env bash -e
              # If the node is starting up wait for the cluster to be ready (request params: 'wait_for_status=green&timeout=1s' )
              # Once it has started only check that the node itself is responding
              START_FILE=/tmp/.es_start_file

              http () {
                  local path="${1}"
                  if [ -n "${ELASTIC_USERNAME}" ] && [ -n "${ELASTIC_PASSWORD}" ]; then
                    BASIC_AUTH="-u ${ELASTIC_USERNAME}:${ELASTIC_PASSWORD}"
                  else
                    BASIC_AUTH=''
                  fi
                  curl -XGET -s -k --fail ${BASIC_AUTH} http://127.0.0.1:9200${path}
              }

              if [ -f "${START_FILE}" ]; then
                  echo 'Elasticsearch is already running, lets check the node is healthy'
                  http "/"
              else
                  echo 'Waiting for elasticsearch cluster to become cluster to be ready (request params: "wait_for_status=green&timeout=1s" )'
                  if http "/_cluster/health?wait_for_status=green&timeout=1s" ; then
                      touch ${START_FILE}
                      exit 0
                  else
                      echo 'Cluster is not yet ready (request params: "wait_for_status=green&timeout=1s" )'
                      exit 1
                  fi
              fi
          failureThreshold: 3
          initialDelaySeconds: 10
          periodSeconds: 10
          successThreshold: 3
          timeoutSeconds: 5
        resources:
          limits:
            cpu: "1"
            memory: 2Gi
          requests:
            cpu: 100m
            memory: 2Gi
        securityContext:
          capabilities:
            drop:
            - ALL
          runAsNonRoot: true
          runAsUser: 1000
        terminationMessagePath: /dev/termination-log
        terminationMessagePolicy: File
        volumeMounts:
        - mountPath: /usr/share/elasticsearch/data
          name: elasticsearch-master
      dnsPolicy: ClusterFirst
      initContainers:
      - command:
        - sysctl
        - -w
        - vm.max_map_count=262144
        image: ranchercharts/elasticsearch-elasticsearch:7.3.0
        imagePullPolicy: IfNotPresent
        name: configure-sysctl
        resources: {}
        securityContext:
          privileged: true
          runAsUser: 0
        terminationMessagePath: /dev/termination-log
        terminationMessagePolicy: File
      restartPolicy: Always
      schedulerName: default-scheduler
      securityContext:
        fsGroup: 1000
      terminationGracePeriodSeconds: 120
  updateStrategy:
    type: RollingUpdate
  volumeClaimTemplates:
  - apiVersion: v1
    kind: PersistentVolumeClaim
    metadata:
      creationTimestamp: null
      name: elasticsearch-master
    spec:
      accessModes:
      - ReadWriteOnce
      resources:
        requests:
          storage: 30Gi
      storageClassName: nfs-provisioner
      volumeMode: Filesystem
    status:
      phase: Pending
status:
  collisionCount: 0
  currentReplicas: 3
  currentRevision: elasticsearch-master-6b6cbdf4dd
  observedGeneration: 1
  readyReplicas: 3
  replicas: 3
  updateRevision: elasticsearch-master-6b6cbdf4dd
  updatedReplicas: 3

[elasticsearch@elasticsearch-master-0 ~]$ export
declare -x EFK_KIBANA_PORT="tcp://10.43.234.253:5601"
declare -x EFK_KIBANA_PORT_5601_TCP="tcp://10.43.234.253:5601"
declare -x EFK_KIBANA_PORT_5601_TCP_ADDR="10.43.234.253"
declare -x EFK_KIBANA_PORT_5601_TCP_PORT="5601"
declare -x EFK_KIBANA_PORT_5601_TCP_PROTO="tcp"
declare -x EFK_KIBANA_SERVICE_HOST="10.43.234.253"
declare -x EFK_KIBANA_SERVICE_PORT="5601"
declare -x EFK_KIBANA_SERVICE_PORT_HTTP="5601"
declare -x EFK_KUBE_STATE_METRICS_PORT="tcp://10.43.197.75:8080"
declare -x EFK_KUBE_STATE_METRICS_PORT_8080_TCP="tcp://10.43.197.75:8080"
declare -x EFK_KUBE_STATE_METRICS_PORT_8080_TCP_ADDR="10.43.197.75"
declare -x EFK_KUBE_STATE_METRICS_PORT_8080_TCP_PORT="8080"
declare -x EFK_KUBE_STATE_METRICS_PORT_8080_TCP_PROTO="tcp"
declare -x EFK_KUBE_STATE_METRICS_SERVICE_HOST="10.43.197.75"
declare -x EFK_KUBE_STATE_METRICS_SERVICE_PORT="8080"
declare -x EFK_KUBE_STATE_METRICS_SERVICE_PORT_HTTP="8080"
declare -x ELASTICSEARCH_MASTER_PORT="tcp://10.43.34.31:9200"
declare -x ELASTICSEARCH_MASTER_PORT_9200_TCP="tcp://10.43.34.31:9200"
declare -x ELASTICSEARCH_MASTER_PORT_9200_TCP_ADDR="10.43.34.31"
declare -x ELASTICSEARCH_MASTER_PORT_9200_TCP_PORT="9200"
declare -x ELASTICSEARCH_MASTER_PORT_9200_TCP_PROTO="tcp"
declare -x ELASTICSEARCH_MASTER_PORT_9300_TCP="tcp://10.43.34.31:9300"
declare -x ELASTICSEARCH_MASTER_PORT_9300_TCP_ADDR="10.43.34.31"
declare -x ELASTICSEARCH_MASTER_PORT_9300_TCP_PORT="9300"
declare -x ELASTICSEARCH_MASTER_PORT_9300_TCP_PROTO="tcp"
declare -x ELASTICSEARCH_MASTER_SERVICE_HOST="10.43.34.31"
declare -x ELASTICSEARCH_MASTER_SERVICE_PORT="9200"
declare -x ELASTICSEARCH_MASTER_SERVICE_PORT_HTTP="9200"
declare -x ELASTICSEARCH_MASTER_SERVICE_PORT_TRANSPORT="9300"
declare -x ELASTIC_CONTAINER="true"
declare -x ES_JAVA_OPTS="-Xmx1g -Xms1g"
declare -x HOME="/usr/share/elasticsearch"
declare -x HOSTNAME="elasticsearch-master-0"
declare -x KIBANA_HTTP_PORT="tcp://10.43.156.150:80"
declare -x KIBANA_HTTP_PORT_80_TCP="tcp://10.43.156.150:80"
declare -x KIBANA_HTTP_PORT_80_TCP_ADDR="10.43.156.150"
declare -x KIBANA_HTTP_PORT_80_TCP_PORT="80"
declare -x KIBANA_HTTP_PORT_80_TCP_PROTO="tcp"
declare -x KIBANA_HTTP_SERVICE_HOST="10.43.156.150"
declare -x KIBANA_HTTP_SERVICE_PORT="80"
declare -x KIBANA_HTTP_SERVICE_PORT_HTTP_ACCESS_KIBANA="80"
declare -x KUBERNETES_PORT="tcp://10.43.0.1:443"
declare -x KUBERNETES_PORT_443_TCP="tcp://10.43.0.1:443"
declare -x KUBERNETES_PORT_443_TCP_ADDR="10.43.0.1"
declare -x KUBERNETES_PORT_443_TCP_PORT="443"
declare -x KUBERNETES_PORT_443_TCP_PROTO="tcp"
declare -x KUBERNETES_SERVICE_HOST="10.43.0.1"
declare -x KUBERNETES_SERVICE_PORT="443"
declare -x KUBERNETES_SERVICE_PORT_HTTPS="443"
declare -x LS_COLORS="rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arc=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lha=38;5;9:*.lz4=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.tzo=38;5;9:*.t7z=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lrz=38;5;9:*.lz=38;5;9:*.lzo=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.bz=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.war=38;5;9:*.ear=38;5;9:*.sar=38;5;9:*.rar=38;5;9:*.alz=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.cab=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.webm=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:"
declare -x OLDPWD
declare -x PATH="/usr/share/elasticsearch/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin"
declare -x PWD="/usr/share/elasticsearch"
declare -x SHLVL="3"
declare -x TERM="xterm-256color"
declare -x cluster.initial_master_nodes
declare -x cluster.name
declare -x discovery.seed_hosts
declare -x network.host
declare -x node.data
declare -x node.ingest
declare -x node.master
declare -x node.name
[elasticsearch@elasticsearch-master-0 ~]$ 
Send a Message