无法使用yaml文件在elasticsearch pod中创建文件夹。

huangapple go评论140阅读模式
英文:

Not able to make a folder in elasticsearch pod using yaml file

问题

我想在 Elasticsearch pod 内部创建一个名为 synonyms 的文件夹,位置在 /usr/share/elasticsearch/ 下,我应该如何修改我的部署 YAML 文件以实现这一目标。

这是我的部署清单文件:

  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. name: elasticsearch
  5. namespace: elk
  6. spec:
  7. replicas: 1
  8. selector:
  9. matchLabels:
  10. app: elasticsearch
  11. template:
  12. metadata:
  13. labels:
  14. app: elasticsearch
  15. spec:
  16. affinity:
  17. nodeAffinity:
  18. requiredDuringSchedulingIgnoredDuringExecution:
  19. nodeSelectorTerms:
  20. - matchExpressions:
  21. - key: app-elk
  22. operator: In
  23. values:
  24. - "elastic-tomcat"
  25. containers:
  26. - name: elasticsearch
  27. image: docker.elastic.co/elasticsearch/elasticsearch:7.17.5
  28. imagePullPolicy: Always
  29. resources:
  30. requests:
  31. memory: 1Gi
  32. ports:
  33. - containerPort: 9200
  34. protocol: TCP
  35. name: rest
  36. - containerPort: 9300
  37. protocol: TCP
  38. name: inter-node
  39. volumeMounts:
  40. - name: data-volume
  41. mountPath: /usr/share/elasticsearch/data
  42. - name: synonyms-volume # 添加这一行用于 synonyms 文件夹挂载
  43. mountPath: /usr/share/elasticsearch/synonyms # 挂载到 Elasticsearch pod 的路径
  44. env:
  45. - name: cluster.name
  46. value: elasticsearch-cluster
  47. - name: node.name
  48. valueFrom:
  49. fieldRef:
  50. fieldPath: metadata.name
  51. - name: discovery.seed_hosts
  52. value: "elasticsearch-cluster-0.elasticsearch"
  53. - name: cluster.initial_master_nodes
  54. value: "elasticsearch-cluster-0"
  55. - name: ES_JAVA_OPTS
  56. value: "-Xms512m -Xmx512m"
  57. - name: network.host
  58. value: "0.0.0.0"
  59. initContainers:
  60. - name: fix-permissions
  61. image: busybox
  62. command: ["sh", "-c", "chown -R 1000:1000 /usr/share/elasticsearch/data"]
  63. securityContext:
  64. privileged: true
  65. volumeMounts:
  66. - name: data-volume
  67. mountPath: /usr/share/elasticsearch/data
  68. - name: increase-vm-max-map
  69. image: busybox
  70. command: ["sysctl", "-w", "vm.max_map_count=262144"]
  71. securityContext:
  72. privileged: true
  73. - name: increase-fd-ulimit
  74. image: busybox
  75. command: ["sh", "-c", "ulimit -n 65536"]
  76. securityContext:
  77. privileged: true
  78. volumes:
  79. - name: data-volume
  80. persistentVolumeClaim:
  81. claimName: elasticsearch-pvc # 为数据存储创建一个 PVC
  82. - name: synonyms-volume # 添加这一行用于 synonyms 文件夹挂载
  83. emptyDir: {} # 创建一个空目录供挂载

请注意,我已经在容器部分添加了一个新的 volumeMount 来挂载 synonyms 文件夹,并在 volumes 部分创建了一个名为 synonyms-volume 的空目录,用于挂载到 Elasticsearch pod 内部的 /usr/share/elasticsearch/synonyms 路径上。这样,你就可以在该位置创建 synonyms 文件夹了。

英文:

I want to make a folder called synonyms inside the Elasticsearch pod under this location
/usr/share/elasticsearch/ using my deployment YAML file , what changes should I do so that I can create one folder.

here is my deployment manifest file

  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. name: elasticsearch
  5. namespace: elk
  6. spec:
  7. replicas: 1
  8. selector:
  9. matchLabels:
  10. app: elasticsearch
  11. template:
  12. metadata:
  13. labels:
  14. app: elasticsearch
  15. spec:
  16. affinity:
  17. nodeAffinity:
  18. requiredDuringSchedulingIgnoredDuringExecution:
  19. nodeSelectorTerms:
  20. - matchExpressions:
  21. - key: app-elk
  22. operator: In
  23. values:
  24. - "elastic-tomcat"
  25. containers:
  26. - name: elasticsearch
  27. image: docker.elastic.co/elasticsearch/elasticsearch:7.17.5
  28. imagePullPolicy: Always
  29. resources:
  30. requests:
  31. memory: 1Gi
  32. ports:
  33. - containerPort: 9200
  34. protocol: TCP
  35. name: rest
  36. - containerPort: 9300
  37. protocol: TCP
  38. name: inter-node
  39. volumeMounts:
  40. - name: data-volume
  41. mountPath: /usr/share/elasticsearch/data
  42. env:
  43. - name: cluster.name
  44. value: elasticsearch-cluster
  45. - name: node.name
  46. valueFrom:
  47. fieldRef:
  48. fieldPath: metadata.name
  49. - name: discovery.seed_hosts
  50. value: "elasticsearch-cluster-0.elasticsearch"
  51. - name: cluster.initial_master_nodes
  52. value: "elasticsearch-cluster-0"
  53. - name: ES_JAVA_OPTS
  54. value: "-Xms512m -Xmx512m"
  55. - name: network.host
  56. value: "0.0.0.0"
  57. initContainers:
  58. - name: fix-permissions
  59. image: busybox
  60. command: ["sh", "-c", "chown -R 1000:1000 /usr/share/elasticsearch/data"]
  61. securityContext:
  62. privileged: true
  63. volumeMounts:
  64. - name: data-volume
  65. mountPath: /usr/share/elasticsearch/data
  66. - name: increase-vm-max-map
  67. image: busybox
  68. command: ["sysctl", "-w", "vm.max_map_count=262144"]
  69. securityContext:
  70. privileged: true
  71. - name: increase-fd-ulimit
  72. image: busybox
  73. command: ["sh", "-c", "ulimit -n 65536"]
  74. securityContext:
  75. privileged: true
  76. volumes:
  77. - name: data-volume
  78. persistentVolumeClaim:
  79. claimName: elasticsearch-pvc # Create a PVC for data storage

please help , the platform I am using google kubernetes engine.

答案1

得分: 2

您可以使用init容器创建文件夹,并使用您正在运行的命令以后根据需求使用主容器。

此外,如果您正在运行多个不同的init容器,您可以使用一个容器来执行多个命令。

  1. dnsPolicy: ClusterFirst
  2. initContainers:
  3. - command:
  4. - sh
  5. - -c
  6. - chown -R 1000:1000 /usr/share/elasticsearch/data
  7. - mkdir /usr/share/elasticsearch/XYZ
  8. - sysctl -w vm.max_map_count=262144
  9. - chmod 777 /usr/share/elasticsearch/data
  10. - chomod 777 /usr/share/elasticsearch/data/node
  11. - chmod g+rwx /usr/share/elasticsearch/data
  12. - chgrp 1000 /usr/share/elasticsearch/data
  13. image: busybox:1.29.2
  14. imagePullPolicy: IfNotPresent
  15. name: set-dir-owner
  16. resources: {}
  17. securityContext:
  18. privileged: true
  19. terminationMessagePath: /dev/termination-log
  20. terminationMessagePolicy: File
  21. volumeMounts:
  22. - mountPath: /usr/share/elasticsearch/data
  23. name: elasticsearch-data
  24. restartPolicy: Always
英文:

You can create the folder using init container with command that you are running and utilize it as per requirement later with Main container.

Also, you are running multiple different Init containers you can keep one container with multiple commands

  1. dnsPolicy: ClusterFirst
  2. initContainers:
  3. - command:
  4. - sh
  5. - -c
  6. - chown -R 1000:1000 /usr/share/elasticsearch/data
  7. - mkdir /usr/share/elasticsearch/XYZ
  8. - sysctl -w vm.max_map_count=262144
  9. - chmod 777 /usr/share/elasticsearch/data
  10. - chomod 777 /usr/share/elasticsearch/data/node
  11. - chmod g+rwx /usr/share/elasticsearch/data
  12. - chgrp 1000 /usr/share/elasticsearch/data
  13. image: busybox:1.29.2
  14. imagePullPolicy: IfNotPresent
  15. name: set-dir-owner
  16. resources: {}
  17. securityContext:
  18. privileged: true
  19. terminationMessagePath: /dev/termination-log
  20. terminationMessagePolicy: File
  21. volumeMounts:
  22. - mountPath: /usr/share/elasticsearch/data
  23. name: elasticsearch-data
  24. restartPolicy: Always

huangapple
  • 本文由 发表于 2023年8月9日 13:11:16
  • 转载请务必保留本文链接:https://go.coder-hub.com/76864753-2.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定