Skip to content

Commit e8a363f

Browse files
frankrenok8s-ci-robot
authored andcommittedDec 19, 2018
Update to latest image, add OWNERS as well as add new owner to team, … (helm#10107)
* Update to latest image, add OWNERS as well as add new owner to team, fix README, update Helm Charts root readme with incorrect text. Signed-off-by: Frank Reno [email protected] Signed-off-by: Frank Reno <[email protected]> * add delete policy hook to fix issues when upgrading chart Signed-off-by: Frank Reno [email protected] Signed-off-by: Frank Reno <[email protected]>
1 parent 074ac53 commit e8a363f

File tree

7 files changed

+42
-6
lines changed

7 files changed

+42
-6
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Individual charts can be maintained by one or more users of GitHub. When someone
6666
1. Be invited (and accept your invite) as a read-only collaborator on [this repo](https://github.com/helm/charts). This is required for @k8s-ci-robot [PR comment interaction](https://github.com/kubernetes/community/blob/master/contributors/guide/pull-requests.md).
6767
1. An OWNERS file needs to be added to a chart. That OWNERS file should list the maintainers' GitHub login names for both the reviewers and approvers sections. For an example see the [Drupal chart](stable/drupal/OWNERS). The `OWNERS` file should also be appended to the `.helmignore` file.
6868

69-
Once these two steps are done a chart approver can merge pull requests following the directions in the [REVIEW_GUIDELINES.md](REVIEW_GUIDELINES.md) file.
69+
Once these three steps are done a chart approver can merge pull requests following the directions in the [REVIEW_GUIDELINES.md](REVIEW_GUIDELINES.md) file.
7070

7171
## Trusted Collaborator
7272

‎stable/sumologic-fluentd/Chart.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: sumologic-fluentd
2-
version: 0.7.0
3-
appVersion: 2.0.0
2+
version: 0.8.0
3+
appVersion: 2.1.0
44
description: Sumologic Log Collector
55
keywords:
66
- monitoring
@@ -16,3 +16,5 @@ maintainers:
1616
email: freno@sumologic.com
1717
- name: darend
1818
email: darend@gmail.com
19+
- name: bendrucker
20+
email: ben@takescoop.com

‎stable/sumologic-fluentd/OWNERS

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
approvers:
2+
- frankreno
3+
- flah00
4+
- darend
5+
- bendrucker
6+
reviewers:
7+
- frankreno
8+
- flah00
9+
- darend
10+
- bendrucker

‎stable/sumologic-fluentd/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## Introduction
88

9-
This chart adds the Sumo Logic Collector to all nodes in your cluster as a
9+
This chart adds the [Sumo Logic FluentD Plugin](https://github.com/SumoLogic/fluentd-kubernetes-sumologic) to all nodes in your cluster as a
1010
DaemonSet. The image supports fluentd `file` and `systemd` log sources.
1111

1212
After you have installed the chart, each pod, deployment, etc. can be optionally
@@ -94,7 +94,7 @@ The following table lists the configurable parameters of the sumologic-fluentd c
9494
| `sumologic.proxyUri` | Add the uri of the proxy environment if present. | `Nil`
9595
| `sumologic.enableStatWatcher` | Option to control the enabling of [stat_watcher](https://docs.fluentd.org/v1.0/articles/in_tail#enable_stat_watcher). | `true`
9696
| `image.name` | The image repository and name to pull from | `sumologic/fluentd-kubernetes-sumologic` |
97-
| `image.tag` | The image tag to pull | `v1.16` |
97+
| `image.tag` | The image tag to pull | `v2.1.0` |
9898
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
9999
| `persistence.enabled` | Boolean value, used to turn on or off fluentd position file persistence, on nodes (requires Kubernetes >= 1.8) | `false` |
100100
| `persistence.hostPath` | The path, on each node, to a directory for fluentd pos files. You must create the directory on each node first or set `persistence.createPath` (requires Kubernetes >= 1.8) | `/var/run/fluentd-pos` |
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Patterns to ignore when building packages.
2+
# This supports shell glob matching, relative path matching, and
3+
# negation (prefixed with !). Only one pattern per line.
4+
.DS_Store
5+
# Common VCS dirs
6+
.git/
7+
.gitignore
8+
.bzr/
9+
.bzrignore
10+
.hg/
11+
.hgignore
12+
.svn/
13+
# Common backup files
14+
*.swp
15+
*.bak
16+
*.tmp
17+
*~
18+
# Various IDEs
19+
.project
20+
.idea/
21+
*.tmproj
22+
# OWNERS file for Kubernetes
23+
OWNERS

‎stable/sumologic-fluentd/templates/secrets.yaml

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ metadata:
99
heritage: "{{ .Release.Service }}"
1010
annotations:
1111
"helm.sh/hook": pre-install,pre-upgrade
12+
"helm.sh/hook-delete-policy": "before-hook-creation"
1213
type: Opaque
1314
data:
1415
collector-url: {{ default "MISSING" .Values.sumologic.collectorUrl | b64enc | quote }}

‎stable/sumologic-fluentd/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Default values for sumologic-fluentd.
22
image:
33
name: sumologic/fluentd-kubernetes-sumologic
4-
tag: v2.0.0
4+
tag: v2.1.0
55
pullPolicy: IfNotPresent
66

77
## Annotations to add to the DaemonSet's Pods

0 commit comments

Comments
 (0)
Please sign in to comment.