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
upgraded default version of Oracle Linux to 8 (#27)
Added a new variable that would allow existing users to use Oracle
Linux 7.9 for backward compatibility. Also removed superflous check
on image id and updated docs.
Copy file name to clipboardExpand all lines: docs/terraformoptions.adoc
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -152,12 +152,16 @@ Ensure you review the {uri-terraform-dependencies}[dependencies].
152
152
memory=4,
153
153
boot_volume_size=50
154
154
}`
155
-
156
155
|`operator_upgrade`
157
156
|Whether to upgrade the operator host packages after provisioning. It's useful to set this to false during development/testing so the operator is provisioned faster.
158
157
|true/false
159
158
|true
160
159
160
+
|`operating_system_version`
161
+
|The version of the Oracle Linux to use..
162
+
|
163
+
|8
164
+
161
165
|`ssh_public_key`
162
166
|the content of the ssh public key used to access the operator. set this or the ssh_public_key_path
Copy file name to clipboardExpand all lines: variables.tf
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -109,6 +109,11 @@ variable "operator_shape" {
109
109
type=map(any)
110
110
}
111
111
112
+
variable"operating_system_version" {
113
+
description="The version of the Oracle Linux to use."
114
+
default="8"
115
+
type=string
116
+
}
112
117
variable"operator_upgrade" {
113
118
description="Whether to upgrade the operator host packages after provisioning. It's useful to set this to false during development/testing so the operator is provisioned faster."
0 commit comments