This repository has been archived by the owner on Aug 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 385
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
238 additions
and
0 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
{{- if .Values.controller.enabled }} | ||
--- | ||
apiVersion: apiextensions.k8s.io/v1beta1 | ||
kind: CustomResourceDefinition | ||
metadata: | ||
annotations: | ||
controller-gen.kubebuilder.io/version: v0.4.1 | ||
creationTimestamp: null | ||
name: terminatinggateways.consul.hashicorp.com | ||
labels: | ||
app: {{ template "consul.name" . }} | ||
chart: {{ template "consul.chart" . }} | ||
heritage: {{ .Release.Service }} | ||
release: {{ .Release.Name }} | ||
component: crd | ||
spec: | ||
additionalPrinterColumns: | ||
- JSONPath: .status.conditions[?(@.type=="Synced")].status | ||
description: The sync status of the resource with Consul | ||
name: Synced | ||
type: string | ||
- JSONPath: .metadata.creationTimestamp | ||
description: The age of the resource | ||
name: Age | ||
type: date | ||
group: consul.hashicorp.com | ||
names: | ||
kind: TerminatingGateway | ||
listKind: TerminatingGatewayList | ||
plural: terminatinggateways | ||
singular: terminatinggateway | ||
scope: Namespaced | ||
subresources: | ||
status: {} | ||
validation: | ||
openAPIV3Schema: | ||
description: TerminatingGateway is the Schema for the terminatinggateways API | ||
properties: | ||
apiVersion: | ||
description: 'APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources' | ||
type: string | ||
kind: | ||
description: 'Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds' | ||
type: string | ||
metadata: | ||
type: object | ||
spec: | ||
description: TerminatingGatewaySpec defines the desired state of TerminatingGateway | ||
properties: | ||
services: | ||
description: Services is a list of service names represented by the terminating gateway. | ||
items: | ||
description: A LinkedService is a service represented by a terminating gateway | ||
properties: | ||
caFile: | ||
description: CAFile is the optional path to a CA certificate to use for TLS connections from the gateway to the linked service. | ||
type: string | ||
certFile: | ||
description: CertFile is the optional path to a client certificate to use for TLS connections from the gateway to the linked service. | ||
type: string | ||
keyFile: | ||
description: KeyFile is the optional path to a private key to use for TLS connections from the gateway to the linked service. | ||
type: string | ||
name: | ||
description: Name is the name of the service, as defined in Consul's catalog. | ||
type: string | ||
namespace: | ||
description: The namespace the service is registered in. | ||
type: string | ||
sni: | ||
description: SNI is the optional name to specify during the TLS handshake with a linked service. | ||
type: string | ||
type: object | ||
type: array | ||
type: object | ||
status: | ||
properties: | ||
conditions: | ||
description: Conditions indicate the latest available observations of a resource's current state. | ||
items: | ||
description: 'Conditions define a readiness condition for a Consul resource. See: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md#typical-status-properties' | ||
properties: | ||
lastTransitionTime: | ||
description: LastTransitionTime is the last time the condition transitioned from one status to another. | ||
format: date-time | ||
type: string | ||
message: | ||
description: A human readable message indicating details about the transition. | ||
type: string | ||
reason: | ||
description: The reason for the condition's last transition. | ||
type: string | ||
status: | ||
description: Status of the condition, one of True, False, Unknown. | ||
type: string | ||
type: | ||
description: Type of condition. | ||
type: string | ||
required: | ||
- status | ||
- type | ||
type: object | ||
type: array | ||
type: object | ||
type: object | ||
version: v1alpha1 | ||
versions: | ||
- name: v1alpha1 | ||
served: true | ||
storage: true | ||
status: | ||
acceptedNames: | ||
kind: "" | ||
plural: "" | ||
conditions: [] | ||
storedVersions: [] | ||
{{- 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
11 changes: 11 additions & 0 deletions
11
test/acceptance/tests/fixtures/crds/terminatinggateway.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,11 @@ | ||
apiVersion: consul.hashicorp.com/v1alpha1 | ||
kind: TerminatingGateway | ||
metadata: | ||
name: terminating-gateway | ||
spec: | ||
services: | ||
- name: name | ||
caFile: "caFile" | ||
certFile: "certFile" | ||
keyFile: "keyFile" | ||
sni: "sni" |
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,24 @@ | ||
#!/usr/bin/env bats | ||
|
||
load _helpers | ||
|
||
@test "terminatingGateway/CustomerResourceDefinition: disabled by default" { | ||
cd `chart_dir` | ||
assert_empty helm template \ | ||
-s templates/crd-terminatinggateways.yaml \ | ||
. | ||
} | ||
|
||
@test "terminatingGateway/CustomerResourceDefinition: enabled with controller.enabled=true" { | ||
cd `chart_dir` | ||
local actual=$(helm template \ | ||
-s templates/crd-terminatinggateways.yaml \ | ||
--set 'controller.enabled=true' \ | ||
. | tee /dev/stderr | | ||
# The generated CRDs have "---" at the top which results in two objects | ||
# being detected by yq, the first of which is null. We must therefore use | ||
# yq -s so that length operates on both objects at once rather than | ||
# individually, which would output false\ntrue and fail the test. | ||
yq -s 'length > 0' | tee /dev/stderr) | ||
[ "${actual}" = "true" ] | ||
} |