1、搭建K8S集群
参考以前的文章
2、安装GlusterFS
参考以前的文章
3、搭建ES+Kibana
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232
| crictl pull docker.elastic.co/elasticsearch/elasticsearch:7.17.2 crictl pull docker.elastic.co/kibana/kibana:7.17.2 crictl pull docker.elastic.co/logstash/logstash:7.17.2 crictl pull docker.elastic.co/beats/filebeat:7.17.2
cluster.name: my-es node.name: "node-1" path.data: /usr/share/elasticsearch/data
bootstrap.memory_lock: false network.host: 0.0.0.0 http.port: 9200
discovery.seed_hosts: ["127.0.0.1", "[::1]"] cluster.initial_master_nodes: ["node-1"]
http.cors.enabled: true http.cors.allow-origin: "*" http.cors.allow-headers: Authorization,X-Requested-With,Content-Length,Content-Type
server.port: 5601 server.host: "0.0.0.0" elasticsearch.hosts: "http://es-kibana-0.es-kibana.kube-system:9200" kibana.index: ".kibana"
kubectl create configmap es-config -n kube-system --from-file=elasticsearch.yml kubectl create configmap kibana-config -n kube-system --from-file=kibana.yml
apiVersion: v1 kind: Endpoints metadata: name: glusterfs-es namespace: kube-system subsets: - addresses: - ip: 192.168.56.102 ports: - port: 49155 - addresses: - ip: 192.168.56.103 ports: - port: 49155 - addresses: - ip: 192.168.56.104 ports: - port: 49155
apiVersion: v1 kind: Service metadata: name: glusterfs-es namespace: kube-system spec: ports: - port: 49155
kubectl apply -f es-endpoints.yaml kubectl apply -f es-glusterfs-svc.yaml
apiVersion: v1 kind: PersistentVolume metadata: name: es-pv namespace: kube-system spec: capacity: storage: 5Gi accessModes: - ReadWriteMany glusterfs: endpoints: "glusterfs-es" path: "es-volume" readOnly: false apiVersion: v1 kind: PersistentVolumeClaim metadata: name: es-pv-claim namespace: kube-system labels: app: es spec: accessModes: - ReadWriteMany resources: requests: storage: 5Gi
kubectl apply -f es-pv.yaml kubectl apply -f es-pvc.yaml
apiVersion: apps/v1 kind: StatefulSet metadata: labels: app: es-kibana name: es-kibana namespace: kube-system spec: replicas: 1 selector: matchLabels: app: es-kibana serviceName: "es-kibana" template: metadata: labels: app: es-kibana spec: initContainers: - name: set-vm-max-map-count image: busybox imagePullPolicy: IfNotPresent command: ["/bin/sh"] args: ["-c", "sysctl -w vm.max_map_count=262144;"] securityContext: privileged: true containers: - image: elasticsearch:7.17.2 imagePullPolicy: IfNotPresent lifecycle: postStart: exec: command: [ "/bin/bash", "-c", "chown -R elasticsearch:elasticsearch /usr/share/elasticsearch/data;" ] name: elasticsearch resources: requests: memory: "800Mi" cpu: "800m" limits: memory: "1Gi" cpu: "1000m" ports: - containerPort: 9200 - containerPort: 9300 volumeMounts: - name: es-config mountPath: /usr/share/elasticsearch/config/elasticsearch.yml subPath: elasticsearch.yml - name: es-persistent-storage mountPath: /usr/share/elasticsearch/data env: - name: TZ value: Asia/Shanghai - image: kibana:7.17.2 imagePullPolicy: IfNotPresent name: kibana env: - name: TZ value: Asia/Shanghai volumeMounts: - name: kibana-config mountPath: /usr/share/kibana/config/kibana.yml subPath: kibana.yml volumes: - name: es-config configMap: name: es-config - name: kibana-config configMap: name: kibana-config - name: es-persistent-storage persistentVolumeClaim: claimName: es-pv-claim kubectl apply -f es-statefulset.yaml kubectl get pod -o wide -n kube-system|grep es
apiVersion: v1 kind: Service metadata: labels: app: es-kibana name: es-kibana namespace: kube-system spec: ports: - name: es9200 port: 9200 protocol: TCP targetPort: 9200 - name: es9300 port: 9300 protocol: TCP targetPort: 9300 clusterIP: None selector: app: es-kibana type: ClusterIP kubectl apply -f es-cluster-none-svc.yaml
apiVersion: v1 kind: Service metadata: labels: app: es-kibana name: es-kibana-nodeport-svc namespace: kube-system spec: ports: - name: 9200-9200 port: 9200 protocol: TCP targetPort: 9200 - name: 5601-5601 port: 5601 protocol: TCP targetPort: 5601 nodePort: 31111 selector: app: es-kibana type: NodePort kubectl apply -f es-nodeport-svc.yaml
|
4、搭建Logstash
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101
| http.host: "0.0.0.0" xpack.monitoring.elasticsearch.hosts: http://es-kibana-0.es-kibana.kube-system:9200
input { beats { port => 5044 client_inactivity_timeout => 36000 } }
filter { mutate { rename => { "[host][name]" => "host" } } } output { elasticsearch { hosts => ["http://es-kibana-0.es-kibana.kube-system:9200"] index => "k8s-system-log-%{+YYYY.MM.dd}" } stdout{ codec => rubydebug } } kubectl create configmap logstash-yml-config -n kube-system --from-file=logstash.yml kubectl create configmap logstash-config -n kube-system --from-file=logstash.conf
apiVersion: apps/v1 kind: StatefulSet metadata: labels: app: logstash name: logstash namespace: kube-system spec: serviceName: "logstash" replicas: 1 selector: matchLabels: app: logstash template: metadata: labels: app: logstash spec: containers: - image: logstash:7.17.2 name: logstash resources: requests: memory: "500Mi" cpu: "400m" limits: memory: "800Mi" cpu: "800m" volumeMounts: - name: logstash-yml-config mountPath: /usr/share/logstash/config/logstash.yml subPath: logstash.yml - name: logstash-config mountPath: /usr/share/logstash/pipeline/logstash.conf subPath: logstash.conf env: - name: TZ value: Asia/Shanghai volumes: - name: logstash-yml-config configMap: name: logstash-yml-config - name: logstash-config configMap: name: logstash-config
apiVersion: v1 kind: Service metadata: labels: app: logstash name: logstash namespace: kube-system spec: ports: - name: logstsh port: 5044 protocol: TCP targetPort: 9600 clusterIP: None selector: app: logstash type: ClusterIP
kubectl apply -f logstash-none-svc.yaml
|
5、创建Filebeat服务
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
| filebeat.inputs: - type: log enabled: true paths: - /messages fields: app: k8s type: module filebeat.config.modules: path: ${path.config}/modules.d/*.yml reload.enabled: false setup.template.settings: index.number_of_shards: 3 setup.kibana: output.logstash: hosts: ["logstash-0.logstash.kube-system:5044"] processors: - add_host_metadata: - add_cloud_metadata: kubectl create configmap filebeat-config -n kube-system --from-file=filebeat.yml
apiVersion: apps/v1 kind: DaemonSet metadata: labels: app: filebeat name: filebeat namespace: kube-system spec: selector: matchLabels: app: filebeat template: metadata: labels: app: filebeat spec: imagePullSecrets: - name: registry-pull-secret containers: - image: elastic/filebeat:7.17.2 name: filebeat volumeMounts: - name: filebeat-config mountPath: /etc/filebeat.yml subPath: filebeat.yml - name: k8s-system-logs mountPath: /messages args: [ "-c", "/etc/filebeat.yml", "-e", ] resources: requests: cpu: 100m memory: 100Mi limits: cpu: 500m memory: 500Mi securityContext: runAsUser: 0 env: - name: TZ value: "CST-8" volumes: - name: filebeat-config configMap: name: filebeat-config - name: k8s-system-logs hostPath: path: /var/log/messages type: File kubectl apply -f filebeat-daemonset.yaml
|
参考博客:
https://blog.csdn.net/Soft_Engneer/article/details/124553616