Closed matthew-piziak closed 7 years ago
Currently the ServerConfig looks like this:
ServerConfig
data ServerConfig = ServerConfig' { _scValidNodeVersions :: !(Maybe [Text]) , _scDefaultImageFamily :: !(Maybe Text) , _scValidImageFamilies :: !(Maybe [Text]) , _scDefaultClusterVersion :: !(Maybe Text) } deriving (Eq,Show,Data,Typeable,Generic)
Hitting gcloud container get-server-config --log-http returns a result like this:
gcloud container get-server-config --log-http
{ "defaultClusterVersion": …, "validNodeVersions": […], "defaultImageType": …, "validImageTypes": [...], "validMasterVersions": [...] }
Can we get _scValidMasterVersions in the datatype? Thanks!
_scValidMasterVersions
Never mind, I'm looking at an old version. Thanks!
Currently the
ServerConfig
looks like this:Hitting
gcloud container get-server-config --log-http
returns a result like this:Can we get
_scValidMasterVersions
in the datatype? Thanks!