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
// Map of configurations for individual kind clusters.
80
+
MapKindConfig `json:",inline,omitempty"`
81
+
}
82
+
```
83
+
84
+
The objectives of the above structs are as follows:
85
+
86
+
1. Allow for different kinds of clusters to be used as specified by `ClusterType` (only KinD implemented initially).
87
+
2. Allow these clusters to be configured either at a global level (via `GlobalKindConfig` and a `NumClusters` parameter), or individually via MapKindConfig.
88
+
3. Leave latitude for the addition of other cluster types at a later time.
89
+
4. Provide the interface already present in the API for configuring the kind clusters, but encapsulate it in `KindConfig`.
90
+
91
+
## Proposal - teststep
37
92
38
93
The proposal is to add a new setting to the `TestStep` object: `kubeconfig`. This setting would allow the user to specify an alternative kubeconfig path to use for a given test step.
0 commit comments