-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add terraform for utility cluster. Add name override to gke (#30847)
* add terraform for utility cluster. Add name override to gke * remove whitespace * add strimzi version and fix prefix * add more explanation on the purpose * add node_config block for oauth scopes * move oauth to auto_provisioning_defaults * move stimzi operator to separate module. Remove utility cluster module and implement as var file * add beam-utility tfvars file * Refactor #30847 * add name override. add utility vars and backend * tfbackend file asf licence * tfbackend file asf licence * add readme usage * remove whitespace * move kafka to 01-strimzi-operator, rename cluster * remove beam-utility files
- Loading branch information
1 parent
68f6b55
commit 28a2682
Showing
54 changed files
with
472 additions
and
15,186 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
21 changes: 21 additions & 0 deletions
21
.test-infra/kafka/strimzi/01-strimzi-operator/.terraform.lock.hcl
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
24 changes: 24 additions & 0 deletions
24
.test-infra/kafka/strimzi/01-strimzi-operator/common.tfvars
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 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
name = "strimzi" | ||
namespace = "strimzi" | ||
kubeconfig_path = "~/.kube/config" | ||
chart_name = "strimzi-kafka-operator" | ||
chart_version = "0.40.0" | ||
chart_repository = "https://strimzi.io/charts/" |
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,34 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
resource "helm_release" "strimzi-helm-release" { | ||
name = var.name | ||
namespace = var.namespace | ||
create_namespace = true | ||
repository = var.chart_repository | ||
chart = var.chart_name | ||
version = var.chart_version | ||
|
||
atomic = "true" | ||
timeout = 500 | ||
|
||
set { | ||
name = "watchAnyNamespace" | ||
value = "true" | ||
} | ||
} |
23 changes: 0 additions & 23 deletions
23
.test-infra/kafka/strimzi/01-strimzi-operator/kustomization.yaml
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
.test-infra/kafka/strimzi/01-strimzi-operator/namespace.yaml
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# | ||
# 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. | ||
# | ||
|
||
provider "helm" { | ||
kubernetes { | ||
config_path = var.kubeconfig_path | ||
} | ||
} |
23 changes: 0 additions & 23 deletions
23
...afka/strimzi/01-strimzi-operator/v0.33.2/010-ServiceAccount-strimzi-cluster-operator.yaml
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.