File tree Expand file tree Collapse file tree 13 files changed +136
-121
lines changed
docs/modules/stackablectl/partials/commands
stackable-cockpit/src/platform/operator Expand file tree Collapse file tree 13 files changed +136
-121
lines changed Original file line number Diff line number Diff line change @@ -64,23 +64,24 @@ File options:
6464 -f, --operator-values <VALUES_FILE>
6565 Path to a Helm values file that will be used for the installation of operators
6666
67- The file is a YAML file containing Helm values used to deploy operators. It
68- supports a 'common' key for values shared across all operators, as well as
69- operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') for
70- values that only apply to a single operator. Operator-specific values are
71- merged with common values, with operator-specific values taking precedence.
67+ The file is a YAML file containing Helm values used to deploy operators.
68+ Operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') map
69+ to the Helm values for that operator. Use YAML anchors and aliases to share
70+ values across operators.
7271
7372 Example values file:
7473
75- common :
76- tolerations:
74+ airflow-operator :
75+ tolerations: &default-tolerations
7776 - key: "example"
7877 operator: "Exists"
7978 effect: "NoSchedule"
80- airflow-operator :
81- replicas: 2
79+ podAnnotations :
80+ example.com/team: "data-engineering"
8281 zookeeper-operator:
83- replicas: 3
82+ tolerations: *default-tolerations
83+ podAnnotations:
84+ example.com/team: "platform"
8485
8586 Use "stackablectl [OPTIONS] <COMMAND> -f path/to/values.yaml" to provide a
8687 values file.
Original file line number Diff line number Diff line change @@ -67,23 +67,24 @@ File options:
6767 -f, --operator-values <VALUES_FILE>
6868 Path to a Helm values file that will be used for the installation of operators
6969
70- The file is a YAML file containing Helm values used to deploy operators. It
71- supports a 'common' key for values shared across all operators, as well as
72- operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') for
73- values that only apply to a single operator. Operator-specific values are
74- merged with common values, with operator-specific values taking precedence.
70+ The file is a YAML file containing Helm values used to deploy operators.
71+ Operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') map
72+ to the Helm values for that operator. Use YAML anchors and aliases to share
73+ values across operators.
7574
7675 Example values file:
7776
78- common :
79- tolerations:
77+ airflow-operator :
78+ tolerations: &default-tolerations
8079 - key: "example"
8180 operator: "Exists"
8281 effect: "NoSchedule"
83- airflow-operator :
84- replicas: 2
82+ podAnnotations :
83+ example.com/team: "data-engineering"
8584 zookeeper-operator:
86- replicas: 3
85+ tolerations: *default-tolerations
86+ podAnnotations:
87+ example.com/team: "platform"
8788
8889 Use "stackablectl [OPTIONS] <COMMAND> -f path/to/values.yaml" to provide a
8990 values file.
Original file line number Diff line number Diff line change @@ -68,23 +68,24 @@ File options:
6868 -f, --operator-values <VALUES_FILE>
6969 Path to a Helm values file that will be used for the installation of operators
7070
71- The file is a YAML file containing Helm values used to deploy operators. It
72- supports a 'common' key for values shared across all operators, as well as
73- operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') for
74- values that only apply to a single operator. Operator-specific values are
75- merged with common values, with operator-specific values taking precedence.
71+ The file is a YAML file containing Helm values used to deploy operators.
72+ Operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') map
73+ to the Helm values for that operator. Use YAML anchors and aliases to share
74+ values across operators.
7675
7776 Example values file:
7877
79- common :
80- tolerations:
78+ airflow-operator :
79+ tolerations: &default-tolerations
8180 - key: "example"
8281 operator: "Exists"
8382 effect: "NoSchedule"
84- airflow-operator :
85- replicas: 2
83+ podAnnotations :
84+ example.com/team: "data-engineering"
8685 zookeeper-operator:
87- replicas: 3
86+ tolerations: *default-tolerations
87+ podAnnotations:
88+ example.com/team: "platform"
8889
8990 Use "stackablectl [OPTIONS] <COMMAND> -f path/to/values.yaml" to provide a
9091 values file.
Original file line number Diff line number Diff line change @@ -81,23 +81,24 @@ File options:
8181 -f, --operator-values <VALUES_FILE>
8282 Path to a Helm values file that will be used for the installation of operators
8383
84- The file is a YAML file containing Helm values used to deploy operators. It
85- supports a 'common' key for values shared across all operators, as well as
86- operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') for
87- values that only apply to a single operator. Operator-specific values are
88- merged with common values, with operator-specific values taking precedence.
84+ The file is a YAML file containing Helm values used to deploy operators.
85+ Operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') map
86+ to the Helm values for that operator. Use YAML anchors and aliases to share
87+ values across operators.
8988
9089 Example values file:
9190
92- common :
93- tolerations:
91+ airflow-operator :
92+ tolerations: &default-tolerations
9493 - key: "example"
9594 operator: "Exists"
9695 effect: "NoSchedule"
97- airflow-operator :
98- replicas: 2
96+ podAnnotations :
97+ example.com/team: "data-engineering"
9998 zookeeper-operator:
100- replicas: 3
99+ tolerations: *default-tolerations
100+ podAnnotations:
101+ example.com/team: "platform"
101102
102103 Use "stackablectl [OPTIONS] <COMMAND> -f path/to/values.yaml" to provide a
103104 values file.
Original file line number Diff line number Diff line change @@ -71,23 +71,24 @@ File options:
7171 -f, --operator-values <VALUES_FILE>
7272 Path to a Helm values file that will be used for the installation of operators
7373
74- The file is a YAML file containing Helm values used to deploy operators. It
75- supports a 'common' key for values shared across all operators, as well as
76- operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') for
77- values that only apply to a single operator. Operator-specific values are
78- merged with common values, with operator-specific values taking precedence.
74+ The file is a YAML file containing Helm values used to deploy operators.
75+ Operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') map
76+ to the Helm values for that operator. Use YAML anchors and aliases to share
77+ values across operators.
7978
8079 Example values file:
8180
82- common :
83- tolerations:
81+ airflow-operator :
82+ tolerations: &default-tolerations
8483 - key: "example"
8584 operator: "Exists"
8685 effect: "NoSchedule"
87- airflow-operator :
88- replicas: 2
86+ podAnnotations :
87+ example.com/team: "data-engineering"
8988 zookeeper-operator:
90- replicas: 3
89+ tolerations: *default-tolerations
90+ podAnnotations:
91+ example.com/team: "platform"
9192
9293 Use "stackablectl [OPTIONS] <COMMAND> -f path/to/values.yaml" to provide a
9394 values file.
Original file line number Diff line number Diff line change @@ -67,23 +67,24 @@ File options:
6767 -f, --operator-values <VALUES_FILE>
6868 Path to a Helm values file that will be used for the installation of operators
6969
70- The file is a YAML file containing Helm values used to deploy operators. It
71- supports a 'common' key for values shared across all operators, as well as
72- operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') for
73- values that only apply to a single operator. Operator-specific values are
74- merged with common values, with operator-specific values taking precedence.
70+ The file is a YAML file containing Helm values used to deploy operators.
71+ Operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') map
72+ to the Helm values for that operator. Use YAML anchors and aliases to share
73+ values across operators.
7574
7675 Example values file:
7776
78- common :
79- tolerations:
77+ airflow-operator :
78+ tolerations: &default-tolerations
8079 - key: "example"
8180 operator: "Exists"
8281 effect: "NoSchedule"
83- airflow-operator :
84- replicas: 2
82+ podAnnotations :
83+ example.com/team: "data-engineering"
8584 zookeeper-operator:
86- replicas: 3
85+ tolerations: *default-tolerations
86+ podAnnotations:
87+ example.com/team: "platform"
8788
8889 Use "stackablectl [OPTIONS] <COMMAND> -f path/to/values.yaml" to provide a
8990 values file.
Original file line number Diff line number Diff line change @@ -67,23 +67,24 @@ File options:
6767 -f, --operator-values <VALUES_FILE>
6868 Path to a Helm values file that will be used for the installation of operators
6969
70- The file is a YAML file containing Helm values used to deploy operators. It
71- supports a 'common' key for values shared across all operators, as well as
72- operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') for
73- values that only apply to a single operator. Operator-specific values are
74- merged with common values, with operator-specific values taking precedence.
70+ The file is a YAML file containing Helm values used to deploy operators.
71+ Operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') map
72+ to the Helm values for that operator. Use YAML anchors and aliases to share
73+ values across operators.
7574
7675 Example values file:
7776
78- common :
79- tolerations:
77+ airflow-operator :
78+ tolerations: &default-tolerations
8079 - key: "example"
8180 operator: "Exists"
8281 effect: "NoSchedule"
83- airflow-operator :
84- replicas: 2
82+ podAnnotations :
83+ example.com/team: "data-engineering"
8584 zookeeper-operator:
86- replicas: 3
85+ tolerations: *default-tolerations
86+ podAnnotations:
87+ example.com/team: "platform"
8788
8889 Use "stackablectl [OPTIONS] <COMMAND> -f path/to/values.yaml" to provide a
8990 values file.
Original file line number Diff line number Diff line change @@ -68,23 +68,24 @@ File options:
6868 -f, --operator-values <VALUES_FILE>
6969 Path to a Helm values file that will be used for the installation of operators
7070
71- The file is a YAML file containing Helm values used to deploy operators. It
72- supports a 'common' key for values shared across all operators, as well as
73- operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') for
74- values that only apply to a single operator. Operator-specific values are
75- merged with common values, with operator-specific values taking precedence.
71+ The file is a YAML file containing Helm values used to deploy operators.
72+ Operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') map
73+ to the Helm values for that operator. Use YAML anchors and aliases to share
74+ values across operators.
7675
7776 Example values file:
7877
79- common :
80- tolerations:
78+ airflow-operator :
79+ tolerations: &default-tolerations
8180 - key: "example"
8281 operator: "Exists"
8382 effect: "NoSchedule"
84- airflow-operator :
85- replicas: 2
83+ podAnnotations :
84+ example.com/team: "data-engineering"
8685 zookeeper-operator:
87- replicas: 3
86+ tolerations: *default-tolerations
87+ podAnnotations:
88+ example.com/team: "platform"
8889
8990 Use "stackablectl [OPTIONS] <COMMAND> -f path/to/values.yaml" to provide a
9091 values file.
Original file line number Diff line number Diff line change @@ -69,23 +69,24 @@ File options:
6969 -f, --operator-values <VALUES_FILE>
7070 Path to a Helm values file that will be used for the installation of operators
7171
72- The file is a YAML file containing Helm values used to deploy operators. It
73- supports a 'common' key for values shared across all operators, as well as
74- operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') for
75- values that only apply to a single operator. Operator-specific values are
76- merged with common values, with operator-specific values taking precedence.
72+ The file is a YAML file containing Helm values used to deploy operators.
73+ Operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') map
74+ to the Helm values for that operator. Use YAML anchors and aliases to share
75+ values across operators.
7776
7877 Example values file:
7978
80- common :
81- tolerations:
79+ airflow-operator :
80+ tolerations: &default-tolerations
8281 - key: "example"
8382 operator: "Exists"
8483 effect: "NoSchedule"
85- airflow-operator :
86- replicas: 2
84+ podAnnotations :
85+ example.com/team: "data-engineering"
8786 zookeeper-operator:
88- replicas: 3
87+ tolerations: *default-tolerations
88+ podAnnotations:
89+ example.com/team: "platform"
8990
9091 Use "stackablectl [OPTIONS] <COMMAND> -f path/to/values.yaml" to provide a
9192 values file.
Original file line number Diff line number Diff line change @@ -63,23 +63,24 @@ File options:
6363 -f, --operator-values <VALUES_FILE>
6464 Path to a Helm values file that will be used for the installation of operators
6565
66- The file is a YAML file containing Helm values used to deploy operators. It
67- supports a 'common' key for values shared across all operators, as well as
68- operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') for
69- values that only apply to a single operator. Operator-specific values are
70- merged with common values, with operator-specific values taking precedence.
66+ The file is a YAML file containing Helm values used to deploy operators.
67+ Operator-specific keys (e.g. 'airflow-operator', 'zookeeper-operator') map
68+ to the Helm values for that operator. Use YAML anchors and aliases to share
69+ values across operators.
7170
7271 Example values file:
7372
74- common :
75- tolerations:
73+ airflow-operator :
74+ tolerations: &default-tolerations
7675 - key: "example"
7776 operator: "Exists"
7877 effect: "NoSchedule"
79- airflow-operator :
80- replicas: 2
78+ podAnnotations :
79+ example.com/team: "data-engineering"
8180 zookeeper-operator:
82- replicas: 3
81+ tolerations: *default-tolerations
82+ podAnnotations:
83+ example.com/team: "platform"
8384
8485 Use "stackablectl [OPTIONS] <COMMAND> -f path/to/values.yaml" to provide a
8586 values file.
You can’t perform that action at this time.
0 commit comments