Я пытался вывести sh изображение opendistroes на узел. Я собрал вместе сценарий yaml, который смог это сделать, но при входе в модуль и попытке свернуть локальный хост и попасть в APIasticsearch я получаю сообщение об ошибке:
curl: (7) Failed to connect to ::1: Cannot assign request address
Вот сценарий yaml ниже , может быть, я сделал что-то явно не так
apiVersion: apps/v1
kind: StatefulSet
metadata:
name: es-opendistro
labels:
service: es-opendistro
spec:
serviceName: es-opendisro
replicas: 1
selector:
matchLabels:
name: es-opendistro
template:
metadata:
labels:
service: es-opendistro
name: es-opendistro
spec:
nodeSelector:
name: es-opendistro
initContainers:
- name: init-sysctl
image: busybox:1.30
command: ["sysctl", "-w", "vm.max_map_count=262144"]
securityContext:
privileged: true
containers:
- name: es-opendistro
image: CM-DEPLOYER:5000/elasticsearch-opendistro:0.10.0
env:
- name: ES_JAVA_OPTS
value: -Xms1024m -Xmx1024m
- name: discovery.type
value: single-node
- name: NETWORK_HOST
value: "_site_,_lo_"
ports:
- containerPort: 9200
name: http
protocol: TCP
- containerPort: 9300
name: transport
protocol: TCP
volumeMounts:
- name: internal-users
mountPath: /usr/share/elasticsearch/plugins/opendistro_security/securityconfig/internal_users.yml
subPath: internal_users.yml
- name: elasticsearch-log
mountPath: /var/log/elasticsearch
- name: elasticsearch-data
mountPath: /usr/share/elasticsearch/data
- name: elasticsearch-config
mountPath: /usr/share/elasticsearch/config/elasticsearch.yml
subPath: elasticsearch.yml
volumes:
- name: internal-users
configMap:
name: internal-users
- name: elasticsearch-log
hostPath:
path: elasticsearch-log
- name: elasticsearch-data
hostPath:
path: /mnt/esdata1
- name: elasticsearch-config
hostPath:
path: /usr/share/elasticsearch
---
apiVersion: v1
kind: Service
metadata:
name: es6
spec:
type: NodePort
ipFamily: IPv4
selector:
service: es-opendistro
ports:
- name: "9200"
port: 9200
targetPort: 9200
nodePort: 30001
- name: "9300"
port: 9300
targetPort: 9300
nodePort: 30002
На данный момент я понятия не имею, что не хватает