Skip to content

Commit

Permalink
[stable/falco] migrate API versions from deprecated, removed versions (
Browse files Browse the repository at this point in the history
…helm#17339)

Signed-off-by: Naoki Oketani <okepy.naoki@gmail.com>
  • Loading branch information
oke-py authored and Ciprian Hacman committed Dec 5, 2019
1 parent 61813b4 commit 73d92cc
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 4 deletions.
6 changes: 6 additions & 0 deletions stable/falco/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
This file documents all notable changes to Sysdig Falco Helm Chart. The release
numbering uses [semantic versioning](http://semver.org).

## v1.0.10

### Minor Changes

* Migrate API versions from deprecated, removed versions to support Kubernetes v1.16

## v1.0.9

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion stable/falco/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: falco
version: 1.0.9
version: 1.0.10
appVersion: 0.17.1
description: Falco
keywords:
Expand Down
6 changes: 5 additions & 1 deletion stable/falco/templates/daemonset.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
apiVersion: extensions/v1beta1
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: {{ template "falco.fullname" . }}
Expand All @@ -8,6 +8,10 @@ metadata:
release: "{{ .Release.Name }}"
heritage: "{{ .Release.Service }}"
spec:
selector:
matchLabels:
app: {{ template "falco.fullname" .}}
role: security
template:
metadata:
name: {{ template "falco.fullname" .}}
Expand Down
2 changes: 1 addition & 1 deletion stable/falco/templates/deployment.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{- if .Values.fakeEventGenerator.enabled }}
apiVersion: extensions/v1beta1
apiVersion: apps/v1
kind: Deployment
metadata:
name: {{ template "falco.fullname" . }}-event-generator
Expand Down
2 changes: 1 addition & 1 deletion stable/falco/templates/podsecuritypolicy.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{- if .Values.podSecurityPolicy.create}}
apiVersion: extensions/v1beta1
apiVersion: policy/v1beta1
kind: PodSecurityPolicy
metadata:
name: {{ template "falco.fullname" . }}
Expand Down

0 comments on commit 73d92cc

Please sign in to comment.