Skip to content

Commit

Permalink
add 3.1.0 changes and fix typo (#52)
Browse files Browse the repository at this point in the history
  • Loading branch information
innerpeacez authored Aug 7, 2020
1 parent 558f46c commit d383403
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 7 deletions.
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@ Changes by Version
==================
Release Notes.

3.1.0
------------------

#### Features
- Support SkyWalking 8.1.0
- Support enable oap dynamic configuration through k8s configmap

#### Download
- http://skywalking.apache.org/downloads/

3.0.0
------------------

Expand Down
2 changes: 1 addition & 1 deletion chart/skywalking/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +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.dynamicConfigEnabled` | 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` |
Expand Down
2 changes: 1 addition & 1 deletion chart/skywalking/templates/oap-configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

{{- if .Values.oap.dymicConfigEnabled }}
{{- if .Values.oap.dynamicConfigEnabled }}
apiVersion: v1
kind: ConfigMap
metadata:
Expand Down
2 changes: 1 addition & 1 deletion chart/skywalking/templates/oap-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ spec:
value: kubernetes
- name: SW_CLUSTER_K8S_NAMESPACE
value: "{{ .Release.Namespace }}"
{{- if .Values.oap.dymicConfigEnabled }}
{{- if .Values.oap.dynamicConfigEnabled }}
- name: SW_CONFIGURATION
value: k8s-configmap
- name: SW_CONFIG_CONFIGMAP_PERIOD
Expand Down
4 changes: 2 additions & 2 deletions chart/skywalking/values-es6.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ serviceAccounts:

oap:
name: oap
# When 'dymicConfigEnabled' set to true, enable oap dynamic configuration through k8s configmap,
# When 'dynamicConfigEnabled' 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
dynamicConfigEnabled: false
image:
repository: apache/skywalking-oap-server
tag: 8.1.0-es6
Expand Down
4 changes: 2 additions & 2 deletions chart/skywalking/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ serviceAccounts:

oap:
name: oap
# When 'dymicConfigEnabled' set to true, enable oap dynamic configuration through k8s configmap,
# When 'dynamicConfigEnabled' 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
dynamicConfigEnabled: false
image:
repository: apache/skywalking-oap-server
tag: 8.1.0-es7
Expand Down

0 comments on commit d383403

Please sign in to comment.