Skip to content
This repository was archived by the owner on Feb 22, 2022. It is now read-only.

Update to latest image, add OWNERS as well as add new owner to team, … #10107

Merged
merged 2 commits into from
Dec 19, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Individual charts can be maintained by one or more users of GitHub. When someone
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).
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.

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.
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.

## Trusted Collaborator

Expand Down
6 changes: 4 additions & 2 deletions stable/sumologic-fluentd/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: sumologic-fluentd
version: 0.7.0
appVersion: 2.0.0
version: 0.8.0
appVersion: 2.1.0
description: Sumologic Log Collector
keywords:
- monitoring
Expand All @@ -16,3 +16,5 @@ maintainers:
email: [email protected]
- name: darend
email: [email protected]
- name: bendrucker
email: [email protected]
10 changes: 10 additions & 0 deletions stable/sumologic-fluentd/OWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
approvers:
- frankreno
- flah00
- darend
- bendrucker
reviewers:
- frankreno
- flah00
- darend
- bendrucker
4 changes: 2 additions & 2 deletions stable/sumologic-fluentd/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

## Introduction

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

After you have installed the chart, each pod, deployment, etc. can be optionally
Expand Down Expand Up @@ -94,7 +94,7 @@ The following table lists the configurable parameters of the sumologic-fluentd c
| `sumologic.proxyUri` | Add the uri of the proxy environment if present. | `Nil`
| `sumologic.enableStatWatcher` | Option to control the enabling of [stat_watcher](https://docs.fluentd.org/v1.0/articles/in_tail#enable_stat_watcher). | `true`
| `image.name` | The image repository and name to pull from | `sumologic/fluentd-kubernetes-sumologic` |
| `image.tag` | The image tag to pull | `v1.16` |
| `image.tag` | The image tag to pull | `v2.1.0` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `persistence.enabled` | Boolean value, used to turn on or off fluentd position file persistence, on nodes (requires Kubernetes >= 1.8) | `false` |
| `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` |
Expand Down
23 changes: 23 additions & 0 deletions stable/sumologic-fluentd/templates/.helmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*~
# Various IDEs
.project
.idea/
*.tmproj
# OWNERS file for Kubernetes
OWNERS
1 change: 1 addition & 0 deletions stable/sumologic-fluentd/templates/secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ metadata:
heritage: "{{ .Release.Service }}"
annotations:
"helm.sh/hook": pre-install,pre-upgrade
"helm.sh/hook-delete-policy": "before-hook-creation"
type: Opaque
data:
collector-url: {{ default "MISSING" .Values.sumologic.collectorUrl | b64enc | quote }}
2 changes: 1 addition & 1 deletion stable/sumologic-fluentd/values.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Default values for sumologic-fluentd.
image:
name: sumologic/fluentd-kubernetes-sumologic
tag: v2.0.0
tag: v2.1.0
pullPolicy: IfNotPresent

## Annotations to add to the DaemonSet's Pods
Expand Down