Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New Calico 3.19.2 and Airflow 1.0.0-rc4 #19

Merged
merged 2 commits into from
Aug 24, 2021
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 stable/airflow/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
---
apiVersion: v1
name: airflow
version: 1.0.0-rc3
version: 1.0.0-rc4
description: Helm chart to deploy Apache Airflow
icon: https://airflow.apache.org/docs/apache-airflow/stable/_images/pin_large.png
keywords:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#################################
{{- if and .Values.pgbouncer.enabled .Values.pgbouncer.podDisruptionBudget.enabled }}
kind: PodDisruptionBudget
apiVersion: policy/v1beta1
apiVersion: policy/v1
metadata:
name: {{ .Release.Name }}-pgbouncer-pdb
labels:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
#################################
{{- if .Values.scheduler.podDisruptionBudget.enabled }}
kind: PodDisruptionBudget
apiVersion: policy/v1beta1
apiVersion: policy/v1
metadata:
name: {{ .Release.Name }}-scheduler-pdb
labels:
Expand Down
4 changes: 2 additions & 2 deletions stable/aws-calico/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ description: A Helm chart for installing Calico on AWS
# Commenting `website` as it fails Yamale strict mode
# website: https://docs.aws.amazon.com/eks/latest/userguide/calico.html
name: aws-calico
version: 0.0.11
appVersion: 3.15.1
version: 0.0.12
appVersion: 3.19.2
icon: https://www.projectcalico.org/wp-content/uploads/2019/09/Calico_Logo_Large_Calico.png
2 changes: 1 addition & 1 deletion stable/aws-calico/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ The following table lists the configurable parameters for this chart and their d
| `calico.node.nodeSelector` | Calico Node Node Selector | `{ beta.kubernetes.io/os: linux }` |
| `calico.typha_autoscaler.resources` | Calico Typha Autoscaler Resources | `requests.memory: 16Mi, requests.cpu: 10m, limits.memory: 32Mi, limits.cpu: 10m` |
| `calico.typha_autoscaler.nodeSelector` | Calico Typha Autoscaler Node Selector | `{ beta.kubernetes.io/os: linux }` |
| `calico.tag` | Calico version | `v3.15.5` |
| `calico.tag` | Calico version | `v3.19.2` |
| `fullnameOverride` | Override the fullname of the chart | `calico` |
| `podSecurityPolicy.create` | Specifies whether podSecurityPolicy and related rbac objects should be created | `false` |
| `serviceAccount.name` | The name of the ServiceAccount to use | `nil` |
Expand Down
2 changes: 1 addition & 1 deletion stable/aws-calico/templates/pod-disruption-budget.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This manifest creates a Pod Disruption Budget for Typha to allow K8s Cluster Autoscaler to evict
{{- if .Values.calico.typha.podDisruptionBudget.enabled }}
apiVersion: policy/v1beta1
apiVersion: policy/v1
kind: PodDisruptionBudget
metadata:
name: "{{ include "aws-calico.fullname" . }}-typha"
Expand Down
2 changes: 1 addition & 1 deletion stable/aws-calico/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ podSecurityPolicy:
create: false

calico:
tag: v3.15.5
tag: v3.19.2

typha:
logseverity: Info # Debug, Info, Warning, Error, Fatal
Expand Down