54 lines
2.1 KiB
Go
54 lines
2.1 KiB
Go
/*
|
|
Copyright 2018 The Kubernetes Authors.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package resource
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// ExampleResources outlines what should be the starting point for
|
|
// using this library. A new parser object should be created, whose
|
|
// Resources() method then discovers and returns the resources in
|
|
// the API server.
|
|
//
|
|
func Example_resources() {
|
|
|
|
// This is a blank parser for testing only. Use actual values in
|
|
// your code.
|
|
p := NewParser(nil, nil, "", "")
|
|
r, err := p.Resources()
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
for name, versions := range r {
|
|
fmt.Println("\n→", name)
|
|
for _, version := range versions {
|
|
fmt.Printf("→→ %+v\n", version)
|
|
}
|
|
}
|
|
// This should output all resources present in the server. E.g.:
|
|
//
|
|
// ...
|
|
// → services
|
|
// →→ &{Resource:{Name:services SingularName: Namespaced:true Group:v1 Version: Kind:Service Verbs:[create delete get list patch proxy update watch] ShortNames:[svc] Categories:[all]} ApiGroupVersion:v1 Schema:0xc420eca410 SubResources:[]}
|
|
//
|
|
// → deployments
|
|
// →→ &{Resource:{Name:deployments SingularName: Namespaced:true Group:v1beta1 Version: Kind:Deployment Verbs:[create delete deletecollection get list patch update watch] ShortNames:[deploy] Categories:[all]} ApiGroupVersion:extensions/v1beta1 Schema:0xc420ed7400 SubResources:[]}
|
|
// →→ &{Resource:{Name:deployments SingularName: Namespaced:true Group:v1beta1 Version: Kind:Deployment Verbs:[create delete deletecollection get list patch update watch] ShortNames:[deploy] Categories:[all]} ApiGroupVersion:apps/v1beta1 Schema:0xc4202e9400 SubResources:[]}
|
|
// ...
|
|
}
|