新增learn-kubernetes(https://github.com/yyong-brs/learn-kubernetes)相关文件
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
version: "3.7"
|
||||
|
||||
services:
|
||||
ch13-elasticsearch:
|
||||
image: kiamol/ch13-elasticsearch:latest-linux-amd64
|
||||
|
||||
ch13-kibana:
|
||||
image: kiamol/ch13-kibana:latest-linux-amd64
|
||||
@@ -0,0 +1,8 @@
|
||||
version: "3.7"
|
||||
|
||||
services:
|
||||
ch13-elasticsearch:
|
||||
image: kiamol/ch13-elasticsearch:latest-linux-arm64
|
||||
|
||||
ch13-kibana:
|
||||
image: kiamol/ch13-kibana:latest-linux-arm64
|
||||
@@ -0,0 +1,12 @@
|
||||
version: "3.7"
|
||||
|
||||
services:
|
||||
ch13-elasticsearch:
|
||||
image: kiamol/ch13-elasticsearch:latest
|
||||
build:
|
||||
context: ./elasticsearch
|
||||
|
||||
ch13-kibana:
|
||||
image: kiamol/ch13-kibana:latest
|
||||
build:
|
||||
context: ./kibana
|
||||
@@ -0,0 +1,42 @@
|
||||
ARG ALPINE_VERSION="3.15"
|
||||
|
||||
FROM alpine:$ALPINE_VERSION AS download-base
|
||||
WORKDIR /downloads
|
||||
RUN echo "$(apk --print-arch)" > /arch.txt
|
||||
|
||||
FROM download-base AS installer
|
||||
ARG ES_VERSION="7.10.2"
|
||||
|
||||
# find the downloads for previous versions here - https://www.elastic.co/downloads/past-releases#elasticsearch-oss-no-jdk
|
||||
# 7.10 is the latest version which is OSS, see - https://www.elastic.co/pricing/faq/licensing
|
||||
# there's no no-jdk version for arm64, so we download the JDK and strip it out
|
||||
|
||||
#https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-7.10.2-linux-x86_64.tar.gz
|
||||
#https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-7.10.2-linux-aarch64.tar.gz
|
||||
|
||||
RUN wget -O elasticsearch.tar.gz "https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-oss-${ES_VERSION}-linux-$(cat /arch.txt).tar.gz"
|
||||
|
||||
RUN mkdir /elasticsearch && \
|
||||
tar -xzf elasticsearch.tar.gz --strip-components=1 -C /elasticsearch && \
|
||||
rm -rf /elasticsearch/jdk
|
||||
|
||||
# Elasticsearch requires a JVM - this image provides a minimal JRE installation
|
||||
# see the product-JVM version matrix https://www.elastic.co/support/matrix#matrix_jvm
|
||||
FROM openjdk:11.0.11-jre-slim
|
||||
|
||||
WORKDIR /usr/share/elasticsearch
|
||||
COPY --from=installer /elasticsearch .
|
||||
|
||||
EXPOSE 9200 9300
|
||||
ENV ES_HOME="/usr/share/elasticsearch" \
|
||||
ES_JAVA_OPTS="-Xms1024m -Xmx1024m"
|
||||
|
||||
COPY elasticsearch.yml log4j2.properties ./config/
|
||||
|
||||
RUN groupadd -g 1000 elasticsearch && \
|
||||
adduser -uid 1000 -gid 1000 --home ${ES_HOME} elasticsearch && \
|
||||
chmod 0775 ${ES_HOME} && \
|
||||
chown -R 1000:0 ${ES_HOME}
|
||||
|
||||
USER elasticsearch:root
|
||||
CMD ["/usr/share/elasticsearch/bin/elasticsearch"]
|
||||
@@ -0,0 +1,3 @@
|
||||
cluster.name: "kiamol"
|
||||
discovery.type: single-node
|
||||
network.host: 0.0.0.0
|
||||
@@ -0,0 +1,9 @@
|
||||
status = error
|
||||
|
||||
appender.console.type = Console
|
||||
appender.console.name = console
|
||||
appender.console.layout.type = PatternLayout
|
||||
appender.console.layout.pattern = [%d{ISO8601}][%-5p][%-25c{1.}] [%node_name]%marker%m%n
|
||||
|
||||
rootLogger.level = info
|
||||
rootLogger.appenderRef.console.ref = console
|
||||
@@ -0,0 +1,33 @@
|
||||
ARG NODE_TAG=10.23.1-alpine3.11
|
||||
ARG ALPINE_VERSION="3.15"
|
||||
|
||||
FROM alpine:$ALPINE_VERSION AS download-base
|
||||
WORKDIR /downloads
|
||||
RUN echo "$(apk --print-arch)" > /arch.txt
|
||||
|
||||
FROM download-base AS installer
|
||||
ARG KIBANA_VERSION="7.10.2"
|
||||
|
||||
# find the downloads for previous versions here - https://www.elastic.co/downloads/past-releases#kibana-oss
|
||||
# 7.10 is the latest version which is OSS, see - https://www.elastic.co/pricing/faq/licensing
|
||||
|
||||
RUN wget -O kibana.tar.gz https://artifacts.elastic.co/downloads/kibana/kibana-oss-${KIBANA_VERSION}-linux-$(cat /arch.txt).tar.gz
|
||||
|
||||
RUN mkdir /kibana && \
|
||||
tar -xzf kibana.tar.gz --strip-components=1 -C /kibana && \
|
||||
rm -rf /kibana/node
|
||||
|
||||
# Kibana requires Node.js - this image is the official Node distribution
|
||||
# see the Node.js versions in https://www.elastic.co/guide/en/kibana/master/upgrading-nodejs.html
|
||||
FROM node:$NODE_TAG
|
||||
|
||||
EXPOSE 5601
|
||||
ENV KIBANA_HOME="/usr/share/kibana"
|
||||
|
||||
WORKDIR /usr/share/kibana
|
||||
COPY --from=installer /kibana .
|
||||
COPY ./kibana bin/
|
||||
COPY ./kibana.yml config/
|
||||
|
||||
RUN chmod +x bin/kibana
|
||||
CMD ["/usr/share/kibana/bin/kibana", "--allow-root"]
|
||||
@@ -0,0 +1,23 @@
|
||||
#!/bin/sh
|
||||
SCRIPT=$0
|
||||
|
||||
# SCRIPT may be an arbitrarily deep series of symlinks. Loop until we have the concrete path.
|
||||
while [ -h "$SCRIPT" ] ; do
|
||||
ls=$(ls -ld "$SCRIPT")
|
||||
# Drop everything prior to ->
|
||||
link=$(expr "$ls" : '.*-> \(.*\)$')
|
||||
if expr "$link" : '/.*' > /dev/null; then
|
||||
SCRIPT="$link"
|
||||
else
|
||||
SCRIPT=$(dirname "$SCRIPT")/"$link"
|
||||
fi
|
||||
done
|
||||
|
||||
DIR="$(dirname "${SCRIPT}")/.."
|
||||
CONFIG_DIR=${KBN_PATH_CONF:-"$DIR/config"}
|
||||
|
||||
if [ -f "${CONFIG_DIR}/node.options" ]; then
|
||||
KBN_NODE_OPTS="$(grep -v ^# < ${CONFIG_DIR}/node.options | xargs)"
|
||||
fi
|
||||
|
||||
NODE_OPTIONS="--no-warnings --max-http-header-size=65536 $KBN_NODE_OPTS $NODE_OPTIONS" NODE_ENV=production exec node "${DIR}/src/cli/dist" ${@}
|
||||
@@ -0,0 +1,112 @@
|
||||
# Kibana is served by a back end server. This setting specifies the port to use.
|
||||
#server.port: 5601
|
||||
|
||||
# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
|
||||
# The default is 'localhost', which usually means remote machines will not be able to connect.
|
||||
# To allow connections from remote users, set this parameter to a non-loopback address.
|
||||
server.host: "0.0.0.0"
|
||||
|
||||
# Enables you to specify a path to mount Kibana at if you are running behind a proxy.
|
||||
# Use the `server.rewriteBasePath` setting to tell Kibana if it should remove the basePath
|
||||
# from requests it receives, and to prevent a deprecation warning at startup.
|
||||
# This setting cannot end in a slash.
|
||||
#server.basePath: ""
|
||||
|
||||
# Specifies whether Kibana should rewrite requests that are prefixed with
|
||||
# `server.basePath` or require that they are rewritten by your reverse proxy.
|
||||
# This setting was effectively always `false` before Kibana 6.3 and will
|
||||
# default to `true` starting in Kibana 7.0.
|
||||
#server.rewriteBasePath: false
|
||||
|
||||
# The maximum payload size in bytes for incoming server requests.
|
||||
#server.maxPayloadBytes: 1048576
|
||||
|
||||
# The Kibana server's name. This is used for display purposes.
|
||||
#server.name: "your-hostname"
|
||||
|
||||
# The URLs of the Elasticsearch instances to use for all your queries.
|
||||
elasticsearch.hosts: ["http://elasticsearch:9200"]
|
||||
# When this setting's value is true Kibana uses the hostname specified in the server.host
|
||||
# setting. When the value of this setting is false, Kibana uses the hostname of the host
|
||||
# that connects to this Kibana instance.
|
||||
#elasticsearch.preserveHost: true
|
||||
|
||||
# Kibana uses an index in Elasticsearch to store saved searches, visualizations and
|
||||
# dashboards. Kibana creates a new index if the index doesn't already exist.
|
||||
#kibana.index: ".kibana"
|
||||
|
||||
# The default application to load.
|
||||
#kibana.defaultAppId: "home"
|
||||
|
||||
# If your Elasticsearch is protected with basic authentication, these settings provide
|
||||
# the username and password that the Kibana server uses to perform maintenance on the Kibana
|
||||
# index at startup. Your Kibana users still need to authenticate with Elasticsearch, which
|
||||
# is proxied through the Kibana server.
|
||||
#elasticsearch.username: "user"
|
||||
#elasticsearch.password: "pass"
|
||||
|
||||
# Enables SSL and paths to the PEM-format SSL certificate and SSL key files, respectively.
|
||||
# These settings enable SSL for outgoing requests from the Kibana server to the browser.
|
||||
#server.ssl.enabled: false
|
||||
#server.ssl.certificate: /path/to/your/server.crt
|
||||
#server.ssl.key: /path/to/your/server.key
|
||||
|
||||
# Optional settings that provide the paths to the PEM-format SSL certificate and key files.
|
||||
# These files validate that your Elasticsearch backend uses the same key files.
|
||||
#elasticsearch.ssl.certificate: /path/to/your/client.crt
|
||||
#elasticsearch.ssl.key: /path/to/your/client.key
|
||||
|
||||
# Optional setting that enables you to specify a path to the PEM file for the certificate
|
||||
# authority for your Elasticsearch instance.
|
||||
#elasticsearch.ssl.certificateAuthorities: [ "/path/to/your/CA.pem" ]
|
||||
|
||||
# To disregard the validity of SSL certificates, change this setting's value to 'none'.
|
||||
#elasticsearch.ssl.verificationMode: full
|
||||
|
||||
# Time in milliseconds to wait for Elasticsearch to respond to pings. Defaults to the value of
|
||||
# the elasticsearch.requestTimeout setting.
|
||||
#elasticsearch.pingTimeout: 1500
|
||||
|
||||
# Time in milliseconds to wait for responses from the back end or Elasticsearch. This value
|
||||
# must be a positive integer.
|
||||
#elasticsearch.requestTimeout: 30000
|
||||
|
||||
# List of Kibana client-side headers to send to Elasticsearch. To send *no* client-side
|
||||
# headers, set this value to [] (an empty list).
|
||||
#elasticsearch.requestHeadersWhitelist: [ authorization ]
|
||||
|
||||
# Header names and values that are sent to Elasticsearch. Any custom headers cannot be overwritten
|
||||
# by client-side headers, regardless of the elasticsearch.requestHeadersWhitelist configuration.
|
||||
#elasticsearch.customHeaders: {}
|
||||
|
||||
# Time in milliseconds for Elasticsearch to wait for responses from shards. Set to 0 to disable.
|
||||
#elasticsearch.shardTimeout: 30000
|
||||
|
||||
# Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying.
|
||||
#elasticsearch.startupTimeout: 5000
|
||||
|
||||
# Logs queries sent to Elasticsearch. Requires logging.verbose set to true.
|
||||
#elasticsearch.logQueries: false
|
||||
|
||||
# Specifies the path where Kibana creates the process ID file.
|
||||
#pid.file: /var/run/kibana.pid
|
||||
|
||||
# Enables you specify a file where Kibana stores log output.
|
||||
#logging.dest: stdout
|
||||
|
||||
# Set the value of this setting to true to suppress all logging output.
|
||||
#logging.silent: false
|
||||
|
||||
# Set the value of this setting to true to suppress all logging output other than error messages.
|
||||
#logging.quiet: false
|
||||
|
||||
# Set the value of this setting to true to log all events, including system usage information
|
||||
# and all requests.
|
||||
#logging.verbose: false
|
||||
|
||||
# Set the interval in milliseconds to sample system and process performance
|
||||
# metrics. Minimum is 100ms. Defaults to 5000.
|
||||
#ops.interval: 5000
|
||||
|
||||
# Specifies locale to be used for all localizable strings, dates and number formats.
|
||||
#i18n.locale: "en"
|
||||
@@ -0,0 +1,10 @@
|
||||
$images=$(yq e '.services.[].image' docker-compose.yml)
|
||||
|
||||
foreach ($image in $images)
|
||||
{
|
||||
docker manifest create --amend $image `
|
||||
"$($image)-linux-arm64" `
|
||||
"$($image)-linux-amd64"
|
||||
|
||||
docker manifest push $image
|
||||
}
|
||||
Reference in New Issue
Block a user