前言
今天小编打算用五步教大家如何使用k8s快速部署ES,有兴趣的小伙伴可以了解一下~

由于是使用本地存储,所以需要先创建pv

1、创建存储类
local-elasticsearch.yaml

kind: StorageClass
apiVersion: storage.k8s.io/v1
metadata:name: local-elasticsearch
provisioner: kubernetes.io/no-provisioner
volumeBindingMode: WaitForFirstConsumer

存储类是pv的一种模板声明

kubectl apply -f local-elasticsearch.yaml

2、创建pv
elasticsearch-pv-01.yaml

apiVersion: v1
kind: PersistentVolume
metadata:name: local-es-0(local-es-1/local-es-2...)        #这里需要改名
spec:capacity:storage: 3GivolumeMode: Filesystem # volumeMode field requires BlockVolume Alpha feature gate to be enabled.accessModes:- ReadWriteOncestorageClassName: local-elasticsearch        #这里对应StorageClass的名字persistentVolumeReclaimPolicy: Retainlocal:path: /data/local-es        # 这里是本地存储的路径,需要提前创建好目录nodeAffinity:required:nodeSelectorTerms:- matchExpressions:- key: kubernetes.io/hostnameoperator: Invalues:- k8s-node4(xxx/yyy...)            #这里是pv本地存储所在的node节点名称

由于es集群是3个副本,所以需要分别在3台node节点上面创建本地存储目录,创建3个pv

kubectl apply -f elasticsearch-pv-01.yaml
kubectl apply -f elasticsearch-pv-02.yaml
kubectl apply -f elasticsearch-pv-03.yaml

3、创建一个pvc,用于挂载备份目录
elasticsearch-pvc.yaml

apiVersion: v1
kind: PersistentVolumeClaim
metadata:name: elasticsearch-pvcnamespace: elasticsearch
spec:accessModes:- ReadWriteManyresources:requests:storage: 30GistorageClassName: nfs-client            #这个是nfs的一个存储类,用于存储数据到nfs的
kubectl apply -f elasticsearch-pvc.yaml

4、创建es命名空间

kubectl create namespace elasticsearch

5、helm部署
添加本地helm库

helm repo add --username **** --password **** elk http://69.172.74.253:8080/chartrepo/elk

nodePort使用预留好的端口即可
这里的pvc.enabled是开启pvc,pvc.name是设置要绑定的pvc名字,对应上述创建的pvc

helm upgrade --install elasticsearch
elk/elasticsearch --version 7.8.0 --set service.nodePort=xxxx --set
pvc.enabled=true --set pvc.name=elasticsearch-pvc
--namespace=elasticsearch

至此部署成功

ES helm chart详解
values.yaml

---
clusterName: "elasticsearch"
nodeGroup: "master"# The service that non master groups will try to connect to when joining the cluster
# This should be set to clusterName + "-" + nodeGroup for your master group
masterService: ""# Elasticsearch roles that will be applied to this nodeGroup
# These will be set as environment variables. E.g. node.master=true
roles:master: "true"ingest: "true"data: "true"replicas: 3
minimumMasterNodes: 2esMajorVersion: ""# Allows you to add any config files in /usr/share/elasticsearch/config/
# such as elasticsearch.yml and log4j2.properties
esConfig:elasticsearch.yml: |
#  path.repo: "/usr/share/elasticsearch/myBackup"
#  log4j2.properties: |
#    key = value# Extra environment variables to append to this nodeGroup
# This will be appended to the current 'env:' key. You can use any of the kubernetes env
# syntax here
extraEnvs: []
#  - name: MY_ENVIRONMENT_VAR
#    value: the_value_goes_here# Allows you to load environment variables from kubernetes secret or config map
envFrom: []
# - secretRef:
#     name: env-secret
# - configMapRef:
#     name: config-map# A list of secrets and their paths to mount inside the pod
# This is useful for mounting certificates for security and for mounting
# the X-Pack license
secretMounts: []
#  - name: elastic-certificates
#    secretName: elastic-certificates
#    path: /usr/share/elasticsearch/config/certs
#    defaultMode: 0755image: "69.172.74.253:8080/elk/elasticsearch"
imageTag: "7.7.1"
imagePullPolicy: "IfNotPresent"podAnnotations: {}# iam.amazonaws.com/role: es-cluster# additionals labels
labels: {}esJavaOpts: "-Xmx1g -Xms1g"resources:requests:cpu: "1000m"memory: "2Gi"limits:cpu: "1000m"memory: "2Gi"initResources: {}# limits:#   cpu: "25m"#   # memory: "128Mi"# requests:#   cpu: "25m"#   memory: "128Mi"sidecarResources: {}# limits:#   cpu: "25m"#   # memory: "128Mi"# requests:#   cpu: "25m"#   memory: "128Mi"networkHost: "0.0.0.0"volumeClaimTemplate:accessModes: ["ReadWriteOnce" ]volumeMode: FilesystemstorageClassName: local-elasticsearchresources:requests:storage: 3Girbac:create: falseserviceAccountName: ""podSecurityPolicy:create: falsename: ""spec:privileged: truefsGroup:rule: RunAsAnyrunAsUser:rule: RunAsAnyseLinux:rule: RunAsAnysupplementalGroups:rule: RunAsAnyvolumes:- secret- configMap- persistentVolumeClaimpersistence:enabled: trueannotations: {}#annotations: {volume.beta.kubernetes.io/storage-class: "nfs-client"}pvc:enabled: falsename: elasticsearch-pvcextraVolumes: []# - name: extras#   emptyDir: {}extraVolumeMounts: []# - name: extras#   mountPath: /usr/share/extras#   readOnly: trueextraContainers: []# - name: do-something#   image: busybox#   command: ['do', 'something']extraInitContainers: []# - name: do-something#   image: busybox#   command: ['do', 'something']# This is the PriorityClass settings as defined in
# https://kubernetes.io/docs/concepts/configuration/pod-priority-preemption/#priorityclass
priorityClassName: ""# By default this will make sure two pods don't end up on the same node
# Changing this to a region would allow you to spread pods across regions
antiAffinityTopologyKey: "kubernetes.io/hostname"# Hard means that by default pods will only be scheduled if there are enough nodes for them
# and that they will never end up on the same node. Setting this to soft will do this "best effort"
antiAffinity: "hard"# This is the node affinity settings as defined in
# https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#node-affinity-beta-feature
nodeAffinity: {}# The default is to deploy all pods serially. By setting this to parallel all pods are started at
# the same time when bootstrapping the cluster
podManagementPolicy: "Parallel"# The environment variables injected by service links are not used, but can lead to slow Elasticsearch boot times when
# there are many services in the current namespace.
# If you experience slow pod startups you probably want to set this to `false`.
enableServiceLinks: trueprotocol: http
httpPort: 9200
transportPort: 9300service:labels: {}labelsHeadless: {}type: NodePortnodePort: 32060annotations: {}httpPortName: httptransportPortName: transportloadBalancerIP: ""loadBalancerSourceRanges: []updateStrategy: RollingUpdate# This is the max unavailable setting for the pod disruption budget
# The default value of 1 will make sure that kubernetes won't allow more than 1
# of your pods to be unavailable during maintenance
maxUnavailable: 1podSecurityContext:fsGroup: 1000runAsUser: 1000securityContext:capabilities:drop:- ALL# readOnlyRootFilesystem: truerunAsNonRoot: truerunAsUser: 1000# How long to wait for elasticsearch to stop gracefully
terminationGracePeriod: 120sysctlVmMaxMapCount: 262144readinessProbe:failureThreshold: 3initialDelaySeconds: 10periodSeconds: 10successThreshold: 3timeoutSeconds: 5# https://www.elastic.co/guide/en/elasticsearch/reference/7.8/cluster-health.html#request-params wait_for_status
clusterHealthCheckParams: "wait_for_status=green&timeout=1s"## Use an alternate scheduler.
## ref: https://kubernetes.io/docs/tasks/administer-cluster/configure-multiple-schedulers/
##
schedulerName: ""imagePullSecrets:- name: registry-secret
nodeSelector: {}
tolerations: []# Enabling this will publically expose your Elasticsearch instance.
# Only enable this if you have security enabled on your cluster
ingress:enabled: falseannotations: {}# kubernetes.io/ingress.class: nginx# kubernetes.io/tls-acme: "true"path: /hosts:- chart-example.localtls: []#  - secretName: chart-example-tls#    hosts:#      - chart-example.localnameOverride: ""
fullnameOverride: ""# https://github.com/elastic/helm-charts/issues/63
masterTerminationFix: falselifecycle: {}# preStop:#   exec:#     command: ["/bin/sh", "-c", "echo Hello from the postStart handler > /usr/share/message"]# postStart:#   exec:#     command:#       - bash#       - -c#       - |#         #!/bin/bash#         # Add a template to adjust number of shards/replicas#         TEMPLATE_NAME=my_template#         INDEX_PATTERN="logstash-*"#         SHARD_COUNT=8#         REPLICA_COUNT=1#         ES_URL=http://localhost:9200#         while [[ "$(curl -s -o /dev/null -w '%{http_code}n' $ES_URL)" != "200" ]]; do sleep 1; done#         curl -XPUT "$ES_URL/_template/$TEMPLATE_NAME" -H 'Content-Type: application/json' -d'{"index_patterns":['""$INDEX_PATTERN""'],"settings":{"number_of_shards":'$SHARD_COUNT',"number_of_replicas":'$REPLICA_COUNT'}}'sysctlInitContainer:enabled: truekeystore: []# Deprecated
# please use the above podSecurityContext.fsGroup instead
fsGroup: ""

以上是全部字段,下面抽一些常用字段出来解释,其他字段默认即可

replicas: 3                                            # pod副本数minimumMasterNodes: 2                                # es集群最少node数量esConfig:                                            # es配置文件,挂载出来修改的elasticsearch.yml: |
#  path.repo: "/usr/share/elasticsearch/myBackup"
#  log4j2.properties: |
#    key = valueimage: "69.172.74.253:8080/elk/elasticsearch"        # es使用的镜像地址
imageTag: "7.7.1"                                    # es使用镜像的tag
imagePullPolicy: "IfNotPresent"                        # 是否每次重新拉取镜像volumeClaimTemplate:                                # 外部存储模板accessModes: ["ReadWriteOnce" ]                    # 读取模式volumeMode: Filesystem                            # 存储模式storageClassName: local-elasticsearch                # 存储类名称,存储类对应真实存储resources:requests:storage: 3Gi                                    # 需要内存数量pvc:enabled: false                                    # 是否开启pvc存储name: elasticsearch-pvc                            # pvc名称imagePullSecrets:                                    # 拉取私有镜像仓库secret
- name: registry-secret
nodeSelector: {}                                    # 节点选择器

以上就是这期的内容,咱们下期再见!当然,如果小伙伴有更快速更便捷的方式也可以推荐给小编哈~

centos7 如何安装部署k8s_五步教你如何使用k8s快速部署ES相关推荐

  1. win10系统更新在哪_五步教你win10永久关闭系统自动更新

    最近有很多朋友问我win10如何永久关闭自动更新,每次打开电脑都是一个大大的笑脸让我更新系统,但是又不能取消更新很是烦恼.小编五步教你永久关闭win10自动更新问题. 电脑的更新和手机的更新其实是一样 ...

  2. 【Microsoft Azure 的1024种玩法】七十四.五分钟在Azure Virtual Machines中快速部署一套软件项目管理及自动构建工具

    [简介] Apache Maven由 Apache 软件基金会所提供的一个软件项目管理及自动构建工具,Maven 为开发者提供了一套完整的构建生命周期框架.开发团队几乎不用花多少时间就能够自动完成工程 ...

  3. 与mysql数据库的交互实战_实战教程丨五步教你优雅地在Windows下安装MySQL数据库...

    虽说近几个月全球的经济都不怎么景气,但有个事实我们必须得承认: 各行各业的数据体量正在不断变大. 而随着数据体量的不断扩大,各公司使用数据库管理来数据再常见不过.比如MySQL这样的关系型数据库,互联 ...

  4. 五分钟教你如何用函数计算部署钉钉群发机器人

    如果你是钉钉多个群的管理员,想要在多个钉钉群群发消息的时候,是不是还在为要寻找所有的群,并不断的复制黏贴消息而烦恼? 过去的你:(N 个群,N 次操作) 现在的你:(N 个群,1 次操作) 本篇文章适 ...

  5. 百度云:centos7.0+ 安装宝塔与ShopXO开源商城(从0搭建到部署上线) - 教程篇

    全程高能:从0搭建到部署上线.配图文详解 百度云:centos7.0+ 安装宝塔与ShopXO开源商城 - 部署篇 安装前准备 · step: 相关截图: 去除安全隐患: 注意事项: 附:如何二级域名 ...

  6. 计算机怎么把音乐调出来怎么办,五步教你轻松调出好音乐,汽车音响调音就是这么简单-音频管理器怎么设置...

    很多的车主兴冲冲的去改装店进行汽车音响改装,而且对于改装后是抱有很大的希望,结果汽车音响改装完毕后,却大失所望,甚至于有种上当受骗的感觉.这改的什么音响,都没我的原车音响的音质好!几经纠结,改装店有改 ...

  7. 怎么样用计算机打字,五步教你如何电脑快速打字!

    在所有电脑操作技能中,敲键盘看上去是最不需要学习的,其实并不是这样,敲好键盘恰好是学习电脑的一个小门槛,或者说盲打是一个小门槛,会不会盲打是有没有踏踏实实学过一段电脑的分界线,今天我来系统全面的教大家 ...

  8. 五步教你将Intellij IDEA设置成中文(2022年最新教程)附图解(方法二可通用于DataGrip,PyCharm,WebStorm等jetbrains全家桶)

    第一步: 首先先打开你的IDEA 第二步: 打开下面的网址(官方网址,安全可靠) https://plugins.jetbrains.com/plugin/13710-chinese-simplifi ...

  9. 怎么制作游戏脚本_怎么剪游戏视频?五步教你制作绝地求生击杀合集

    关于绝地求生的击杀合集视频,相信常玩绝地求生组队开黑的朋友们并不陌生.无论是大神带飞还是自身本为大神,吃鸡的局与击杀瞬间肯定是有的.将这些游戏画面录制下来做成一个合集,也是一件非常酷的事情.制作好的视 ...

最新文章

  1. 网络安全工具:Wireshark
  2. js node 打包mac应用_混搭 TypeScript + GraphQL + DI + Decorator 风格写 Node.js 应用
  3. 机器学习笔记: Discriminative vs Generative Models
  4. php 伪静态 获取当前页面路径_织梦移动适配PHP获取当前页面URL地址方法
  5. 使用HttpsUrlConnedtion连接https地址时异常处理 (方式二)
  6. WPF入门教程系列十六——WPF中的数据绑定(二)
  7. Kafka的介绍之一
  8. dspq值多少最好_蜂蜜纯度42的意思?蜂蜜纯度多少度好?
  9. PHP 后台程序配置config文件,及form表单上传文件
  10. python爬取高德poi数据_python3爬虫-高德地图POI数据的爬取
  11. Android中添加CallStack
  12. 2021.4.18高一模拟赛
  13. windows下cmd下载文件
  14. 【刘润五分钟商学院】-161白马不是马吗?
  15. Whois接口查询文档
  16. 缺少所需的CD/DVD驱动器设备驱动程序
  17. 操作 Windows7 任务栏的快捷方式
  18. Leetcode 488.祖玛游戏
  19. 自己总结的Unity3d RPG网络游戏 UI逻辑 框架(基于NGUI)
  20. 每天学一点AS3.0(五)---声音的控制(5)

热门文章

  1. 让用户来决定Windows任务管理器的CPU占用率
  2. MAC OS中的dylib 的@rpath和@loader_path小问题
  3. Docker初学乍练之单主机网络
  4. Linux查看swap使用情况小脚本
  5. 2016年ICT产业趋势预测
  6. Codewars-Javascript训练手册:正则表达式(Regular Expressions)
  7. iframe cross domain
  8. jQuery 仿淘宝 鼠标悬停显示大图效果
  9. python解析word_word文档的python解析
  10. 自由自在休闲食品实现奶茶妹的创业梦