未验证 提交 558f46c9 编写于 作者: I innerpeacez 提交者: GitHub

3.1.0 (#51)

上级 25ca1ba5
......@@ -81,6 +81,7 @@ This is recommended as the best practice to deploy SkyWalking backend stack into
| 6.6.0 | 1.1.0 |
| 7.0.0 | 2.0.0 |
| 8.0.1 | 3.0.0 |
| 8.1.0 | 3.1.0 |
Please head to the [releases page](http://skywalking.apache.org/downloads/) to download a release of Apache SkyWalking.
......
......@@ -16,8 +16,8 @@
apiVersion: v2
name: skywalking
home: https://skywalking.apache.org
version: 3.0.0
appVersion: 8.0.1
version: 3.1.0
appVersion: 8.1.0
description: Apache SkyWalking APM System
icon: https://raw.githubusercontent.com/apache/skywalking-kubernetes/master/logo/sw-logo-for-chart.jpg
sources:
......
......@@ -43,6 +43,7 @@ The following table lists the configurable parameters of the Skywalking chart an
| `nameOverride` | Override name | `nil` |
| `serviceAccounts.oap` | Name of the OAP service account to use or create | `nil` |
| `oap.name` | OAP deployment name | `oap` |
| `oap.dymicConfigEnabled` | Enable oap dynamic configuration through k8s configmap | `false` |
| `oap.image.repository` | OAP container image name | `apache/skywalking-oap-server` |
| `oap.image.tag` | OAP container image tag | `6.1.0` |
| `oap.image.pullPolicy` | OAP container image pull policy | `IfNotPresent` |
......
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
{{- if .Values.oap.dymicConfigEnabled }}
apiVersion: v1
kind: ConfigMap
metadata:
name: skywalking-dynamic-config
labels:
app: {{ template "skywalking.name" . }}
release: {{ .Release.Name }}
component: {{ .Values.oap.name }}
data:
{{- end }}
\ No newline at end of file
......@@ -108,6 +108,12 @@ spec:
value: kubernetes
- name: SW_CLUSTER_K8S_NAMESPACE
value: "{{ .Release.Namespace }}"
{{- if .Values.oap.dymicConfigEnabled }}
- name: SW_CONFIGURATION
value: k8s-configmap
- name: SW_CONFIG_CONFIGMAP_PERIOD
value: "60"
{{- end }}
- name: SW_CLUSTER_K8S_LABEL
value: "app={{ template "skywalking.name" . }},release={{ .Release.Name }},component={{ .Values.oap.name }}"
- name: SKYWALKING_COLLECTOR_UID
......
......@@ -25,6 +25,6 @@ metadata:
heritage: "{{ .Release.Service }}"
rules:
- apiGroups: [""]
resources: ["pods"]
resources: ["pods","configmaps"]
verbs: ["get", "watch", "list"]
{{- end }}
\ No newline at end of file
......@@ -22,9 +22,13 @@ serviceAccounts:
oap:
name: oap
# When 'dymicConfigEnabled' set to true, enable oap dynamic configuration through k8s configmap,
# Note: The default configmap data is empty, please refer to the detailed documentation (https://github.com/apache/skywalking/blob/master/docs/en/setup/backend/dynamic-config.md)
# Sync period in seconds. Defaults to 60 seconds. env: SW_CONFIG_CONFIGMAP_PERIOD
dymicConfigEnabled: false
image:
repository: apache/skywalking-oap-server
tag: 8.0.1-es6
tag: 8.1.0-es6
pullPolicy: IfNotPresent
storageType: elasticsearch
ports:
......@@ -62,7 +66,7 @@ ui:
replicas: 1
image:
repository: apache/skywalking-ui
tag: 8.0.1
tag: 8.1.0
pullPolicy: IfNotPresent
# podAnnotations:
# example: oap-foo
......
......@@ -22,9 +22,13 @@ serviceAccounts:
oap:
name: oap
# When 'dymicConfigEnabled' set to true, enable oap dynamic configuration through k8s configmap,
# Note: The default configmap data is empty, please refer to the detailed documentation (https://github.com/apache/skywalking/blob/master/docs/en/setup/backend/dynamic-config.md)
# Sync period in seconds. Defaults to 60 seconds. env: SW_CONFIG_CONFIGMAP_PERIOD
dymicConfigEnabled: false
image:
repository: apache/skywalking-oap-server
tag: 8.0.1-es7
tag: 8.1.0-es7
pullPolicy: IfNotPresent
storageType: elasticsearch7
ports:
......@@ -62,7 +66,7 @@ ui:
replicas: 1
image:
repository: apache/skywalking-ui
tag: 8.0.1
tag: 8.1.0
pullPolicy: IfNotPresent
# podAnnotations:
# example: oap-foo
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册