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: kubernetes/modules/ory-hydra/variables.tf
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -164,6 +164,25 @@ variable "maester_enabled" {
164
164
nullable=false
165
165
}
166
166
167
+
variable"image_repository" {
168
+
description="Override the Docker image repository for Hydra. Must include the full registry path as the Ory Helm chart ignores image.registry. Example: europe-docker.pkg.dev/ory-artifacts/ory-enterprise/hydra-oel"
169
+
type=string
170
+
default=null
171
+
}
172
+
173
+
variable"image_tag" {
174
+
description="Override the Docker image tag for Hydra. If not set, the chart default will be used."
175
+
type=string
176
+
default=null
177
+
}
178
+
179
+
variable"image_pull_secrets" {
180
+
description="List of Kubernetes secret names for pulling images from private registries. Required for OEL deployments."
181
+
type=list(string)
182
+
default=[]
183
+
nullable=false
184
+
}
185
+
167
186
variable"helm_values" {
168
187
description="Additional values to pass to the Helm chart. These will be deep-merged with the module's default values, with these values taking precedence."
Copy file name to clipboardExpand all lines: kubernetes/modules/ory-kratos/variables.tf
+19Lines changed: 19 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -172,6 +172,25 @@ variable "smtp_from_name" {
172
172
default=null
173
173
}
174
174
175
+
variable"image_repository" {
176
+
description="Override the Docker image repository for Kratos. Must include the full registry path as the Ory Helm chart ignores image.registry. Example: europe-docker.pkg.dev/ory-artifacts/ory-enterprise-kratos/kratos-oel"
177
+
type=string
178
+
default=null
179
+
}
180
+
181
+
variable"image_tag" {
182
+
description="Override the Docker image tag for Kratos. If not set, the chart default will be used."
183
+
type=string
184
+
default=null
185
+
}
186
+
187
+
variable"image_pull_secrets" {
188
+
description="List of Kubernetes secret names for pulling images from private registries. Required for OEL deployments."
189
+
type=list(string)
190
+
default=[]
191
+
nullable=false
192
+
}
193
+
175
194
variable"helm_values" {
176
195
description="Additional values to pass to the Helm chart. These will be deep-merged with the module's default values, with these values taking precedence."
0 commit comments