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

🥳 appmesh-controller v1.13.0-dirty Automated Release! 🥑 #1112

Merged
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
4 changes: 2 additions & 2 deletions stable/appmesh-controller/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
apiVersion: v1
name: appmesh-controller
description: App Mesh controller Helm chart for Kubernetes
version: 1.12.7
appVersion: 1.12.7
version: 1.13.0
appVersion: 1.13.0
home: https://github.com/aws/eks-charts
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
sources:
Expand Down
2 changes: 2 additions & 0 deletions stable/appmesh-controller/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -449,3 +449,5 @@ Parameter | Description | Default
`env` | environment variables to be injected into the appmesh-controller pod | `{}`
`livenessProbe` | Liveness probe settings for the controller | (see `values.yaml`)
`podDisruptionBudget` | PodDisruptionBudget | `{}`
`tlsMinVersion` | Minimum TLS version for the controller webhook server as shown in [here](https://github.com/kubernetes/component-base/blob/master/cli/flag/ciphersuites_flag.go#L114) | `VersionTLS12`
`tlsCipherSuite` | Comma delimited TLS cipher suites for the controller webhook server as shown [here](https://pkg.go.dev/crypto/tls#pkg-constants) | None
2 changes: 1 addition & 1 deletion stable/appmesh-controller/ci/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ accountId: 123456789
region: us-west-2
image:
repository: public.ecr.aws/appmesh/appmesh-controller
tag: v1.12.7
tag: v1.13.0
pullPolicy: IfNotPresent
3 changes: 3 additions & 0 deletions stable/appmesh-controller/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,9 @@ spec:
# this must be same as livenessProbe port which can be configured
- --health-probe-port={{ .Values.livenessProbe.httpGet.port }}
- --wait-until-proxy-ready={{ .Values.sidecar.waitUntilProxyReady }}
# TLS configuration
- --tls-min-version={{ .Values.tlsMinVersion }}
- --tls-cipher-suite={{ .Values.tlsCipherSuite }}
{{- if .Values.env }}
env:
{{- range $key, $value := .Values.env }}
Expand Down
6 changes: 3 additions & 3 deletions stable/appmesh-controller/templates/pdb.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{{- if .Values.podDisruptionBudget }}
{{- if gt (int .Values.replicaCount) 1 }}
kind: PodDisruptionBudget
apiVersion: policy/v1beta1
apiVersion: policy/v1
metadata:
name: {{ template "appmesh-controller.fullname" . }}-pdb
namespace: {{ .Release.Namespace }}
namespace: {{ .Release.Namespace }}
labels:
{{ include "appmesh-controller.labels" . | indent 4 }}
spec:
Expand All @@ -15,4 +15,4 @@ spec:
app.kubernetes.io/part-of: appmesh
{{- toYaml .Values.podDisruptionBudget | nindent 2 }}
{{- end -}}
{{- end -}}
{{- end -}}
4 changes: 2 additions & 2 deletions stable/appmesh-controller/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ useAwsFIPSEndpoint: false

image:
repository: 840364872350.dkr.ecr.us-west-2.amazonaws.com/amazon/appmesh-controller
tag: v1.12.7
tag: v1.13.0
pullPolicy: IfNotPresent

sidecar:
image:
repository: 840364872350.dkr.ecr.us-west-2.amazonaws.com/aws-appmesh-envoy
tag: v1.27.2.0-prod
tag: v1.27.3.0-prod
# sidecar.logLevel: Envoy log level can be info, warn, error or debug
logLevel: info
envoyAdminAccessPort: 9901
Expand Down
8 changes: 6 additions & 2 deletions stable/appmesh-controller/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ useAwsFIPSEndpoint: false

image:
repository: 840364872350.dkr.ecr.us-west-2.amazonaws.com/amazon/appmesh-controller
tag: v1.12.7
tag: v1.13.0
pullPolicy: IfNotPresent

sidecar:
image:
repository: 840364872350.dkr.ecr.us-west-2.amazonaws.com/aws-appmesh-envoy
tag: v1.27.2.0-prod
tag: v1.27.3.0-prod
# sidecar.logLevel: Envoy log level can be info, warn, error or debug
logLevel: info
envoyAdminAccessPort: 9901
Expand Down Expand Up @@ -147,6 +147,10 @@ podDisruptionBudget: {}
# Environment variables to set in appmesh-controller pod
env: {}

# TLS setting for appmesh-controller
tlsMinVersion: VersionTLS12
tlsCipherSuite:

#Example
#env:
# http_proxy: http://proxyserver:3128
Expand Down
Loading