DeleteClusterVariable deletes a cluster variable
(key string)
| 159 | |
| 160 | // DeleteClusterVariable deletes a cluster variable |
| 161 | func (ds *EtcdDataSource) DeleteClusterVariable(key string) error { |
| 162 | return ds.delete(ds.prefixifyForClusterVariables(key)) |
| 163 | } |
| 164 | |
| 165 | // ClusterName returns the name of the cluster |
| 166 | func (ds *EtcdDataSource) ClusterName() string { |
nothing calls this directly
no test coverage detected