Skip to content

Commit 33a81f7

Browse files
authored
Release artifacts for v0.0.15 (#302)
1 parent 562f036 commit 33a81f7

File tree

4 files changed

+120
-6
lines changed

4 files changed

+120
-6
lines changed

docs/deploy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ Run through them again for a second cluster to use with the extended example sho
6969
```
7070
1. Run either `kubectl` or `helm` to deploy the controller:
7171
```bash
72-
kubectl apply -f examples/deploy-v0.0.14.yaml
72+
kubectl apply -f examples/deploy-v0.0.15.yaml
7373
```
7474
or
7575
```bash
@@ -78,7 +78,7 @@ Run through them again for a second cluster to use with the extended example sho
7878
# Run helm with either install or upgrade
7979
helm install gateway-api-controller \
8080
oci://public.ecr.aws/aws-application-networking-k8s/aws-gateway-controller-chart\
81-
--version=v0.0.14 \
81+
--version=v0.0.15 \
8282
--set=serviceAccount.create=false --namespace aws-application-networking-system \
8383
# Region, clusterVpcId, awsAccountId are required for case where IMDS is NOT AVAILABLE, e.g Fargate
8484
--set=awsRegion= \

examples/deploy-v0.0.11.yaml renamed to examples/deploy-v0.0.15.yaml

Lines changed: 115 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,108 @@ metadata:
77
---
88
apiVersion: apiextensions.k8s.io/v1
99
kind: CustomResourceDefinition
10+
metadata:
11+
annotations:
12+
api-approved.kubernetes.io: https://github.com/kubernetes-sigs/external-dns/pull/2007
13+
controller-gen.kubebuilder.io/version: v0.5.0
14+
creationTimestamp: null
15+
name: dnsendpoints.externaldns.k8s.io
16+
spec:
17+
group: externaldns.k8s.io
18+
names:
19+
kind: DNSEndpoint
20+
listKind: DNSEndpointList
21+
plural: dnsendpoints
22+
singular: dnsendpoint
23+
scope: Namespaced
24+
versions:
25+
- name: v1alpha1
26+
schema:
27+
openAPIV3Schema:
28+
properties:
29+
apiVersion:
30+
description: 'APIVersion defines the versioned schema of this representation
31+
of an object. Servers should convert recognized schemas to the latest
32+
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
33+
type: string
34+
kind:
35+
description: 'Kind is a string value representing the REST resource this
36+
object represents. Servers may infer this from the endpoint the client
37+
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
38+
type: string
39+
metadata:
40+
type: object
41+
spec:
42+
description: DNSEndpointSpec defines the desired state of DNSEndpoint
43+
properties:
44+
endpoints:
45+
items:
46+
description: Endpoint is a high-level way of a connection between
47+
a service and an IP
48+
properties:
49+
dnsName:
50+
description: The hostname of the DNS record
51+
type: string
52+
labels:
53+
additionalProperties:
54+
type: string
55+
description: Labels stores labels defined for the Endpoint
56+
type: object
57+
providerSpecific:
58+
description: ProviderSpecific stores provider specific config
59+
items:
60+
description: ProviderSpecificProperty holds the name and value
61+
of a configuration which is specific to individual DNS providers
62+
properties:
63+
name:
64+
type: string
65+
value:
66+
type: string
67+
type: object
68+
type: array
69+
recordTTL:
70+
description: TTL for the record
71+
format: int64
72+
type: integer
73+
recordType:
74+
description: RecordType type of record, e.g. CNAME, A, SRV,
75+
TXT etc
76+
type: string
77+
setIdentifier:
78+
description: Identifier to distinguish multiple records with
79+
the same name and type (e.g. Route53 records with routing
80+
policies other than 'simple')
81+
type: string
82+
targets:
83+
description: The targets the DNS record points to
84+
items:
85+
type: string
86+
type: array
87+
type: object
88+
type: array
89+
type: object
90+
status:
91+
description: DNSEndpointStatus defines the observed state of DNSEndpoint
92+
properties:
93+
observedGeneration:
94+
description: The generation observed by the external-dns controller.
95+
format: int64
96+
type: integer
97+
type: object
98+
type: object
99+
served: true
100+
storage: true
101+
subresources:
102+
status: {}
103+
status:
104+
acceptedNames:
105+
kind: ""
106+
plural: ""
107+
conditions: []
108+
storedVersions: []
109+
---
110+
apiVersion: apiextensions.k8s.io/v1
111+
kind: CustomResourceDefinition
10112
metadata:
11113
annotations:
12114
api-approved.kubernetes.io: https://github.com/kubernetes-sigs/gateway-api/pull/1538
@@ -5178,6 +5280,18 @@ rules:
51785280
- get
51795281
- patch
51805282
- update
5283+
- apiGroups:
5284+
- externaldns.k8s.io
5285+
resources:
5286+
- dnsendpoints
5287+
verbs:
5288+
- create
5289+
- delete
5290+
- get
5291+
- list
5292+
- patch
5293+
- update
5294+
- watch
51815295
---
51825296
apiVersion: rbac.authorization.k8s.io/v1
51835297
kind: ClusterRole
@@ -5304,7 +5418,7 @@ spec:
53045418
- --leader-elect
53055419
command:
53065420
- /manager
5307-
image: public.ecr.aws/m7r9p7b3/aws-gateway-controller:v0.0.11
5421+
image: public.ecr.aws/m7r9p7b3/aws-gateway-controller:v0.0.15
53085422
livenessProbe:
53095423
httpGet:
53105424
path: /healthz

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: aws-gateway-controller-chart
33
description: A Helm chart for the Gateway Controller for AWS VPC Lattice
4-
version: v0.0.14
5-
appVersion: v0.0.14
4+
version: v0.0.15
5+
appVersion: v0.0.15
66
home: https://github.com/aws/aws-application-networking-k8s
77
icon: https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
88
sources:

helm/values.yaml

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

55
image:
66
repository: public.ecr.aws/aws-application-networking-k8s/aws-gateway-controller
7-
tag: v0.0.14
7+
tag: v0.0.15
88
pullPolicy: IfNotPresent
99
pullSecrets: []
1010

0 commit comments

Comments
 (0)