Skip to content

Commit 85d0662

Browse files
committed
newlines
1 parent 581653a commit 85d0662

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

crates/stackable-operator/src/role_utils.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,13 +112,15 @@ pub struct CommonConfiguration<T> {
112112
// does not support specifying custom bounds.
113113
#[schemars(default = "config_schema_default")]
114114
pub config: T,
115+
115116
/// The `configOverrides` can be used to configure properties in product config files
116117
/// that are not exposed in the CRD. Read the
117118
/// [config overrides documentation](DOCS_BASE_URL_PLACEHOLDER/concepts/overrides#config-overrides)
118119
/// and consult the operator specific usage guide documentation for details on the
119120
/// available config files and settings for the specific product.
120121
#[serde(default)]
121122
pub config_overrides: HashMap<String, HashMap<String, String>>,
123+
122124
/// `envOverrides` configure environment variables to be set in the Pods.
123125
/// It is a map from strings to strings - environment variables and the value to set.
124126
/// Read the
@@ -127,10 +129,12 @@ pub struct CommonConfiguration<T> {
127129
/// the product specific environment variables that are available.
128130
#[serde(default)]
129131
pub env_overrides: HashMap<String, String>,
132+
130133
// BTreeMap to keep some order with the cli arguments.
131134
// TODO add documentation.
132135
#[serde(default)]
133136
pub cli_overrides: BTreeMap<String, String>,
137+
134138
/// In the `podOverrides` property you can define a
135139
/// [PodTemplateSpec](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.27/#podtemplatespec-v1-core)
136140
/// to override any property that can be set on a Kubernetes Pod.

0 commit comments

Comments
 (0)