Add chart flink kubernetes operator 1.13.0

This commit is contained in:
wbsong111
2026-01-20 09:25:29 +09:00
parent 0436749932
commit 5f22ec053f
43 changed files with 14148 additions and 0 deletions
@@ -0,0 +1,68 @@
################################################################################
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
################################################################################
suite: Test MutatingWebhookConfiguration
templates:
- webhook/mutating_webhook_configuration.yaml
release:
name: flink-operator
namespace: flink-operator
tests:
- it: Should not create mutating webhook configuration if `webhook.mutator.create` is `false`
set:
webhook:
create: true
mutator:
create: false
asserts:
- hasDocuments:
count: 0
- it: Should create mutating webhook configuration if both `webhook.create` and `webhook.mutator.create` are `true`
set:
webhook:
create: true
mutator:
create: true
asserts:
- containsDocument:
apiVersion: admissionregistration.k8s.io/v1
kind: MutatingWebhookConfiguration
name: flink-operator-flink-operator-webhook-configuration
- it: Should add namespace selector if `watchNamespaces` is set
set:
watchNamespaces:
- ns1
- ns2
webhook:
create: true
mutator:
create: true
asserts:
- contains:
path: webhooks[?(@.name=="mutationwebhook.flink.apache.org")].namespaceSelector.matchExpressions
content:
key: kubernetes.io/metadata.name
operator: In
values:
- ns1
- ns2
@@ -0,0 +1,48 @@
################################################################################
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
################################################################################
suite: Test Webhook Secret
templates:
- webhook/secret.yaml
release:
name: flink-operator
namespace: flink-operator
tests:
- it: Should not create Secret if `webhook.keystore.useDefaultPassword` is `false`
set:
webhook:
keystore:
useDefaultPassword: false
asserts:
- hasDocuments:
count: 0
- it: Should create Secret if `webhook.keystore.useDefaultPassword` is `true`
set:
webhook:
keystore:
useDefaultPassword: true
asserts:
- containsDocument:
apiVersion: v1
kind: Secret
name: flink-operator-webhook-secret
namespace: flink-operator
@@ -0,0 +1,68 @@
################################################################################
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
################################################################################
suite: Test Webhook Service
templates:
- webhook/service.yaml
release:
name: flink-operator
namespace: flink-operator
tests:
- it: Should create webhook service if `webhook.validator.create` is `true`
set:
webhook:
validator:
create: true
asserts:
- containsDocument:
apiVersion: v1
kind: Service
name: flink-operator-webhook-service
namespace: flink-operator
- it: Should create webhook service if `webhook.create` is `true`
set:
webhook:
validator:
create: false
create: true
asserts:
- containsDocument:
apiVersion: v1
kind: Service
name: flink-operator-webhook-service
namespace: flink-operator
- it: Should add labels to webhook service if `webhook.serviceLabels` is set
set:
webhook:
create: true
serviceLabels:
key1: value1
key2: value2
asserts:
- equal:
path: metadata.labels.key1
value: value1
- equal:
path: metadata.labels.key2
value: value2
@@ -0,0 +1,68 @@
################################################################################
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
################################################################################
suite: Test ValidatingWebhookConfiguration
templates:
- webhook/validating_webhook_configuration.yaml
release:
name: flink-operator
namespace: flink-operator
tests:
- it: Should not create validating webhook configuration if `webhook.validator.create` is `false`
set:
webhook:
create: true
validator:
create: false
asserts:
- hasDocuments:
count: 0
- it: Should create validating webhook configuration if both `webhook.create` and `webhook.validator.create` are `true`
set:
webhook:
create: true
validator:
create: true
asserts:
- containsDocument:
apiVersion: admissionregistration.k8s.io/v1
kind: ValidatingWebhookConfiguration
name: flink-operator-flink-operator-webhook-configuration
- it: Should add namespace selector if `watchNamespaces` is set
set:
watchNamespaces:
- ns1
- ns2
webhook:
create: true
validator:
create: true
asserts:
- contains:
path: webhooks[?(@.name=="validationwebhook.flink.apache.org")].namespaceSelector.matchExpressions
content:
key: kubernetes.io/metadata.name
operator: In
values:
- ns1
- ns2