Skip to content

Commit

Permalink
Replace extensions apiGroup/apiVersion because of deprecation
Browse files Browse the repository at this point in the history
Deprecation Info:
https://kubernetes.io/blog/2019/07/18/api-deprecations-in-1-16/

Signed-off-by: Christian Zunker <christian.zunker@codecentric.cloud>
  • Loading branch information
Christian Zunker authored and poiana committed Oct 15, 2020
1 parent 524dcbc commit 7148838
Show file tree
Hide file tree
Showing 10 changed files with 25 additions and 7 deletions.
6 changes: 6 additions & 0 deletions falco-exporter/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 `falco-exporter` Helm Chart. The release
numbering uses [semantic versioning](http://semver.org).

## v0.3.8

### Minor Changes

* Replace extensions apiGroup/apiVersion because of deprecation

## v0.3.7

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion falco-exporter/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type: application

# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
version: 0.3.7
version: 0.3.8

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
Expand Down
2 changes: 1 addition & 1 deletion falco-exporter/templates/role.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ metadata:
namespace: {{ .Release.Namespace }}
rules:
- apiGroups:
- extensions
- policy
resources:
- podsecuritypolicies
resourceNames:
Expand Down
6 changes: 6 additions & 0 deletions 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 Falco Helm Chart. The release
numbering uses [semantic versioning](http://semver.org).

## v1.5.1

### Minor Changes

* Replace extensions apiGroup/apiVersion because of deprecation

## v1.5.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion falco/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
name: falco
version: 1.5.0
version: 1.5.1
appVersion: 0.26.1
description: Falco
keywords:
Expand Down
2 changes: 1 addition & 1 deletion falco/templates/clusterrole.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ rules:
- get
{{- if .Values.podSecurityPolicy.create }}
- apiGroups:
- extensions
- policy
resources:
- podsecuritypolicies
resourceNames:
Expand Down
6 changes: 6 additions & 0 deletions falcosidekick/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ numbering uses [semantic versioning](http://semver.org).

Before release 0.1.20, the helm chart can be found in `falcosidekick` [repository](https://github.com/falcosecurity/falcosidekick/tree/master/deploy/helm/falcosidekick).

## 0.1.27

### Minor Changes

* Replace extensions apiGroup/apiVersion because of deprecation

## 0.1.26

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion falcosidekick/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ appVersion: 2.14.0
description: A simple daemon to help you with falco's outputs
icon: https://raw.githubusercontent.com/falcosecurity/falcosidekick/master/imgs/falcosidekick_color.png
name: falcosidekick
version: 0.1.26
version: 0.1.27
keywords:
- monitoring
- security
Expand Down
2 changes: 1 addition & 1 deletion falcosidekick/templates/clusterrole.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ metadata:
heritage: "{{ .Release.Service }}"
rules:
- apiGroups:
- extensions
- policy
resources:
- podsecuritypolicies
resourceNames:
Expand Down
2 changes: 1 addition & 1 deletion falcosidekick/templates/ingress.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{{- if .Values.ingress.enabled -}}
{{- $fullName := include "falcosidekick.fullname" . -}}
apiVersion: extensions/v1beta1
apiVersion: networking.k8s.io/v1beta1
kind: Ingress
metadata:
name: {{ $fullName }}
Expand Down

0 comments on commit 7148838

Please sign in to comment.