-
Notifications
You must be signed in to change notification settings - Fork 995
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
aws-load-balancer-controller: v2.4.0 (#695)
Co-authored-by: eks-bot <[email protected]>
- v0.0.190
- v0.0.189
- v0.0.188
- v0.0.187
- v0.0.186
- v0.0.185
- v0.0.184
- v0.0.183
- v0.0.182
- v0.0.181
- v0.0.180
- v0.0.179
- v0.0.178
- v0.0.177
- v0.0.176
- v0.0.175
- v0.0.174
- v0.0.173
- v0.0.172
- v0.0.171
- v0.0.170
- v0.0.169
- v0.0.168
- v0.0.167
- v0.0.166
- v0.0.165
- v0.0.164
- v0.0.163
- v0.0.162
- v0.0.161
- v0.0.160
- v0.0.159
- v0.0.158
- v0.0.157
- v0.0.156
- v0.0.155
- v0.0.154
- v0.0.153
- v0.0.152
- v0.0.151
- v0.0.150
- v0.0.149
- v0.0.148
- v0.0.147
- v0.0.146
- v0.0.145
- v0.0.144
- v0.0.143
- v0.0.142
- v0.0.141
- v0.0.140
- v0.0.139
- v0.0.138
- v0.0.137
- v0.0.136
- v0.0.135
- v0.0.134
- v0.0.133
- v0.0.132
- v0.0.131
- v0.0.130
- v0.0.129
- v0.0.128
- v0.0.127
- v0.0.126
- v0.0.125
- v0.0.124
- v0.0.123
- v0.0.122
- v0.0.121
- v0.0.120
- v0.0.119
- v0.0.118
- v0.0.117
- v0.0.116
- v0.0.115
- v0.0.114
- v0.0.113
- v0.0.112
- v0.0.111
- v0.0.110
- v0.0.109
- v0.0.108
- v0.0.107
- v0.0.106
- v0.0.105
- v0.0.104
- v0.0.103
- v0.0.102
- v0.0.101
- v0.0.100
- v0.0.99
- v0.0.98
- v0.0.97
- v0.0.96
- v0.0.95
- v0.0.94
- v0.0.93
- v0.0.92
- v0.0.91
- v0.0.90
- v0.0.89
- v0.0.88
- v0.0.87
- v0.0.86
- v0.0.85
- v0.0.84
- v0.0.83
- v0.0.82
- v0.0.81
- v0.0.80
- v0.0.79
- v0.0.78
1 parent
f0e5d32
commit 2f47238
Showing
10 changed files
with
249 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
stable/aws-load-balancer-controller/templates/ingressclassparams.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{{- if .Values.ingressClassParams.create }} | ||
apiVersion: elbv2.k8s.aws/v1beta1 | ||
kind: IngressClassParams | ||
metadata: | ||
name: {{ include "aws-load-balancer-controller.ingressClassParamsName" . }} | ||
labels: | ||
{{- include "aws-load-balancer-controller.labels" . | nindent 4 }} | ||
{{- if .Values.ingressClassParams.spec }} | ||
spec: | ||
{{ toYaml .Values.ingressClassParams.spec | nindent 2}} | ||
{{- end }} | ||
{{- end }} |
28 changes: 26 additions & 2 deletions
28
stable/aws-load-balancer-controller/templates/service.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,41 @@ | ||
{{- if.Values.serviceMonitor.enabled }} | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: {{ template "aws-load-balancer-controller.namePrefix" . }}-webhook-service | ||
name: {{ template "aws-load-balancer-controller.fullname" . }} | ||
namespace: {{ .Release.Namespace }} | ||
{{- with .Values.serviceAnnotations }} | ||
annotations: | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
labels: | ||
{{ include "aws-load-balancer-controller.labels" . | indent 4 }} | ||
{{- include "aws-load-balancer-controller.labels" . | nindent 4 }} | ||
spec: | ||
ports: | ||
- port: 8080 | ||
name: metrics-server | ||
targetPort: metrics-server | ||
selector: | ||
{{- include "aws-load-balancer-controller.selectorLabels" . | nindent 4 }} | ||
--- | ||
{{- end }} | ||
apiVersion: v1 | ||
kind: Service | ||
metadata: | ||
name: {{ template "aws-load-balancer-controller.webhookService" . }} | ||
namespace: {{ .Release.Namespace }} | ||
{{- with .Values.serviceAnnotations }} | ||
annotations: | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
labels: | ||
{{- include "aws-load-balancer-controller.labels" . | nindent 4 }} | ||
app.kubernetes.io/component: webhook | ||
prometheus.io/service-monitor: "false" | ||
spec: | ||
ports: | ||
- port: 443 | ||
name: webhook-server | ||
targetPort: webhook-server | ||
selector: | ||
{{- include "aws-load-balancer-controller.selectorLabels" . | nindent 4 }} |
30 changes: 30 additions & 0 deletions
30
stable/aws-load-balancer-controller/templates/servicemonitor.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{{- if.Values.serviceMonitor.enabled -}} | ||
apiVersion: monitoring.coreos.com/v1 | ||
kind: ServiceMonitor | ||
metadata: | ||
name: {{ include "aws-load-balancer-controller.fullname" . }} | ||
labels: | ||
{{- include "aws-load-balancer-controller.labels" . | nindent 4 }} | ||
{{- with .Values.serviceMonitor.additionalLabels }} | ||
{{- toYaml . | nindent 4 }} | ||
{{- end }} | ||
spec: | ||
jobLabel: {{ .Release.Name }} | ||
namespaceSelector: | ||
matchNames: | ||
- {{ .Release.Namespace }} | ||
selector: | ||
matchLabels: | ||
{{- include "aws-load-balancer-controller.selectorLabels" . | nindent 6 }} | ||
matchExpressions: | ||
- key: prometheus.io/service-monitor | ||
operator: NotIn | ||
values: | ||
- "false" | ||
endpoints: | ||
- port: metrics-server | ||
path: /metrics | ||
{{- with .Values.serviceMonitor.interval }} | ||
interval: {{ . }} | ||
{{- end }} | ||
{{- end -}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters