Skip to content

Commit 01e8fa8

Browse files
authored
Merge pull request #661 from jaypipes/release-v0.0.2
release artifacts for release v0.0.2
2 parents 2e09f61 + 94b7cc1 commit 01e8fa8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+1073
-21
lines changed

services/apigatewayv2/helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
22
name: ack-apigatewayv2-controller
33
description: A Helm chart for the ACK service controller for apigatewayv2
4-
version: v0.0.1
5-
appVersion: v0.0.1
4+
version: v0.0.2
5+
appVersion: v0.0.2
66
home: https://github.com/aws/aws-controllers-k8s
77
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
88
sources:

services/apigatewayv2/helm/templates/deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,15 @@ spec:
4747
- "$(ACK_LOG_LEVEL)"
4848
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
4949
name: controller
50+
ports:
51+
- containerPort: {{ .Values.deployment.containerPort }}
5052
resources:
5153
{{- toYaml .Values.resources | nindent 10 }}
5254
env:
5355
- name: K8S_NAMESPACE
5456
valueFrom:
5557
fieldRef:
5658
fieldPath: metadata.namespace
59+
- name: AWS_REGION
60+
value: {{ .Values.aws.region }}
5761
terminationGracePeriodSeconds: 10
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
apiVersion: rbac.authorization.k8s.io/v1
3+
kind: Role
4+
metadata:
5+
creationTimestamp: null
6+
name: ack-apigatewayv2-reader
7+
namespace: {{ .Release.Namespace }}
8+
rules:
9+
- apiGroups:
10+
- apigatewayv2.services.k8s.aws
11+
resources:
12+
- apis
13+
- apimappings
14+
- authorizers
15+
- deployments
16+
- domainnames
17+
- integrations
18+
- integrationresponses
19+
- models
20+
- routes
21+
- routeresponses
22+
- stages
23+
- vpclinks
24+
verbs:
25+
- get
26+
- list
27+
- watch
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
---
2+
apiVersion: rbac.authorization.k8s.io/v1
3+
kind: Role
4+
metadata:
5+
creationTimestamp: null
6+
name: ack-apigatewayv2-writer
7+
namespace: {{ .Release.Namespace }}
8+
rules:
9+
- apiGroups:
10+
- apigatewayv2.services.k8s.aws
11+
resources:
12+
- apis
13+
14+
- apimappings
15+
16+
- authorizers
17+
18+
- deployments
19+
20+
- domainnames
21+
22+
- integrations
23+
24+
- integrationresponses
25+
26+
- models
27+
28+
- routes
29+
30+
- routeresponses
31+
32+
- stages
33+
34+
- vpclinks
35+
36+
verbs:
37+
- create
38+
- delete
39+
- get
40+
- list
41+
- patch
42+
- update
43+
- watch
44+
- apiGroups:
45+
- apigatewayv2.services.k8s.aws
46+
resources:
47+
- apis
48+
- apimappings
49+
- authorizers
50+
- deployments
51+
- domainnames
52+
- integrations
53+
- integrationresponses
54+
- models
55+
- routes
56+
- routeresponses
57+
- stages
58+
- vpclinks
59+
verbs:
60+
- get
61+
- patch
62+
- update

services/apigatewayv2/helm/templates/service-account.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,8 @@ metadata:
1010
k8s-app: {{ include "app.name" . }}
1111
helm.sh/chart: {{ include "chart.name-version" . }}
1212
name: {{ include "service-account.name" . }}
13+
annotations:
14+
{{- range $key, $value := .Values.serviceAccount.annotations }}
15+
{{ $key }}: {{ $value | quote }}
16+
{{- end }}
1317
{{- end }}

services/apigatewayv2/helm/values.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
image:
66
repository: public.ecr.aws/aws-controllers-k8s/controller
7-
tag: apigatewayv2-v0.0.1
7+
tag: apigatewayv2-v0.0.2
88
pullPolicy: IfNotPresent
99
pullSecrets: []
1010

@@ -14,6 +14,7 @@ fullnameOverride: ""
1414
deployment:
1515
annotations: {}
1616
labels: {}
17+
containerPort: 8080
1718

1819
resources:
1920
requests:

services/dynamodb/helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
22
name: ack-dynamodb-controller
33
description: A Helm chart for the ACK service controller for dynamodb
4-
version: v0.0.1
5-
appVersion: v0.0.1
4+
version: v0.0.2
5+
appVersion: v0.0.2
66
home: https://github.com/aws/aws-controllers-k8s
77
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
88
sources:

services/dynamodb/helm/crds/dynamodb.services.k8s.aws_tables.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,9 @@ spec:
271271
type: object
272272
regionName:
273273
type: string
274+
replicaInaccessibleDateTime:
275+
format: date-time
276+
type: string
274277
replicaStatus:
275278
type: string
276279
replicaStatusDescription:

0 commit comments

Comments
 (0)