You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: variables-extensions.tf
+39Lines changed: 39 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,44 @@
1
1
# Copyright (c) 2017, 2023 Oracle Corporation and/or its affiliates.
2
2
# Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl
3
3
4
+
# CNI: Cilium
5
+
6
+
variable"cilium_install" {
7
+
default=false
8
+
description="Whether to deploy the Cilium Helm chart. May only be enabled when cni_type = 'flannel'. See https://docs.cilium.io. NOTE: Provided only as a convenience and not supported by or sourced from Oracle - use at your own risk."
9
+
type=bool
10
+
}
11
+
12
+
variable"cilium_reapply" {
13
+
default=false
14
+
description="Whether to force reapply of the chart when no changes are detected, e.g. with state modified externally."
15
+
type=bool
16
+
}
17
+
18
+
variable"cilium_namespace" {
19
+
default="kube-system"
20
+
description="Kubernetes namespace for deployed resources."
21
+
type=string
22
+
}
23
+
24
+
variable"cilium_helm_version" {
25
+
default="1.14.4"
26
+
description="Version of the Helm chart to install. List available releases using `helm search repo [keyword] --versions`."
27
+
type=string
28
+
}
29
+
30
+
variable"cilium_helm_values" {
31
+
default={}
32
+
description="Map of individual Helm chart values. See https://registry.terraform.io/providers/hashicorp/helm/latest/docs/data-sources/template."
33
+
type=map(string)
34
+
}
35
+
36
+
variable"cilium_helm_values_files" {
37
+
default=[]
38
+
description="Paths to a local YAML files with Helm chart values (as with `helm install -f` which supports multiple). Generate with defaults using `helm show values [CHART] [flags]`."
description="Paths to a local YAML files with Helm chart values (as with `helm install -f` which supports multiple). Generate with defaults using `helm show values [CHART] [flags]`."
0 commit comments