From a9e045d70d1a4abd2f0d57142708e29ba7a64278 Mon Sep 17 00:00:00 2001 From: David Eads Date: Wed, 4 Oct 2017 12:45:12 -0400 Subject: [PATCH 01/78] UPSTREAM: 53442: add nested encoder and decoder to admission config :000000 100644 0000000000... 0b849921b8... A staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/conversion.go --- .../pkg/apis/apiserver/v1alpha1/conversion.go | 70 +++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/conversion.go diff --git a/staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/conversion.go b/staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/conversion.go new file mode 100644 index 0000000000000..0b849921b833f --- /dev/null +++ b/staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/conversion.go @@ -0,0 +1,70 @@ +package v1alpha1 + +import ( + runtime "k8s.io/apimachinery/pkg/runtime" +) + +var _ runtime.NestedObjectDecoder = &AdmissionConfiguration{} + +// DecodeNestedObjects handles encoding RawExtensions on the AdmissionConfiguration, ensuring the +// objects are decoded with the provided decoder. +func (c *AdmissionConfiguration) DecodeNestedObjects(d runtime.Decoder) error { + // decoding failures result in a runtime.Unknown object being created in Object and passed + // to conversion + for k, v := range c.Plugins { + decodeNestedRawExtensionOrUnknown(d, &v.Configuration) + c.Plugins[k] = v + } + return nil +} + +var _ runtime.NestedObjectEncoder = &AdmissionConfiguration{} + +// EncodeNestedObjects handles encoding RawExtensions on the AdmissionConfiguration, ensuring the +// objects are encoded with the provided encoder. +func (c *AdmissionConfiguration) EncodeNestedObjects(e runtime.Encoder) error { + for k, v := range c.Plugins { + if err := encodeNestedRawExtension(e, &v.Configuration); err != nil { + return err + } + c.Plugins[k] = v + } + return nil +} + +func decodeNestedRawExtensionOrUnknown(d runtime.Decoder, ext *runtime.RawExtension) { + if ext.Raw == nil || ext.Object != nil { + return + } + obj, gvk, err := d.Decode(ext.Raw, nil, nil) + if err != nil { + unk := &runtime.Unknown{Raw: ext.Raw} + if runtime.IsNotRegisteredError(err) { + if _, gvk, err := d.Decode(ext.Raw, nil, unk); err == nil { + unk.APIVersion = gvk.GroupVersion().String() + unk.Kind = gvk.Kind + ext.Object = unk + return + } + } + // TODO: record mime-type with the object + if gvk != nil { + unk.APIVersion = gvk.GroupVersion().String() + unk.Kind = gvk.Kind + } + obj = unk + } + ext.Object = obj +} + +func encodeNestedRawExtension(e runtime.Encoder, ext *runtime.RawExtension) error { + if ext.Raw != nil || ext.Object == nil { + return nil + } + data, err := runtime.Encode(e, ext.Object) + if err != nil { + return err + } + ext.Raw = data + return nil +} From 54f636227c43bfdb71446b94a24f2dec76f75241 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Wed, 11 Oct 2017 11:43:47 -0400 Subject: [PATCH 02/78] UPSTREAM: 53731: Use locks in fake dbus :100644 100644 44131272e7... 28cde82fb2... M pkg/util/dbus/fake_dbus.go --- pkg/util/dbus/fake_dbus.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkg/util/dbus/fake_dbus.go b/pkg/util/dbus/fake_dbus.go index 44131272e7a9a..28cde82fb2f05 100644 --- a/pkg/util/dbus/fake_dbus.go +++ b/pkg/util/dbus/fake_dbus.go @@ -18,6 +18,7 @@ package dbus import ( "fmt" + "sync" godbus "github.com/godbus/dbus" ) @@ -30,6 +31,7 @@ type DBusFake struct { // DBusFakeConnection represents a fake D-Bus connection type DBusFakeConnection struct { + lock sync.Mutex busObject *fakeObject objects map[string]*fakeObject signalHandlers []chan<- *godbus.Signal @@ -88,6 +90,8 @@ func (conn *DBusFakeConnection) Object(name, path string) Object { // Signal is part of the Connection interface func (conn *DBusFakeConnection) Signal(ch chan<- *godbus.Signal) { + conn.lock.Lock() + defer conn.lock.Unlock() for i := range conn.signalHandlers { if conn.signalHandlers[i] == ch { conn.signalHandlers = append(conn.signalHandlers[:i], conn.signalHandlers[i+1:]...) @@ -109,6 +113,8 @@ func (conn *DBusFakeConnection) AddObject(name, path string, handler DBusFakeHan // EmitSignal emits a signal on conn func (conn *DBusFakeConnection) EmitSignal(name, path, iface, signal string, args ...interface{}) { + conn.lock.Lock() + defer conn.lock.Unlock() sig := &godbus.Signal{ Sender: name, Path: godbus.ObjectPath(path), From 8a2442993c6e4a8813101f374f792cbcd560b066 Mon Sep 17 00:00:00 2001 From: Paul Weil Date: Tue, 11 Aug 2015 13:42:35 -0400 Subject: [PATCH 03/78] UPSTREAM: : reallow the ability to post across namespaces in api :100644 100644 a9b6b37... 2328ffc... M pkg/apiserver/api_installer.go --- staging/src/k8s.io/apiserver/pkg/endpoints/installer.go | 1 + 1 file changed, 1 insertion(+) diff --git a/staging/src/k8s.io/apiserver/pkg/endpoints/installer.go b/staging/src/k8s.io/apiserver/pkg/endpoints/installer.go index b2e6e20e3f680..d7c61adbad7eb 100644 --- a/staging/src/k8s.io/apiserver/pkg/endpoints/installer.go +++ b/staging/src/k8s.io/apiserver/pkg/endpoints/installer.go @@ -486,6 +486,7 @@ func (a *APIInstaller) registerResourceHandlers(path string, storage rest.Storag // TODO: more strongly type whether a resource allows these actions on "all namespaces" (bulk delete) if !hasSubresource { actions = appendIf(actions, action{"LIST", resource, params, namer, true}, isLister) + actions = appendIf(actions, action{"POST", resource, params, namer, true}, isCreater) actions = appendIf(actions, action{"WATCHLIST", "watch/" + resource, params, namer, true}, allowWatchList) } break From 08399a0a3a1a3859fe4c161d329644c4035fd46b Mon Sep 17 00:00:00 2001 From: Maciej Szulik Date: Mon, 21 Dec 2015 13:18:06 +0100 Subject: [PATCH 04/78] UPSTREAM: : add kubelet timeouts :100644 100644 c561ddb... 17ef5df... M pkg/kubelet/server.go --- pkg/kubelet/server/server.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/kubelet/server/server.go b/pkg/kubelet/server/server.go index 285a0d376cefb..5b207852444f3 100644 --- a/pkg/kubelet/server/server.go +++ b/pkg/kubelet/server/server.go @@ -130,6 +130,8 @@ func ListenAndServeKubeletServer( s := &http.Server{ Addr: net.JoinHostPort(address.String(), strconv.FormatUint(uint64(port), 10)), Handler: &handler, + ReadTimeout: 60 * time.Minute, + WriteTimeout: 60 * time.Minute, MaxHeaderBytes: 1 << 20, } if tlsOptions != nil { @@ -151,6 +153,8 @@ func ListenAndServeKubeletReadOnlyServer(host HostInterface, resourceAnalyzer st server := &http.Server{ Addr: net.JoinHostPort(address.String(), strconv.FormatUint(uint64(port), 10)), Handler: &s, + ReadTimeout: 60 * time.Minute, + WriteTimeout: 60 * time.Minute, MaxHeaderBytes: 1 << 20, } glog.Fatal(server.ListenAndServe()) From d93eb995e44ecce3703544ccde9609408f1fdd13 Mon Sep 17 00:00:00 2001 From: Solly Ross Date: Tue, 12 Jan 2016 14:50:05 -0500 Subject: [PATCH 05/78] UPSTREAM: : Tolerate node ExternalID changes with no cloud provider Previously, if the kubelet tried to register itself with the API server, and was rejected due to the external ID changing, it would delete the node object and recreate it. This commit causes it to tolerate a change in ExternalID when the ExternalID is not being provided by a cloud provider, assuming the new ExternalID is either the node's (metadata) name, or one of node's addresses. :100644 100644 0c4fdc1... 8deaa82... M pkg/kubelet/kubelet.go --- pkg/kubelet/kubelet_node_status.go | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/pkg/kubelet/kubelet_node_status.go b/pkg/kubelet/kubelet_node_status.go index 3d6651a762c6e..fb6bddc5baacb 100644 --- a/pkg/kubelet/kubelet_node_status.go +++ b/pkg/kubelet/kubelet_node_status.go @@ -149,6 +149,29 @@ func (kl *Kubelet) tryRegisterWithAPIServer(node *v1.Node) bool { return true } + if kl.cloud == nil { + // In the case where we're not using a cloud provider, the ExternalID could either have + // been the NodeIP, or the actual hostname. If we switch between the two, consider it + // ok to keep using that value. + for _, addr := range existingNode.Status.Addresses { + if existingNode.Spec.ExternalID == addr.Address { + glog.Warningf("Node %s was previously registered with an external ID of %q, but if recreated would use an external ID of its hostname %q", node.Name, existingNode.Spec.ExternalID, node.Spec.ExternalID) + glog.Infof("Node %s was previously registered", node.Name) + + // Similarly to above, we must reconcile the value of the + // controller-managed attach detach annotation for this node. + requiresUpdate := kl.reconcileCMADAnnotationWithExistingNode(node, existingNode) + if requiresUpdate { + if _, err := kl.kubeClient.Core().Nodes().UpdateStatus(existingNode); err != nil { + glog.Errorf("Unable to reconcile node %q with API server: error updating node: %v", kl.nodeName, err) + return false + } + } + return true + } + } + } + glog.Errorf( "Previously node %q had externalID %q; now it is %q; will delete and recreate.", kl.nodeName, node.Spec.ExternalID, existingNode.Spec.ExternalID, From 6ebdf2a5c40a6845291520e91d996f90ea099201 Mon Sep 17 00:00:00 2001 From: Andy Goldstein Date: Fri, 18 Nov 2016 15:56:53 -0500 Subject: [PATCH 06/78] UPSTREAM: : Add our types to kubectl get error --- pkg/kubectl/cmd/cmd.go | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/pkg/kubectl/cmd/cmd.go b/pkg/kubectl/cmd/cmd.go index cb85111db26d2..4744e9d8b3b35 100644 --- a/pkg/kubectl/cmd/cmd.go +++ b/pkg/kubectl/cmd/cmd.go @@ -202,6 +202,8 @@ __custom_func() { validResources = `Valid resource types include: * all + * buildconfigs (aka 'bc') + * builds * certificatesigningrequests (aka 'csr') * clusterrolebindings * clusterroles @@ -213,10 +215,15 @@ __custom_func() { * customresourcedefinition (aka 'crd') * daemonsets (aka 'ds') * deployments (aka 'deploy') + * deploymentconfigs (aka 'dc') * endpoints (aka 'ep') * events (aka 'ev') * horizontalpodautoscalers (aka 'hpa') + * imagestreamimages (aka 'isimage') + * imagestreams (aka 'is') + * imagestreamtags (aka 'istag') * ingresses (aka 'ing') + * groups * jobs * limitranges (aka 'limits') * namespaces (aka 'ns') @@ -229,15 +236,19 @@ __custom_func() { * pods (aka 'po') * podsecuritypolicies (aka 'psp') * podtemplates + * policies + * projects * replicasets (aka 'rs') * replicationcontrollers (aka 'rc') * resourcequotas (aka 'quota') * rolebindings * roles + * routes * secrets * serviceaccounts (aka 'sa') * services (aka 'svc') * statefulsets + * users * storageclasses ` ) From 5cf278c675a0990a15f6f00cf3cb46ff1b079b65 Mon Sep 17 00:00:00 2001 From: Jordan Liggitt Date: Wed, 16 Mar 2016 11:41:30 -0400 Subject: [PATCH 07/78] UPSTREAM: : Allow overriding default generators for run --- pkg/kubectl/cmd/run.go | 21 +++++++++++++++++++-- pkg/kubectl/cmd/run_test.go | 4 ++-- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/pkg/kubectl/cmd/run.go b/pkg/kubectl/cmd/run.go index ae705796d84b5..3ffd85c760299 100644 --- a/pkg/kubectl/cmd/run.go +++ b/pkg/kubectl/cmd/run.go @@ -97,7 +97,16 @@ type RunObject struct { Mapping *meta.RESTMapping } +type RunOptions struct { + DefaultRestartAlwaysGenerator string + DefaultGenerator string +} + func NewCmdRun(f cmdutil.Factory, cmdIn io.Reader, cmdOut, cmdErr io.Writer) *cobra.Command { + return NewCmdRunWithOptions(f, nil, cmdIn, cmdOut, cmdErr) +} + +func NewCmdRunWithOptions(f cmdutil.Factory, opts *RunOptions, cmdIn io.Reader, cmdOut, cmdErr io.Writer) *cobra.Command { cmd := &cobra.Command{ Use: "run NAME --image=image [--env=\"key=value\"] [--port=port] [--replicas=replicas] [--dry-run=bool] [--overrides=inline-json] [--command] -- [COMMAND] [args...]", Short: i18n.T("Run a particular image on the cluster"), @@ -105,7 +114,7 @@ func NewCmdRun(f cmdutil.Factory, cmdIn io.Reader, cmdOut, cmdErr io.Writer) *co Example: runExample, Run: func(cmd *cobra.Command, args []string) { argsLenAtDash := cmd.ArgsLenAtDash() - err := RunRun(f, cmdIn, cmdOut, cmdErr, cmd, args, argsLenAtDash) + err := RunRun(f, opts, cmdIn, cmdOut, cmdErr, cmd, args, argsLenAtDash) cmdutil.CheckErr(err) }, } @@ -147,7 +156,7 @@ func addRunFlags(cmd *cobra.Command) { cmd.Flags().String("schedule", "", i18n.T("A schedule in the Cron format the job should be run with.")) } -func RunRun(f cmdutil.Factory, cmdIn io.Reader, cmdOut, cmdErr io.Writer, cmd *cobra.Command, args []string, argsLenAtDash int) error { +func RunRun(f cmdutil.Factory, opts *RunOptions, cmdIn io.Reader, cmdOut, cmdErr io.Writer, cmd *cobra.Command, args []string, argsLenAtDash int) error { // Let kubectl run follow rules for `--`, see #13004 issue if len(args) == 0 || argsLenAtDash == 0 { return cmdutil.UsageErrorf(cmd, "NAME is required for run") @@ -232,6 +241,14 @@ func RunRun(f cmdutil.Factory, cmdIn io.Reader, cmdOut, cmdErr io.Writer, cmd *c generatorName = cmdutil.CronJobV2Alpha1GeneratorName } } + if len(generatorName) == 0 && opts != nil { + switch { + case restartPolicy == api.RestartPolicyAlways: + generatorName = opts.DefaultRestartAlwaysGenerator + default: + generatorName = opts.DefaultGenerator + } + } if len(generatorName) == 0 { switch restartPolicy { case api.RestartPolicyAlways: diff --git a/pkg/kubectl/cmd/run_test.go b/pkg/kubectl/cmd/run_test.go index 463659a5e7345..7f4866180f050 100644 --- a/pkg/kubectl/cmd/run_test.go +++ b/pkg/kubectl/cmd/run_test.go @@ -180,7 +180,7 @@ func TestRunArgsFollowDashRules(t *testing.T) { cmd := NewCmdRun(f, os.Stdin, os.Stdout, os.Stderr) cmd.Flags().Set("image", "nginx") cmd.Flags().Set("generator", "run/v1") - err := RunRun(f, os.Stdin, os.Stdout, os.Stderr, cmd, test.args, test.argsLenAtDash) + err := RunRun(f, nil, os.Stdin, os.Stdout, os.Stderr, cmd, test.args, test.argsLenAtDash) if test.expectError && err == nil { t.Errorf("unexpected non-error (%s)", test.name) } @@ -442,7 +442,7 @@ func TestRunValidations(t *testing.T) { for flagName, flagValue := range test.flags { cmd.Flags().Set(flagName, flagValue) } - err := RunRun(f, inBuf, outBuf, errBuf, cmd, test.args, cmd.ArgsLenAtDash()) + err := RunRun(f, nil, inBuf, outBuf, errBuf, cmd, test.args, cmd.ArgsLenAtDash()) if err != nil && len(test.expectedErr) > 0 { if !strings.Contains(err.Error(), test.expectedErr) { t.Errorf("unexpected error: %v", err) From 9ed0b4142570898aef69e78da6d4154f17f9d283 Mon Sep 17 00:00:00 2001 From: Andy Goldstein Date: Fri, 18 Nov 2016 16:34:48 -0500 Subject: [PATCH 08/78] UPSTREAM: : force import ordering for stable codegen --- pkg/apis/batch/install/install.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/apis/batch/install/install.go b/pkg/apis/batch/install/install.go index 7df8db201e0e6..ff788ffbd6fba 100644 --- a/pkg/apis/batch/install/install.go +++ b/pkg/apis/batch/install/install.go @@ -27,6 +27,9 @@ import ( "k8s.io/kubernetes/pkg/apis/batch/v1" "k8s.io/kubernetes/pkg/apis/batch/v1beta1" "k8s.io/kubernetes/pkg/apis/batch/v2alpha1" + + // force determinstic ordering when loading these packages + _ "k8s.io/kubernetes/pkg/apis/extensions/install" ) func init() { From d39b069ef41687dc2d6389d3f3f112f7d77c7d4a Mon Sep 17 00:00:00 2001 From: deads2k Date: Thu, 26 May 2016 13:09:09 -0400 Subject: [PATCH 09/78] UPSTREAM: : add service serving cert signer to token controller :100644 100644 b32534e... 3e694fc... M pkg/controller/serviceaccount/tokens_controller.go --- .../serviceaccount/tokens_controller.go | 32 +++++++++++++------ 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/pkg/controller/serviceaccount/tokens_controller.go b/pkg/controller/serviceaccount/tokens_controller.go index f8d5851101c5c..c9f0961c8d17b 100644 --- a/pkg/controller/serviceaccount/tokens_controller.go +++ b/pkg/controller/serviceaccount/tokens_controller.go @@ -42,6 +42,8 @@ import ( "k8s.io/kubernetes/pkg/util/metrics" ) +const ServiceServingCASecretKey = "service-ca.crt" + // RemoveTokenBackoff is the recommended (empirical) retry interval for removing // a secret reference from a service account when the secret is deleted. It is // exported for use by custom secret controllers. @@ -67,6 +69,9 @@ type TokensControllerOptions struct { // MaxRetries controls the maximum number of times a particular key is retried before giving up // If zero, a default max is used MaxRetries int + + // This CA will be added in the secrets of service accounts + ServiceServingCA []byte } // NewTokensController returns a new *TokensController. @@ -77,9 +82,10 @@ func NewTokensController(serviceAccounts informers.ServiceAccountInformer, secre } e := &TokensController{ - client: cl, - token: options.TokenGenerator, - rootCA: options.RootCA, + client: cl, + token: options.TokenGenerator, + rootCA: options.RootCA, + serviceServingCA: options.ServiceServingCA, syncServiceAccountQueue: workqueue.NewNamedRateLimitingQueue(workqueue.DefaultControllerRateLimiter(), "serviceaccount_tokens_service"), syncSecretQueue: workqueue.NewNamedRateLimitingQueue(workqueue.DefaultControllerRateLimiter(), "serviceaccount_tokens_secret"), @@ -132,7 +138,8 @@ type TokensController struct { client clientset.Interface token serviceaccount.TokenGenerator - rootCA []byte + rootCA []byte + serviceServingCA []byte serviceAccounts listersv1.ServiceAccountLister // updatedSecrets is a wrapper around the shared cache which allows us to record @@ -403,6 +410,9 @@ func (e *TokensController) ensureReferencedToken(serviceAccount *v1.ServiceAccou if e.rootCA != nil && len(e.rootCA) > 0 { secret.Data[v1.ServiceAccountRootCAKey] = e.rootCA } + if e.serviceServingCA != nil && len(e.serviceServingCA) > 0 { + secret.Data[ServiceServingCASecretKey] = e.serviceServingCA + } // Save the secret createdToken, err := e.client.Core().Secrets(serviceAccount.Namespace).Create(secret) @@ -492,22 +502,23 @@ func (e *TokensController) hasReferencedToken(serviceAccount *v1.ServiceAccount) return false, nil } -func (e *TokensController) secretUpdateNeeded(secret *v1.Secret) (bool, bool, bool) { +func (e *TokensController) secretUpdateNeeded(secret *v1.Secret) (bool, bool, bool, bool) { caData := secret.Data[v1.ServiceAccountRootCAKey] needsCA := len(e.rootCA) > 0 && bytes.Compare(caData, e.rootCA) != 0 + needsServiceServingCA := len(e.serviceServingCA) > 0 && bytes.Compare(secret.Data[ServiceServingCASecretKey], e.serviceServingCA) != 0 needsNamespace := len(secret.Data[v1.ServiceAccountNamespaceKey]) == 0 tokenData := secret.Data[v1.ServiceAccountTokenKey] needsToken := len(tokenData) == 0 - return needsCA, needsNamespace, needsToken + return needsCA, needsServiceServingCA, needsNamespace, needsToken } // generateTokenIfNeeded populates the token data for the given Secret if not already set func (e *TokensController) generateTokenIfNeeded(serviceAccount *v1.ServiceAccount, cachedSecret *v1.Secret) ( /* retry */ bool, error) { // Check the cached secret to see if changes are needed - if needsCA, needsNamespace, needsToken := e.secretUpdateNeeded(cachedSecret); !needsCA && !needsToken && !needsNamespace { + if needsCA, needsServiceServingCA, needsNamespace, needsToken := e.secretUpdateNeeded(cachedSecret); !needsCA && !needsServiceServingCA && !needsToken && !needsNamespace { return false, nil } @@ -526,8 +537,8 @@ func (e *TokensController) generateTokenIfNeeded(serviceAccount *v1.ServiceAccou return false, nil } - needsCA, needsNamespace, needsToken := e.secretUpdateNeeded(liveSecret) - if !needsCA && !needsToken && !needsNamespace { + needsCA, needsServiceServingCA, needsNamespace, needsToken := e.secretUpdateNeeded(liveSecret) + if !needsCA && !needsServiceServingCA && !needsToken && !needsNamespace { return false, nil } @@ -542,6 +553,9 @@ func (e *TokensController) generateTokenIfNeeded(serviceAccount *v1.ServiceAccou if needsCA { liveSecret.Data[v1.ServiceAccountRootCAKey] = e.rootCA } + if needsServiceServingCA { + liveSecret.Data[ServiceServingCASecretKey] = e.serviceServingCA + } // Set the namespace if needsNamespace { liveSecret.Data[v1.ServiceAccountNamespaceKey] = []byte(liveSecret.Namespace) From d97488e6f196591e5accee634169d9814d5971e1 Mon Sep 17 00:00:00 2001 From: deads2k Date: Thu, 14 Jul 2016 15:12:43 -0400 Subject: [PATCH 10/78] UPSTREAM: : fix fifo resync, remove after FIFO is dead :100644 100644 eaa35e6... 2a50982... M pkg/client/cache/fifo.go :100644 100644 0f2ceb8... 667c168... M pkg/client/cache/fifo_test.go --- .../src/k8s.io/client-go/tools/cache/fifo.go | 41 +++++++++++++------ .../k8s.io/client-go/tools/cache/fifo_test.go | 18 ++++++++ 2 files changed, 46 insertions(+), 13 deletions(-) diff --git a/staging/src/k8s.io/client-go/tools/cache/fifo.go b/staging/src/k8s.io/client-go/tools/cache/fifo.go index 3f6e2a9480a33..a2ef88fa17ebc 100644 --- a/staging/src/k8s.io/client-go/tools/cache/fifo.go +++ b/staging/src/k8s.io/client-go/tools/cache/fifo.go @@ -94,8 +94,12 @@ type FIFO struct { lock sync.RWMutex cond sync.Cond // We depend on the property that items in the set are in the queue and vice versa. - items map[string]interface{} - queue []string + items map[string]interface{} + queue []string + itemsInQueue sets.String + + // keepCache allows resync-ing to work by keeping a history of items + keepCache bool // populated is true if the first batch of items inserted by Replace() has been populated // or Delete/Add/Update was called first. @@ -144,10 +148,11 @@ func (f *FIFO) Add(obj interface{}) error { f.lock.Lock() defer f.lock.Unlock() f.populated = true - if _, exists := f.items[id]; !exists { + if !f.itemsInQueue.Has(id) { f.queue = append(f.queue, id) } f.items[id] = obj + f.itemsInQueue.Insert(id) f.cond.Broadcast() return nil } @@ -173,12 +178,13 @@ func (f *FIFO) AddIfNotPresent(obj interface{}) error { // item to the queue under id if it does not already exist. func (f *FIFO) addIfNotPresent(id string, obj interface{}) { f.populated = true - if _, exists := f.items[id]; exists { + if f.itemsInQueue.Has(id) { return } f.queue = append(f.queue, id) f.items[id] = obj + f.itemsInQueue.Insert(id) f.cond.Broadcast() } @@ -198,6 +204,7 @@ func (f *FIFO) Delete(obj interface{}) error { f.lock.Lock() defer f.lock.Unlock() f.populated = true + f.itemsInQueue.Delete(id) delete(f.items, id) return err } @@ -282,7 +289,11 @@ func (f *FIFO) Pop(process PopProcessFunc) (interface{}, error) { // Item may have been deleted subsequently. continue } - delete(f.items, id) + + f.itemsInQueue.Delete(id) + if !f.keepCache { + delete(f.items, id) + } err := process(item) if e, ok := err.(ErrRequeue); ok { f.addIfNotPresent(id, item) @@ -318,6 +329,7 @@ func (f *FIFO) Replace(list []interface{}, resourceVersion string) error { f.queue = f.queue[:0] for id := range items { f.queue = append(f.queue, id) + f.itemsInQueue.Insert(id) } if len(f.queue) > 0 { f.cond.Broadcast() @@ -330,12 +342,8 @@ func (f *FIFO) Resync() error { f.lock.Lock() defer f.lock.Unlock() - inQueue := sets.NewString() - for _, id := range f.queue { - inQueue.Insert(id) - } for id := range f.items { - if !inQueue.Has(id) { + if !f.itemsInQueue.Has(id) { f.queue = append(f.queue, id) } } @@ -349,10 +357,17 @@ func (f *FIFO) Resync() error { // process. func NewFIFO(keyFunc KeyFunc) *FIFO { f := &FIFO{ - items: map[string]interface{}{}, - queue: []string{}, - keyFunc: keyFunc, + items: map[string]interface{}{}, + queue: []string{}, + keyFunc: keyFunc, + itemsInQueue: sets.String{}, } f.cond.L = &f.lock return f } + +func NewResyncableFIFO(keyFunc KeyFunc) *FIFO { + fifo := NewFIFO(keyFunc) + fifo.keepCache = true + return fifo +} diff --git a/staging/src/k8s.io/client-go/tools/cache/fifo_test.go b/staging/src/k8s.io/client-go/tools/cache/fifo_test.go index afd311d788028..023ab21d635a0 100644 --- a/staging/src/k8s.io/client-go/tools/cache/fifo_test.go +++ b/staging/src/k8s.io/client-go/tools/cache/fifo_test.go @@ -278,3 +278,21 @@ func TestFIFO_HasSynced(t *testing.T) { } } } + +func TestFIFO_resync(t *testing.T) { + f := NewResyncableFIFO(testFifoObjectKeyFunc) + f.Add(mkFifoObj("foo", 10)) + f.Add(mkFifoObj("bar", 15)) + Pop(f) + + if err := f.Resync(); err != nil { + t.Fatal(err) + } + + if e, a := "bar", Pop(f).(testFifoObject).name; e != a { + t.Fatalf("expected %v, got %v", e, a) + } + if e, a := "foo", Pop(f).(testFifoObject).name; e != a { + t.Fatalf("expected %v, got %v", e, a) + } +} From d5805a56b8a9bfae9c34798d0436a66589a665d0 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Tue, 13 Sep 2016 17:10:59 -0400 Subject: [PATCH 11/78] UPSTREAM: : Disable file locking in clientcmd Doesn't offer enough use, complicates creation and setup. --- .../client-go/tools/clientcmd/config.go | 12 --------- .../client-go/tools/clientcmd/loader.go | 27 ------------------- .../client-go/tools/clientcmd/loader_test.go | 16 ----------- 3 files changed, 55 deletions(-) diff --git a/staging/src/k8s.io/client-go/tools/clientcmd/config.go b/staging/src/k8s.io/client-go/tools/clientcmd/config.go index 16ccdaf20a267..543c9e70e0f4b 100644 --- a/staging/src/k8s.io/client-go/tools/clientcmd/config.go +++ b/staging/src/k8s.io/client-go/tools/clientcmd/config.go @@ -22,7 +22,6 @@ import ( "path" "path/filepath" "reflect" - "sort" "github.com/golang/glog" @@ -154,17 +153,6 @@ func NewDefaultPathOptions() *PathOptions { // that means that this code will only write into a single file. If you want to relativizePaths, you must provide a fully qualified path in any // modified element. func ModifyConfig(configAccess ConfigAccess, newConfig clientcmdapi.Config, relativizePaths bool) error { - possibleSources := configAccess.GetLoadingPrecedence() - // sort the possible kubeconfig files so we always "lock" in the same order - // to avoid deadlock (note: this can fail w/ symlinks, but... come on). - sort.Strings(possibleSources) - for _, filename := range possibleSources { - if err := lockFile(filename); err != nil { - return err - } - defer unlockFile(filename) - } - startingConfig, err := configAccess.GetStartingConfig() if err != nil { return err diff --git a/staging/src/k8s.io/client-go/tools/clientcmd/loader.go b/staging/src/k8s.io/client-go/tools/clientcmd/loader.go index 6ac83b5c84309..d2f0345fc9616 100644 --- a/staging/src/k8s.io/client-go/tools/clientcmd/loader.go +++ b/staging/src/k8s.io/client-go/tools/clientcmd/loader.go @@ -418,33 +418,6 @@ func WriteToFile(config clientcmdapi.Config, filename string) error { return nil } -func lockFile(filename string) error { - // TODO: find a way to do this with actual file locks. Will - // probably need seperate solution for windows and linux. - - // Make sure the dir exists before we try to create a lock file. - dir := filepath.Dir(filename) - if _, err := os.Stat(dir); os.IsNotExist(err) { - if err = os.MkdirAll(dir, 0755); err != nil { - return err - } - } - f, err := os.OpenFile(lockName(filename), os.O_CREATE|os.O_EXCL, 0) - if err != nil { - return err - } - f.Close() - return nil -} - -func unlockFile(filename string) error { - return os.Remove(lockName(filename)) -} - -func lockName(filename string) string { - return filename + ".lock" -} - // Write serializes the config to yaml. // Encapsulates serialization without assuming the destination is a file. func Write(config clientcmdapi.Config) ([]byte, error) { diff --git a/staging/src/k8s.io/client-go/tools/clientcmd/loader_test.go b/staging/src/k8s.io/client-go/tools/clientcmd/loader_test.go index 74319788aba6d..cdea9d0104ebd 100644 --- a/staging/src/k8s.io/client-go/tools/clientcmd/loader_test.go +++ b/staging/src/k8s.io/client-go/tools/clientcmd/loader_test.go @@ -377,22 +377,6 @@ func TestMigratingFileSourceMissingSkip(t *testing.T) { } } -func TestFileLocking(t *testing.T) { - f, _ := ioutil.TempFile("", "") - defer os.Remove(f.Name()) - - err := lockFile(f.Name()) - if err != nil { - t.Errorf("unexpected error while locking file: %v", err) - } - defer unlockFile(f.Name()) - - err = lockFile(f.Name()) - if err == nil { - t.Error("expected error while locking file.") - } -} - func Example_noMergingOnExplicitPaths() { commandLineFile, _ := ioutil.TempFile("", "") defer os.Remove(commandLineFile.Name()) From d7f6486ed66bbec8fe50c151a0594a133e8c7dbc Mon Sep 17 00:00:00 2001 From: Andy Goldstein Date: Mon, 28 Nov 2016 11:09:05 -0500 Subject: [PATCH 12/78] UPSTREAM: : Disable e2e pre-check on scheduler predicates We don't run system pods so waiting for them is somewhat pointless --- test/e2e/scheduling/predicates.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/scheduling/predicates.go b/test/e2e/scheduling/predicates.go index b4d7dad835138..538273cccbfb8 100644 --- a/test/e2e/scheduling/predicates.go +++ b/test/e2e/scheduling/predicates.go @@ -82,7 +82,7 @@ var _ = SIGDescribe("SchedulerPredicates [Serial]", func() { ns = f.Namespace.Name nodeList = &v1.NodeList{} - framework.WaitForAllNodesHealthy(cs, time.Minute) + framework.AllNodesReady(cs, time.Minute) masterNodes, nodeList = framework.GetMasterAndWorkerNodesOrDie(cs) err := framework.CheckTestingNSDeletedExcept(cs, ns) From dd107aef1be948fe7d36b5431de229df87b08a9d Mon Sep 17 00:00:00 2001 From: deads2k Date: Mon, 1 Feb 2016 13:03:41 -0500 Subject: [PATCH 13/78] UPSTREAM: : merge multiple registrations for the same group :100644 100644 ac7025a... dce57e1... M pkg/apimachinery/registered/registered.go --- .../pkg/apimachinery/registered/registered.go | 38 ++++++++++++++++++- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/staging/src/k8s.io/apimachinery/pkg/apimachinery/registered/registered.go b/staging/src/k8s.io/apimachinery/pkg/apimachinery/registered/registered.go index 5150db0165986..9fd913dc2222e 100644 --- a/staging/src/k8s.io/apimachinery/pkg/apimachinery/registered/registered.go +++ b/staging/src/k8s.io/apimachinery/pkg/apimachinery/registered/registered.go @@ -99,13 +99,47 @@ func (m *APIRegistrationManager) RegisterVersions(availableVersions []schema.Gro // RegisterGroup adds the given group to the list of registered groups. func (m *APIRegistrationManager) RegisterGroup(groupMeta apimachinery.GroupMeta) error { groupName := groupMeta.GroupVersion.Group - if _, found := m.groupMetaMap[groupName]; found { - return fmt.Errorf("group %q is already registered in groupsMap: %v", groupName, m.groupMetaMap) + if existing, found := m.groupMetaMap[groupName]; found { + mergedGroupMeta := mergeGroupMeta(*existing, groupMeta) + m.groupMetaMap[groupName] = &mergedGroupMeta + return nil + // return fmt.Errorf("group %q is already registered in groupsMap: %v", groupName, m.groupMetaMap) } m.groupMetaMap[groupName] = &groupMeta return nil } +// mergeGroupMeta takes an lhs and an rhs GroupMeta, then builds a resulting GroupMeta that contains the +// merged information. Order of merging matters: lhs wins. +func mergeGroupMeta(lhs, rhs apimachinery.GroupMeta) apimachinery.GroupMeta { + merged := apimachinery.GroupMeta{} + merged.GroupVersion = lhs.GroupVersion + merged.SelfLinker = lhs.SelfLinker + + knownGVs := sets.String{} + for _, lhsGV := range lhs.GroupVersions { + knownGVs.Insert(lhsGV.String()) + merged.GroupVersions = append(merged.GroupVersions, lhsGV) + } + for _, rhsGV := range rhs.GroupVersions { + if knownGVs.Has(rhsGV.String()) { + continue + } + merged.GroupVersions = append(merged.GroupVersions, rhsGV) + } + + merged.RESTMapper = meta.MultiRESTMapper(append([]meta.RESTMapper{}, lhs.RESTMapper, rhs.RESTMapper)) + + merged.InterfacesFor = func(version schema.GroupVersion) (*meta.VersionInterfaces, error) { + if ret, err := lhs.InterfacesFor(version); err == nil { + return ret, nil + } + + return rhs.InterfacesFor(version) + } + return merged +} + // EnableVersions adds the versions for the given group to the list of enabled versions. // Note that the caller should call RegisterGroup before calling this method. // The caller of this function is responsible to add the versions to scheme and RESTMapper. From b240a6b571eb57f539881ea7693d65b8c52231a7 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Mon, 16 Jan 2017 13:20:48 -0500 Subject: [PATCH 14/78] UPSTREAM: : Double container probe timeout Until #11016 is resolved, we suspect that a combination of start latency and the corresponding effect on sync pod latency is causing status manager to fail to report within the 2 minute window. Double for now :100644 100644 30b6fd0e94... ea322bbddb... M test/e2e/common/container_probe.go --- test/e2e/common/container_probe.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/common/container_probe.go b/test/e2e/common/container_probe.go index 7611b2903a89a..ccef997d7fa5e 100644 --- a/test/e2e/common/container_probe.go +++ b/test/e2e/common/container_probe.go @@ -37,7 +37,7 @@ const ( probTestContainerName = "test-webserver" probTestInitialDelaySeconds = 15 - defaultObservationTimeout = time.Minute * 2 + defaultObservationTimeout = time.Minute * 4 ) var _ = framework.KubeDescribe("Probing container", func() { From 00643700222d1ee71056529fc3f58a40cc516b68 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Mon, 16 Jan 2017 18:52:37 -0500 Subject: [PATCH 15/78] UPSTREAM: : Increase service endpoint test timeout Until #11016 is fixed, this reduces flakiness in extended suites where long start delays result in this test failing. :100644 100644 62b8918f36... 99d37eca2f... M test/e2e/framework/util.go --- test/e2e/framework/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/framework/util.go b/test/e2e/framework/util.go index 9040517e5151f..5f0e2cb330c29 100644 --- a/test/e2e/framework/util.go +++ b/test/e2e/framework/util.go @@ -116,7 +116,7 @@ const ( slowPodStartTimeout = 15 * time.Minute // How long to wait for a service endpoint to be resolvable. - ServiceStartTimeout = 1 * time.Minute + ServiceStartTimeout = 3 * time.Minute // How often to Poll pods, nodes and claims. Poll = 2 * time.Second From 52ef9484942181a59a907b98ad69e287effd0d05 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Tue, 17 Jan 2017 16:24:43 -0500 Subject: [PATCH 16/78] UPSTREAM: : Pod deletion can be contended, causing test failure Add a longer timeout to the test to deal with #11016. :100644 100644 fee5a4c9b4... 2fa0a919b4... M test/e2e/pods.go --- test/e2e/pods.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/pods.go b/test/e2e/pods.go index 79da117c7c713..cbdd4fbf99a2c 100644 --- a/test/e2e/pods.go +++ b/test/e2e/pods.go @@ -166,7 +166,7 @@ var _ = framework.KubeDescribe("Pods Extended", func() { deleted := false timeout := false var lastPod *v1.Pod - timer := time.After(1 * time.Minute) + timer := time.After(2 * time.Minute) for !deleted && !timeout { select { case event, _ := <-w.ResultChan(): From fb9d85c9ac48424bec924398aaeee107a8cc369f Mon Sep 17 00:00:00 2001 From: deads2k Date: Tue, 25 Apr 2017 15:50:25 -0400 Subject: [PATCH 17/78] UPSTREAM: 00000: make AsVersionedObjects default cleanly --- pkg/kubectl/resource/result.go | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/pkg/kubectl/resource/result.go b/pkg/kubectl/resource/result.go index bb185754c5c07..c018a4973a1ac 100644 --- a/pkg/kubectl/resource/result.go +++ b/pkg/kubectl/resource/result.go @@ -30,6 +30,7 @@ import ( "k8s.io/apimachinery/pkg/util/sets" "k8s.io/apimachinery/pkg/watch" "k8s.io/kubernetes/pkg/api" + "k8s.io/kubernetes/pkg/apis/extensions" ) // ErrMatchFunc can be used to filter errors that may not be true failures. @@ -237,7 +238,13 @@ func AsVersionedObject(infos []*Info, forceList bool, version schema.GroupVersio object = objects[0] } else { object = &api.List{Items: objects} - converted, err := TryConvert(api.Scheme, object, version, api.Registry.GroupOrDie(api.GroupName).GroupVersion) + targetVersions := []schema.GroupVersion{} + if !version.Empty() { + targetVersions = append(targetVersions, version) + } + targetVersions = append(targetVersions, api.Registry.GroupOrDie(api.GroupName).GroupVersion) + + converted, err := TryConvert(api.Scheme, object, targetVersions...) if err != nil { return nil, err } @@ -265,6 +272,14 @@ func AsVersionedObjects(infos []*Info, version schema.GroupVersion, encoder runt continue } + // TODO: use info.VersionedObject as the value? + switch obj := info.Object.(type) { + case *extensions.ThirdPartyResourceData: + objects = append(objects, &runtime.Unknown{Raw: obj.Data}) + continue + } + + targetVersions := []schema.GroupVersion{} // objects that are not part of api.Scheme must be converted to JSON // TODO: convert to map[string]interface{}, attach to runtime.Unknown? if !version.Empty() { @@ -278,9 +293,11 @@ func AsVersionedObjects(infos []*Info, version schema.GroupVersion, encoder runt objects = append(objects, &runtime.Unknown{Raw: data}) continue } + targetVersions = append(targetVersions, version) } + targetVersions = append(targetVersions, info.Mapping.GroupVersionKind.GroupVersion()) - converted, err := TryConvert(info.Mapping.ObjectConvertor, info.Object, version, info.Mapping.GroupVersionKind.GroupVersion()) + converted, err := TryConvert(info.Mapping.ObjectConvertor, info.Object, targetVersions...) if err != nil { return nil, err } From d5ec5b32e5767881d01de06387f5651b596d6f9f Mon Sep 17 00:00:00 2001 From: deads2k Date: Wed, 7 Jun 2017 14:11:28 -0400 Subject: [PATCH 18/78] UPSTREAM: 00000: disambiguate operation names for legacy discovery :100644 100644 fb648e5285... 21d36a92dd... M staging/src/k8s.io/apiserver/pkg/endpoints/discovery/legacy.go --- staging/src/k8s.io/apiserver/pkg/endpoints/discovery/legacy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging/src/k8s.io/apiserver/pkg/endpoints/discovery/legacy.go b/staging/src/k8s.io/apiserver/pkg/endpoints/discovery/legacy.go index 3a98e6320e4ce..47e60e0988f48 100644 --- a/staging/src/k8s.io/apiserver/pkg/endpoints/discovery/legacy.go +++ b/staging/src/k8s.io/apiserver/pkg/endpoints/discovery/legacy.go @@ -64,7 +64,7 @@ func (s *legacyRootAPIHandler) WebService() *restful.WebService { ws.Doc("get available API versions") ws.Route(ws.GET("/").To(s.handle). Doc("get available API versions"). - Operation("getAPIVersions"). + Operation("getLegacyAPIVersions"). Produces(mediaTypes...). Consumes(mediaTypes...). Writes(metav1.APIVersions{})) From a59f230ad71e446f09c0470018d15a88456fac36 Mon Sep 17 00:00:00 2001 From: deads2k Date: Mon, 12 Jun 2017 12:02:04 -0400 Subject: [PATCH 19/78] UPSTREAM: 47347: actually check for a live discovery endpoint before aggregating --- .../pkg/apiserver/apiserver.go | 2 + .../status/available_controller.go | 79 ++++++++++++++++--- 2 files changed, 72 insertions(+), 9 deletions(-) diff --git a/staging/src/k8s.io/kube-aggregator/pkg/apiserver/apiserver.go b/staging/src/k8s.io/kube-aggregator/pkg/apiserver/apiserver.go index 3e70b7a5e2230..74c23ae5a239e 100644 --- a/staging/src/k8s.io/kube-aggregator/pkg/apiserver/apiserver.go +++ b/staging/src/k8s.io/kube-aggregator/pkg/apiserver/apiserver.go @@ -207,6 +207,8 @@ func (c completedConfig) NewWithDelegate(delegationTarget genericapiserver.Deleg c.GenericConfig.SharedInformerFactory.Core().V1().Services(), c.GenericConfig.SharedInformerFactory.Core().V1().Endpoints(), apiregistrationClient.Apiregistration(), + c.ExtraConfig.ProxyTransport != nil, + s.serviceResolver, ) s.GenericAPIServer.AddPostStartHook("start-kube-aggregator-informers", func(context genericapiserver.PostStartHookContext) error { diff --git a/staging/src/k8s.io/kube-aggregator/pkg/controllers/status/available_controller.go b/staging/src/k8s.io/kube-aggregator/pkg/controllers/status/available_controller.go index df6a2b0f4de07..c48cfc8eb58e0 100644 --- a/staging/src/k8s.io/kube-aggregator/pkg/controllers/status/available_controller.go +++ b/staging/src/k8s.io/kube-aggregator/pkg/controllers/status/available_controller.go @@ -17,7 +17,10 @@ limitations under the License. package apiserver import ( + "crypto/tls" "fmt" + "net/http" + "net/url" "time" "github.com/golang/glog" @@ -26,6 +29,7 @@ import ( apierrors "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/api/meta" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + "k8s.io/apimachinery/pkg/conversion" "k8s.io/apimachinery/pkg/labels" "k8s.io/apimachinery/pkg/runtime" utilruntime "k8s.io/apimachinery/pkg/util/runtime" @@ -42,6 +46,12 @@ import ( "k8s.io/kube-aggregator/pkg/controllers" ) +var cloner = conversion.NewCloner() + +type ServiceResolver interface { + ResolveEndpoint(namespace, name string) (*url.URL, error) +} + type AvailableConditionController struct { apiServiceClient apiregistrationclient.APIServicesGetter @@ -55,6 +65,9 @@ type AvailableConditionController struct { endpointsLister v1listers.EndpointsLister endpointsSynced cache.InformerSynced + enableAggregatorRouting bool + serviceResolver ServiceResolver + // To allow injection for testing. syncFn func(key string) error @@ -66,16 +79,20 @@ func NewAvailableConditionController( serviceInformer v1informers.ServiceInformer, endpointsInformer v1informers.EndpointsInformer, apiServiceClient apiregistrationclient.APIServicesGetter, + enableAggregatorRouting bool, + serviceResolver ServiceResolver, ) *AvailableConditionController { c := &AvailableConditionController{ - apiServiceClient: apiServiceClient, - apiServiceLister: apiServiceInformer.Lister(), - apiServiceSynced: apiServiceInformer.Informer().HasSynced, - serviceLister: serviceInformer.Lister(), - servicesSynced: serviceInformer.Informer().HasSynced, - endpointsLister: endpointsInformer.Lister(), - endpointsSynced: endpointsInformer.Informer().HasSynced, - queue: workqueue.NewNamedRateLimitingQueue(workqueue.DefaultControllerRateLimiter(), "AvailableConditionController"), + apiServiceClient: apiServiceClient, + apiServiceLister: apiServiceInformer.Lister(), + apiServiceSynced: apiServiceInformer.Informer().HasSynced, + serviceLister: serviceInformer.Lister(), + servicesSynced: serviceInformer.Informer().HasSynced, + endpointsLister: endpointsInformer.Lister(), + endpointsSynced: endpointsInformer.Informer().HasSynced, + enableAggregatorRouting: enableAggregatorRouting, + serviceResolver: serviceResolver, + queue: workqueue.NewNamedRateLimitingQueue(workqueue.DefaultControllerRateLimiter(), "AvailableConditionController"), } apiServiceInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{ @@ -175,8 +192,52 @@ func (c *AvailableConditionController) sync(key string) error { return err } } + // actually try to hit the discovery endpoint when it isn't local and when we're routing as a service. + // TODO figure out if the kube-proxy code handling has similar problems + if apiService.Spec.Service != nil && !c.enableAggregatorRouting && c.serviceResolver != nil { + discoveryURL, err := c.serviceResolver.ResolveEndpoint(apiService.Spec.Service.Namespace, apiService.Spec.Service.Name) + if err != nil { + return err + } + // construct an http client that will ignore TLS verification (if someone owns the network and messes with your status + // that's not so bad) and sets a very short timeout. + httpClient := &http.Client{ + Transport: &http.Transport{ + TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, + }, + // the request should happen quickly. + Timeout: 5 * time.Second, + } + + errCh := make(chan error) + go func() { + resp, err := httpClient.Get(discoveryURL.String()) + if resp != nil { + resp.Body.Close() + } + errCh <- err + }() - // TODO actually try to hit the discovery endpoint + select { + case err = <-errCh: + case <-time.After(6 * time.Second): + err = fmt.Errorf("timed out waiting for %v", discoveryURL) + } + + if err != nil { + availableCondition.Status = apiregistration.ConditionFalse + availableCondition.Reason = "FailedDiscoveryCheck" + availableCondition.Message = fmt.Sprintf("no response from %v: %v", discoveryURL, err) + apiregistration.SetAPIServiceCondition(apiService, availableCondition) + _, updateErr := c.apiServiceClient.APIServices().UpdateStatus(apiService) + if updateErr != nil { + return updateErr + } + // force a requeue to make it very obvious that this will be retried at some point in the future + // along with other requeues done via service change, endpoint change, and resync + return err + } + } availableCondition.Reason = "Passed" availableCondition.Message = "all checks passed" From 5403b0db60c8c90cced275a8b9c2a9fda69490b3 Mon Sep 17 00:00:00 2001 From: deads2k Date: Mon, 24 Jul 2017 13:13:27 -0400 Subject: [PATCH 20/78] UPSTREAM: : commit generated openapi --- .gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitignore b/.gitignore index aad2fb8ba2916..cc5ff590ea1d0 100644 --- a/.gitignore +++ b/.gitignore @@ -110,12 +110,9 @@ kubernetes.tar.gz # generated files in any directory # TODO(thockin): uncomment this when we stop committing the generated files. #zz_generated.* -zz_generated.openapi.go # make-related metadata /.make/ -# Just in time generated data in the source, should never be commited -/test/e2e/generated/bindata.go # This file used by some vendor repos (e.g. github.com/go-openapi/...) to store secret variables and should not be ignored !\.drone\.sec From 0cee52cc0d55e4c5bb7790e2a43ff2ad10b6a705 Mon Sep 17 00:00:00 2001 From: deads2k Date: Thu, 6 Jul 2017 15:48:55 -0400 Subject: [PATCH 21/78] UPSTREAM: 49131: expose direct from config new scheduler method :000000 100644 0000000000... c47e998a04... A plugin/pkg/scheduler/scheduler_patch.go --- plugin/pkg/scheduler/scheduler_patch.go | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 plugin/pkg/scheduler/scheduler_patch.go diff --git a/plugin/pkg/scheduler/scheduler_patch.go b/plugin/pkg/scheduler/scheduler_patch.go new file mode 100644 index 0000000000000..c47e998a04f2a --- /dev/null +++ b/plugin/pkg/scheduler/scheduler_patch.go @@ -0,0 +1,14 @@ +package scheduler + +import ( + "k8s.io/kubernetes/plugin/pkg/scheduler/metrics" +) + +func NewFromConfig(cfg *Config) *Scheduler { + // From this point on the config is immutable to the outside. + s := &Scheduler{ + config: cfg, + } + metrics.Register() + return s +} From d44a7f3ce768133562680a85e75bade93dcc3aa2 Mon Sep 17 00:00:00 2001 From: deads2k Date: Mon, 10 Jul 2017 14:04:50 -0400 Subject: [PATCH 22/78] UPSTREAM: : make wiring in kubeproxy easy until we sort out config :000000 100644 0000000000... 29aa4dd35d... A cmd/kube-proxy/app/server_patch.go --- cmd/kube-proxy/app/server_patch.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 cmd/kube-proxy/app/server_patch.go diff --git a/cmd/kube-proxy/app/server_patch.go b/cmd/kube-proxy/app/server_patch.go new file mode 100644 index 0000000000000..29aa4dd35d4e7 --- /dev/null +++ b/cmd/kube-proxy/app/server_patch.go @@ -0,0 +1,15 @@ +package app + +import ( + "github.com/spf13/pflag" + + "k8s.io/kubernetes/pkg/apis/componentconfig" +) + +func (o *Options) GetConfig() *componentconfig.KubeProxyConfiguration { + return o.config +} + +func (o *Options) AddFlags(fs *pflag.FlagSet) { + AddFlags(o, fs) +} From f8a2d026a3b7b10f52992e245b66fe8eb44758c4 Mon Sep 17 00:00:00 2001 From: deads2k Date: Tue, 11 Jul 2017 10:05:50 -0400 Subject: [PATCH 23/78] UPSTREAM: : compensate for poor printer behavior :000000 100644 0000000000... cba0760ef5... A pkg/printers/printer_patch.go :100644 100644 2177558529... 30fd8ab5f2... M pkg/printers/printers.go --- pkg/printers/printer_patch.go | 11 +++++++++++ pkg/printers/printers.go | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 pkg/printers/printer_patch.go diff --git a/pkg/printers/printer_patch.go b/pkg/printers/printer_patch.go new file mode 100644 index 0000000000000..cba0760ef5808 --- /dev/null +++ b/pkg/printers/printer_patch.go @@ -0,0 +1,11 @@ +package printers + +import ( + "k8s.io/apimachinery/pkg/runtime" +) + +// we have this here so that we can provide the human readable printer since this bypasses the factory. + +type NewHumanReadablePrinterFunc func(encoder runtime.Encoder, decoder runtime.Decoder, options PrintOptions) *HumanReadablePrinter + +var NewHumanReadablePrinterFn NewHumanReadablePrinterFunc = NewHumanReadablePrinter diff --git a/pkg/printers/printers.go b/pkg/printers/printers.go index c956170355b9f..574f5f94d1ee1 100644 --- a/pkg/printers/printers.go +++ b/pkg/printers/printers.go @@ -124,7 +124,7 @@ func GetStandardPrinter(outputOpts *OutputOptions, noHeaders bool, mapper meta.R fallthrough case "": - printer = NewHumanReadablePrinter(encoder, decoders[0], options) + printer = NewHumanReadablePrinterFn(encoder, decoders[0], options) default: return nil, fmt.Errorf("output format %q not recognized", format) } From 748eece17cc9f4c7aaa2312ab4ced66b361b8ee5 Mon Sep 17 00:00:00 2001 From: deads2k Date: Mon, 10 Jul 2017 16:31:02 -0400 Subject: [PATCH 24/78] UPSTREAM: : increase wait in kubecontrollers :100644 100644 f30df0fa2e... 0c114a330a... M cmd/kube-controller-manager/app/controllermanager.go :100644 100644 491366288b... 74f4dec20e... M pkg/controller/client_builder.go :100644 100644 e6d1b91001... 7be7278c9d... M pkg/master/client_ca_hook.go --- cmd/kube-controller-manager/app/controllermanager.go | 2 +- pkg/controller/client_builder.go | 2 +- pkg/master/client_ca_hook.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/kube-controller-manager/app/controllermanager.go b/cmd/kube-controller-manager/app/controllermanager.go index 3cbf9fd055cdb..bf1a9a1c3bc34 100644 --- a/cmd/kube-controller-manager/app/controllermanager.go +++ b/cmd/kube-controller-manager/app/controllermanager.go @@ -371,7 +371,7 @@ func GetAvailableResources(clientBuilder controller.ControllerClientBuilder) (ma var healthzContent string // If apiserver is not running we should wait for some time and fail only then. This is particularly // important when we start apiserver and controller manager at the same time. - err := wait.PollImmediate(time.Second, 10*time.Second, func() (bool, error) { + err := wait.PollImmediate(time.Second, 5*time.Minute, func() (bool, error) { client, err := clientBuilder.Client("controller-discovery") if err != nil { glog.Errorf("Failed to get api versions from server: %v", err) diff --git a/pkg/controller/client_builder.go b/pkg/controller/client_builder.go index df873fb3e50ac..463bf99f86fba 100644 --- a/pkg/controller/client_builder.go +++ b/pkg/controller/client_builder.go @@ -140,7 +140,7 @@ func (b SAControllerClientBuilder) Config(name string) (*restclient.Config, erro return b.CoreClient.Secrets(b.Namespace).Watch(options) }, } - _, err = cache.ListWatchUntil(30*time.Second, lw, + _, err = cache.ListWatchUntil(2*time.Minute, lw, func(event watch.Event) (bool, error) { switch event.Type { case watch.Deleted: diff --git a/pkg/master/client_ca_hook.go b/pkg/master/client_ca_hook.go index 3a2780c92a7b5..992d20a6ef516 100644 --- a/pkg/master/client_ca_hook.go +++ b/pkg/master/client_ca_hook.go @@ -49,7 +49,7 @@ func (h ClientCARegistrationHook) PostStartHook(hookContext genericapiserver.Pos // initializing CAs is important so that aggregated API servers can come up with "normal" config. // We've seen lagging etcd before, so we want to retry this a few times before we decide to crashloop // the API server on it. - err := wait.Poll(1*time.Second, 30*time.Second, func() (done bool, err error) { + err := wait.Poll(1*time.Second, 5*time.Minute, func() (done bool, err error) { // retry building the config since sometimes the server can be in an inbetween state which caused // some kind of auto detection failure as I recall from other post start hooks. // TODO see if this is still true and fix the RBAC one too if it isn't. From cc78573770ea206eff4907dc3fe94c6d4d01642c Mon Sep 17 00:00:00 2001 From: deads2k Date: Thu, 15 Jun 2017 15:38:51 -0400 Subject: [PATCH 25/78] UPSTREAM: : add patch to allow shimming SCC :000000 100644 0000000000... b684356ed4... A pkg/registry/core/rest/scc_patch.go :100644 100644 66e2a7be20... ea1028e61e... M pkg/registry/core/rest/storage_core.go --- pkg/registry/core/rest/scc_patch.go | 18 ++++++++++++++++++ pkg/registry/core/rest/storage_core.go | 2 +- .../apimachinery/pkg/api/meta/restmapper.go | 1 + 3 files changed, 20 insertions(+), 1 deletion(-) create mode 100644 pkg/registry/core/rest/scc_patch.go diff --git a/pkg/registry/core/rest/scc_patch.go b/pkg/registry/core/rest/scc_patch.go new file mode 100644 index 0000000000000..b684356ed4f13 --- /dev/null +++ b/pkg/registry/core/rest/scc_patch.go @@ -0,0 +1,18 @@ +package rest + +import ( + "k8s.io/apiserver/pkg/registry/rest" +) + +// LegacyStorageMutatorFunc allows someone to mutate the storage. We use this to add SCCs. +type LegacyStorageMutatorFunc func(restStorage map[string]rest.Storage) map[string]rest.Storage + +var LegacyStorageMutatorFn LegacyStorageMutatorFunc = nil + +func patchStorage(restStorage map[string]rest.Storage) map[string]rest.Storage { + if LegacyStorageMutatorFn == nil { + return restStorage + } + + return LegacyStorageMutatorFn(restStorage) +} diff --git a/pkg/registry/core/rest/storage_core.go b/pkg/registry/core/rest/storage_core.go index bffdc40c5378a..b0da75e16b92a 100644 --- a/pkg/registry/core/rest/storage_core.go +++ b/pkg/registry/core/rest/storage_core.go @@ -222,7 +222,7 @@ func (c LegacyRESTStorageProvider) NewLegacyRESTStorage(restOptionsGetter generi if api.Registry.IsEnabledVersion(schema.GroupVersion{Group: "policy", Version: "v1beta1"}) { restStorageMap["pods/eviction"] = podStorage.Eviction } - apiGroupInfo.VersionedResourcesStorageMap["v1"] = restStorageMap + apiGroupInfo.VersionedResourcesStorageMap["v1"] = patchStorage(restStorageMap) return restStorage, apiGroupInfo, nil } diff --git a/staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper.go b/staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper.go index 55155a6e43787..f81d47feee179 100644 --- a/staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper.go +++ b/staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper.go @@ -137,6 +137,7 @@ func (m *DefaultRESTMapper) AddSpecific(kind schema.GroupVersionKind, plural, si // callers to use the RESTMapper they mean. var unpluralizedSuffixes = []string{ "endpoints", + "securitycontextconstraints", } // UnsafeGuessKindToResource converts Kind to a resource name. From 1a4fa814b54101d23d083a87d04cd0cf1002f238 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Thu, 13 Jul 2017 12:36:04 -0400 Subject: [PATCH 26/78] UPSTREAM: 48884: Do not mutate pods on update They fail validation :100644 100644 0d71f127ab... 6d49746c08... M plugin/pkg/admission/alwayspullimages/admission.go :100644 100644 e291e6e669... f22fb59942... M plugin/pkg/admission/alwayspullimages/admission_test.go --- .../admission/alwayspullimages/admission.go | 2 +- .../alwayspullimages/admission_test.go | 32 +++++++++++++++++++ 2 files changed, 33 insertions(+), 1 deletion(-) diff --git a/plugin/pkg/admission/alwayspullimages/admission.go b/plugin/pkg/admission/alwayspullimages/admission.go index 0d71f127abff2..6d49746c08a74 100644 --- a/plugin/pkg/admission/alwayspullimages/admission.go +++ b/plugin/pkg/admission/alwayspullimages/admission.go @@ -69,6 +69,6 @@ func (a *alwaysPullImages) Admit(attributes admission.Attributes) (err error) { // NewAlwaysPullImages creates a new always pull images admission control handler func NewAlwaysPullImages() admission.Interface { return &alwaysPullImages{ - Handler: admission.NewHandler(admission.Create, admission.Update), + Handler: admission.NewHandler(admission.Create), } } diff --git a/plugin/pkg/admission/alwayspullimages/admission_test.go b/plugin/pkg/admission/alwayspullimages/admission_test.go index e291e6e669c45..f22fb59942462 100644 --- a/plugin/pkg/admission/alwayspullimages/admission_test.go +++ b/plugin/pkg/admission/alwayspullimages/admission_test.go @@ -17,6 +17,7 @@ limitations under the License. package alwayspullimages import ( + "reflect" "testing" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" @@ -63,6 +64,37 @@ func TestAdmission(t *testing.T) { } } +func TestAdmissionOnUpdate(t *testing.T) { + namespace := "test" + handler := &alwaysPullImages{} + pod := &api.Pod{ + ObjectMeta: metav1.ObjectMeta{Name: "123", Namespace: namespace}, + Spec: api.PodSpec{ + InitContainers: []api.Container{ + {Name: "init1", Image: "image"}, + {Name: "init2", Image: "image", ImagePullPolicy: api.PullNever}, + {Name: "init3", Image: "image", ImagePullPolicy: api.PullIfNotPresent}, + {Name: "init4", Image: "image", ImagePullPolicy: api.PullAlways}, + }, + Containers: []api.Container{ + {Name: "ctr1", Image: "image"}, + {Name: "ctr2", Image: "image", ImagePullPolicy: api.PullNever}, + {Name: "ctr3", Image: "image", ImagePullPolicy: api.PullIfNotPresent}, + {Name: "ctr4", Image: "image", ImagePullPolicy: api.PullAlways}, + }, + }, + } + copied, _ := api.Scheme.Copy(pod) + original := copied.(*api.Pod) + err := handler.Admit(admission.NewAttributesRecord(pod, nil, api.Kind("Pod").WithVersion("version"), pod.Namespace, pod.Name, api.Resource("pods").WithVersion("version"), "", admission.Update, nil)) + if err != nil { + t.Errorf("Unexpected error returned from admission handler") + } + if !reflect.DeepEqual(copied, original) { + t.Fatalf("Pod should not be modified on update") + } +} + // TestOtherResources ensures that this admission controller is a no-op for other resources, // subresources, and non-pods. func TestOtherResources(t *testing.T) { From ffd176370d86b78c01d55709824955300b694f46 Mon Sep 17 00:00:00 2001 From: deads2k Date: Thu, 20 Jul 2017 13:56:56 -0400 Subject: [PATCH 27/78] UPSTREAM: 49312: allow the /version endpoint to pass through :100644 100644 9708277f37... 7ad9d21e27... M staging/src/k8s.io/apiserver/pkg/server/config.go :100644 100644 dd9ab0dcfe... fcaec9e519... M staging/src/k8s.io/apiserver/pkg/server/routes/version.go --- .../src/k8s.io/apiserver/pkg/server/config.go | 5 ++-- .../apiserver/pkg/server/routes/version.go | 28 ++++--------------- 2 files changed, 9 insertions(+), 24 deletions(-) diff --git a/staging/src/k8s.io/apiserver/pkg/server/config.go b/staging/src/k8s.io/apiserver/pkg/server/config.go index 69c0e4497eb3b..9fa52a0021c0a 100644 --- a/staging/src/k8s.io/apiserver/pkg/server/config.go +++ b/staging/src/k8s.io/apiserver/pkg/server/config.go @@ -551,8 +551,9 @@ func installAPI(s *GenericAPIServer, c *Config) { routes.DefaultMetrics{}.Install(s.Handler.NonGoRestfulMux) } } - routes.Version{Version: c.Version}.Install(s.Handler.GoRestfulContainer) - + if c.Version != nil { + routes.Version{Version: c.Version}.Install(s.Handler.NonGoRestfulMux) + } if c.EnableDiscovery { s.Handler.GoRestfulContainer.Add(s.DiscoveryGroupManager.WebService()) } diff --git a/staging/src/k8s.io/apiserver/pkg/server/routes/version.go b/staging/src/k8s.io/apiserver/pkg/server/routes/version.go index dd9ab0dcfe567..fcaec9e519e45 100644 --- a/staging/src/k8s.io/apiserver/pkg/server/routes/version.go +++ b/staging/src/k8s.io/apiserver/pkg/server/routes/version.go @@ -19,10 +19,9 @@ package routes import ( "net/http" - "github.com/emicklei/go-restful" - "k8s.io/apimachinery/pkg/version" "k8s.io/apiserver/pkg/endpoints/handlers/responsewriters" + "k8s.io/apiserver/pkg/server/mux" ) // Version provides a webservice with version information. @@ -31,27 +30,12 @@ type Version struct { } // Install registers the APIServer's `/version` handler. -func (v Version) Install(c *restful.Container) { - if v.Version == nil { - return - } - - // Set up a service to return the git code version. - versionWS := new(restful.WebService) - versionWS.Path("/version") - versionWS.Doc("git code version from which this is built") - versionWS.Route( - versionWS.GET("/").To(v.handleVersion). - Doc("get the code version"). - Operation("getCodeVersion"). - Produces(restful.MIME_JSON). - Consumes(restful.MIME_JSON). - Writes(version.Info{})) - - c.Add(versionWS) +func (v Version) Install(c *mux.PathRecorderMux) { + c.Handle("/version", v) + c.UnlistedHandle("/version/", v) } // handleVersion writes the server's version information. -func (v Version) handleVersion(req *restful.Request, resp *restful.Response) { - responsewriters.WriteRawJSON(http.StatusOK, *v.Version, resp.ResponseWriter) +func (v Version) ServeHTTP(w http.ResponseWriter, req *http.Request) { + responsewriters.WriteRawJSON(http.StatusOK, *v.Version, w) } From 51f05b393187388f7be1894508b675b5a1177b6e Mon Sep 17 00:00:00 2001 From: Maciej Szulik Date: Mon, 18 Sep 2017 16:06:24 +0200 Subject: [PATCH 28/78] UPSTREAM: : increase timeout in TestCancelAndReadd even more :100644 100644 31228219fe... 72987e330d... M pkg/controller/node/timed_workers_test.go --- pkg/controller/node/scheduler/timed_workers_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/controller/node/scheduler/timed_workers_test.go b/pkg/controller/node/scheduler/timed_workers_test.go index 6003b07a6973c..9489fd184370f 100644 --- a/pkg/controller/node/scheduler/timed_workers_test.go +++ b/pkg/controller/node/scheduler/timed_workers_test.go @@ -61,7 +61,7 @@ func TestExecuteDelayed(t *testing.T) { return nil }) now := time.Now() - then := now.Add(time.Second) + then := now.Add(10 * time.Second) queue.AddWork(NewWorkArgs("1", "1"), now, then) queue.AddWork(NewWorkArgs("2", "2"), now, then) queue.AddWork(NewWorkArgs("3", "3"), now, then) @@ -89,7 +89,7 @@ func TestCancel(t *testing.T) { return nil }) now := time.Now() - then := now.Add(time.Second) + then := now.Add(10 * time.Second) queue.AddWork(NewWorkArgs("1", "1"), now, then) queue.AddWork(NewWorkArgs("2", "2"), now, then) queue.AddWork(NewWorkArgs("3", "3"), now, then) @@ -119,7 +119,7 @@ func TestCancelAndReadd(t *testing.T) { return nil }) now := time.Now() - then := now.Add(time.Second) + then := now.Add(10 * time.Second) queue.AddWork(NewWorkArgs("1", "1"), now, then) queue.AddWork(NewWorkArgs("2", "2"), now, then) queue.AddWork(NewWorkArgs("3", "3"), now, then) From 2dd69bc6271e466b46e4281d8abfb2ee9f7466b5 Mon Sep 17 00:00:00 2001 From: David Eads Date: Mon, 2 Oct 2017 11:06:05 -0400 Subject: [PATCH 29/78] UPSTREAM: : allow a filter function on admission registration :000000 100644 0000000000... 748bed00fb... A staging/src/k8s.io/apiserver/pkg/admission/patch.go :100644 100644 dd1368d4dd... 0e422f990c... M staging/src/k8s.io/apiserver/pkg/admission/plugins.go --- staging/src/k8s.io/apiserver/pkg/admission/patch.go | 9 +++++++++ staging/src/k8s.io/apiserver/pkg/admission/plugins.go | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 staging/src/k8s.io/apiserver/pkg/admission/patch.go diff --git a/staging/src/k8s.io/apiserver/pkg/admission/patch.go b/staging/src/k8s.io/apiserver/pkg/admission/patch.go new file mode 100644 index 0000000000000..748bed00fbb1f --- /dev/null +++ b/staging/src/k8s.io/apiserver/pkg/admission/patch.go @@ -0,0 +1,9 @@ +package admission + +var ( + // FactoryFilterFn allows the injection of a global filter on all admission factory function. This allows + // us to inject a filtering function for things like config rewriting just before construction. + FactoryFilterFn func(Factory) Factory = func(delegate Factory) Factory { + return delegate + } +) diff --git a/staging/src/k8s.io/apiserver/pkg/admission/plugins.go b/staging/src/k8s.io/apiserver/pkg/admission/plugins.go index 5ddfc7e1f84b7..76930f58b8f30 100644 --- a/staging/src/k8s.io/apiserver/pkg/admission/plugins.go +++ b/staging/src/k8s.io/apiserver/pkg/admission/plugins.go @@ -100,7 +100,7 @@ func (ps *Plugins) getPlugin(name string, config io.Reader) (Interface, bool, er return nil, true, nil } - ret, err := f(config2) + ret, err := FactoryFilterFn(f)(config2) return ret, true, err } From 01f114a96666821df067f598fdfa98a7a2831b4b Mon Sep 17 00:00:00 2001 From: Seth Jennings Date: Sun, 1 Oct 2017 22:42:30 -0500 Subject: [PATCH 30/78] UPSTREAM: 53318: create separate transports for liveness and readiness probes :100644 100644 9cff34a208... 37a94b06ac... M pkg/kubelet/prober/prober.go --- pkg/kubelet/prober/prober.go | 39 ++++++++++++++++++++++-------------- 1 file changed, 24 insertions(+), 15 deletions(-) diff --git a/pkg/kubelet/prober/prober.go b/pkg/kubelet/prober/prober.go index 076d5b676c526..d81ee8f377efa 100644 --- a/pkg/kubelet/prober/prober.go +++ b/pkg/kubelet/prober/prober.go @@ -46,10 +46,14 @@ const maxProbeRetries = 3 // Prober helps to check the liveness/readiness of a container. type prober struct { - exec execprobe.ExecProber - http httprobe.HTTPProber - tcp tcprobe.TCPProber - runner kubecontainer.ContainerCommandRunner + exec execprobe.ExecProber + // probe types needs different httprobe instances so they don't + // share a connection pool which can cause collsions to the + // same host:port and transient failures. See #49740. + readinessHttp httprobe.HTTPProber + livenessHttp httprobe.HTTPProber + tcp tcprobe.TCPProber + runner kubecontainer.ContainerCommandRunner refManager *kubecontainer.RefManager recorder record.EventRecorder @@ -63,12 +67,13 @@ func newProber( recorder record.EventRecorder) *prober { return &prober{ - exec: execprobe.New(), - http: httprobe.New(), - tcp: tcprobe.New(), - runner: runner, - refManager: refManager, - recorder: recorder, + exec: execprobe.New(), + readinessHttp: httprobe.New(), + livenessHttp: httprobe.New(), + tcp: tcprobe.New(), + runner: runner, + refManager: refManager, + recorder: recorder, } } @@ -90,7 +95,7 @@ func (pb *prober) probe(probeType probeType, pod *v1.Pod, status v1.PodStatus, c return results.Success, nil } - result, output, err := pb.runProbeWithRetries(probeSpec, pod, status, container, containerID, maxProbeRetries) + result, output, err := pb.runProbeWithRetries(probeType, probeSpec, pod, status, container, containerID, maxProbeRetries) if err != nil || result != probe.Success { // Probe failed in one way or another. ref, hasRef := pb.refManager.GetRef(containerID) @@ -116,12 +121,12 @@ func (pb *prober) probe(probeType probeType, pod *v1.Pod, status v1.PodStatus, c // runProbeWithRetries tries to probe the container in a finite loop, it returns the last result // if it never succeeds. -func (pb *prober) runProbeWithRetries(p *v1.Probe, pod *v1.Pod, status v1.PodStatus, container v1.Container, containerID kubecontainer.ContainerID, retries int) (probe.Result, string, error) { +func (pb *prober) runProbeWithRetries(probeType probeType, p *v1.Probe, pod *v1.Pod, status v1.PodStatus, container v1.Container, containerID kubecontainer.ContainerID, retries int) (probe.Result, string, error) { var err error var result probe.Result var output string for i := 0; i < retries; i++ { - result, output, err = pb.runProbe(p, pod, status, container, containerID) + result, output, err = pb.runProbe(probeType, p, pod, status, container, containerID) if err == nil { return result, output, nil } @@ -139,7 +144,7 @@ func buildHeader(headerList []v1.HTTPHeader) http.Header { return headers } -func (pb *prober) runProbe(p *v1.Probe, pod *v1.Pod, status v1.PodStatus, container v1.Container, containerID kubecontainer.ContainerID) (probe.Result, string, error) { +func (pb *prober) runProbe(probeType probeType, p *v1.Probe, pod *v1.Pod, status v1.PodStatus, container v1.Container, containerID kubecontainer.ContainerID) (probe.Result, string, error) { timeout := time.Duration(p.TimeoutSeconds) * time.Second if p.Exec != nil { glog.V(4).Infof("Exec-Probe Pod: %v, Container: %v, Command: %v", pod, container, p.Exec.Command) @@ -161,7 +166,11 @@ func (pb *prober) runProbe(p *v1.Probe, pod *v1.Pod, status v1.PodStatus, contai url := formatURL(scheme, host, port, path) headers := buildHeader(p.HTTPGet.HTTPHeaders) glog.V(4).Infof("HTTP-Probe Headers: %v", headers) - return pb.http.Probe(url, headers, timeout) + if probeType == liveness { + return pb.livenessHttp.Probe(url, headers, timeout) + } else { // readiness + return pb.readinessHttp.Probe(url, headers, timeout) + } } if p.TCPSocket != nil { port, err := extractPort(p.TCPSocket.Port, container) From 66fa72c688f23b2f6cab06e13df50f3c52a42f0f Mon Sep 17 00:00:00 2001 From: Dan Williams Date: Tue, 20 Jun 2017 13:35:38 -0500 Subject: [PATCH 31/78] UPSTREAM: 47806: kubelet: fix inconsistent display of terminated pod IPs by using events instead PLEG and kubelet race when reading and sending pod status to the apiserver. PLEG inserts status into a cache, and then signals kubelet. Kubelet then eventually reads the status out of that cache, but in the mean time the status could have been changed by PLEG. When a pod exits, pod status will no longer include the pod's IP address because the network plugin/runtime will report "" for terminated pod IPs. If this status gets inserted into the PLEG cache before kubelet gets the status out of the cache, kubelet will see a blank pod IP address. This happens in about 1/5 of cases when pods are short-lived, and somewhat less frequently for longer running pods. To ensure consistency for properties of dead pods, copy an old status update's IP address over to the new status update if (a) the new status update's IP is missing and (b) all sandboxes of the pod are dead/not-ready (eg, no possibility for a valid IP from the sandbox). Fixes: https://github.com/kubernetes/kubernetes/issues/47265 Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1449373 :100644 100644 6ad5cae0e5... e907644f61... M pkg/kubelet/pleg/BUILD :100644 100644 8e447f0ef8... 6c6c980c3d... M pkg/kubelet/pleg/generic.go :100644 100644 f5fd5635ca... 468f98bffa... M pkg/kubelet/pleg/generic_test.go --- pkg/kubelet/pleg/BUILD | 1 + pkg/kubelet/pleg/generic.go | 44 +++++++++++++++++++++++++ pkg/kubelet/pleg/generic_test.go | 55 ++++++++++++++++++++++++++++++++ 3 files changed, 100 insertions(+) diff --git a/pkg/kubelet/pleg/BUILD b/pkg/kubelet/pleg/BUILD index 4bf6c7a7550b2..5d847199f2c91 100644 --- a/pkg/kubelet/pleg/BUILD +++ b/pkg/kubelet/pleg/BUILD @@ -14,6 +14,7 @@ go_library( "pleg.go", ], deps = [ + "//pkg/kubelet/apis/cri/v1alpha1/runtime:go_default_library", "//pkg/kubelet/container:go_default_library", "//pkg/kubelet/metrics:go_default_library", "//vendor/github.com/golang/glog:go_default_library", diff --git a/pkg/kubelet/pleg/generic.go b/pkg/kubelet/pleg/generic.go index e12509f4b546c..2d8a9a0c13d8e 100644 --- a/pkg/kubelet/pleg/generic.go +++ b/pkg/kubelet/pleg/generic.go @@ -26,6 +26,7 @@ import ( "k8s.io/apimachinery/pkg/util/clock" "k8s.io/apimachinery/pkg/util/sets" "k8s.io/apimachinery/pkg/util/wait" + runtimeapi "k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime" kubecontainer "k8s.io/kubernetes/pkg/kubelet/container" "k8s.io/kubernetes/pkg/kubelet/metrics" ) @@ -329,6 +330,41 @@ func (g *GenericPLEG) cacheEnabled() bool { return g.cache != nil } +// Preserve an older cached status' pod IP if the new status has no pod IP +// and its sandboxes have exited +func (g *GenericPLEG) getPodIP(pid types.UID, status *kubecontainer.PodStatus) string { + if status.IP != "" { + return status.IP + } + + oldStatus, err := g.cache.Get(pid) + if err != nil || oldStatus.IP == "" { + return "" + } + + for _, sandboxStatus := range status.SandboxStatuses { + // If at least one sandbox is ready, then use this status update's pod IP + if sandboxStatus.State == runtimeapi.PodSandboxState_SANDBOX_READY { + return status.IP + } + } + + if len(status.SandboxStatuses) == 0 { + // Without sandboxes (which built-in runtimes like rkt don't report) + // look at all the container statuses, and if any containers are + // running then use the new pod IP + for _, containerStatus := range status.ContainerStatuses { + if containerStatus.State == kubecontainer.ContainerStateCreated || containerStatus.State == kubecontainer.ContainerStateRunning { + return status.IP + } + } + } + + // For pods with no ready containers or sandboxes (like exited pods) + // use the old status' pod IP + return oldStatus.IP +} + func (g *GenericPLEG) updateCache(pod *kubecontainer.Pod, pid types.UID) error { if pod == nil { // The pod is missing in the current relist. This means that @@ -343,6 +379,14 @@ func (g *GenericPLEG) updateCache(pod *kubecontainer.Pod, pid types.UID) error { // all containers again. status, err := g.runtime.GetPodStatus(pod.ID, pod.Name, pod.Namespace) glog.V(4).Infof("PLEG: Write status for %s/%s: %#v (err: %v)", pod.Name, pod.Namespace, status, err) + if err == nil { + // Preserve the pod IP across cache updates if the new IP is empty. + // When a pod is torn down, kubelet may race with PLEG and retrieve + // a pod status after network teardown, but the kubernetes API expects + // the completed pod's IP to be available after the pod is dead. + status.IP = g.getPodIP(pid, status) + } + g.cache.Set(pod.ID, status, err, timestamp) return err } diff --git a/pkg/kubelet/pleg/generic_test.go b/pkg/kubelet/pleg/generic_test.go index f5fd5635ca293..468f98bffaeef 100644 --- a/pkg/kubelet/pleg/generic_test.go +++ b/pkg/kubelet/pleg/generic_test.go @@ -496,3 +496,58 @@ func TestRelistingWithSandboxes(t *testing.T) { actual = getEventsFromChannel(ch) verifyEvents(t, expected, actual) } + +func TestRelistIPChange(t *testing.T) { + pleg, runtimeMock := newTestGenericPLEGWithRuntimeMock() + ch := pleg.Watch() + + id := types.UID("test-pod-0") + cState := kubecontainer.ContainerStateRunning + container := createTestContainer("c0", cState) + pod := &kubecontainer.Pod{ + ID: id, + Containers: []*kubecontainer.Container{container}, + } + ipAddr := "192.168.1.5/24" + status := &kubecontainer.PodStatus{ + ID: id, + IP: ipAddr, + ContainerStatuses: []*kubecontainer.ContainerStatus{{ID: container.ID, State: cState}}, + } + event := &PodLifecycleEvent{ID: pod.ID, Type: ContainerStarted, Data: container.ID.ID} + + runtimeMock.On("GetPods", true).Return([]*kubecontainer.Pod{pod}, nil).Once() + runtimeMock.On("GetPodStatus", pod.ID, "", "").Return(status, nil).Once() + + pleg.relist() + actualEvents := getEventsFromChannel(ch) + actualStatus, actualErr := pleg.cache.Get(pod.ID) + assert.Equal(t, status, actualStatus, "test0") + assert.Nil(t, actualErr, "test0") + assert.Exactly(t, []*PodLifecycleEvent{event}, actualEvents) + + // Clear the IP address and mark the container terminated + container = createTestContainer("c0", kubecontainer.ContainerStateExited) + pod = &kubecontainer.Pod{ + ID: id, + Containers: []*kubecontainer.Container{container}, + } + status = &kubecontainer.PodStatus{ + ID: id, + ContainerStatuses: []*kubecontainer.ContainerStatus{{ID: container.ID, State: kubecontainer.ContainerStateExited}}, + } + event = &PodLifecycleEvent{ID: pod.ID, Type: ContainerDied, Data: container.ID.ID} + runtimeMock.On("GetPods", true).Return([]*kubecontainer.Pod{pod}, nil).Once() + runtimeMock.On("GetPodStatus", pod.ID, "", "").Return(status, nil).Once() + + pleg.relist() + actualEvents = getEventsFromChannel(ch) + actualStatus, actualErr = pleg.cache.Get(pod.ID) + // Must copy status to compare since its pointer gets passed through all + // the way to the event + statusCopy := *status + statusCopy.IP = ipAddr + assert.Equal(t, &statusCopy, actualStatus, "test0") + assert.Nil(t, actualErr, "test0") + assert.Exactly(t, []*PodLifecycleEvent{event}, actualEvents) +} From 6a6ffb4c95d14e8039d75e005495432d348dd3d2 Mon Sep 17 00:00:00 2001 From: deads2k Date: Wed, 14 Jun 2017 15:20:18 -0400 Subject: [PATCH 32/78] UPSTREAM: : ignored namespace lifecycle resources --- .../plugin/namespace/lifecycle/admission.go | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission.go b/staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission.go index 20e7bd88d179c..6b3599ef3e37b 100644 --- a/staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission.go +++ b/staging/src/k8s.io/apiserver/pkg/admission/plugin/namespace/lifecycle/admission.go @@ -225,7 +225,19 @@ func (l *lifecycle) Validate() error { // accessReviewResources are resources which give a view into permissions in a namespace. Users must be allowed to create these // resources because returning "not found" errors allows someone to search for the "people I'm going to fire in 2017" namespace. var accessReviewResources = map[schema.GroupResource]bool{ - {Group: "authorization.k8s.io", Resource: "localsubjectaccessreviews"}: true, + {Group: "authorization.k8s.io", Resource: "localsubjectaccessreviews"}: true, + schema.GroupResource{Group: "", Resource: "subjectaccessreviews"}: true, + schema.GroupResource{Group: "", Resource: "localsubjectaccessreviews"}: true, + schema.GroupResource{Group: "", Resource: "resourceaccessreviews"}: true, + schema.GroupResource{Group: "", Resource: "localresourceaccessreviews"}: true, + schema.GroupResource{Group: "", Resource: "selfsubjectrulesreviews"}: true, + schema.GroupResource{Group: "", Resource: "subjectrulesreviews"}: true, + schema.GroupResource{Group: "authorization.openshift.io", Resource: "subjectaccessreviews"}: true, + schema.GroupResource{Group: "authorization.openshift.io", Resource: "localsubjectaccessreviews"}: true, + schema.GroupResource{Group: "authorization.openshift.io", Resource: "resourceaccessreviews"}: true, + schema.GroupResource{Group: "authorization.openshift.io", Resource: "localresourceaccessreviews"}: true, + schema.GroupResource{Group: "authorization.openshift.io", Resource: "selfsubjectrulesreviews"}: true, + schema.GroupResource{Group: "authorization.openshift.io", Resource: "subjectrulesreviews"}: true, } func isAccessReview(a admission.Attributes) bool { From beddf38fa7b5cb0178c217ad54b3f97286f28ee7 Mon Sep 17 00:00:00 2001 From: Maciej Szulik Date: Mon, 2 Oct 2017 16:40:30 +0200 Subject: [PATCH 33/78] UPSTREAM: : openapi generation for createNamespacedDeploymentConfigRollback duplication problem :100644 100644 a057bae837... 8b7d55030e... M staging/src/k8s.io/apiserver/pkg/endpoints/openapi/openapi.go --- staging/src/k8s.io/apiserver/pkg/endpoints/openapi/openapi.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/staging/src/k8s.io/apiserver/pkg/endpoints/openapi/openapi.go b/staging/src/k8s.io/apiserver/pkg/endpoints/openapi/openapi.go index 7b8f3589e02df..ff9c4e98977d4 100644 --- a/staging/src/k8s.io/apiserver/pkg/endpoints/openapi/openapi.go +++ b/staging/src/k8s.io/apiserver/pkg/endpoints/openapi/openapi.go @@ -63,6 +63,10 @@ func GetOperationIDAndTags(r *restful.Route) (string, []string, error) { op := r.Operation path := r.Path var tags []string + // FIXME: this is hacky way to get rid of conflict name + if strings.HasPrefix(path, "/oapi/v1/namespaces/{namespace}/deploymentconfigs/{name}/rollback") { + op = op + "Rollback" + } prefix, exists := verbs.GetPrefix(op) if !exists { return op, tags, fmt.Errorf("operation names should start with a verb. Cannot determine operation verb from %v", op) From 17378310e88cfe7485c44a694e957b7c187e61b8 Mon Sep 17 00:00:00 2001 From: David Eads Date: Thu, 7 Sep 2017 14:13:51 -0400 Subject: [PATCH 34/78] UPSTREAM: : allow controller context injection to share informers :100644 100644 4e77a7f0ef... 4eb9ac68a4... M cmd/kube-controller-manager/app/controllermanager.go :000000 100644 0000000000... 02ce021eee... A cmd/kube-controller-manager/app/patch.go --- .../app/controllermanager.go | 14 ++++++++++---- cmd/kube-controller-manager/app/patch.go | 12 ++++++++++++ 2 files changed, 22 insertions(+), 4 deletions(-) create mode 100644 cmd/kube-controller-manager/app/patch.go diff --git a/cmd/kube-controller-manager/app/controllermanager.go b/cmd/kube-controller-manager/app/controllermanager.go index bf1a9a1c3bc34..52116f90d69b0 100644 --- a/cmd/kube-controller-manager/app/controllermanager.go +++ b/cmd/kube-controller-manager/app/controllermanager.go @@ -122,7 +122,9 @@ func Run(s *options.CMServer) error { return err } - go startHTTP(s) + if s.Port >= 0 { + go startHTTP(s) + } recorder := createRecorder(kubeClient) @@ -156,7 +158,11 @@ func Run(s *options.CMServer) error { glog.Fatalf("error starting controllers: %v", err) } - ctx.InformerFactory.Start(ctx.Stop) + if StartInformers == nil { + ctx.InformerFactory.Start(ctx.Stop) + } else { + StartInformers(ctx.Stop) + } close(ctx.InformersStarted) select {} @@ -416,10 +422,10 @@ func GetAvailableResources(clientBuilder controller.ControllerClientBuilder) (ma return allResources, nil } -// CreateControllerContext creates a context struct containing references to resources needed by the +// createControllerContext creates a context struct containing references to resources needed by the // controllers such as the cloud provider and clientBuilder. rootClientBuilder is only used for // the shared-informers client and token controller. -func CreateControllerContext(s *options.CMServer, rootClientBuilder, clientBuilder controller.ControllerClientBuilder, stop <-chan struct{}) (ControllerContext, error) { +func createControllerContext(s *options.CMServer, rootClientBuilder, clientBuilder controller.ControllerClientBuilder, stop <-chan struct{}) (ControllerContext, error) { versionedClient := rootClientBuilder.ClientOrDie("shared-informers") sharedInformers := informers.NewSharedInformerFactory(versionedClient, ResyncPeriod(s)()) diff --git a/cmd/kube-controller-manager/app/patch.go b/cmd/kube-controller-manager/app/patch.go new file mode 100644 index 0000000000000..02ce021eee48d --- /dev/null +++ b/cmd/kube-controller-manager/app/patch.go @@ -0,0 +1,12 @@ +package app + +import ( + "k8s.io/kubernetes/cmd/kube-controller-manager/app/options" + "k8s.io/kubernetes/pkg/controller" +) + +// This allows overriding from inside the same process. It's not pretty, but its fairly easy to maintain because conflicts are small. +var CreateControllerContext func(s *options.CMServer, rootClientBuilder, clientBuilder controller.ControllerClientBuilder, stop <-chan struct{}) (ControllerContext, error) = createControllerContext + +// StartInformers allows overriding inside of the same process. +var StartInformers func(stop <-chan struct{}) = nil From e7702b7448864f6205497e4450e5a714e78b8014 Mon Sep 17 00:00:00 2001 From: Michal Fojtik Date: Mon, 16 Oct 2017 16:11:55 +0200 Subject: [PATCH 35/78] UPSTREAM: : Fix to avoid REST API calls at log level 2 --- staging/src/k8s.io/apiserver/pkg/server/httplog/httplog.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/staging/src/k8s.io/apiserver/pkg/server/httplog/httplog.go b/staging/src/k8s.io/apiserver/pkg/server/httplog/httplog.go index 5939ccb043ad8..ee8e05f107f19 100644 --- a/staging/src/k8s.io/apiserver/pkg/server/httplog/httplog.go +++ b/staging/src/k8s.io/apiserver/pkg/server/httplog/httplog.go @@ -146,7 +146,7 @@ func (rl *respLogger) Addf(format string, data ...interface{}) { // Log is intended to be called once at the end of your request handler, via defer func (rl *respLogger) Log() { latency := time.Since(rl.startTime) - if glog.V(2) { + if glog.V(3) { if !rl.hijacked { glog.InfoDepth(1, fmt.Sprintf("%s %s: (%v) %v%v%v [%s %s]", rl.req.Method, rl.req.RequestURI, latency, rl.status, rl.statusStack, rl.addedInfo, rl.req.Header["User-Agent"], rl.req.RemoteAddr)) } else { From 2ee9e178cd9bb7ccae50070761da22e926896e47 Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Thu, 27 Jul 2017 15:19:57 -0400 Subject: [PATCH 36/78] UPSTREAM: : Do not error out on pods in kube-system Scheduling tests are too aggressive about the health of kube-system. :100644 100644 b6ef25dc75... 4192ffbea8... M test/e2e/scheduling/predicates.go --- test/e2e/scheduling/predicates.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/e2e/scheduling/predicates.go b/test/e2e/scheduling/predicates.go index 538273cccbfb8..929c988a8322e 100644 --- a/test/e2e/scheduling/predicates.go +++ b/test/e2e/scheduling/predicates.go @@ -100,11 +100,11 @@ var _ = SIGDescribe("SchedulerPredicates [Serial]", func() { } } - err = framework.WaitForPodsRunningReady(cs, metav1.NamespaceSystem, int32(systemPodsNo), 0, framework.PodReadyBeforeTimeout, ignoreLabels) - Expect(err).NotTo(HaveOccurred()) + // err = framework.WaitForPodsRunningReady(cs, metav1.NamespaceSystem, int32(systemPodsNo), 0, framework.PodReadyBeforeTimeout, ignoreLabels) + // Expect(err).NotTo(HaveOccurred()) - err = framework.WaitForPodsSuccess(cs, metav1.NamespaceSystem, framework.ImagePullerLabels, framework.ImagePrePullingTimeout) - Expect(err).NotTo(HaveOccurred()) + // err = framework.WaitForPodsSuccess(cs, metav1.NamespaceSystem, framework.ImagePullerLabels, imagePrePullingTimeout) + // Expect(err).NotTo(HaveOccurred()) for _, node := range nodeList.Items { framework.Logf("\nLogging pods the kubelet thinks is on node %v before test", node.Name) From 707e9c37526ba7ec122bbfb3a5d7c55e46afb84e Mon Sep 17 00:00:00 2001 From: Jacob Simpson Date: Wed, 16 Aug 2017 09:18:01 -0700 Subject: [PATCH 37/78] UPSTREAM: 53037: Verify client cert before reusing existing bootstrap --- cmd/kubeadm/app/node/csr.go | 2 +- cmd/kubelet/app/BUILD | 1 + cmd/kubelet/app/server.go | 9 +- hack/.golint_failures | 1 - pkg/kubelet/BUILD | 1 + pkg/kubelet/certificate/BUILD | 20 +- pkg/kubelet/certificate/bootstrap/BUILD | 4 +- .../certificate/bootstrap/bootstrap.go | 91 +++++-- pkg/kubelet/certificate/kubelet.go | 40 ++- pkg/kubelet/certificate/transport.go | 14 +- pkg/kubelet/certificate/transport_test.go | 31 ++- pkg/kubelet/kubelet.go | 5 +- pkg/kubelet/util/BUILD | 1 - staging/BUILD | 1 + .../k8s.io/client-go/tools/cache/listwatch.go | 10 +- .../k8s.io/client-go/util/certificate/BUILD | 65 +++++ .../k8s.io/client-go/util/certificate/OWNERS | 8 + .../util}/certificate/certificate_manager.go | 212 ++++++++------- .../certificate/certificate_manager_test.go | 249 ++++++++++++++++-- .../util}/certificate/certificate_store.go | 30 ++- .../certificate/certificate_store_test.go | 0 .../client-go/util/certificate}/csr/BUILD | 2 +- .../client-go/util/certificate}/csr/csr.go | 84 ++++-- .../util/certificate}/csr/csr_test.go | 0 24 files changed, 684 insertions(+), 197 deletions(-) create mode 100644 staging/src/k8s.io/client-go/util/certificate/BUILD create mode 100644 staging/src/k8s.io/client-go/util/certificate/OWNERS rename {pkg/kubelet => staging/src/k8s.io/client-go/util}/certificate/certificate_manager.go (65%) rename {pkg/kubelet => staging/src/k8s.io/client-go/util}/certificate/certificate_manager_test.go (78%) rename {pkg/kubelet => staging/src/k8s.io/client-go/util}/certificate/certificate_store.go (93%) rename {pkg/kubelet => staging/src/k8s.io/client-go/util}/certificate/certificate_store_test.go (100%) rename {pkg/kubelet/util => staging/src/k8s.io/client-go/util/certificate}/csr/BUILD (95%) rename {pkg/kubelet/util => staging/src/k8s.io/client-go/util/certificate}/csr/csr.go (71%) rename {pkg/kubelet/util => staging/src/k8s.io/client-go/util/certificate}/csr/csr_test.go (100%) diff --git a/cmd/kubeadm/app/node/csr.go b/cmd/kubeadm/app/node/csr.go index c488a0734c959..39cffe6594c68 100644 --- a/cmd/kubeadm/app/node/csr.go +++ b/cmd/kubeadm/app/node/csr.go @@ -22,8 +22,8 @@ import ( "k8s.io/apimachinery/pkg/types" clientcmdapi "k8s.io/client-go/tools/clientcmd/api" certutil "k8s.io/client-go/util/cert" + "k8s.io/client-go/util/certificate/csr" kubeconfigutil "k8s.io/kubernetes/cmd/kubeadm/app/util/kubeconfig" - "k8s.io/kubernetes/pkg/kubelet/util/csr" ) // CSRContextAndUser defines the context to use for the client certs in the kubelet kubeconfig file diff --git a/cmd/kubelet/app/BUILD b/cmd/kubelet/app/BUILD index ae004b5f48a5f..64269fd555e51 100644 --- a/cmd/kubelet/app/BUILD +++ b/cmd/kubelet/app/BUILD @@ -121,6 +121,7 @@ go_library( "//vendor/k8s.io/client-go/tools/clientcmd:go_default_library", "//vendor/k8s.io/client-go/tools/record:go_default_library", "//vendor/k8s.io/client-go/util/cert:go_default_library", + "//vendor/k8s.io/client-go/util/certificate:go_default_library", ] + select({ "@io_bazel_rules_go//go/platform:linux_amd64": [ "//vendor/golang.org/x/exp/inotify:go_default_library", diff --git a/cmd/kubelet/app/server.go b/cmd/kubelet/app/server.go index 406dba293f625..9a37c28dbc61b 100644 --- a/cmd/kubelet/app/server.go +++ b/cmd/kubelet/app/server.go @@ -52,6 +52,7 @@ import ( "k8s.io/client-go/tools/clientcmd" "k8s.io/client-go/tools/record" certutil "k8s.io/client-go/util/cert" + "k8s.io/client-go/util/certificate" "k8s.io/kubernetes/cmd/kubelet/app/options" "k8s.io/kubernetes/pkg/api" "k8s.io/kubernetes/pkg/capabilities" @@ -64,7 +65,7 @@ import ( kubeletscheme "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/scheme" kubeletconfigv1alpha1 "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1" "k8s.io/kubernetes/pkg/kubelet/cadvisor" - "k8s.io/kubernetes/pkg/kubelet/certificate" + kubeletcertificate "k8s.io/kubernetes/pkg/kubelet/certificate" "k8s.io/kubernetes/pkg/kubelet/certificate/bootstrap" "k8s.io/kubernetes/pkg/kubelet/cm" "k8s.io/kubernetes/pkg/kubelet/config" @@ -334,11 +335,13 @@ func run(s *options.KubeletServer, kubeDeps *kubelet.Dependencies) (err error) { var clientCertificateManager certificate.Manager if err == nil { if s.RotateCertificates && utilfeature.DefaultFeatureGate.Enabled(features.RotateKubeletClientCertificate) { - clientCertificateManager, err = certificate.NewKubeletClientCertificateManager(s.CertDirectory, nodeName, clientConfig.CertData, clientConfig.KeyData, clientConfig.CertFile, clientConfig.KeyFile) + clientCertificateManager, err = kubeletcertificate.NewKubeletClientCertificateManager(s.CertDirectory, nodeName, clientConfig.CertData, clientConfig.KeyData, clientConfig.CertFile, clientConfig.KeyFile) if err != nil { return err } - if err := certificate.UpdateTransport(wait.NeverStop, clientConfig, clientCertificateManager); err != nil { + // we set exitIfExpired to true because we use this client configuration to request new certs - if we are unable + // to request new certs, we will be unable to continue normal operation + if err := kubeletcertificate.UpdateTransport(wait.NeverStop, clientConfig, clientCertificateManager, true); err != nil { return err } } diff --git a/hack/.golint_failures b/hack/.golint_failures index 1b9a5d6fe3126..14942eb9a95b9 100644 --- a/hack/.golint_failures +++ b/hack/.golint_failures @@ -231,7 +231,6 @@ pkg/kubelet/apis/kubeletconfig pkg/kubelet/apis/kubeletconfig/v1alpha1 pkg/kubelet/cadvisor pkg/kubelet/cadvisor/testing -pkg/kubelet/certificate pkg/kubelet/client pkg/kubelet/cm pkg/kubelet/cm/util diff --git a/pkg/kubelet/BUILD b/pkg/kubelet/BUILD index 5b2ad441016bc..ca8f0c11779fc 100644 --- a/pkg/kubelet/BUILD +++ b/pkg/kubelet/BUILD @@ -136,6 +136,7 @@ go_library( "//vendor/k8s.io/client-go/tools/cache:go_default_library", "//vendor/k8s.io/client-go/tools/record:go_default_library", "//vendor/k8s.io/client-go/tools/remotecommand:go_default_library", + "//vendor/k8s.io/client-go/util/certificate:go_default_library", "//vendor/k8s.io/client-go/util/flowcontrol:go_default_library", "//vendor/k8s.io/client-go/util/integer:go_default_library", "//vendor/k8s.io/utils/exec:go_default_library", diff --git a/pkg/kubelet/certificate/BUILD b/pkg/kubelet/certificate/BUILD index a9df3be8c7dfc..50223ce663f8c 100644 --- a/pkg/kubelet/certificate/BUILD +++ b/pkg/kubelet/certificate/BUILD @@ -9,46 +9,34 @@ load( go_library( name = "go_default_library", srcs = [ - "certificate_manager.go", - "certificate_store.go", "kubelet.go", "transport.go", ], deps = [ "//pkg/kubelet/apis/kubeletconfig:go_default_library", - "//pkg/util/file:go_default_library", + "//pkg/kubelet/metrics:go_default_library", "//vendor/github.com/golang/glog:go_default_library", + "//vendor/github.com/prometheus/client_golang/prometheus:go_default_library", "//vendor/k8s.io/api/certificates/v1beta1:go_default_library", - "//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library", - "//vendor/k8s.io/apimachinery/pkg/fields:go_default_library", "//vendor/k8s.io/apimachinery/pkg/types:go_default_library", "//vendor/k8s.io/apimachinery/pkg/util/net:go_default_library", "//vendor/k8s.io/apimachinery/pkg/util/wait:go_default_library", - "//vendor/k8s.io/apimachinery/pkg/watch:go_default_library", "//vendor/k8s.io/client-go/kubernetes:go_default_library", "//vendor/k8s.io/client-go/kubernetes/typed/certificates/v1beta1:go_default_library", "//vendor/k8s.io/client-go/rest:go_default_library", - "//vendor/k8s.io/client-go/util/cert:go_default_library", + "//vendor/k8s.io/client-go/util/certificate:go_default_library", ], ) go_test( name = "go_default_test", - srcs = [ - "certificate_manager_test.go", - "certificate_store_test.go", - "transport_test.go", - ], + srcs = ["transport_test.go"], library = ":go_default_library", deps = [ - "//vendor/k8s.io/api/certificates/v1beta1:go_default_library", - "//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library", "//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library", "//vendor/k8s.io/apimachinery/pkg/runtime/serializer:go_default_library", - "//vendor/k8s.io/apimachinery/pkg/watch:go_default_library", "//vendor/k8s.io/client-go/kubernetes/typed/certificates/v1beta1:go_default_library", "//vendor/k8s.io/client-go/rest:go_default_library", - "//vendor/k8s.io/client-go/util/cert:go_default_library", ], ) diff --git a/pkg/kubelet/certificate/bootstrap/BUILD b/pkg/kubelet/certificate/bootstrap/BUILD index 669d93075771e..c7efbfb58608b 100644 --- a/pkg/kubelet/certificate/bootstrap/BUILD +++ b/pkg/kubelet/certificate/bootstrap/BUILD @@ -20,14 +20,16 @@ go_library( name = "go_default_library", srcs = ["bootstrap.go"], deps = [ - "//pkg/kubelet/util/csr:go_default_library", "//vendor/github.com/golang/glog:go_default_library", "//vendor/k8s.io/apimachinery/pkg/types:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/util/runtime:go_default_library", "//vendor/k8s.io/client-go/kubernetes/typed/certificates/v1beta1:go_default_library", "//vendor/k8s.io/client-go/rest:go_default_library", "//vendor/k8s.io/client-go/tools/clientcmd:go_default_library", "//vendor/k8s.io/client-go/tools/clientcmd/api:go_default_library", + "//vendor/k8s.io/client-go/transport:go_default_library", "//vendor/k8s.io/client-go/util/cert:go_default_library", + "//vendor/k8s.io/client-go/util/certificate/csr:go_default_library", ], ) diff --git a/pkg/kubelet/certificate/bootstrap/bootstrap.go b/pkg/kubelet/certificate/bootstrap/bootstrap.go index 2952ba0bd62bf..d123c0beee53a 100644 --- a/pkg/kubelet/certificate/bootstrap/bootstrap.go +++ b/pkg/kubelet/certificate/bootstrap/bootstrap.go @@ -20,16 +20,19 @@ import ( "fmt" "os" "path/filepath" + "time" "github.com/golang/glog" "k8s.io/apimachinery/pkg/types" + utilruntime "k8s.io/apimachinery/pkg/util/runtime" certificates "k8s.io/client-go/kubernetes/typed/certificates/v1beta1" restclient "k8s.io/client-go/rest" "k8s.io/client-go/tools/clientcmd" clientcmdapi "k8s.io/client-go/tools/clientcmd/api" + "k8s.io/client-go/transport" certutil "k8s.io/client-go/util/cert" - "k8s.io/kubernetes/pkg/kubelet/util/csr" + "k8s.io/client-go/util/certificate/csr" ) const ( @@ -42,17 +45,15 @@ const ( // On success, a kubeconfig file referencing the generated key and obtained certificate is written to kubeconfigPath. // The certificate and key file are stored in certDir. func LoadClientCert(kubeconfigPath string, bootstrapPath string, certDir string, nodeName types.NodeName) error { - // Short-circuit if the kubeconfig file already exists. - // TODO: inspect the kubeconfig, ensure a rest client can be built from it, verify client cert expiration, etc. - _, err := os.Stat(kubeconfigPath) - if err == nil { - glog.V(2).Infof("Kubeconfig %s exists, skipping bootstrap", kubeconfigPath) - return nil - } - if !os.IsNotExist(err) { - glog.Errorf("Error reading kubeconfig %s, skipping bootstrap: %v", kubeconfigPath, err) + // Short-circuit if the kubeconfig file exists and is valid. + ok, err := verifyBootstrapClientConfig(kubeconfigPath) + if err != nil { return err } + if ok { + glog.V(2).Infof("Kubeconfig %s exists and is valid, skipping bootstrap", kubeconfigPath) + return nil + } glog.V(2).Info("Using bootstrap kubeconfig to generate TLS client cert, key and kubeconfig file") @@ -72,6 +73,17 @@ func LoadClientCert(kubeconfigPath string, bootstrapPath string, certDir string, if err != nil { return fmt.Errorf("unable to build bootstrap key path: %v", err) } + // If we are unable to generate a CSR, we remove our key file and start fresh. + // This method is used before enabling client rotation and so we must ensure we + // can make forward progress if we crash and exit when a CSR exists but the cert + // it is signed for has expired. + defer func() { + if !success { + if err := os.Remove(keyPath); err != nil && !os.IsNotExist(err) { + glog.Warningf("Cannot clean up the key file %q: %v", keyPath, err) + } + } + }() keyData, _, err := certutil.LoadOrGenerateKeyFile(keyPath) if err != nil { return err @@ -82,6 +94,13 @@ func LoadClientCert(kubeconfigPath string, bootstrapPath string, certDir string, if err != nil { return fmt.Errorf("unable to build bootstrap client cert path: %v", err) } + defer func() { + if !success { + if err := os.Remove(certPath); err != nil && !os.IsNotExist(err) { + glog.Warningf("Cannot clean up the cert file %q: %v", certPath, err) + } + } + }() certData, err := csr.RequestNodeCertificate(bootstrapClient.CertificateSigningRequests(), keyData, nodeName) if err != nil { return err @@ -89,13 +108,6 @@ func LoadClientCert(kubeconfigPath string, bootstrapPath string, certDir string, if err := certutil.WriteCert(certPath, certData); err != nil { return err } - defer func() { - if !success { - if err := os.Remove(certPath); err != nil { - glog.Warningf("Cannot clean up the cert file %q: %v", certPath, err) - } - } - }() // Get the CA data from the bootstrap client config. caFile, caData := bootstrapClientConfig.CAFile, []byte{} @@ -150,3 +162,48 @@ func loadRESTClientConfig(kubeconfig string) (*restclient.Config, error) { loader, ).ClientConfig() } + +// verifyBootstrapClientConfig checks the provided kubeconfig to see if it has a valid +// client certificate. It returns true if the kubeconfig is valid, or an error if bootstrapping +// should stop immediately. +func verifyBootstrapClientConfig(kubeconfigPath string) (bool, error) { + _, err := os.Stat(kubeconfigPath) + if os.IsNotExist(err) { + return false, nil + } + if err != nil { + return false, fmt.Errorf("error reading existing bootstrap kubeconfig %s: %v", kubeconfigPath, err) + } + bootstrapClientConfig, err := loadRESTClientConfig(kubeconfigPath) + if err != nil { + utilruntime.HandleError(fmt.Errorf("Unable to read existing bootstrap client config: %v", err)) + return false, nil + } + transportConfig, err := bootstrapClientConfig.TransportConfig() + if err != nil { + utilruntime.HandleError(fmt.Errorf("Unable to load transport configuration from existing bootstrap client config: %v", err)) + return false, nil + } + // has side effect of populating transport config data fields + if _, err := transport.TLSConfigFor(transportConfig); err != nil { + utilruntime.HandleError(fmt.Errorf("Unable to load TLS configuration from existing bootstrap client config: %v", err)) + return false, nil + } + certs, err := certutil.ParseCertsPEM(transportConfig.TLS.CertData) + if err != nil { + utilruntime.HandleError(fmt.Errorf("Unable to load TLS certificates from existing bootstrap client config: %v", err)) + return false, nil + } + if len(certs) == 0 { + utilruntime.HandleError(fmt.Errorf("Unable to read TLS certificates from existing bootstrap client config: %v", err)) + return false, nil + } + now := time.Now() + for _, cert := range certs { + if now.After(cert.NotAfter) { + utilruntime.HandleError(fmt.Errorf("Part of the existing bootstrap client certificate is expired: %s", cert.NotAfter)) + return false, nil + } + } + return true, nil +} diff --git a/pkg/kubelet/certificate/kubelet.go b/pkg/kubelet/certificate/kubelet.go index b74598681508a..097266c7f4d80 100644 --- a/pkg/kubelet/certificate/kubelet.go +++ b/pkg/kubelet/certificate/kubelet.go @@ -22,21 +22,25 @@ import ( "fmt" "net" + "github.com/prometheus/client_golang/prometheus" + certificates "k8s.io/api/certificates/v1beta1" "k8s.io/apimachinery/pkg/types" clientset "k8s.io/client-go/kubernetes" clientcertificates "k8s.io/client-go/kubernetes/typed/certificates/v1beta1" + "k8s.io/client-go/util/certificate" "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig" + "k8s.io/kubernetes/pkg/kubelet/metrics" ) // NewKubeletServerCertificateManager creates a certificate manager for the kubelet when retrieving a server certificate // or returns an error. -func NewKubeletServerCertificateManager(kubeClient clientset.Interface, kubeCfg *kubeletconfig.KubeletConfiguration, nodeName types.NodeName, ips []net.IP, hostnames []string, certDirectory string) (Manager, error) { +func NewKubeletServerCertificateManager(kubeClient clientset.Interface, kubeCfg *kubeletconfig.KubeletConfiguration, nodeName types.NodeName, ips []net.IP, hostnames []string, certDirectory string) (certificate.Manager, error) { var certSigningRequestClient clientcertificates.CertificateSigningRequestInterface if kubeClient != nil && kubeClient.Certificates() != nil { certSigningRequestClient = kubeClient.Certificates().CertificateSigningRequests() } - certificateStore, err := NewFileStore( + certificateStore, err := certificate.NewFileStore( "kubelet-server", certDirectory, certDirectory, @@ -45,7 +49,17 @@ func NewKubeletServerCertificateManager(kubeClient clientset.Interface, kubeCfg if err != nil { return nil, fmt.Errorf("failed to initialize server certificate store: %v", err) } - m, err := NewManager(&Config{ + var certificateExpiration = prometheus.NewGauge( + prometheus.GaugeOpts{ + Namespace: metrics.KubeletSubsystem, + Subsystem: "certificate_manager", + Name: "server_expiration_seconds", + Help: "Gauge of the lifetime of a certificate. The value is the date the certificate will expire in seconds since January 1, 1970 UTC.", + }, + ) + prometheus.MustRegister(certificateExpiration) + + m, err := certificate.NewManager(&certificate.Config{ CertificateSigningRequestClient: certSigningRequestClient, Template: &x509.CertificateRequest{ Subject: pkix.Name{ @@ -69,7 +83,8 @@ func NewKubeletServerCertificateManager(kubeClient clientset.Interface, kubeCfg // authenticate itself to a TLS client. certificates.UsageServerAuth, }, - CertificateStore: certificateStore, + CertificateStore: certificateStore, + CertificateExpiration: certificateExpiration, }) if err != nil { return nil, fmt.Errorf("failed to initialize server certificate manager: %v", err) @@ -81,8 +96,8 @@ func NewKubeletServerCertificateManager(kubeClient clientset.Interface, kubeCfg // client that can be used to sign new certificates (or rotate). It answers with // whatever certificate it is initialized with. If a CSR client is set later, it // may begin rotating/renewing the client cert -func NewKubeletClientCertificateManager(certDirectory string, nodeName types.NodeName, certData []byte, keyData []byte, certFile string, keyFile string) (Manager, error) { - certificateStore, err := NewFileStore( +func NewKubeletClientCertificateManager(certDirectory string, nodeName types.NodeName, certData []byte, keyData []byte, certFile string, keyFile string) (certificate.Manager, error) { + certificateStore, err := certificate.NewFileStore( "kubelet-client", certDirectory, certDirectory, @@ -91,7 +106,17 @@ func NewKubeletClientCertificateManager(certDirectory string, nodeName types.Nod if err != nil { return nil, fmt.Errorf("failed to initialize client certificate store: %v", err) } - m, err := NewManager(&Config{ + var certificateExpiration = prometheus.NewGauge( + prometheus.GaugeOpts{ + Namespace: metrics.KubeletSubsystem, + Subsystem: "certificate_manager", + Name: "client_expiration_seconds", + Help: "Gauge of the lifetime of a certificate. The value is the date the certificate will expire in seconds since January 1, 1970 UTC.", + }, + ) + prometheus.MustRegister(certificateExpiration) + + m, err := certificate.NewManager(&certificate.Config{ Template: &x509.CertificateRequest{ Subject: pkix.Name{ CommonName: fmt.Sprintf("system:node:%s", nodeName), @@ -116,6 +141,7 @@ func NewKubeletClientCertificateManager(certDirectory string, nodeName types.Nod CertificateStore: certificateStore, BootstrapCertificatePEM: certData, BootstrapKeyPEM: keyData, + CertificateExpiration: certificateExpiration, }) if err != nil { return nil, fmt.Errorf("failed to initialize client certificate manager: %v", err) diff --git a/pkg/kubelet/certificate/transport.go b/pkg/kubelet/certificate/transport.go index bb472039f3fb8..1683ad09735a3 100644 --- a/pkg/kubelet/certificate/transport.go +++ b/pkg/kubelet/certificate/transport.go @@ -30,6 +30,7 @@ import ( utilnet "k8s.io/apimachinery/pkg/util/net" "k8s.io/apimachinery/pkg/util/wait" restclient "k8s.io/client-go/rest" + "k8s.io/client-go/util/certificate" ) // UpdateTransport instruments a restconfig with a transport that dynamically uses @@ -44,13 +45,13 @@ import ( // // stopCh should be used to indicate when the transport is unused and doesn't need // to continue checking the manager. -func UpdateTransport(stopCh <-chan struct{}, clientConfig *restclient.Config, clientCertificateManager Manager) error { - return updateTransport(stopCh, 10*time.Second, clientConfig, clientCertificateManager) +func UpdateTransport(stopCh <-chan struct{}, clientConfig *restclient.Config, clientCertificateManager certificate.Manager, exitIfExpired bool) error { + return updateTransport(stopCh, 10*time.Second, clientConfig, clientCertificateManager, exitIfExpired) } // updateTransport is an internal method that exposes how often this method checks that the // client cert has changed. Intended for testing. -func updateTransport(stopCh <-chan struct{}, period time.Duration, clientConfig *restclient.Config, clientCertificateManager Manager) error { +func updateTransport(stopCh <-chan struct{}, period time.Duration, clientConfig *restclient.Config, clientCertificateManager certificate.Manager, exitIfExpired bool) error { if clientConfig.Transport != nil { return fmt.Errorf("there is already a transport configured") } @@ -79,6 +80,13 @@ func updateTransport(stopCh <-chan struct{}, period time.Duration, clientConfig lastCert := clientCertificateManager.Current() go wait.Until(func() { curr := clientCertificateManager.Current() + if exitIfExpired && curr != nil && time.Now().After(curr.Leaf.NotAfter) { + if clientCertificateManager.ServerHealthy() { + glog.Fatalf("The currently active client certificate has expired and the server is responsive, exiting.") + } else { + glog.Errorf("The currently active client certificate has expired, but the server is not responsive. A restart may be necessary to retrieve new initial credentials.") + } + } if curr == nil || lastCert == curr { // Cert hasn't been rotated. return diff --git a/pkg/kubelet/certificate/transport_test.go b/pkg/kubelet/certificate/transport_test.go index d2d2f5286b454..6e476c3b80370 100644 --- a/pkg/kubelet/certificate/transport_test.go +++ b/pkg/kubelet/certificate/transport_test.go @@ -19,6 +19,7 @@ package certificate import ( "crypto/tls" "crypto/x509" + "fmt" "math/big" "net/http" "net/http/httptest" @@ -89,14 +90,40 @@ uC6Jo2eLcSV1sSdzTjaaWdM6XeYj6yHOAm8ZBIQs7m6V -----END RSA PRIVATE KEY-----`) ) +type certificateData struct { + keyPEM []byte + certificatePEM []byte + certificate *tls.Certificate +} + +func newCertificateData(certificatePEM string, keyPEM string) *certificateData { + certificate, err := tls.X509KeyPair([]byte(certificatePEM), []byte(keyPEM)) + if err != nil { + panic(fmt.Sprintf("Unable to initialize certificate: %v", err)) + } + certs, err := x509.ParseCertificates(certificate.Certificate[0]) + if err != nil { + panic(fmt.Sprintf("Unable to initialize certificate leaf: %v", err)) + } + certificate.Leaf = certs[0] + return &certificateData{ + keyPEM: []byte(keyPEM), + certificatePEM: []byte(certificatePEM), + certificate: &certificate, + } +} + type fakeManager struct { - cert atomic.Value // Always a *tls.Certificate + cert atomic.Value // Always a *tls.Certificate + healthy bool } func (f *fakeManager) SetCertificateSigningRequestClient(certificatesclient.CertificateSigningRequestInterface) error { return nil } +func (f *fakeManager) ServerHealthy() bool { return f.healthy } + func (f *fakeManager) Start() {} func (f *fakeManager) Current() *tls.Certificate { @@ -160,7 +187,7 @@ func TestRotateShutsDownConnections(t *testing.T) { } // Check for a new cert every 10 milliseconds - if err := updateTransport(stop, 10*time.Millisecond, c, m); err != nil { + if err := updateTransport(stop, 10*time.Millisecond, c, m, false); err != nil { t.Fatal(err) } diff --git a/pkg/kubelet/kubelet.go b/pkg/kubelet/kubelet.go index d69df33f62602..2a423bfbb2a7f 100644 --- a/pkg/kubelet/kubelet.go +++ b/pkg/kubelet/kubelet.go @@ -54,6 +54,7 @@ import ( corelisters "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/tools/cache" "k8s.io/client-go/tools/record" + "k8s.io/client-go/util/certificate" "k8s.io/client-go/util/flowcontrol" "k8s.io/client-go/util/integer" "k8s.io/kubernetes/cmd/kubelet/app/options" @@ -64,7 +65,7 @@ import ( kubeletconfiginternal "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig" kubeletconfigv1alpha1 "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1" "k8s.io/kubernetes/pkg/kubelet/cadvisor" - "k8s.io/kubernetes/pkg/kubelet/certificate" + kubeletcertificate "k8s.io/kubernetes/pkg/kubelet/certificate" "k8s.io/kubernetes/pkg/kubelet/cm" "k8s.io/kubernetes/pkg/kubelet/config" "k8s.io/kubernetes/pkg/kubelet/configmap" @@ -753,7 +754,7 @@ func NewMainKubelet(kubeCfg *kubeletconfiginternal.KubeletConfiguration, ips = append(ips, cloudIPs...) names := append([]string{klet.GetHostname(), hostnameOverride}, cloudNames...) - klet.serverCertificateManager, err = certificate.NewKubeletServerCertificateManager(klet.kubeClient, kubeCfg, klet.nodeName, ips, names, certDirectory) + klet.serverCertificateManager, err = kubeletcertificate.NewKubeletServerCertificateManager(klet.kubeClient, kubeCfg, klet.nodeName, ips, names, certDirectory) if err != nil { return nil, fmt.Errorf("failed to initialize certificate manager: %v", err) } diff --git a/pkg/kubelet/util/BUILD b/pkg/kubelet/util/BUILD index 740d2e782a6ed..542ddacea3697 100644 --- a/pkg/kubelet/util/BUILD +++ b/pkg/kubelet/util/BUILD @@ -51,7 +51,6 @@ filegroup( srcs = [ ":package-srcs", "//pkg/kubelet/util/cache:all-srcs", - "//pkg/kubelet/util/csr:all-srcs", "//pkg/kubelet/util/format:all-srcs", "//pkg/kubelet/util/ioutils:all-srcs", "//pkg/kubelet/util/queue:all-srcs", diff --git a/staging/BUILD b/staging/BUILD index 97d0c67659a74..22163ca0b5f0a 100644 --- a/staging/BUILD +++ b/staging/BUILD @@ -190,6 +190,7 @@ filegroup( "//staging/src/k8s.io/client-go/tools/remotecommand:all-srcs", "//staging/src/k8s.io/client-go/transport:all-srcs", "//staging/src/k8s.io/client-go/util/cert:all-srcs", + "//staging/src/k8s.io/client-go/util/certificate:all-srcs", "//staging/src/k8s.io/client-go/util/exec:all-srcs", "//staging/src/k8s.io/client-go/util/flowcontrol:all-srcs", "//staging/src/k8s.io/client-go/util/homedir:all-srcs", diff --git a/staging/src/k8s.io/client-go/tools/cache/listwatch.go b/staging/src/k8s.io/client-go/tools/cache/listwatch.go index 55a90b631d61c..a97c2789dfb17 100644 --- a/staging/src/k8s.io/client-go/tools/cache/listwatch.go +++ b/staging/src/k8s.io/client-go/tools/cache/listwatch.go @@ -25,6 +25,7 @@ import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/fields" "k8s.io/apimachinery/pkg/runtime" + "k8s.io/apimachinery/pkg/util/wait" "k8s.io/apimachinery/pkg/watch" restclient "k8s.io/client-go/rest" "k8s.io/client-go/tools/pager" @@ -106,6 +107,8 @@ func (lw *ListWatch) Watch(options metav1.ListOptions) (watch.Interface, error) return lw.WatchFunc(options) } +// ListWatchUntil checks the provided conditions against the items returned by the list watcher, returning wait.ErrWaitTimeout +// if timeout is exceeded without all conditions returning true, or an error if an error occurs. // TODO: check for watch expired error and retry watch from latest point? Same issue exists for Until. func ListWatchUntil(timeout time.Duration, lw ListerWatcher, conditions ...watch.ConditionFunc) (*watch.Event, error) { if len(conditions) == 0 { @@ -169,5 +172,10 @@ func ListWatchUntil(timeout time.Duration, lw ListerWatcher, conditions ...watch return nil, err } - return watch.Until(timeout, watchInterface, remainingConditions...) + evt, err := watch.Until(timeout, watchInterface, remainingConditions...) + if err == watch.ErrWatchClosed { + // present a consistent error interface to callers + err = wait.ErrWaitTimeout + } + return evt, err } diff --git a/staging/src/k8s.io/client-go/util/certificate/BUILD b/staging/src/k8s.io/client-go/util/certificate/BUILD new file mode 100644 index 0000000000000..6f9b07b5a60e5 --- /dev/null +++ b/staging/src/k8s.io/client-go/util/certificate/BUILD @@ -0,0 +1,65 @@ +package(default_visibility = ["//visibility:public"]) + +licenses(["notice"]) + +load( + "@io_bazel_rules_go//go:def.bzl", + "go_library", + "go_test", +) + +go_test( + name = "go_default_test", + srcs = [ + "certificate_manager_test.go", + "certificate_store_test.go", + ], + library = ":go_default_library", + tags = ["automanaged"], + deps = [ + "//vendor/k8s.io/api/certificates/v1beta1:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/api/errors:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/runtime/schema:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/util/wait:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/watch:go_default_library", + "//vendor/k8s.io/client-go/kubernetes/typed/certificates/v1beta1:go_default_library", + "//vendor/k8s.io/client-go/util/cert:go_default_library", + ], +) + +go_library( + name = "go_default_library", + srcs = [ + "certificate_manager.go", + "certificate_store.go", + ], + tags = ["automanaged"], + deps = [ + "//vendor/github.com/golang/glog:go_default_library", + "//vendor/k8s.io/api/certificates/v1beta1:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/api/errors:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/util/runtime:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/util/wait:go_default_library", + "//vendor/k8s.io/client-go/kubernetes/typed/certificates/v1beta1:go_default_library", + "//vendor/k8s.io/client-go/util/cert:go_default_library", + "//vendor/k8s.io/client-go/util/certificate/csr:go_default_library", + ], +) + +filegroup( + name = "package-srcs", + srcs = glob(["**"]), + tags = ["automanaged"], + visibility = ["//visibility:private"], +) + +filegroup( + name = "all-srcs", + srcs = [ + ":package-srcs", + "//staging/src/k8s.io/client-go/util/certificate/csr:all-srcs", + ], + tags = ["automanaged"], + visibility = ["//visibility:public"], +) diff --git a/staging/src/k8s.io/client-go/util/certificate/OWNERS b/staging/src/k8s.io/client-go/util/certificate/OWNERS new file mode 100644 index 0000000000000..2dce803b34dd9 --- /dev/null +++ b/staging/src/k8s.io/client-go/util/certificate/OWNERS @@ -0,0 +1,8 @@ +reviewers: +- mikedanese +- liggit +- smarterclayton +approvers: +- mikedanese +- liggit +- smarterclayton diff --git a/pkg/kubelet/certificate/certificate_manager.go b/staging/src/k8s.io/client-go/util/certificate/certificate_manager.go similarity index 65% rename from pkg/kubelet/certificate/certificate_manager.go rename to staging/src/k8s.io/client-go/util/certificate/certificate_manager.go index dcaa1a3774926..e27966f5e1b24 100644 --- a/pkg/kubelet/certificate/certificate_manager.go +++ b/staging/src/k8s.io/client-go/util/certificate/certificate_manager.go @@ -30,17 +30,17 @@ import ( "github.com/golang/glog" certificates "k8s.io/api/certificates/v1beta1" - metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" - "k8s.io/apimachinery/pkg/fields" + "k8s.io/apimachinery/pkg/api/errors" + utilruntime "k8s.io/apimachinery/pkg/util/runtime" "k8s.io/apimachinery/pkg/util/wait" - "k8s.io/apimachinery/pkg/watch" certificatesclient "k8s.io/client-go/kubernetes/typed/certificates/v1beta1" "k8s.io/client-go/util/cert" + "k8s.io/client-go/util/certificate/csr" ) -const ( - syncPeriod = 1 * time.Hour -) +// certificateWaitBackoff controls the amount and timing of retries when the +// watch for certificate approval is interrupted. +var certificateWaitBackoff = wait.Backoff{Duration: 30 * time.Second, Steps: 4, Factor: 1.5, Jitter: 0.1} // Manager maintains and updates the certificates in use by this certificate // manager. In the background it communicates with the API server to get new @@ -55,6 +55,12 @@ type Manager interface { // certificate manager, as well as the associated certificate and key data // in PEM format. Current() *tls.Certificate + // ServerHealthy returns true if the manager is able to communicate with + // the server. This allows a caller to determine whether the cert manager + // thinks it can potentially talk to the API server. The cert manager may + // be very conservative and only return true if recent communication has + // occurred with the server. + ServerHealthy() bool } // Config is the set of configuration parameters available for a new Manager. @@ -96,6 +102,9 @@ type Config struct { // initialized using a generic, multi-use cert/key pair which will be // quickly replaced with a unique cert/key pair. BootstrapKeyPEM []byte + // CertificateExpiration will record a metric that shows the remaining + // lifetime of the certificate. + CertificateExpiration Gauge } // Store is responsible for getting and updating the current certificate. @@ -114,6 +123,12 @@ type Store interface { Update(cert, key []byte) (*tls.Certificate, error) } +// Gauge will record the remaining lifetime of the certificate each time it is +// updated. +type Gauge interface { + Set(float64) +} + // NoCertKeyError indicates there is no cert/key currently available. type NoCertKeyError string @@ -128,6 +143,8 @@ type manager struct { cert *tls.Certificate rotationDeadline time.Time forceRotation bool + certificateExpiration Gauge + serverHealth bool } // NewManager returns a new certificate manager. A certificate manager is @@ -149,6 +166,7 @@ func NewManager(config *Config) (Manager, error) { certStore: config.CertificateStore, cert: cert, forceRotation: forceRotation, + certificateExpiration: config.CertificateExpiration, } return &m, nil @@ -164,6 +182,14 @@ func (m *manager) Current() *tls.Certificate { return m.cert } +// ServerHealthy returns true if the cert manager believes the server +// is currently alive. +func (m *manager) ServerHealthy() bool { + m.certAccessLock.RLock() + defer m.certAccessLock.RUnlock() + return m.serverHealth +} + // SetCertificateSigningRequestClient sets the client interface that is used // for signing new certificates generated as part of rotation. It must be // called before Start() and can not be used to change the @@ -175,7 +201,7 @@ func (m *manager) SetCertificateSigningRequestClient(certSigningRequestClient ce m.certSigningRequestClient = certSigningRequestClient return nil } - return fmt.Errorf("CertificateSigningRequestClient is already set.") + return fmt.Errorf("property CertificateSigningRequestClient is already set") } // Start will start the background work of rotating the certificates. @@ -198,9 +224,8 @@ func (m *manager) Start() { // doesn't have a certificate at all yet. if m.shouldRotate() { glog.V(1).Infof("shouldRotate() is true, forcing immediate rotation") - _, err := m.rotateCerts() - if err != nil { - glog.Errorf("Could not rotate certificates: %v", err) + if _, err := m.rotateCerts(); err != nil { + utilruntime.HandleError(fmt.Errorf("Could not rotate certificates: %v", err)) } } backoff := wait.Backoff{ @@ -214,7 +239,7 @@ func (m *manager) Start() { glog.V(2).Infof("Waiting %v for next certificate rotation", sleepInterval) time.Sleep(sleepInterval) if err := wait.ExponentialBackoff(backoff, m.rotateCerts); err != nil { - glog.Errorf("Reached backoff limit, still unable to rotate certs: %v", err) + utilruntime.HandleError(fmt.Errorf("Reached backoff limit, still unable to rotate certs: %v", err)) wait.PollInfinite(128*time.Second, m.rotateCerts) } }, 0) @@ -268,26 +293,58 @@ func (m *manager) shouldRotate() bool { return time.Now().After(m.rotationDeadline) } +// rotateCerts attempts to request a client cert from the server, wait a reasonable +// period of time for it to be signed, and then update the cert on disk. If it cannot +// retrieve a cert, it will return false. It will only return error in exceptional cases. +// This method also keeps track of "server health" by interpreting the responses it gets +// from the server on the various calls it makes. func (m *manager) rotateCerts() (bool, error) { glog.V(2).Infof("Rotating certificates") - csrPEM, keyPEM, err := m.generateCSR() + csrPEM, keyPEM, privateKey, err := m.generateCSR() if err != nil { - glog.Errorf("Unable to generate a certificate signing request: %v", err) + utilruntime.HandleError(fmt.Errorf("Unable to generate a certificate signing request: %v", err)) return false, nil } // Call the Certificate Signing Request API to get a certificate for the // new private key. - crtPEM, err := requestCertificate(m.certSigningRequestClient, csrPEM, m.usages) + req, err := csr.RequestCertificate(m.certSigningRequestClient, csrPEM, "", m.usages, privateKey) if err != nil { - glog.Errorf("Failed while requesting a signed certificate from the master: %v", err) + utilruntime.HandleError(fmt.Errorf("Failed while requesting a signed certificate from the master: %v", err)) + return false, m.updateServerError(err) + } + + // Wait for the certificate to be signed. Instead of one long watch, we retry with slighly longer + // intervals each time in order to tolerate failures from the server AND to preserve the liveliness + // of the cert manager loop. This creates slightly more traffic against the API server in return + // for bounding the amount of time we wait when a certificate expires. + var crtPEM []byte + watchDuration := time.Minute + if err := wait.ExponentialBackoff(certificateWaitBackoff, func() (bool, error) { + data, err := csr.WaitForCertificate(m.certSigningRequestClient, req, watchDuration) + switch { + case err == nil: + crtPEM = data + return true, nil + case err == wait.ErrWaitTimeout: + watchDuration += time.Minute + if watchDuration > 5*time.Minute { + watchDuration = 5 * time.Minute + } + return false, nil + default: + utilruntime.HandleError(fmt.Errorf("Unable to check certificate signing status: %v", err)) + return false, m.updateServerError(err) + } + }); err != nil { + utilruntime.HandleError(fmt.Errorf("Certificate request was not signed: %v", err)) return false, nil } cert, err := m.certStore.Update(crtPEM, keyPEM) if err != nil { - glog.Errorf("Unable to store the new cert/key pair: %v", err) + utilruntime.HandleError(fmt.Errorf("Unable to store the new cert/key pair: %v", err)) return false, nil } @@ -311,102 +368,73 @@ func (m *manager) setRotationDeadline() { notAfter := m.cert.Leaf.NotAfter totalDuration := float64(notAfter.Sub(m.cert.Leaf.NotBefore)) - // Use some jitter to set the rotation threshold so each node will rotate - // at approximately 70-90% of the total lifetime of the certificate. With - // jitter, if a number of nodes are added to a cluster at approximately the - // same time (such as cluster creation time), they won't all try to rotate - // certificates at the same time for the rest of the life of the cluster. - jitteryDuration := wait.Jitter(time.Duration(totalDuration), 0.2) - time.Duration(totalDuration*0.3) + m.rotationDeadline = m.cert.Leaf.NotBefore.Add(jitteryDuration(totalDuration)) + glog.V(2).Infof("Certificate expiration is %v, rotation deadline is %v", notAfter, m.rotationDeadline) + if m.certificateExpiration != nil { + m.certificateExpiration.Set(float64(notAfter.Unix())) + } +} - m.rotationDeadline = m.cert.Leaf.NotBefore.Add(jitteryDuration) - glog.V(2).Infof("Certificate rotation deadline is %v", m.rotationDeadline) +// jitteryDuration uses some jitter to set the rotation threshold so each node +// will rotate at approximately 70-90% of the total lifetime of the +// certificate. With jitter, if a number of nodes are added to a cluster at +// approximately the same time (such as cluster creation time), they won't all +// try to rotate certificates at the same time for the rest of the life of the +// cluster. +// +// This function is represented as a variable to allow replacement during testing. +var jitteryDuration = func(totalDuration float64) time.Duration { + return wait.Jitter(time.Duration(totalDuration), 0.2) - time.Duration(totalDuration*0.3) } +// updateCached sets the most recent retrieved cert. It also sets the server +// as assumed healthy. func (m *manager) updateCached(cert *tls.Certificate) { m.certAccessLock.Lock() defer m.certAccessLock.Unlock() + m.serverHealth = true m.cert = cert } -func (m *manager) generateCSR() (csrPEM []byte, keyPEM []byte, err error) { +// updateServerError takes an error returned by the server and infers +// the health of the server based on the error. It will return nil if +// the error does not require immediate termination of any wait loops, +// and otherwise it will return the error. +func (m *manager) updateServerError(err error) error { + m.certAccessLock.Lock() + defer m.certAccessLock.Unlock() + switch { + case errors.IsUnauthorized(err): + // SSL terminating proxies may report this error instead of the master + m.serverHealth = true + case errors.IsUnexpectedServerError(err): + // generally indicates a proxy or other load balancer problem, rather than a problem coming + // from the master + m.serverHealth = false + default: + // Identify known errors that could be expected for a cert request that + // indicate everything is working normally + m.serverHealth = errors.IsNotFound(err) || errors.IsForbidden(err) + } + return nil +} + +func (m *manager) generateCSR() (csrPEM []byte, keyPEM []byte, key interface{}, err error) { // Generate a new private key. privateKey, err := ecdsa.GenerateKey(elliptic.P256(), cryptorand.Reader) if err != nil { - return nil, nil, fmt.Errorf("unable to generate a new private key: %v", err) + return nil, nil, nil, fmt.Errorf("unable to generate a new private key: %v", err) } der, err := x509.MarshalECPrivateKey(privateKey) if err != nil { - return nil, nil, fmt.Errorf("unable to marshal the new key to DER: %v", err) + return nil, nil, nil, fmt.Errorf("unable to marshal the new key to DER: %v", err) } keyPEM = pem.EncodeToMemory(&pem.Block{Type: cert.ECPrivateKeyBlockType, Bytes: der}) csrPEM, err = cert.MakeCSRFromTemplate(privateKey, m.template) if err != nil { - return nil, nil, fmt.Errorf("unable to create a csr from the private key: %v", err) - } - return csrPEM, keyPEM, nil -} - -// requestCertificate will create a certificate signing request using the PEM -// encoded CSR and send it to API server, then it will watch the object's -// status, once approved by API server, it will return the API server's issued -// certificate (pem-encoded). If there is any errors, or the watch timeouts, it -// will return an error. -// -// NOTE This is a copy of a function with the same name in -// k8s.io/kubernetes/pkg/kubelet/util/csr/csr.go, changing only the package that -// CertificateSigningRequestInterface and KeyUsage are imported from. -func requestCertificate(client certificatesclient.CertificateSigningRequestInterface, csrData []byte, usages []certificates.KeyUsage) (certData []byte, err error) { - glog.Infof("Requesting new certificate.") - req, err := client.Create(&certificates.CertificateSigningRequest{ - // Username, UID, Groups will be injected by API server. - TypeMeta: metav1.TypeMeta{Kind: "CertificateSigningRequest"}, - ObjectMeta: metav1.ObjectMeta{GenerateName: "csr-"}, - - Spec: certificates.CertificateSigningRequestSpec{ - Request: csrData, - Usages: usages, - }, - }) - if err != nil { - return nil, fmt.Errorf("cannot create certificate signing request: %v", err) - } - - // Make a default timeout = 3600s. - var defaultTimeoutSeconds int64 = 3600 - certWatch, err := client.Watch(metav1.ListOptions{ - Watch: true, - TimeoutSeconds: &defaultTimeoutSeconds, - FieldSelector: fields.OneTermEqualSelector("metadata.name", req.Name).String(), - }) - if err != nil { - return nil, fmt.Errorf("cannot watch on the certificate signing request: %v", err) + return nil, nil, nil, fmt.Errorf("unable to create a csr from the private key: %v", err) } - defer certWatch.Stop() - ch := certWatch.ResultChan() - - for { - event, ok := <-ch - if !ok { - break - } - - if event.Type == watch.Modified || event.Type == watch.Added { - if event.Object.(*certificates.CertificateSigningRequest).UID != req.UID { - continue - } - status := event.Object.(*certificates.CertificateSigningRequest).Status - for _, c := range status.Conditions { - if c.Type == certificates.CertificateDenied { - return nil, fmt.Errorf("certificate signing request is not approved, reason: %v, message: %v", c.Reason, c.Message) - } - if c.Type == certificates.CertificateApproved && status.Certificate != nil { - return status.Certificate, nil - } - } - } - } - - return nil, fmt.Errorf("watch channel closed") + return csrPEM, keyPEM, privateKey, nil } diff --git a/pkg/kubelet/certificate/certificate_manager_test.go b/staging/src/k8s.io/client-go/util/certificate/certificate_manager_test.go similarity index 78% rename from pkg/kubelet/certificate/certificate_manager_test.go rename to staging/src/k8s.io/client-go/util/certificate/certificate_manager_test.go index b671ad4aba23f..ab19e37b12dac 100644 --- a/pkg/kubelet/certificate/certificate_manager_test.go +++ b/staging/src/k8s.io/client-go/util/certificate/certificate_manager_test.go @@ -27,17 +27,14 @@ import ( "time" certificates "k8s.io/api/certificates/v1beta1" + "k8s.io/apimachinery/pkg/api/errors" v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + "k8s.io/apimachinery/pkg/runtime/schema" + "k8s.io/apimachinery/pkg/util/wait" watch "k8s.io/apimachinery/pkg/watch" certificatesclient "k8s.io/client-go/kubernetes/typed/certificates/v1beta1" ) -type certificateData struct { - keyPEM []byte - certificatePEM []byte - certificate *tls.Certificate -} - var storeCertData = newCertificateData(`-----BEGIN CERTIFICATE----- MIICRzCCAfGgAwIBAgIJALMb7ecMIk3MMA0GCSqGSIb3DQEBCwUAMH4xCzAJBgNV BAYTAkdCMQ8wDQYDVQQIDAZMb25kb24xDzANBgNVBAcMBkxvbmRvbjEYMBYGA1UE @@ -113,6 +110,12 @@ bDQT1r8Q3Gx+h9LRqQeHgPBQ3F5ylqqBAiBaJ0hkYvrIdWxNlcLqD3065bJpHQ4S WQkuZUQN1M/Xvg== -----END RSA PRIVATE KEY-----`) +type certificateData struct { + keyPEM []byte + certificatePEM []byte + certificate *tls.Certificate +} + func newCertificateData(certificatePEM string, keyPEM string) *certificateData { certificate, err := tls.X509KeyPair([]byte(certificatePEM), []byte(keyPEM)) if err != nil { @@ -183,7 +186,19 @@ func TestShouldRotate(t *testing.T) { } } +type gaugeMock struct { + calls int + lastValue float64 +} + +func (g *gaugeMock) Set(v float64) { + g.calls++ + g.lastValue = v +} + func TestSetRotationDeadline(t *testing.T) { + defer func(original func(float64) time.Duration) { jitteryDuration = original }(jitteryDuration) + now := time.Now() testCases := []struct { name string @@ -203,6 +218,7 @@ func TestSetRotationDeadline(t *testing.T) { for _, tc := range testCases { t.Run(tc.name, func(t *testing.T) { + g := gaugeMock{} m := manager{ cert: &tls.Certificate{ Leaf: &x509.Certificate{ @@ -210,22 +226,27 @@ func TestSetRotationDeadline(t *testing.T) { NotAfter: tc.notAfter, }, }, - template: &x509.CertificateRequest{}, - usages: []certificates.KeyUsage{}, + template: &x509.CertificateRequest{}, + usages: []certificates.KeyUsage{}, + certificateExpiration: &g, } + jitteryDuration = func(float64) time.Duration { return time.Duration(float64(tc.notAfter.Sub(tc.notBefore)) * 0.7) } lowerBound := tc.notBefore.Add(time.Duration(float64(tc.notAfter.Sub(tc.notBefore)) * 0.7)) - upperBound := tc.notBefore.Add(time.Duration(float64(tc.notAfter.Sub(tc.notBefore)) * 0.9)) - for i := 0; i < 1000; i++ { - // setRotationDeadline includes jitter, so this needs to run many times for validation. - m.setRotationDeadline() - if m.rotationDeadline.Before(lowerBound) || m.rotationDeadline.After(upperBound) { - t.Errorf("For notBefore %v, notAfter %v, the rotationDeadline %v should be between %v and %v.", - tc.notBefore, - tc.notAfter, - m.rotationDeadline, - lowerBound, - upperBound) - } + + m.setRotationDeadline() + + if !m.rotationDeadline.Equal(lowerBound) { + t.Errorf("For notBefore %v, notAfter %v, the rotationDeadline %v should be %v.", + tc.notBefore, + tc.notAfter, + m.rotationDeadline, + lowerBound) + } + if g.calls != 1 { + t.Errorf("%d metrics were recorded, wanted %d", g.calls, 1) + } + if g.lastValue != float64(tc.notAfter.Unix()) { + t.Errorf("%d value for metric was recorded, wanted %d", g.lastValue, tc.notAfter.Unix()) } }) } @@ -270,6 +291,7 @@ func TestRotateCertWaitingForResultError(t *testing.T) { }, } + certificateWaitBackoff = wait.Backoff{Steps: 1} if success, err := m.rotateCerts(); success { t.Errorf("Got success from 'rotateCerts', wanted failure.") } else if err != nil { @@ -594,10 +616,14 @@ func TestInitializeOtherRESTClients(t *testing.T) { } else { m.setRotationDeadline() if m.shouldRotate() { - if success, err := certificateManager.(*manager).rotateCerts(); !success { - t.Errorf("Got failure from 'rotateCerts', expected success") - } else if err != nil { + success, err := certificateManager.(*manager).rotateCerts() + if err != nil { t.Errorf("Got error %v, expected none.", err) + return + } + if !success { + t.Errorf("Unexpected response 'rotateCerts': %t", success) + return } } } @@ -610,6 +636,161 @@ func TestInitializeOtherRESTClients(t *testing.T) { } } +func TestServerHealth(t *testing.T) { + type certs struct { + storeCert *certificateData + bootstrapCert *certificateData + apiCert *certificateData + expectedCertBeforeStart *certificateData + expectedCertAfterStart *certificateData + } + + updatedCerts := certs{ + storeCert: storeCertData, + bootstrapCert: bootstrapCertData, + apiCert: apiServerCertData, + expectedCertBeforeStart: storeCertData, + expectedCertAfterStart: apiServerCertData, + } + + currentCerts := certs{ + storeCert: storeCertData, + bootstrapCert: bootstrapCertData, + apiCert: apiServerCertData, + expectedCertBeforeStart: storeCertData, + expectedCertAfterStart: storeCertData, + } + + testCases := []struct { + description string + certs + + failureType fakeClientFailureType + clientErr error + + expectRotateFail bool + expectHealthy bool + }{ + { + description: "Current certificate, bootstrap certificate", + certs: updatedCerts, + expectHealthy: true, + }, + { + description: "Generic error on create", + certs: currentCerts, + + failureType: createError, + expectRotateFail: true, + }, + { + description: "Unauthorized error on create", + certs: currentCerts, + + failureType: createError, + clientErr: errors.NewUnauthorized("unauthorized"), + expectRotateFail: true, + expectHealthy: true, + }, + { + description: "Generic unauthorized error on create", + certs: currentCerts, + + failureType: createError, + clientErr: errors.NewGenericServerResponse(401, "POST", schema.GroupResource{}, "", "", 0, true), + expectRotateFail: true, + expectHealthy: true, + }, + { + description: "Generic not found error on create", + certs: currentCerts, + + failureType: createError, + clientErr: errors.NewGenericServerResponse(404, "POST", schema.GroupResource{}, "", "", 0, true), + expectRotateFail: true, + expectHealthy: false, + }, + { + description: "Not found error on create", + certs: currentCerts, + + failureType: createError, + clientErr: errors.NewGenericServerResponse(404, "POST", schema.GroupResource{}, "", "", 0, false), + expectRotateFail: true, + expectHealthy: true, + }, + { + description: "Conflict error on watch", + certs: currentCerts, + + failureType: watchError, + clientErr: errors.NewGenericServerResponse(409, "POST", schema.GroupResource{}, "", "", 0, false), + expectRotateFail: true, + expectHealthy: false, + }, + } + + for _, tc := range testCases { + t.Run(tc.description, func(t *testing.T) { + certificateStore := &fakeStore{ + cert: tc.storeCert.certificate, + } + + certificateManager, err := NewManager(&Config{ + Template: &x509.CertificateRequest{ + Subject: pkix.Name{ + Organization: []string{"system:nodes"}, + CommonName: "system:node:fake-node-name", + }, + }, + Usages: []certificates.KeyUsage{ + certificates.UsageDigitalSignature, + certificates.UsageKeyEncipherment, + certificates.UsageClientAuth, + }, + CertificateStore: certificateStore, + BootstrapCertificatePEM: tc.bootstrapCert.certificatePEM, + BootstrapKeyPEM: tc.bootstrapCert.keyPEM, + CertificateSigningRequestClient: &fakeClient{ + certificatePEM: tc.apiCert.certificatePEM, + failureType: tc.failureType, + err: tc.clientErr, + }, + }) + if err != nil { + t.Errorf("Got %v, wanted no error.", err) + } + + certificate := certificateManager.Current() + if !certificatesEqual(certificate, tc.expectedCertBeforeStart.certificate) { + t.Errorf("Got %v, wanted %v", certificateString(certificate), certificateString(tc.expectedCertBeforeStart.certificate)) + } + + if _, ok := certificateManager.(*manager); !ok { + t.Errorf("Expected a '*manager' from 'NewManager'") + } else { + success, err := certificateManager.(*manager).rotateCerts() + if err != nil { + t.Errorf("Got error %v, expected none.", err) + return + } + if !success != tc.expectRotateFail { + t.Errorf("Unexpected response 'rotateCerts': %t", success) + return + } + if actual := certificateManager.(*manager).ServerHealthy(); actual != tc.expectHealthy { + t.Errorf("Unexpected manager server health: %t", actual) + } + } + + certificate = certificateManager.Current() + if !certificatesEqual(certificate, tc.expectedCertAfterStart.certificate) { + t.Errorf("Got %v, wanted %v", certificateString(certificate), certificateString(tc.expectedCertAfterStart.certificate)) + } + }) + } +} + type fakeClientFailureType int const ( @@ -623,10 +804,29 @@ type fakeClient struct { certificatesclient.CertificateSigningRequestInterface failureType fakeClientFailureType certificatePEM []byte + err error +} + +func (c fakeClient) List(opts v1.ListOptions) (*certificates.CertificateSigningRequestList, error) { + if c.failureType == watchError { + if c.err != nil { + return nil, c.err + } + return nil, fmt.Errorf("Watch error") + } + csrReply := certificates.CertificateSigningRequestList{ + Items: []certificates.CertificateSigningRequest{ + {ObjectMeta: v1.ObjectMeta{UID: "fake-uid"}}, + }, + } + return &csrReply, nil } func (c fakeClient) Create(*certificates.CertificateSigningRequest) (*certificates.CertificateSigningRequest, error) { if c.failureType == createError { + if c.err != nil { + return nil, c.err + } return nil, fmt.Errorf("Create error") } csrReply := certificates.CertificateSigningRequest{} @@ -636,6 +836,9 @@ func (c fakeClient) Create(*certificates.CertificateSigningRequest) (*certificat func (c fakeClient) Watch(opts v1.ListOptions) (watch.Interface, error) { if c.failureType == watchError { + if c.err != nil { + return nil, c.err + } return nil, fmt.Errorf("Watch error") } return &fakeWatch{ diff --git a/pkg/kubelet/certificate/certificate_store.go b/staging/src/k8s.io/client-go/util/certificate/certificate_store.go similarity index 93% rename from pkg/kubelet/certificate/certificate_store.go rename to staging/src/k8s.io/client-go/util/certificate/certificate_store.go index a98a9031978d0..029f9916b7719 100644 --- a/pkg/kubelet/certificate/certificate_store.go +++ b/staging/src/k8s.io/client-go/util/certificate/certificate_store.go @@ -28,8 +28,6 @@ import ( "time" "github.com/golang/glog" - - utilfile "k8s.io/kubernetes/pkg/util/file" ) const ( @@ -86,7 +84,7 @@ func NewFileStore( func (s *fileStore) recover() error { // If the 'current' file doesn't exist, continue on with the recovery process. currentPath := filepath.Join(s.certDirectory, s.filename(currentPair)) - if exists, err := utilfile.FileExists(currentPath); err != nil { + if exists, err := fileExists(currentPath); err != nil { return err } else if exists { return nil @@ -113,18 +111,18 @@ func (s *fileStore) recover() error { func (s *fileStore) Current() (*tls.Certificate, error) { pairFile := filepath.Join(s.certDirectory, s.filename(currentPair)) - if pairFileExists, err := utilfile.FileExists(pairFile); err != nil { + if pairFileExists, err := fileExists(pairFile); err != nil { return nil, err } else if pairFileExists { glog.Infof("Loading cert/key pair from %q.", pairFile) return loadFile(pairFile) } - certFileExists, err := utilfile.FileExists(s.certFile) + certFileExists, err := fileExists(s.certFile) if err != nil { return nil, err } - keyFileExists, err := utilfile.FileExists(s.keyFile) + keyFileExists, err := fileExists(s.keyFile) if err != nil { return nil, err } @@ -135,11 +133,11 @@ func (s *fileStore) Current() (*tls.Certificate, error) { c := filepath.Join(s.certDirectory, s.pairNamePrefix+certExtension) k := filepath.Join(s.keyDirectory, s.pairNamePrefix+keyExtension) - certFileExists, err = utilfile.FileExists(c) + certFileExists, err = fileExists(c) if err != nil { return nil, err } - keyFileExists, err = utilfile.FileExists(k) + keyFileExists, err = fileExists(k) if err != nil { return nil, err } @@ -240,7 +238,7 @@ func (s *fileStore) updateSymlink(filename string) error { return err } } else if fi.Mode()&os.ModeSymlink != os.ModeSymlink { - return fmt.Errorf("expected %q to be a symlink but it is a file.", currentPath) + return fmt.Errorf("expected %q to be a symlink but it is a file", currentPath) } else { currentPathExists = true } @@ -253,7 +251,7 @@ func (s *fileStore) updateSymlink(filename string) error { return err } } else if fi.Mode()&os.ModeSymlink != os.ModeSymlink { - return fmt.Errorf("expected %q to be a symlink but it is a file.", updatedPath) + return fmt.Errorf("expected %q to be a symlink but it is a file", updatedPath) } else { if err := os.Remove(updatedPath); err != nil { return fmt.Errorf("unable to remove %q: %v", updatedPath, err) @@ -262,7 +260,7 @@ func (s *fileStore) updateSymlink(filename string) error { // Check that the new cert/key pair file exists to avoid rotating to an // invalid cert/key. - if filenameExists, err := utilfile.FileExists(filename); err != nil { + if filenameExists, err := fileExists(filename); err != nil { return err } else if !filenameExists { return fmt.Errorf("file %q does not exist so it can not be used as the currently selected cert/key", filename) @@ -307,3 +305,13 @@ func loadX509KeyPair(certFile, keyFile string) (*tls.Certificate, error) { cert.Leaf = certs[0] return &cert, nil } + +// FileExists checks if specified file exists. +func fileExists(filename string) (bool, error) { + if _, err := os.Stat(filename); os.IsNotExist(err) { + return false, nil + } else if err != nil { + return false, err + } + return true, nil +} diff --git a/pkg/kubelet/certificate/certificate_store_test.go b/staging/src/k8s.io/client-go/util/certificate/certificate_store_test.go similarity index 100% rename from pkg/kubelet/certificate/certificate_store_test.go rename to staging/src/k8s.io/client-go/util/certificate/certificate_store_test.go diff --git a/pkg/kubelet/util/csr/BUILD b/staging/src/k8s.io/client-go/util/certificate/csr/BUILD similarity index 95% rename from pkg/kubelet/util/csr/BUILD rename to staging/src/k8s.io/client-go/util/certificate/csr/BUILD index 41a9a00526cb3..4ba362b81864c 100644 --- a/pkg/kubelet/util/csr/BUILD +++ b/staging/src/k8s.io/client-go/util/certificate/csr/BUILD @@ -10,7 +10,6 @@ go_library( name = "go_default_library", srcs = ["csr.go"], deps = [ - "//pkg/apis/certificates/v1beta1:go_default_library", "//vendor/github.com/golang/glog:go_default_library", "//vendor/k8s.io/api/certificates/v1beta1:go_default_library", "//vendor/k8s.io/apimachinery/pkg/api/errors:go_default_library", @@ -18,6 +17,7 @@ go_library( "//vendor/k8s.io/apimachinery/pkg/fields:go_default_library", "//vendor/k8s.io/apimachinery/pkg/runtime:go_default_library", "//vendor/k8s.io/apimachinery/pkg/types:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/util/wait:go_default_library", "//vendor/k8s.io/apimachinery/pkg/watch:go_default_library", "//vendor/k8s.io/client-go/kubernetes/typed/certificates/v1beta1:go_default_library", "//vendor/k8s.io/client-go/tools/cache:go_default_library", diff --git a/pkg/kubelet/util/csr/csr.go b/staging/src/k8s.io/client-go/util/certificate/csr/csr.go similarity index 71% rename from pkg/kubelet/util/csr/csr.go rename to staging/src/k8s.io/client-go/util/certificate/csr/csr.go index 316de1abe5f82..22112a5b5b6f5 100644 --- a/pkg/kubelet/util/csr/csr.go +++ b/staging/src/k8s.io/client-go/util/certificate/csr/csr.go @@ -19,25 +19,26 @@ package csr import ( "crypto" "crypto/sha512" + "crypto/x509" "crypto/x509/pkix" "encoding/base64" + "encoding/pem" "fmt" + "github.com/golang/glog" "reflect" "time" - "github.com/golang/glog" - certificates "k8s.io/api/certificates/v1beta1" "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/fields" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/types" + "k8s.io/apimachinery/pkg/util/wait" "k8s.io/apimachinery/pkg/watch" certificatesclient "k8s.io/client-go/kubernetes/typed/certificates/v1beta1" "k8s.io/client-go/tools/cache" certutil "k8s.io/client-go/util/cert" - certhelper "k8s.io/kubernetes/pkg/apis/certificates/v1beta1" ) // RequestNodeCertificate will create a certificate signing request for a node @@ -68,16 +69,20 @@ func RequestNodeCertificate(client certificatesclient.CertificateSigningRequestI certificates.UsageClientAuth, } name := digestedName(privateKeyData, subject, usages) - return requestCertificate(client, csrData, name, usages, privateKey) + req, err := RequestCertificate(client, csrData, name, usages, privateKey) + if err != nil { + return nil, err + } + return WaitForCertificate(client, req, 3600*time.Second) } -// requestCertificate will either use an existing (if this process has run +// RequestCertificate will either use an existing (if this process has run // before but not to completion) or create a certificate signing request using the // PEM encoded CSR and send it to API server, then it will watch the object's // status, once approved by API server, it will return the API server's issued // certificate (pem-encoded). If there is any errors, or the watch timeouts, it // will return an error. -func requestCertificate(client certificatesclient.CertificateSigningRequestInterface, csrData []byte, name string, usages []certificates.KeyUsage, privateKey interface{}) (certData []byte, err error) { +func RequestCertificate(client certificatesclient.CertificateSigningRequestInterface, csrData []byte, name string, usages []certificates.KeyUsage, privateKey interface{}) (req *certificates.CertificateSigningRequest, err error) { csr := &certificates.CertificateSigningRequest{ // Username, UID, Groups will be injected by API server. TypeMeta: metav1.TypeMeta{Kind: "CertificateSigningRequest"}, @@ -89,28 +94,35 @@ func requestCertificate(client certificatesclient.CertificateSigningRequestInter Usages: usages, }, } + if len(csr.Name) == 0 { + csr.GenerateName = "csr-" + } - req, err := client.Create(csr) + req, err = client.Create(csr) switch { case err == nil: - case errors.IsAlreadyExists(err): + case errors.IsAlreadyExists(err) && len(name) > 0: glog.Infof("csr for this node already exists, reusing") req, err = client.Get(name, metav1.GetOptions{}) if err != nil { - return nil, fmt.Errorf("cannot retrieve certificate signing request: %v", err) + return nil, formatError("cannot retrieve certificate signing request: %v", err) } if err := ensureCompatible(req, csr, privateKey); err != nil { return nil, fmt.Errorf("retrieved csr is not compatible: %v", err) } glog.Infof("csr for this node is still valid") default: - return nil, fmt.Errorf("cannot create certificate signing request: %v", err) + return nil, formatError("cannot create certificate signing request: %v", err) } + return req, nil +} +// WaitForCertificate waits for a certificate to be issued until timeout, or returns an error. +func WaitForCertificate(client certificatesclient.CertificateSigningRequestInterface, req *certificates.CertificateSigningRequest, timeout time.Duration) (certData []byte, err error) { fieldSelector := fields.OneTermEqualSelector("metadata.name", req.Name).String() event, err := cache.ListWatchUntil( - 3600*time.Second, + timeout, &cache.ListWatch{ ListFunc: func(options metav1.ListOptions) (runtime.Object, error) { options.FieldSelector = fieldSelector @@ -124,6 +136,8 @@ func requestCertificate(client certificatesclient.CertificateSigningRequestInter func(event watch.Event) (bool, error) { switch event.Type { case watch.Modified, watch.Added: + case watch.Deleted: + return false, fmt.Errorf("csr %q was deleted", req.Name) default: return false, nil } @@ -142,12 +156,14 @@ func requestCertificate(client certificatesclient.CertificateSigningRequestInter return false, nil }, ) + if err == wait.ErrWaitTimeout { + return nil, wait.ErrWaitTimeout + } if err != nil { - return nil, fmt.Errorf("cannot watch on the certificate signing request: %v", err) + return nil, formatError("cannot watch on the certificate signing request: %v", err) } return event.Object.(*certificates.CertificateSigningRequest).Status.Certificate, nil - } // This digest should include all the relevant pieces of the CSR we care about. @@ -184,11 +200,11 @@ func digestedName(privateKeyData []byte, subject *pkix.Name, usages []certificat // ensureCompatible ensures that a CSR object is compatible with an original CSR func ensureCompatible(new, orig *certificates.CertificateSigningRequest, privateKey interface{}) error { - newCsr, err := certhelper.ParseCSR(new) + newCsr, err := ParseCSR(new) if err != nil { return fmt.Errorf("unable to parse new csr: %v", err) } - origCsr, err := certhelper.ParseCSR(orig) + origCsr, err := ParseCSR(orig) if err != nil { return fmt.Errorf("unable to parse original csr: %v", err) } @@ -203,5 +219,43 @@ func ensureCompatible(new, orig *certificates.CertificateSigningRequest, private if err := newCsr.CheckSignature(); err != nil { return fmt.Errorf("error validating signature new CSR against old key: %v", err) } + if len(new.Status.Certificate) > 0 { + certs, err := certutil.ParseCertsPEM(new.Status.Certificate) + if err != nil { + return fmt.Errorf("error parsing signed certificate for CSR: %v", err) + } + now := time.Now() + for _, cert := range certs { + if now.After(cert.NotAfter) { + return fmt.Errorf("one of the certificates for the CSR has expired: %s", cert.NotAfter) + } + } + } return nil } + +// formatError preserves the type of an API message but alters the message. Expects +// a single argument format string, and returns the wrapped error. +func formatError(format string, err error) error { + if s, ok := err.(errors.APIStatus); ok { + se := &errors.StatusError{ErrStatus: s.Status()} + se.ErrStatus.Message = fmt.Sprintf(format, se.ErrStatus.Message) + return se + } + return fmt.Errorf(format, err) +} + +// ParseCSR extracts the CSR from the API object and decodes it. +func ParseCSR(obj *certificates.CertificateSigningRequest) (*x509.CertificateRequest, error) { + // extract PEM from request object + pemBytes := obj.Spec.Request + block, _ := pem.Decode(pemBytes) + if block == nil || block.Type != "CERTIFICATE REQUEST" { + return nil, fmt.Errorf("PEM block type must be CERTIFICATE REQUEST") + } + csr, err := x509.ParseCertificateRequest(block.Bytes) + if err != nil { + return nil, err + } + return csr, nil +} diff --git a/pkg/kubelet/util/csr/csr_test.go b/staging/src/k8s.io/client-go/util/certificate/csr/csr_test.go similarity index 100% rename from pkg/kubelet/util/csr/csr_test.go rename to staging/src/k8s.io/client-go/util/certificate/csr/csr_test.go From c3e2ee4cf39dd3f970bf4651741d30d5e20f4840 Mon Sep 17 00:00:00 2001 From: Michal Fojtik Date: Mon, 23 Oct 2017 15:07:18 +0200 Subject: [PATCH 38/78] UPSTREAM: : update clientset generator for openshift groups --- .../client-gen/generators/client_generator.go | 43 +++++++++++++++---- .../cmd/informer-gen/generators/generic.go | 3 +- .../cmd/informer-gen/generators/packages.go | 3 +- .../cmd/lister-gen/generators/lister.go | 3 +- 4 files changed, 40 insertions(+), 12 deletions(-) diff --git a/staging/src/k8s.io/code-generator/cmd/client-gen/generators/client_generator.go b/staging/src/k8s.io/code-generator/cmd/client-gen/generators/client_generator.go index e0d958fbf62c7..8239bd5ea1a0b 100644 --- a/staging/src/k8s.io/code-generator/cmd/client-gen/generators/client_generator.go +++ b/staging/src/k8s.io/code-generator/cmd/client-gen/generators/client_generator.go @@ -39,16 +39,29 @@ import ( // NameSystems returns the name system used by the generators in this package. func NameSystems() namer.NameSystems { pluralExceptions := map[string]string{ - "Endpoints": "Endpoints", + "Endpoints": "Endpoints", + "SecurityContextConstraints": "SecurityContextConstraints", } lowercaseNamer := namer.NewAllLowercasePluralNamer(pluralExceptions) publicNamer := &ExceptionNamer{ Exceptions: map[string]string{ - // these exceptions are used to deconflict the generated code - // you can put your fully qualified package like - // to generate a name that doesn't conflict with your group. - // "k8s.io/apis/events/v1alpha1.Event": "EventResource" + // these exceptions are used to deconflict the generated code + // you can put your fully qualified package like + // to generate a name that doesn't conflict with your group. + // "k8s.io/apis/events/v1alpha1.Event": "EventResource" + "github.com/openshift/origin/pkg/build/apis/build/v1.Build": "BuildResource", + "github.com/openshift/origin/pkg/build/apis/build.Build": "BuildResource", + "github.com/openshift/origin/pkg/image/apis/image/v1.Image": "ImageResource", + "github.com/openshift/origin/pkg/image/apis/image.Image": "ImageResource", + "github.com/openshift/origin/pkg/project/apis/project/v1.Project": "ProjectResource", + "github.com/openshift/origin/pkg/project/apis/project.Project": "ProjectResource", + "github.com/openshift/origin/pkg/route/apis/route/v1.Route": "RouteResource", + "github.com/openshift/origin/pkg/route/apis/route.Route": "RouteResource", + "github.com/openshift/origin/pkg/template/apis/template/v1.Template": "TemplateResource", + "github.com/openshift/origin/pkg/template/apis/template.Template": "TemplateResource", + "github.com/openshift/origin/pkg/user/apis/user/v1.User": "UserResource", + "github.com/openshift/origin/pkg/user/apis/user.User": "UserResource", }, KeyFunc: func(t *types.Type) string { return t.Name.Package + "." + t.Name.Name @@ -57,10 +70,22 @@ func NameSystems() namer.NameSystems { } privateNamer := &ExceptionNamer{ Exceptions: map[string]string{ - // these exceptions are used to deconflict the generated code - // you can put your fully qualified package like - // to generate a name that doesn't conflict with your group. - // "k8s.io/apis/events/v1alpha1.Event": "eventResource" + // these exceptions are used to deconflict the generated code + // you can put your fully qualified package like + // to generate a name that doesn't conflict with your group. + // "k8s.io/apis/events/v1alpha1.Event": "eventResource" + "github.com/openshift/origin/pkg/build/apis/build/v1.Build": "buildResource", + "github.com/openshift/origin/pkg/build/apis/build.Build": "buildResource", + "github.com/openshift/origin/pkg/image/apis/image/v1.Image": "imageResource", + "github.com/openshift/origin/pkg/image/apis/image.Image": "imageResource", + "github.com/openshift/origin/pkg/project/apis/project/v1.Project": "projectResource", + "github.com/openshift/origin/pkg/project/apis/project.Project": "projectResource", + "github.com/openshift/origin/pkg/route/apis/route/v1.Route": "routeResource", + "github.com/openshift/origin/pkg/route/apis/route.Route": "routeResource", + "github.com/openshift/origin/pkg/template/apis/template/v1.Template": "templateResource", + "github.com/openshift/origin/pkg/template/apis/template.Template": "templateResource", + "github.com/openshift/origin/pkg/user/apis/user/v1.User": "userResource", + "github.com/openshift/origin/pkg/user/apis/user.User": "userResource", }, KeyFunc: func(t *types.Type) string { return t.Name.Package + "." + t.Name.Name diff --git a/staging/src/k8s.io/code-generator/cmd/informer-gen/generators/generic.go b/staging/src/k8s.io/code-generator/cmd/informer-gen/generators/generic.go index 4054b577d433c..f2e64d6c44ca2 100644 --- a/staging/src/k8s.io/code-generator/cmd/informer-gen/generators/generic.go +++ b/staging/src/k8s.io/code-generator/cmd/informer-gen/generators/generic.go @@ -49,7 +49,8 @@ func (g *genericGenerator) Filter(c *generator.Context, t *types.Type) bool { func (g *genericGenerator) Namers(c *generator.Context) namer.NameSystems { pluralExceptions := map[string]string{ - "Endpoints": "Endpoints", + "Endpoints": "Endpoints", + "SecurityContextConstraints": "SecurityContextConstraints", } return namer.NameSystems{ "raw": namer.NewRawNamer(g.outputPackage, g.imports), diff --git a/staging/src/k8s.io/code-generator/cmd/informer-gen/generators/packages.go b/staging/src/k8s.io/code-generator/cmd/informer-gen/generators/packages.go index 593e56a2b5f35..949fe7421535b 100644 --- a/staging/src/k8s.io/code-generator/cmd/informer-gen/generators/packages.go +++ b/staging/src/k8s.io/code-generator/cmd/informer-gen/generators/packages.go @@ -35,7 +35,8 @@ import ( // NameSystems returns the name system used by the generators in this package. func NameSystems() namer.NameSystems { pluralExceptions := map[string]string{ - "Endpoints": "Endpoints", + "Endpoints": "Endpoints", + "SecurityContextConstraints": "SecurityContextConstraints", } return namer.NameSystems{ "public": namer.NewPublicNamer(0), diff --git a/staging/src/k8s.io/code-generator/cmd/lister-gen/generators/lister.go b/staging/src/k8s.io/code-generator/cmd/lister-gen/generators/lister.go index e25a5a1a1892e..c01a4ad8cd67b 100644 --- a/staging/src/k8s.io/code-generator/cmd/lister-gen/generators/lister.go +++ b/staging/src/k8s.io/code-generator/cmd/lister-gen/generators/lister.go @@ -36,7 +36,8 @@ import ( // NameSystems returns the name system used by the generators in this package. func NameSystems() namer.NameSystems { pluralExceptions := map[string]string{ - "Endpoints": "Endpoints", + "Endpoints": "Endpoints", + "SecurityContextConstraints": "SecurityContextConstraints", } return namer.NameSystems{ "public": namer.NewPublicNamer(0), From 4d623917f7528fb517ed5391cc57550b6f0f0563 Mon Sep 17 00:00:00 2001 From: Joel Smith Date: Fri, 13 Oct 2017 10:09:23 -0600 Subject: [PATCH 39/78] UPSTREAM: 53857: kubelet sync pod throws more detailed events :100644 100644 3c0ee08b3e... 926938263d... M pkg/kubelet/events/event.go :100644 100644 cc9f404ce4... 17a119e9c0... M pkg/kubelet/kubelet.go :100644 100644 31f0b8ed9f... 1f27afb331... M pkg/kubelet/kuberuntime/kuberuntime_container.go :100644 100644 d852c9a631... 7e5d1d0d29... M pkg/kubelet/kuberuntime/kuberuntime_manager.go :100644 100644 ea2ace249c... bf5b50e460... M pkg/kubelet/pod_workers.go --- pkg/kubelet/events/event.go | 7 +++++++ pkg/kubelet/kubelet.go | 11 +++++++++++ pkg/kubelet/kuberuntime/kuberuntime_container.go | 1 + pkg/kubelet/kuberuntime/kuberuntime_manager.go | 5 +++++ pkg/kubelet/pod_workers.go | 11 ++++------- 5 files changed, 28 insertions(+), 7 deletions(-) diff --git a/pkg/kubelet/events/event.go b/pkg/kubelet/events/event.go index a1bb2682ed049..5ef68d9b44866 100644 --- a/pkg/kubelet/events/event.go +++ b/pkg/kubelet/events/event.go @@ -27,6 +27,12 @@ const ( BackOffStartContainer = "BackOff" ExceededGracePeriod = "ExceededGracePeriod" + // Pod event reason list + FailedToKillPod = "FailedKillPod" + FailedToCreatePodContainer = "FailedCreatePodContainer" + FailedToMakePodDataDirectories = "Failed" + NetworkNotReady = "NetworkNotReady" + // Image event reason list PullingImage = "Pulling" PulledImage = "Pulled" @@ -65,6 +71,7 @@ const ( UnsupportedMountOption = "UnsupportedMountOption" SandboxChanged = "SandboxChanged" FailedCreatePodSandBox = "FailedCreatePodSandBox" + FailedStatusPodSandBox = "FailedPodSandBoxStatus" // Image manager event reason list InvalidDiskCapacity = "InvalidDiskCapacity" diff --git a/pkg/kubelet/kubelet.go b/pkg/kubelet/kubelet.go index 2a423bfbb2a7f..cdc1bfbcbc7cf 100644 --- a/pkg/kubelet/kubelet.go +++ b/pkg/kubelet/kubelet.go @@ -1446,6 +1446,10 @@ func (kl *Kubelet) GetClusterDNS(pod *v1.Pod) ([]string, []string, bool, error) // // If any step of this workflow errors, the error is returned, and is repeated // on the next syncPod call. +// +// This operation writes all events that are dispatched in order to provide +// the most accurate information possible about an error situation to aid debugging. +// Callers should not throw an event if this operation returns an error. func (kl *Kubelet) syncPod(o syncPodOptions) error { // pull out the required options pod := o.pod @@ -1463,6 +1467,7 @@ func (kl *Kubelet) syncPod(o syncPodOptions) error { kl.statusManager.SetPodStatus(pod, apiPodStatus) // we kill the pod with the specified grace period since this is a termination if err := kl.killPod(pod, nil, podStatus, killPodOptions.PodTerminationGracePeriodSecondsOverride); err != nil { + kl.recorder.Eventf(pod, v1.EventTypeWarning, events.FailedToKillPod, "error killing pod: %v", err) // there was an error killing the pod, so we return that error directly utilruntime.HandleError(err) return err @@ -1529,6 +1534,7 @@ func (kl *Kubelet) syncPod(o syncPodOptions) error { if !runnable.Admit || pod.DeletionTimestamp != nil || apiPodStatus.Phase == v1.PodFailed { var syncErr error if err := kl.killPod(pod, nil, podStatus, nil); err != nil { + kl.recorder.Eventf(pod, v1.EventTypeWarning, events.FailedToKillPod, "error killing pod: %v", err) syncErr = fmt.Errorf("error killing pod: %v", err) utilruntime.HandleError(syncErr) } else { @@ -1543,6 +1549,7 @@ func (kl *Kubelet) syncPod(o syncPodOptions) error { // If the network plugin is not ready, only start the pod if it uses the host network if rs := kl.runtimeState.networkErrors(); len(rs) != 0 && !kubecontainer.IsHostNetworkPod(pod) { + kl.recorder.Eventf(pod, v1.EventTypeWarning, events.NetworkNotReady, "network is not ready: %v", rs) return fmt.Errorf("network is not ready: %v", rs) } @@ -1585,6 +1592,7 @@ func (kl *Kubelet) syncPod(o syncPodOptions) error { glog.V(2).Infof("Failed to update QoS cgroups while syncing pod: %v", err) } if err := pcm.EnsureExists(pod); err != nil { + kl.recorder.Eventf(pod, v1.EventTypeWarning, events.FailedToCreatePodContainer, "unable to ensure pod container exists: %v", err) return fmt.Errorf("failed to ensure that the pod: %v cgroups exist and are correctly applied: %v", pod.UID, err) } } @@ -1617,6 +1625,7 @@ func (kl *Kubelet) syncPod(o syncPodOptions) error { // Make data directories for the pod if err := kl.makePodDataDirs(pod); err != nil { + kl.recorder.Eventf(pod, v1.EventTypeWarning, events.FailedToMakePodDataDirectories, "error making pod data directories: %v", err) glog.Errorf("Unable to make pod data directories for pod %q: %v", format.Pod(pod), err) return err } @@ -1638,6 +1647,8 @@ func (kl *Kubelet) syncPod(o syncPodOptions) error { result := kl.containerRuntime.SyncPod(pod, apiPodStatus, podStatus, pullSecrets, kl.backOff) kl.reasonCache.Update(pod.UID, result) if err := result.Error(); err != nil { + // Do not record an event here, as we keep all event logging for sync pod failures + // local to container runtime so we get better errors return err } diff --git a/pkg/kubelet/kuberuntime/kuberuntime_container.go b/pkg/kubelet/kuberuntime/kuberuntime_container.go index a673c8ceedb98..ab29fb6d528b7 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_container.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_container.go @@ -89,6 +89,7 @@ func (m *kubeGenericRuntimeManager) startContainer(podSandboxID string, podSandb // Step 1: pull the image. imageRef, msg, err := m.imagePuller.EnsureImageExists(pod, container, pullSecrets) if err != nil { + m.recordContainerEvent(pod, container, "", v1.EventTypeWarning, events.FailedToCreateContainer, "Error: %v", grpc.ErrorDesc(err)) return msg, err } diff --git a/pkg/kubelet/kuberuntime/kuberuntime_manager.go b/pkg/kubelet/kuberuntime/kuberuntime_manager.go index 75e238014a93c..7f936d387fb12 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_manager.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_manager.go @@ -642,6 +642,11 @@ func (m *kubeGenericRuntimeManager) SyncPod(pod *v1.Pod, _ v1.PodStatus, podStat podSandboxStatus, err := m.runtimeService.PodSandboxStatus(podSandboxID) if err != nil { + ref, err := ref.GetReference(api.Scheme, pod) + if err != nil { + glog.Errorf("Couldn't make a ref to pod %q: '%v'", format.Pod(pod), err) + } + m.recorder.Eventf(ref, v1.EventTypeWarning, events.FailedStatusPodSandBox, "Unable to get pod sandbox status: %v", err) glog.Errorf("Failed to get pod sandbox status: %v; Skipping pod %q", err, format.Pod(pod)) result.Fail(err) return diff --git a/pkg/kubelet/pod_workers.go b/pkg/kubelet/pod_workers.go index 91f48be899a13..6a8a33353f553 100644 --- a/pkg/kubelet/pod_workers.go +++ b/pkg/kubelet/pod_workers.go @@ -162,6 +162,9 @@ func (p *podWorkers) managePodLoop(podUpdates <-chan UpdatePodOptions) { // the previous sync. status, err := p.podCache.GetNewerThan(podUID, lastSyncTime) if err != nil { + // This is the legacy event thrown by manage pod loop + // all other events are now dispatched from syncPodFn + p.recorder.Eventf(update.Pod, v1.EventTypeWarning, events.FailedSync, "error determining status: %v", err) return err } err = p.syncPodFn(syncPodOptions{ @@ -179,14 +182,8 @@ func (p *podWorkers) managePodLoop(podUpdates <-chan UpdatePodOptions) { update.OnCompleteFunc(err) } if err != nil { + // IMPORTANT: we do not log errors here, the syncPodFn is responsible for logging errors glog.Errorf("Error syncing pod %s (%q), skipping: %v", update.Pod.UID, format.Pod(update.Pod), err) - // if we failed sync, we throw more specific events for why it happened. - // as a result, i question the value of this event. - // TODO: determine if we can remove this in a future release. - // do not include descriptive text that can vary on why it failed so in a pathological - // scenario, kubelet does not create enough discrete events that miss default aggregation - // window. - p.recorder.Eventf(update.Pod, v1.EventTypeWarning, events.FailedSync, "Error syncing pod") } p.wrapUp(update.Pod.UID, err) } From 15e3ba78109fda58b9124f8675799520d4bb1a4b Mon Sep 17 00:00:00 2001 From: David Eads Date: Thu, 12 Oct 2017 14:30:54 -0400 Subject: [PATCH 40/78] UPSTREAM: 52673: default service resolver for webhook admission :100644 100644 95b83dcd3e... f93a9d9306... M pkg/kubeapiserver/admission/initializer.go :100644 100644 5faad954b6... 97a76b2c0a... M plugin/pkg/admission/webhook/BUILD :100644 100644 6236fb4fa9... 81e611fb03... M plugin/pkg/admission/webhook/admission.go :000000 100644 0000000000... 018402934f... A plugin/pkg/admission/webhook/serviceresolver.go :000000 100644 0000000000... 3fb2f7a53c... A plugin/pkg/admission/webhook/serviceresolver_test.go --- pkg/kubeapiserver/admission/initializer.go | 3 - plugin/pkg/admission/webhook/BUILD | 2 + plugin/pkg/admission/webhook/admission.go | 7 ++- .../pkg/admission/webhook/serviceresolver.go | 42 ++++++++++++++ .../admission/webhook/serviceresolver_test.go | 57 +++++++++++++++++++ 5 files changed, 107 insertions(+), 4 deletions(-) create mode 100644 plugin/pkg/admission/webhook/serviceresolver.go create mode 100644 plugin/pkg/admission/webhook/serviceresolver_test.go diff --git a/pkg/kubeapiserver/admission/initializer.go b/pkg/kubeapiserver/admission/initializer.go index fed03e9db2d2e..1c62cfec2afa9 100644 --- a/pkg/kubeapiserver/admission/initializer.go +++ b/pkg/kubeapiserver/admission/initializer.go @@ -188,9 +188,6 @@ func (i *PluginInitializer) Initialize(plugin admission.Interface) { } if wants, ok := plugin.(WantsServiceResolver); ok { - if i.serviceResolver == nil { - panic("An admission plugin wants the service resolver, but it was not provided.") - } wants.SetServiceResolver(i.serviceResolver) } diff --git a/plugin/pkg/admission/webhook/BUILD b/plugin/pkg/admission/webhook/BUILD index 0221e3ffbe381..c90a9320dab2a 100644 --- a/plugin/pkg/admission/webhook/BUILD +++ b/plugin/pkg/admission/webhook/BUILD @@ -12,6 +12,7 @@ go_test( "admission_test.go", "certs_test.go", "rules_test.go", + "serviceresolver_test.go", ], library = ":go_default_library", deps = [ @@ -32,6 +33,7 @@ go_library( "admission.go", "doc.go", "rules.go", + "serviceresolver.go", ], deps = [ "//pkg/api:go_default_library", diff --git a/plugin/pkg/admission/webhook/admission.go b/plugin/pkg/admission/webhook/admission.go index fa208cdb78b8f..63dd7903c1d56 100644 --- a/plugin/pkg/admission/webhook/admission.go +++ b/plugin/pkg/admission/webhook/admission.go @@ -97,6 +97,7 @@ func NewGenericAdmissionWebhook() (*GenericAdmissionWebhook, error) { negotiatedSerializer: serializer.NegotiatedSerializerWrapper(runtime.SerializerInfo{ Serializer: api.Codecs.LegacyCodec(admissionv1alpha1.SchemeGroupVersion), }), + serviceResolver: defaultServiceResolver{}, }, nil } @@ -121,8 +122,12 @@ func (a *GenericAdmissionWebhook) SetProxyTransport(pt *http.Transport) { a.proxyTransport = pt } +// SetServiceResolver sets a service resolver for the webhook admission plugin. +// Passing a nil resolver does not have an effect, instead a default one will be used. func (a *GenericAdmissionWebhook) SetServiceResolver(sr admissioninit.ServiceResolver) { - a.serviceResolver = sr + if sr != nil { + a.serviceResolver = sr + } } func (a *GenericAdmissionWebhook) SetClientCert(cert, key []byte) { diff --git a/plugin/pkg/admission/webhook/serviceresolver.go b/plugin/pkg/admission/webhook/serviceresolver.go new file mode 100644 index 0000000000000..018402934fefb --- /dev/null +++ b/plugin/pkg/admission/webhook/serviceresolver.go @@ -0,0 +1,42 @@ +/* +Copyright 2017 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 webhook checks a webhook for configured operation admission +package webhook + +import ( + "errors" + "fmt" + "net/url" + + admissioninit "k8s.io/kubernetes/pkg/kubeapiserver/admission" +) + +type defaultServiceResolver struct{} + +var _ admissioninit.ServiceResolver = defaultServiceResolver{} + +// ResolveEndpoint constructs a service URL from a given namespace and name +// note that the name and namespace are required and by default all created addresses use HTTPS scheme. +// for example: +// name=ross namespace=andromeda resolves to https://ross.andromeda.svc +func (sr defaultServiceResolver) ResolveEndpoint(namespace, name string) (*url.URL, error) { + if len(name) == 0 || len(namespace) == 0 { + return &url.URL{}, errors.New("cannot resolve an empty service name or namespace") + } + + return url.Parse(fmt.Sprintf("https://%s.%s.svc", name, namespace)) +} diff --git a/plugin/pkg/admission/webhook/serviceresolver_test.go b/plugin/pkg/admission/webhook/serviceresolver_test.go new file mode 100644 index 0000000000000..3fb2f7a53c583 --- /dev/null +++ b/plugin/pkg/admission/webhook/serviceresolver_test.go @@ -0,0 +1,57 @@ +/* +Copyright 2017 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 webhook checks a webhook for configured operation admission +package webhook + +import ( + "fmt" + "testing" +) + +func TestDefaultServiceResolver(t *testing.T) { + scenarios := []struct { + serviceName string + serviceNamespace string + expectedOutput string + expectError bool + }{ + // scenario 1: a service name along with a namespace resolves + {serviceName: "ross", serviceNamespace: "andromeda", expectedOutput: "https://ross.andromeda.svc"}, + // scenario 2: a service name without a namespace does not resolve + {serviceName: "ross", expectError: true}, + // scenario 3: cannot resolve an empty service name + {serviceNamespace: "andromeda", expectError: true}, + } + + // act + for index, scenario := range scenarios { + t.Run(fmt.Sprintf("scenario %d", index), func(t *testing.T) { + target := defaultServiceResolver{} + serviceURL, err := target.ResolveEndpoint(scenario.serviceNamespace, scenario.serviceName) + + if err != nil && !scenario.expectError { + t.Errorf("unexpected error has occurred = %v", err) + } + if err == nil && scenario.expectError { + t.Error("expected an error but got nothing") + } + if serviceURL.String() != scenario.expectedOutput { + t.Errorf("expected = %s, got = %s", scenario.expectedOutput, serviceURL.String()) + } + }) + } +} From 910fcc3328e901f084c5be35ccea509334f7741b Mon Sep 17 00:00:00 2001 From: David Eads Date: Thu, 12 Oct 2017 16:01:15 -0400 Subject: [PATCH 41/78] UPSTREAM: 53823: allow fail close webhook admission :100644 100644 4c478f457e... d6e45cb292... M pkg/apis/admissionregistration/validation/validation.go :100644 100644 a864ac3a86... 733e0a5630... M pkg/apis/admissionregistration/validation/validation_test.go :100644 100644 81e611fb03... 692e73f39c... M plugin/pkg/admission/webhook/admission.go :100644 100644 5e2380421b... c6d845201c... M plugin/pkg/admission/webhook/admission_test.go --- .../validation/validation.go | 10 ++-- .../validation/validation_test.go | 6 +-- plugin/pkg/admission/webhook/admission.go | 5 +- .../pkg/admission/webhook/admission_test.go | 47 +++++++++++++++++++ 4 files changed, 61 insertions(+), 7 deletions(-) diff --git a/pkg/apis/admissionregistration/validation/validation.go b/pkg/apis/admissionregistration/validation/validation.go index 07c0bb1b198b6..3c4068f24c7b1 100644 --- a/pkg/apis/admissionregistration/validation/validation.go +++ b/pkg/apis/admissionregistration/validation/validation.go @@ -179,13 +179,17 @@ func validateExternalAdmissionHook(hook *admissionregistration.ExternalAdmission for i, rule := range hook.Rules { allErrors = append(allErrors, validateRuleWithOperations(&rule, fldPath.Child("rules").Index(i))...) } - // TODO: relax the validation rule when admissionregistration is beta. - if hook.FailurePolicy != nil && *hook.FailurePolicy != admissionregistration.Ignore { - allErrors = append(allErrors, field.NotSupported(fldPath.Child("failurePolicy"), *hook.FailurePolicy, []string{string(admissionregistration.Ignore)})) + if hook.FailurePolicy != nil && !supportedFailurePolicies.Has(string(*hook.FailurePolicy)) { + allErrors = append(allErrors, field.NotSupported(fldPath.Child("failurePolicy"), *hook.FailurePolicy, supportedFailurePolicies.List())) } return allErrors } +var supportedFailurePolicies = sets.NewString( + string(admissionregistration.Ignore), + string(admissionregistration.Fail), +) + var supportedOperations = sets.NewString( string(admissionregistration.OperationAll), string(admissionregistration.Create), diff --git a/pkg/apis/admissionregistration/validation/validation_test.go b/pkg/apis/admissionregistration/validation/validation_test.go index 6d41c28be8797..c9111dc1e3f5d 100644 --- a/pkg/apis/admissionregistration/validation/validation_test.go +++ b/pkg/apis/admissionregistration/validation/validation_test.go @@ -469,18 +469,18 @@ func TestValidateExternalAdmissionHookConfiguration(t *testing.T) { expectedError: `externalAdmissionHooks[0].rules[0].resources: Invalid value: []string{"*/*", "a"}: if '*/*' is present, must not specify other resources`, }, { - name: "FailurePolicy can only be \"Ignore\"", + name: "FailurePolicy can only be \"Ignore\" or \"Fail\"", config: getExternalAdmissionHookConfiguration( []admissionregistration.ExternalAdmissionHook{ { Name: "webhook.k8s.io", FailurePolicy: func() *admissionregistration.FailurePolicyType { - r := admissionregistration.Fail + r := admissionregistration.FailurePolicyType("other") return &r }(), }, }), - expectedError: `failurePolicy: Unsupported value: "Fail": supported values: Ignore`, + expectedError: `failurePolicy: Unsupported value: "other": supported values: Fail, Ignore`, }, } for _, test := range tests { diff --git a/plugin/pkg/admission/webhook/admission.go b/plugin/pkg/admission/webhook/admission.go index 63dd7903c1d56..8175688e47450 100644 --- a/plugin/pkg/admission/webhook/admission.go +++ b/plugin/pkg/admission/webhook/admission.go @@ -181,9 +181,12 @@ func (a *GenericAdmissionWebhook) Admit(attr admission.Attributes) error { for i := range hooks { go func(hook *v1alpha1.ExternalAdmissionHook) { defer wg.Done() + + ignoreClientCallFailures := hook.FailurePolicy == nil || *hook.FailurePolicy == v1alpha1.Ignore + if err := a.callHook(ctx, hook, attr); err == nil { return - } else if callErr, ok := err.(*ErrCallingWebhook); ok { + } else if callErr, ok := err.(*ErrCallingWebhook); ignoreClientCallFailures && ok { glog.Warningf("Failed calling webhook %v: %v", hook.Name, callErr) utilruntime.HandleError(callErr) // Since we are failing open to begin with, we do not send an error down the channel diff --git a/plugin/pkg/admission/webhook/admission_test.go b/plugin/pkg/admission/webhook/admission_test.go index 26cb3221e388b..68f815d780b99 100644 --- a/plugin/pkg/admission/webhook/admission_test.go +++ b/plugin/pkg/admission/webhook/admission_test.go @@ -143,6 +143,9 @@ func TestAdmit(t *testing.T) { }, }} + policyFail := registrationv1alpha1.Fail + policyIgnore := registrationv1alpha1.Ignore + table := map[string]test{ "no match": { hookSource: fakeHookSource{ @@ -191,6 +194,28 @@ func TestAdmit(t *testing.T) { errorContains: "you shall not pass", }, "match & fail (but allow because fail open)": { + hookSource: fakeHookSource{ + hooks: []registrationv1alpha1.ExternalAdmissionHook{{ + Name: "internalErr A", + ClientConfig: ccfg, + Rules: matchEverythingRules, + FailurePolicy: &policyIgnore, + }, { + Name: "internalErr B", + ClientConfig: ccfg, + Rules: matchEverythingRules, + FailurePolicy: &policyIgnore, + }, { + Name: "internalErr C", + ClientConfig: ccfg, + Rules: matchEverythingRules, + FailurePolicy: &policyIgnore, + }}, + }, + path: "internalErr", + expectAllow: true, + }, + "match & fail (but allow because fail open on nil)": { hookSource: fakeHookSource{ hooks: []registrationv1alpha1.ExternalAdmissionHook{{ Name: "internalErr A", @@ -209,6 +234,28 @@ func TestAdmit(t *testing.T) { path: "internalErr", expectAllow: true, }, + "match & fail (but fail because fail closed)": { + hookSource: fakeHookSource{ + hooks: []registrationv1alpha1.ExternalAdmissionHook{{ + Name: "internalErr A", + ClientConfig: ccfg, + Rules: matchEverythingRules, + FailurePolicy: &policyFail, + }, { + Name: "internalErr B", + ClientConfig: ccfg, + Rules: matchEverythingRules, + FailurePolicy: &policyFail, + }, { + Name: "internalErr C", + ClientConfig: ccfg, + Rules: matchEverythingRules, + FailurePolicy: &policyFail, + }}, + }, + path: "internalErr", + expectAllow: false, + }, } for name, tt := range table { From d77c2280f3cde4615ed6d0079467e1b5ddccccfd Mon Sep 17 00:00:00 2001 From: David Eads Date: Fri, 13 Oct 2017 10:59:16 -0400 Subject: [PATCH 42/78] UPSTREAM: 53896: decode admission responses into a fresh object :100644 100644 b3995e59dd... 7ed48812b9... M plugin/pkg/admission/webhook/admission.go --- plugin/pkg/admission/webhook/admission.go | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/plugin/pkg/admission/webhook/admission.go b/plugin/pkg/admission/webhook/admission.go index 8175688e47450..f405c0c40e16e 100644 --- a/plugin/pkg/admission/webhook/admission.go +++ b/plugin/pkg/admission/webhook/admission.go @@ -234,20 +234,21 @@ func (a *GenericAdmissionWebhook) callHook(ctx context.Context, h *v1alpha1.Exte if err != nil { return &ErrCallingWebhook{WebhookName: h.Name, Reason: err} } - if err := client.Post().Context(ctx).Body(&request).Do().Into(&request); err != nil { + response := &admissionv1alpha1.AdmissionReview{} + if err := client.Post().Context(ctx).Body(&request).Do().Into(response); err != nil { return &ErrCallingWebhook{WebhookName: h.Name, Reason: err} } - if request.Status.Allowed { + if response.Status.Allowed { return nil } - if request.Status.Result == nil { + if response.Status.Result == nil { return fmt.Errorf("admission webhook %q denied the request without explanation", h.Name) } return &apierrors.StatusError{ - ErrStatus: *request.Status.Result, + ErrStatus: *response.Status.Result, } } From cc1484bfa11a11fb17a0df77f663d449bca8042d Mon Sep 17 00:00:00 2001 From: David Eads Date: Fri, 13 Oct 2017 09:53:55 -0400 Subject: [PATCH 43/78] UPSTREAM: : drop in 1.9 rebase. Shims enough admission webhook to work without modifying api :100644 100644 d6e45cb292... a6e862366b... M pkg/apis/admissionregistration/validation/validation.go :100644 100644 7ed48812b9... 8281825649... M plugin/pkg/admission/webhook/admission.go :100644 100644 8dee1f3a05... c423b67842... M plugin/pkg/admission/webhook/admission_test.go :100644 100644 baa1e2a045... 748c7009f8... M test/e2e/framework/framework.go --- .../validation/validation.go | 1 - plugin/pkg/admission/webhook/admission.go | 9 ++++- .../pkg/admission/webhook/admission_test.go | 4 +- .../pkg/util/validation/validation.go | 3 -- .../pkg/util/validation/validation_test.go | 5 --- test/e2e/framework/framework.go | 37 +++++++++++++++++++ 6 files changed, 47 insertions(+), 12 deletions(-) diff --git a/pkg/apis/admissionregistration/validation/validation.go b/pkg/apis/admissionregistration/validation/validation.go index 3c4068f24c7b1..a7971ee430e99 100644 --- a/pkg/apis/admissionregistration/validation/validation.go +++ b/pkg/apis/admissionregistration/validation/validation.go @@ -175,7 +175,6 @@ func validateExternalAdmissionHook(hook *admissionregistration.ExternalAdmission var allErrors field.ErrorList // hook.Name must be fully qualified allErrors = append(allErrors, validation.IsFullyQualifiedName(fldPath.Child("name"), hook.Name)...) - for i, rule := range hook.Rules { allErrors = append(allErrors, validateRuleWithOperations(&rule, fldPath.Child("rules").Index(i))...) } diff --git a/plugin/pkg/admission/webhook/admission.go b/plugin/pkg/admission/webhook/admission.go index f405c0c40e16e..1618d2ada1647 100644 --- a/plugin/pkg/admission/webhook/admission.go +++ b/plugin/pkg/admission/webhook/admission.go @@ -23,6 +23,7 @@ import ( "io" "net" "net/http" + "strings" "sync" "time" @@ -234,8 +235,14 @@ func (a *GenericAdmissionWebhook) callHook(ctx context.Context, h *v1alpha1.Exte if err != nil { return &ErrCallingWebhook{WebhookName: h.Name, Reason: err} } + + tokens := strings.SplitN(h.Name, "/", 2) + urlPath := "" + if len(tokens) == 2 { + urlPath = tokens[1] + } response := &admissionv1alpha1.AdmissionReview{} - if err := client.Post().Context(ctx).Body(&request).Do().Into(response); err != nil { + if err := client.Post().Context(ctx).AbsPath(urlPath).Body(&request).Do().Into(response); err != nil { return &ErrCallingWebhook{WebhookName: h.Name, Reason: err} } diff --git a/plugin/pkg/admission/webhook/admission_test.go b/plugin/pkg/admission/webhook/admission_test.go index 68f815d780b99..2b98ada7a41e0 100644 --- a/plugin/pkg/admission/webhook/admission_test.go +++ b/plugin/pkg/admission/webhook/admission_test.go @@ -174,7 +174,7 @@ func TestAdmit(t *testing.T) { "match & disallow": { hookSource: fakeHookSource{ hooks: []registrationv1alpha1.ExternalAdmissionHook{{ - Name: "disallow", + Name: "disallow/disallow", ClientConfig: ccfg, Rules: matchEverythingRules, }}, @@ -185,7 +185,7 @@ func TestAdmit(t *testing.T) { "match & disallow ii": { hookSource: fakeHookSource{ hooks: []registrationv1alpha1.ExternalAdmissionHook{{ - Name: "disallowReason", + Name: "disallowReason/disallowReason", ClientConfig: ccfg, Rules: matchEverythingRules, }}, diff --git a/staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go b/staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go index 7da6a17d994d1..5431631f0bbd7 100644 --- a/staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go +++ b/staging/src/k8s.io/apimachinery/pkg/util/validation/validation.go @@ -75,9 +75,6 @@ func IsFullyQualifiedName(fldPath *field.Path, name string) field.ErrorList { if len(name) == 0 { return append(allErrors, field.Required(fldPath, "")) } - if errs := IsDNS1123Subdomain(name); len(errs) > 0 { - return append(allErrors, field.Invalid(fldPath, name, strings.Join(errs, ","))) - } if len(strings.Split(name, ".")) < 3 { return append(allErrors, field.Invalid(fldPath, name, "should be a domain with at least three segments separated by dots")) } diff --git a/staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go b/staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go index 4c628bbc44d0e..b10e01a07170e 100644 --- a/staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go +++ b/staging/src/k8s.io/apimachinery/pkg/util/validation/validation_test.go @@ -493,11 +493,6 @@ func TestIsFullyQualifiedName(t *testing.T) { targetName: "", err: "Required value", }, - { - name: "name must conform to RFC 1123", - targetName: "A.B.C", - err: "a DNS-1123 subdomain must consist of lower case alphanumeric characters", - }, } for _, tc := range tests { err := IsFullyQualifiedName(field.NewPath(""), tc.targetName).ToAggregate() diff --git a/test/e2e/framework/framework.go b/test/e2e/framework/framework.go index 282699bcda7bd..c6ded886c51db 100644 --- a/test/e2e/framework/framework.go +++ b/test/e2e/framework/framework.go @@ -19,9 +19,11 @@ package framework import ( "bufio" "bytes" + "encoding/json" "fmt" "os" "path" + "reflect" "strings" "sync" "time" @@ -32,10 +34,12 @@ import ( "k8s.io/apimachinery/pkg/labels" "k8s.io/apimachinery/pkg/runtime/schema" "k8s.io/apimachinery/pkg/util/intstr" + "k8s.io/apimachinery/pkg/util/sets" "k8s.io/apimachinery/pkg/util/wait" "k8s.io/client-go/dynamic" "k8s.io/client-go/informers" clientset "k8s.io/client-go/kubernetes" + restclient "k8s.io/client-go/rest" "k8s.io/client-go/tools/clientcmd" aggregatorclient "k8s.io/kube-aggregator/pkg/client/clientset_generated/clientset" "k8s.io/kubernetes/pkg/api" @@ -137,6 +141,39 @@ func NewFramework(baseName string, options FrameworkOptions, client clientset.In return f } +// getClientRepoConfig copies k8s.io/kubernetes/pkg/client/restclient.Config to +// a k8s.io/client-go/pkg/client/restclient.Config. It's not a deep copy. Two +// configs may share some common struct. +func getClientRepoConfig(src *restclient.Config) (dst *restclient.Config) { + skippedFields := sets.NewString("Transport", "WrapTransport", "RateLimiter", "AuthConfigPersister", "Dial") + dst = &restclient.Config{} + dst.Transport = src.Transport + dst.WrapTransport = src.WrapTransport + dst.RateLimiter = src.RateLimiter + dst.AuthConfigPersister = src.AuthConfigPersister + dst.Dial = src.Dial + sv := reflect.ValueOf(src).Elem() + dv := reflect.ValueOf(dst).Elem() + for i := 0; i < sv.NumField(); i++ { + if skippedFields.Has(sv.Type().Field(i).Name) { + continue + } + sf := sv.Field(i).Interface() + data, err := json.Marshal(sf) + if err != nil { + Expect(err).NotTo(HaveOccurred()) + } + if !dv.Field(i).CanAddr() { + Failf("unaddressable field: %v", dv.Type().Field(i).Name) + } else { + if err := json.Unmarshal(data, dv.Field(i).Addr().Interface()); err != nil { + Expect(err).NotTo(HaveOccurred()) + } + } + } + return dst +} + // BeforeEach gets a client and makes a namespace. func (f *Framework) BeforeEach() { // The fact that we need this feels like a bug in ginkgo. From 733713a2a66ea6665cdb00a91f755a8f10446ff0 Mon Sep 17 00:00:00 2001 From: juanvallejo Date: Wed, 4 Oct 2017 17:33:25 -0400 Subject: [PATCH 44/78] UPSTREAM: 53464: output empty creationTimestamps as null :100644 100644 fed687e9bd... bcc87f4fe0... M staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured.go --- .../pkg/apis/meta/v1/unstructured/unstructured.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured.go b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured.go index 588230f40903e..6202d1edc7d5b 100644 --- a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured.go +++ b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructured.go @@ -484,6 +484,10 @@ func (u *Unstructured) GetCreationTimestamp() metav1.Time { func (u *Unstructured) SetCreationTimestamp(timestamp metav1.Time) { ts, _ := timestamp.MarshalQueryParameter() + if len(ts) == 0 { + u.setNestedField(nil, "metadata", "creationTimestamp") + return + } u.setNestedField(ts, "metadata", "creationTimestamp") } From e243b7bf2278621004813b60d8405c4287bab56c Mon Sep 17 00:00:00 2001 From: juanvallejo Date: Tue, 24 Oct 2017 11:43:06 -0400 Subject: [PATCH 45/78] UPSTREAM: 51750: output `` for colums not found :100644 100644 eec16ea18a... bba5bc4ced... M pkg/printers/customcolumn.go :100644 100644 dc1e72101c... 94f915c0d9... M pkg/printers/customcolumn_test.go --- pkg/printers/customcolumn.go | 6 +++--- pkg/printers/customcolumn_test.go | 20 ++++++++++++++++++++ 2 files changed, 23 insertions(+), 3 deletions(-) diff --git a/pkg/printers/customcolumn.go b/pkg/printers/customcolumn.go index eec16ea18aa1c..bba5bc4ced584 100644 --- a/pkg/printers/customcolumn.go +++ b/pkg/printers/customcolumn.go @@ -176,7 +176,7 @@ func (s *CustomColumnsPrinter) PrintObj(obj runtime.Object, out io.Writer) error } parsers := make([]*jsonpath.JSONPath, len(s.Columns)) for ix := range s.Columns { - parsers[ix] = jsonpath.New(fmt.Sprintf("column%d", ix)) + parsers[ix] = jsonpath.New(fmt.Sprintf("column%d", ix)).AllowMissingKeys(true) if err := parsers[ix].Parse(s.Columns[ix].FieldSpec); err != nil { return err } @@ -226,10 +226,10 @@ func (s *CustomColumnsPrinter) printOneObject(obj runtime.Object, parsers []*jso if err != nil { return err } + valueStrings := []string{} if len(values) == 0 || len(values[0]) == 0 { - fmt.Fprintf(out, "\t") + valueStrings = append(valueStrings, "") } - valueStrings := []string{} for arrIx := range values { for valIx := range values[arrIx] { valueStrings = append(valueStrings, fmt.Sprintf("%v", values[arrIx][valIx].Interface())) diff --git a/pkg/printers/customcolumn_test.go b/pkg/printers/customcolumn_test.go index e142a6fac9a86..509aab3bada9c 100644 --- a/pkg/printers/customcolumn_test.go +++ b/pkg/printers/customcolumn_test.go @@ -284,6 +284,26 @@ bar obj: &v1.Pod{ObjectMeta: metav1.ObjectMeta{Name: "foo"}, TypeMeta: metav1.TypeMeta{APIVersion: "baz"}}, expectedOutput: `NAME API_VERSION foo baz +`, + }, + { + columns: []printers.Column{ + { + Header: "NAME", + FieldSpec: "{.metadata.name}", + }, + { + Header: "API_VERSION", + FieldSpec: "{.apiVersion}", + }, + { + Header: "NOT_FOUND", + FieldSpec: "{.notFound}", + }, + }, + obj: &v1.Pod{ObjectMeta: metav1.ObjectMeta{Name: "foo"}, TypeMeta: metav1.TypeMeta{APIVersion: "baz"}}, + expectedOutput: `NAME API_VERSION NOT_FOUND +foo baz `, }, } From 34ef670b637bf61e9fb3c8258c77217676d0f0c4 Mon Sep 17 00:00:00 2001 From: Andy Goldstein Date: Mon, 19 Dec 2016 16:58:45 -0500 Subject: [PATCH 46/78] UPSTREAM: : add origin resource shortcuts to kube shortcut restmapper :100644 100644 c5980bd... f9853d6... M pkg/kubectl/cmd/util/factory_test.go :100644 100644 2a7c7bc... d3d8b50... M pkg/kubectl/cmd/util/shortcut_restmapper.go :100644 100644 20d671e... 3f5bcce... M pkg/kubectl/cmd/util/shortcut_restmapper_test.go :100644 100644 9d7a8fc... 49bbc93... M pkg/kubectl/kubectl.go --- pkg/kubectl/kubectl.go | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/pkg/kubectl/kubectl.go b/pkg/kubectl/kubectl.go index 2cf9425eb8e10..f3c651dfe1c59 100644 --- a/pkg/kubectl/kubectl.go +++ b/pkg/kubectl/kubectl.go @@ -142,6 +142,30 @@ var ResourcesShortcutStatic = []ResourceShortcuts{ ShortForm: schema.GroupResource{Group: "extensions", Resource: "psp"}, LongForm: schema.GroupResource{Group: "extensions", Resource: "podSecurityPolicies"}, }, + { + ShortForm: schema.GroupResource{Group: "apps.openshift.io", Resource: "dc"}, + LongForm: schema.GroupResource{Group: "apps.openshift.io", Resource: "deploymentConfigs"}, + }, + { + ShortForm: schema.GroupResource{Group: "build.openshift.io", Resource: "bc"}, + LongForm: schema.GroupResource{Group: "build.openshift.io", Resource: "buildConfigs"}, + }, + { + ShortForm: schema.GroupResource{Group: "image.openshift.io", Resource: "is"}, + LongForm: schema.GroupResource{Group: "image.openshift.io", Resource: "imageStreams"}, + }, + { + ShortForm: schema.GroupResource{Group: "image.openshift.io", Resource: "istag"}, + LongForm: schema.GroupResource{Group: "image.openshift.io", Resource: "imageStreamTags"}, + }, + { + ShortForm: schema.GroupResource{Group: "image.openshift.io", Resource: "isimage"}, + LongForm: schema.GroupResource{Group: "image.openshift.io", Resource: "imageStreamImages"}, + }, + { + ShortForm: schema.GroupResource{Group: "quota.openshift.io", Resource: "clusterquota"}, + LongForm: schema.GroupResource{Group: "quota.openshift.io", Resource: "clusterResourceQuota"}, + }, } // ResourceShortFormFor looks up for a short form of resource names. From 6665e46254daded67dabe85dbece3b8c403f8af9 Mon Sep 17 00:00:00 2001 From: Rajat Chopra Date: Sun, 29 Oct 2017 13:30:48 -0400 Subject: [PATCH 47/78] UPSTREAM: 54763: make iptables wait flag generic; increase the max wait time from 2 seconds to 5 seconds --- pkg/util/iptables/iptables.go | 20 +++++++++++--------- pkg/util/iptables/iptables_test.go | 20 ++++++++++---------- 2 files changed, 21 insertions(+), 19 deletions(-) diff --git a/pkg/util/iptables/iptables.go b/pkg/util/iptables/iptables.go index 84e0fe030102c..da5db0785460f 100644 --- a/pkg/util/iptables/iptables.go +++ b/pkg/util/iptables/iptables.go @@ -116,9 +116,11 @@ const NoFlushTables FlushFlag = false // (test whether a rule exists). const MinCheckVersion = "1.4.11" -// Minimum iptables versions supporting the -w and -w2 flags -const MinWaitVersion = "1.4.20" -const MinWait2Version = "1.4.22" +// Minimum iptables versions supporting the -w and -w flags +const WaitMinVersion = "1.4.20" +const WaitSecondsMinVersion = "1.4.22" +const WaitString = "-w" +const WaitSecondsString = "-w5" const LockfilePath16x = "/run/xtables.lock" @@ -517,24 +519,24 @@ func getIPTablesWaitFlag(vstring string) []string { return nil } - minVersion, err := utilversion.ParseGeneric(MinWaitVersion) + minVersion, err := utilversion.ParseGeneric(WaitMinVersion) if err != nil { - glog.Errorf("MinWaitVersion (%s) is not a valid version string: %v", MinWaitVersion, err) + glog.Errorf("WaitMinVersion (%s) is not a valid version string: %v", WaitMinVersion, err) return nil } if version.LessThan(minVersion) { return nil } - minVersion, err = utilversion.ParseGeneric(MinWait2Version) + minVersion, err = utilversion.ParseGeneric(WaitSecondsMinVersion) if err != nil { - glog.Errorf("MinWait2Version (%s) is not a valid version string: %v", MinWait2Version, err) + glog.Errorf("WaitSecondsMinVersion (%s) is not a valid version string: %v", WaitSecondsMinVersion, err) return nil } if version.LessThan(minVersion) { - return []string{"-w"} + return []string{WaitString} } else { - return []string{"-w2"} + return []string{WaitSecondsString} } } diff --git a/pkg/util/iptables/iptables_test.go b/pkg/util/iptables/iptables_test.go index de998122b03fd..6feac30229c00 100644 --- a/pkg/util/iptables/iptables_test.go +++ b/pkg/util/iptables/iptables_test.go @@ -602,11 +602,11 @@ func TestIPTablesWaitFlag(t *testing.T) { {"0.55.55", ""}, {"1.0.55", ""}, {"1.4.19", ""}, - {"1.4.20", "-w"}, - {"1.4.21", "-w"}, - {"1.4.22", "-w2"}, - {"1.5.0", "-w2"}, - {"2.0.0", "-w2"}, + {"1.4.20", WaitString}, + {"1.4.21", WaitString}, + {"1.4.22", WaitSecondsString}, + {"1.5.0", WaitSecondsString}, + {"2.0.0", WaitSecondsString}, } for _, testCase := range testCases { @@ -646,7 +646,7 @@ func TestWaitFlagUnavailable(t *testing.T) { if fcmd.CombinedOutputCalls != 3 { t.Errorf("expected 3 CombinedOutput() calls, got %d", fcmd.CombinedOutputCalls) } - if sets.NewString(fcmd.CombinedOutputLog[2]...).HasAny("-w", "-w2") { + if sets.NewString(fcmd.CombinedOutputLog[2]...).HasAny(WaitString, WaitSecondsString) { t.Errorf("wrong CombinedOutput() log, got %s", fcmd.CombinedOutputLog[2]) } } @@ -678,10 +678,10 @@ func TestWaitFlagOld(t *testing.T) { if fcmd.CombinedOutputCalls != 3 { t.Errorf("expected 3 CombinedOutput() calls, got %d", fcmd.CombinedOutputCalls) } - if !sets.NewString(fcmd.CombinedOutputLog[2]...).HasAll("iptables", "-w") { + if !sets.NewString(fcmd.CombinedOutputLog[2]...).HasAll("iptables", WaitString) { t.Errorf("wrong CombinedOutput() log, got %s", fcmd.CombinedOutputLog[2]) } - if sets.NewString(fcmd.CombinedOutputLog[2]...).HasAny("-w2") { + if sets.NewString(fcmd.CombinedOutputLog[2]...).HasAny(WaitSecondsString) { t.Errorf("wrong CombinedOutput() log, got %s", fcmd.CombinedOutputLog[2]) } } @@ -713,10 +713,10 @@ func TestWaitFlagNew(t *testing.T) { if fcmd.CombinedOutputCalls != 3 { t.Errorf("expected 3 CombinedOutput() calls, got %d", fcmd.CombinedOutputCalls) } - if !sets.NewString(fcmd.CombinedOutputLog[2]...).HasAll("iptables", "-w2") { + if !sets.NewString(fcmd.CombinedOutputLog[2]...).HasAll("iptables", WaitSecondsString) { t.Errorf("wrong CombinedOutput() log, got %s", fcmd.CombinedOutputLog[2]) } - if sets.NewString(fcmd.CombinedOutputLog[2]...).HasAny("-w") { + if sets.NewString(fcmd.CombinedOutputLog[2]...).HasAny(WaitString) { t.Errorf("wrong CombinedOutput() log, got %s", fcmd.CombinedOutputLog[2]) } } From 2fe826319da5dbd26afd58d7c25236e76987a3ef Mon Sep 17 00:00:00 2001 From: Avesh Agarwal Date: Mon, 30 Oct 2017 16:27:08 -0400 Subject: [PATCH 48/78] UPSTREAM: 54812: Allow override of cluster level (default, whitelist) tolerations by namespace level empty (default, whitelist) tolerations. --- .../podtolerationrestriction/admission.go | 33 +++++++++++++++---- .../admission_test.go | 31 +++++++++++++---- 2 files changed, 51 insertions(+), 13 deletions(-) diff --git a/plugin/pkg/admission/podtolerationrestriction/admission.go b/plugin/pkg/admission/podtolerationrestriction/admission.go index 655a2e365a021..ddd952b049471 100644 --- a/plugin/pkg/admission/podtolerationrestriction/admission.go +++ b/plugin/pkg/admission/podtolerationrestriction/admission.go @@ -125,7 +125,7 @@ func (p *podTolerationsPlugin) Admit(a admission.Attributes) error { // If the namespace has not specified its default tolerations, // fall back to cluster's default tolerations. - if len(ts) == 0 { + if ts == nil { ts = p.pluginConfig.Default } @@ -157,7 +157,7 @@ func (p *podTolerationsPlugin) Admit(a admission.Attributes) error { // If the namespace has not specified its tolerations whitelist, // fall back to cluster's whitelist of tolerations. - if len(whitelist) == 0 { + if whitelist == nil { whitelist = p.pluginConfig.Whitelist } @@ -220,13 +220,32 @@ func (p *podTolerationsPlugin) getNamespaceTolerationsWhitelist(ns *api.Namespac return extractNSTolerations(ns, NSWLTolerations) } +// extractNSTolerations extracts default or whitelist of tolerations from +// following namespace annotations keys: "scheduler.alpha.kubernetes.io/defaultTolerations" +// and "scheduler.alpha.kubernetes.io/tolerationsWhitelist". If these keys are +// unset (nil), extractNSTolerations returns nil. If the value to these +// keys are set to empty, an empty toleration is returned, otherwise +// configured tolerations are returned. func extractNSTolerations(ns *api.Namespace, key string) ([]api.Toleration, error) { + // if a namespace does not have any annotations + if len(ns.Annotations) == 0 { + return nil, nil + } + + // if NSWLTolerations or NSDefaultTolerations does not exist + if _, ok := ns.Annotations[key]; !ok { + return nil, nil + } + + // if value is set to empty + if len(ns.Annotations[key]) == 0 { + return []api.Toleration{}, nil + } + var v1Tolerations []v1.Toleration - if len(ns.Annotations) > 0 && ns.Annotations[key] != "" { - err := json.Unmarshal([]byte(ns.Annotations[key]), &v1Tolerations) - if err != nil { - return nil, err - } + err := json.Unmarshal([]byte(ns.Annotations[key]), &v1Tolerations) + if err != nil { + return nil, err } ts := make([]api.Toleration, len(v1Tolerations)) diff --git a/plugin/pkg/admission/podtolerationrestriction/admission_test.go b/plugin/pkg/admission/podtolerationrestriction/admission_test.go index 4673aa0692c8c..bc0c105dcbb66 100644 --- a/plugin/pkg/admission/podtolerationrestriction/admission_test.go +++ b/plugin/pkg/admission/podtolerationrestriction/admission_test.go @@ -115,11 +115,11 @@ func TestPodAdmission(t *testing.T) { { pod: bestEffortPod, defaultClusterTolerations: []api.Toleration{{Key: "testKey", Operator: "Equal", Value: "testValue", Effect: "NoSchedule", TolerationSeconds: nil}}, - namespaceTolerations: []api.Toleration{}, + namespaceTolerations: nil, podTolerations: []api.Toleration{}, mergedTolerations: []api.Toleration{{Key: "testKey", Operator: "Equal", Value: "testValue", Effect: "NoSchedule", TolerationSeconds: nil}}, admit: true, - testName: "default cluster tolerations with empty pod tolerations", + testName: "default cluster tolerations with empty pod tolerations and nil namespace tolerations", }, { pod: bestEffortPod, @@ -161,8 +161,9 @@ func TestPodAdmission(t *testing.T) { defaultClusterTolerations: []api.Toleration{{Key: "testKey", Operator: "Equal", Value: "testValue2", Effect: "NoSchedule", TolerationSeconds: nil}}, namespaceTolerations: []api.Toleration{}, podTolerations: []api.Toleration{{Key: "testKey", Operator: "Equal", Value: "testValue1", Effect: "NoSchedule", TolerationSeconds: nil}}, - admit: false, - testName: "conflicting pod and default cluster tolerations", + mergedTolerations: []api.Toleration{{Key: "testKey", Operator: "Equal", Value: "testValue1", Effect: "NoSchedule", TolerationSeconds: nil}}, + admit: true, + testName: "conflicting pod and default cluster tolerations but overridden by empty namespace tolerations", }, { pod: bestEffortPod, @@ -174,6 +175,24 @@ func TestPodAdmission(t *testing.T) { admit: true, testName: "merged pod tolerations satisfy whitelist", }, + { + pod: bestEffortPod, + defaultClusterTolerations: []api.Toleration{{Key: "testKey", Operator: "Equal", Value: "testValue", Effect: "NoSchedule", TolerationSeconds: nil}}, + namespaceTolerations: []api.Toleration{}, + podTolerations: []api.Toleration{}, + mergedTolerations: []api.Toleration{}, + admit: true, + testName: "Override default cluster toleration by empty namespace level toleration", + }, + { + pod: bestEffortPod, + whitelist: []api.Toleration{}, + clusterWhitelist: []api.Toleration{{Key: "testKey", Operator: "Equal", Value: "testValue1", Effect: "NoSchedule", TolerationSeconds: nil}}, + podTolerations: []api.Toleration{{Key: "testKey", Operator: "Equal", Value: "testValue", Effect: "NoSchedule", TolerationSeconds: nil}}, + mergedTolerations: []api.Toleration{{Key: "testKey", Operator: "Equal", Value: "testValue", Effect: "NoSchedule", TolerationSeconds: nil}}, + admit: true, + testName: "pod toleration conflicts with default cluster white list which is overridden by empty namespace whitelist", + }, { pod: bestEffortPod, defaultClusterTolerations: []api.Toleration{}, @@ -211,7 +230,7 @@ func TestPodAdmission(t *testing.T) { }, } for _, test := range tests { - if len(test.namespaceTolerations) > 0 { + if test.namespaceTolerations != nil { tolerationStr, err := json.Marshal(test.namespaceTolerations) if err != nil { t.Errorf("error in marshalling namespace tolerations %v", test.namespaceTolerations) @@ -219,7 +238,7 @@ func TestPodAdmission(t *testing.T) { namespace.Annotations = map[string]string{NSDefaultTolerations: string(tolerationStr)} } - if len(test.whitelist) > 0 { + if test.whitelist != nil { tolerationStr, err := json.Marshal(test.whitelist) if err != nil { t.Errorf("error in marshalling namespace whitelist %v", test.whitelist) From 1a628906c6f744e39446e23f95cef21ed21ab52d Mon Sep 17 00:00:00 2001 From: Seth Jennings Date: Thu, 2 Nov 2017 16:59:39 -0500 Subject: [PATCH 49/78] UPSTREAM: 55028: kubelet: dockershim: remove orphaned checkpoint files --- pkg/kubelet/dockershim/docker_sandbox.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/kubelet/dockershim/docker_sandbox.go b/pkg/kubelet/dockershim/docker_sandbox.go index fb321d591388f..47220063e4a79 100644 --- a/pkg/kubelet/dockershim/docker_sandbox.go +++ b/pkg/kubelet/dockershim/docker_sandbox.go @@ -241,6 +241,9 @@ func (ds *dockerService) StopPodSandbox(podSandboxID string) error { // Do not return error if the container does not exist if !libdocker.IsContainerNotFoundError(err) { errList = append(errList, err) + } else { + // remove the checkpoint for any sandbox that is not found in the runtime + ds.checkpointHandler.RemoveCheckpoint(podSandboxID) } } return utilerrors.NewAggregate(errList) From 080191d96c1c8cd539c3cd42a3f8350eb298150d Mon Sep 17 00:00:00 2001 From: Clayton Coleman Date: Thu, 2 Nov 2017 00:34:34 -0400 Subject: [PATCH 50/78] UPSTREAM: 54979: When cert dir is relative, cert rotation builds incorrect symlinks Symlinks relative to a working directory were being constructed to the wrong location, leading to failure to refresh client certs. --- .../k8s.io/client-go/util/certificate/certificate_store.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/staging/src/k8s.io/client-go/util/certificate/certificate_store.go b/staging/src/k8s.io/client-go/util/certificate/certificate_store.go index 029f9916b7719..42a40dcdf009d 100644 --- a/staging/src/k8s.io/client-go/util/certificate/certificate_store.go +++ b/staging/src/k8s.io/client-go/util/certificate/certificate_store.go @@ -266,6 +266,13 @@ func (s *fileStore) updateSymlink(filename string) error { return fmt.Errorf("file %q does not exist so it can not be used as the currently selected cert/key", filename) } + // Ensure the source path is absolute to ensure the symlink target is + // correct when certDirectory is a relative path. + filename, err := filepath.Abs(filename) + if err != nil { + return err + } + // Create the 'updated' symlink pointing to the requested file name. if err := os.Symlink(filename, updatedPath); err != nil { return fmt.Errorf("unable to create a symlink from %q to %q: %v", updatedPath, filename, err) From d7a964fc52944c406cff015c61eedd93d8fbb9da Mon Sep 17 00:00:00 2001 From: Joel Smith Date: Thu, 14 Sep 2017 13:26:49 -0600 Subject: [PATCH 51/78] UPSTREAM: 52503: Get fallback termination msg from docker when using journald log driver When using the legacy docker container runtime and when a container has terminationMessagePolicy=FallbackToLogsOnError and when docker is configured with a log driver other than json-log (such as journald), the kubelet should not try to get the container's log from the json log file (since it's not there) but should instead ask docker for the logs. --- pkg/kubelet/dockershim/BUILD | 2 ++ pkg/kubelet/dockershim/docker_service.go | 32 +++++++++++++++++++ pkg/kubelet/kubelet.go | 4 +++ .../kuberuntime/kuberuntime_container.go | 12 +++++-- .../kuberuntime/kuberuntime_manager.go | 11 +++++++ 5 files changed, 59 insertions(+), 2 deletions(-) diff --git a/pkg/kubelet/dockershim/BUILD b/pkg/kubelet/dockershim/BUILD index ce520af36ebcc..5398ff8159bf5 100644 --- a/pkg/kubelet/dockershim/BUILD +++ b/pkg/kubelet/dockershim/BUILD @@ -59,6 +59,7 @@ go_library( "//pkg/util/hash:go_default_library", "//pkg/util/parsers:go_default_library", "//pkg/util/term:go_default_library", + "//vendor/github.com/armon/circbuf:go_default_library", "//vendor/github.com/blang/semver:go_default_library", "//vendor/github.com/docker/docker/api/types:go_default_library", "//vendor/github.com/docker/docker/api/types/container:go_default_library", @@ -69,6 +70,7 @@ go_library( "//vendor/github.com/golang/glog:go_default_library", "//vendor/k8s.io/api/core/v1:go_default_library", "//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/types:go_default_library", "//vendor/k8s.io/apimachinery/pkg/util/errors:go_default_library", "//vendor/k8s.io/apimachinery/pkg/util/sets:go_default_library", "//vendor/k8s.io/apimachinery/pkg/util/wait:go_default_library", diff --git a/pkg/kubelet/dockershim/docker_service.go b/pkg/kubelet/dockershim/docker_service.go index b82c70db249db..b5076025d896d 100644 --- a/pkg/kubelet/dockershim/docker_service.go +++ b/pkg/kubelet/dockershim/docker_service.go @@ -24,12 +24,14 @@ import ( "sync" "time" + "github.com/armon/circbuf" "github.com/blang/semver" dockertypes "github.com/docker/docker/api/types" "github.com/golang/glog" "k8s.io/api/core/v1" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" + kubetypes "k8s.io/apimachinery/pkg/types" internalapi "k8s.io/kubernetes/pkg/kubelet/apis/cri" runtimeapi "k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime" "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig" @@ -525,6 +527,36 @@ func (d *dockerLegacyService) GetContainerLogs(pod *v1.Pod, containerID kubecont return d.client.Logs(containerID.ID, opts, sopts) } +// LegacyLogProvider implements the kuberuntime.LegacyLogProvider interface +type LegacyLogProvider struct { + dls DockerLegacyService +} + +func NewLegacyLogProvider(dls DockerLegacyService) LegacyLogProvider { + return LegacyLogProvider{dls: dls} +} + +// GetContainerLogTail attempts to read up to MaxContainerTerminationMessageLogLength +// from the end of the log when docker is configured with a log driver other than json-log. +// It reads up to MaxContainerTerminationMessageLogLines lines. +func (l LegacyLogProvider) GetContainerLogTail(uid kubetypes.UID, name, namespace string, containerId kubecontainer.ContainerID) (string, error) { + value := int64(kubecontainer.MaxContainerTerminationMessageLogLines) + buf, _ := circbuf.NewBuffer(kubecontainer.MaxContainerTerminationMessageLogLength) + // Although this is not a full spec pod, dockerLegacyService.GetContainerLogs() currently completely ignores its pod param + pod := &v1.Pod{ + ObjectMeta: metav1.ObjectMeta{ + UID: uid, + Name: name, + Namespace: namespace, + }, + } + err := l.dls.GetContainerLogs(pod, containerId, &v1.PodLogOptions{TailLines: &value}, buf, buf) + if err != nil { + return "", err + } + return buf.String(), nil +} + // criSupportedLogDrivers are log drivers supported by native CRI integration. var criSupportedLogDrivers = []string{"json-file"} diff --git a/pkg/kubelet/kubelet.go b/pkg/kubelet/kubelet.go index cdc1bfbcbc7cf..b1a74e6722ba9 100644 --- a/pkg/kubelet/kubelet.go +++ b/pkg/kubelet/kubelet.go @@ -582,6 +582,8 @@ func NewMainKubelet(kubeCfg *kubeletconfiginternal.KubeletConfiguration, // It's easier to always probe and initialize plugins till cri // becomes the default. klet.networkPlugin = nil + // if left at nil, that means it is unneeded + var legacyLogProvider kuberuntime.LegacyLogProvider switch kubeCfg.ContainerRuntime { case kubetypes.DockerContainerRuntime: @@ -617,6 +619,7 @@ func NewMainKubelet(kubeCfg *kubeletconfiginternal.KubeletConfiguration, } if !supported { klet.dockerLegacyService = dockershim.NewDockerLegacyService(kubeDeps.DockerClient) + legacyLogProvider = dockershim.NewLegacyLogProvider(klet.dockerLegacyService) } case kubetypes.RemoteContainerRuntime: // No-op. @@ -647,6 +650,7 @@ func NewMainKubelet(kubeCfg *kubeletconfiginternal.KubeletConfiguration, runtimeService, imageService, kubeDeps.ContainerManager.InternalContainerLifecycle(), + legacyLogProvider, ) if err != nil { return nil, err diff --git a/pkg/kubelet/kuberuntime/kuberuntime_container.go b/pkg/kubelet/kuberuntime/kuberuntime_container.go index ab29fb6d528b7..70bb933393630 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_container.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_container.go @@ -425,8 +425,16 @@ func (m *kubeGenericRuntimeManager) getPodContainerStatuses(uid kubetypes.UID, n fallbackToLogs := annotatedInfo.TerminationMessagePolicy == v1.TerminationMessageFallbackToLogsOnError && cStatus.ExitCode != 0 tMessage, checkLogs := getTerminationMessage(status, annotatedInfo.TerminationMessagePath, fallbackToLogs) if checkLogs { - path := buildFullContainerLogsPath(uid, labeledInfo.ContainerName, annotatedInfo.RestartCount) - tMessage = m.readLastStringFromContainerLogs(path) + // if dockerLegacyService is populated, we're supposed to use it to fetch logs + if m.legacyLogProvider != nil { + tMessage, err = m.legacyLogProvider.GetContainerLogTail(uid, name, namespace, kubecontainer.ContainerID{Type: m.runtimeName, ID: c.Id}) + if err != nil { + tMessage = fmt.Sprintf("Error reading termination message from logs: %v", err) + } + } else { + path := buildFullContainerLogsPath(uid, labeledInfo.ContainerName, annotatedInfo.RestartCount) + tMessage = m.readLastStringFromContainerLogs(path) + } } // Use the termination message written by the application is not empty if len(tMessage) != 0 { diff --git a/pkg/kubelet/kuberuntime/kuberuntime_manager.go b/pkg/kubelet/kuberuntime/kuberuntime_manager.go index 7f936d387fb12..b60abaed0ee7c 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_manager.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_manager.go @@ -113,6 +113,9 @@ type kubeGenericRuntimeManager struct { // Internal lifecycle event handlers for container resource management. internalLifecycle cm.InternalContainerLifecycle + + // A shim to legacy functions for backward compatibility. + legacyLogProvider LegacyLogProvider } type KubeGenericRuntime interface { @@ -121,6 +124,12 @@ type KubeGenericRuntime interface { kubecontainer.ContainerCommandRunner } +// LegacyLogProvider gives the ability to use unsupported docker log drivers (e.g. journald) +type LegacyLogProvider interface { + // Get the last few lines of the logs for a specific container. + GetContainerLogTail(uid kubetypes.UID, name, namespace string, containerID kubecontainer.ContainerID) (string, error) +} + // NewKubeGenericRuntimeManager creates a new kubeGenericRuntimeManager func NewKubeGenericRuntimeManager( recorder record.EventRecorder, @@ -140,6 +149,7 @@ func NewKubeGenericRuntimeManager( runtimeService internalapi.RuntimeService, imageService internalapi.ImageManagerService, internalLifecycle cm.InternalContainerLifecycle, + legacyLogProvider LegacyLogProvider, ) (KubeGenericRuntime, error) { kubeRuntimeManager := &kubeGenericRuntimeManager{ recorder: recorder, @@ -154,6 +164,7 @@ func NewKubeGenericRuntimeManager( imageService: newInstrumentedImageManagerService(imageService), keyring: credentialprovider.NewDockerKeyring(), internalLifecycle: internalLifecycle, + legacyLogProvider: legacyLogProvider, } typedVersion, err := kubeRuntimeManager.runtimeService.Version(kubeRuntimeAPIVersion) From ea0dbe1b65623206d3f22314a791f34bf1cecc2b Mon Sep 17 00:00:00 2001 From: Michal Fojtik Date: Tue, 7 Nov 2017 10:24:04 +0100 Subject: [PATCH 52/78] UPSTREAM: 55223: Fix protobuf generator for aliases to repeated types --- .../cmd/go-to-protobuf/protobuf/generator.go | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/staging/src/k8s.io/code-generator/cmd/go-to-protobuf/protobuf/generator.go b/staging/src/k8s.io/code-generator/cmd/go-to-protobuf/protobuf/generator.go index d29e3e4751dd0..a76d670387d49 100644 --- a/staging/src/k8s.io/code-generator/cmd/go-to-protobuf/protobuf/generator.go +++ b/staging/src/k8s.io/code-generator/cmd/go-to-protobuf/protobuf/generator.go @@ -513,10 +513,13 @@ func memberTypeToProtobufField(locator ProtobufLocator, field *protoField, t *ty log.Printf("failed to alias: %s %s: err %v", t.Name, t.Underlying.Name, err) return err } - if field.Extras == nil { - field.Extras = make(map[string]string) + // If this is not an alias to a slice, cast to the alias + if !field.Repeated { + if field.Extras == nil { + field.Extras = make(map[string]string) + } + field.Extras["(gogoproto.casttype)"] = strconv.Quote(locator.CastTypeName(t.Name)) } - field.Extras["(gogoproto.casttype)"] = strconv.Quote(locator.CastTypeName(t.Name)) } case types.Slice: if t.Elem.Name.Name == "byte" && len(t.Elem.Name.Package) == 0 { From a3f73c16be1c989928b5cfee8b16ffa593781beb Mon Sep 17 00:00:00 2001 From: Hemant Kumar Date: Tue, 3 Oct 2017 15:45:06 -0400 Subject: [PATCH 53/78] UPSTREAM: 53401: Fix spam of multiattach errors in event logs We should be careful while generating multiattach errors. We seem to be generating too many of them because old code had minor bug. --- .../cache/desired_state_of_world.go | 19 +++++ .../attachdetach/reconciler/reconciler.go | 74 ++++++++++--------- .../reconciler/reconciler_test.go | 11 +++ 3 files changed, 69 insertions(+), 35 deletions(-) diff --git a/pkg/controller/volume/attachdetach/cache/desired_state_of_world.go b/pkg/controller/volume/attachdetach/cache/desired_state_of_world.go index f4481f7161841..affd6229a7245 100644 --- a/pkg/controller/volume/attachdetach/cache/desired_state_of_world.go +++ b/pkg/controller/volume/attachdetach/cache/desired_state_of_world.go @@ -101,6 +101,10 @@ type DesiredStateOfWorld interface { // GetKeepTerminatedPodVolumesForNode determines if node wants volumes to be // mounted and attached for terminated pods GetKeepTerminatedPodVolumesForNode(k8stypes.NodeName) bool + + // Mark multiattach error as reported to prevent spamming multiple + // events for same error + SetMultiAttachError(v1.UniqueVolumeName, k8stypes.NodeName) } // VolumeToAttach represents a volume that should be attached to a node. @@ -329,6 +333,21 @@ func (dsw *desiredStateOfWorld) VolumeExists( return false } +func (dsw *desiredStateOfWorld) SetMultiAttachError( + volumeName v1.UniqueVolumeName, + nodeName k8stypes.NodeName) { + dsw.RLock() + defer dsw.RUnlock() + + nodeObj, nodeExists := dsw.nodesManaged[nodeName] + if nodeExists { + if volumeObj, volumeExists := nodeObj.volumesToAttach[volumeName]; volumeExists { + volumeObj.multiAttachErrorReported = true + dsw.nodesManaged[nodeName].volumesToAttach[volumeName] = volumeObj + } + } +} + // GetKeepTerminatedPodVolumesForNode determines if node wants volumes to be // mounted and attached for terminated pods func (dsw *desiredStateOfWorld) GetKeepTerminatedPodVolumesForNode(nodeName k8stypes.NodeName) bool { diff --git a/pkg/controller/volume/attachdetach/reconciler/reconciler.go b/pkg/controller/volume/attachdetach/reconciler/reconciler.go index 26133bb3bcd5e..ac81f98c6ae10 100644 --- a/pkg/controller/volume/attachdetach/reconciler/reconciler.go +++ b/pkg/controller/volume/attachdetach/reconciler/reconciler.go @@ -241,52 +241,56 @@ func (rc *reconciler) reconcile() { } } + rc.attachDesiredVolumes() + + // Update Node Status + err := rc.nodeStatusUpdater.UpdateNodeStatuses() + if err != nil { + glog.Warningf("UpdateNodeStatuses failed with: %v", err) + } +} + +func (rc *reconciler) attachDesiredVolumes() { // Ensure volumes that should be attached are attached. for _, volumeToAttach := range rc.desiredStateOfWorld.GetVolumesToAttach() { - if rc.actualStateOfWorld.VolumeNodeExists( - volumeToAttach.VolumeName, volumeToAttach.NodeName) { + if rc.actualStateOfWorld.VolumeNodeExists(volumeToAttach.VolumeName, volumeToAttach.NodeName) { // Volume/Node exists, touch it to reset detachRequestedTime glog.V(5).Infof(volumeToAttach.GenerateMsgDetailed("Volume attached--touching", "")) rc.actualStateOfWorld.ResetDetachRequestTime(volumeToAttach.VolumeName, volumeToAttach.NodeName) - } else { - // Don't even try to start an operation if there is already one running - if rc.attacherDetacher.IsOperationPending(volumeToAttach.VolumeName, "") { - glog.V(10).Infof("Operation for volume %q is already running. Can't start attach for %q", volumeToAttach.VolumeName, volumeToAttach.NodeName) - continue - } + continue + } + // Don't even try to start an operation if there is already one running + if rc.attacherDetacher.IsOperationPending(volumeToAttach.VolumeName, "") { + glog.V(10).Infof("Operation for volume %q is already running. Can't start attach for %q", volumeToAttach.VolumeName, volumeToAttach.NodeName) + continue + } - if rc.isMultiAttachForbidden(volumeToAttach.VolumeSpec) { - nodes := rc.actualStateOfWorld.GetNodesForVolume(volumeToAttach.VolumeName) - if len(nodes) > 0 { - if !volumeToAttach.MultiAttachErrorReported { - simpleMsg, detailedMsg := volumeToAttach.GenerateMsg("Multi-Attach error", "Volume is already exclusively attached to one node and can't be attached to another") - for _, pod := range volumeToAttach.ScheduledPods { - rc.recorder.Eventf(pod, v1.EventTypeWarning, kevents.FailedAttachVolume, simpleMsg) - } - volumeToAttach.MultiAttachErrorReported = true - glog.Warningf(detailedMsg) + if rc.isMultiAttachForbidden(volumeToAttach.VolumeSpec) { + nodes := rc.actualStateOfWorld.GetNodesForVolume(volumeToAttach.VolumeName) + if len(nodes) > 0 { + if !volumeToAttach.MultiAttachErrorReported { + simpleMsg, detailedMsg := volumeToAttach.GenerateMsg("Multi-Attach error", "Volume is already exclusively attached to one node and can't be attached to another") + for _, pod := range volumeToAttach.ScheduledPods { + rc.recorder.Eventf(pod, v1.EventTypeWarning, kevents.FailedAttachVolume, simpleMsg) } - continue + rc.desiredStateOfWorld.SetMultiAttachError(volumeToAttach.VolumeName, volumeToAttach.NodeName) + glog.Warningf(detailedMsg) } + continue } + } - // Volume/Node doesn't exist, spawn a goroutine to attach it - glog.V(5).Infof(volumeToAttach.GenerateMsgDetailed("Starting attacherDetacher.AttachVolume", "")) - err := rc.attacherDetacher.AttachVolume(volumeToAttach.VolumeToAttach, rc.actualStateOfWorld) - if err == nil { - glog.Infof(volumeToAttach.GenerateMsgDetailed("attacherDetacher.AttachVolume started", "")) - } - if err != nil && !exponentialbackoff.IsExponentialBackoff(err) { - // Ignore exponentialbackoff.IsExponentialBackoff errors, they are expected. - // Log all other errors. - glog.Errorf(volumeToAttach.GenerateErrorDetailed("attacherDetacher.AttachVolume failed to start", err).Error()) - } + // Volume/Node doesn't exist, spawn a goroutine to attach it + glog.V(5).Infof(volumeToAttach.GenerateMsgDetailed("Starting attacherDetacher.AttachVolume", "")) + err := rc.attacherDetacher.AttachVolume(volumeToAttach.VolumeToAttach, rc.actualStateOfWorld) + if err == nil { + glog.Infof(volumeToAttach.GenerateMsgDetailed("attacherDetacher.AttachVolume started", "")) + } + if err != nil && !exponentialbackoff.IsExponentialBackoff(err) { + // Ignore exponentialbackoff.IsExponentialBackoff errors, they are expected. + // Log all other errors. + glog.Errorf(volumeToAttach.GenerateErrorDetailed("attacherDetacher.AttachVolume failed to start", err).Error()) } } - // Update Node Status - err := rc.nodeStatusUpdater.UpdateNodeStatuses() - if err != nil { - glog.Warningf("UpdateNodeStatuses failed with: %v", err) - } } diff --git a/pkg/controller/volume/attachdetach/reconciler/reconciler_test.go b/pkg/controller/volume/attachdetach/reconciler/reconciler_test.go index ac3cf60cf66fc..ea1edf877438e 100644 --- a/pkg/controller/volume/attachdetach/reconciler/reconciler_test.go +++ b/pkg/controller/volume/attachdetach/reconciler/reconciler_test.go @@ -455,6 +455,17 @@ func Test_Run_OneVolumeAttachAndDetachMultipleNodesWithReadWriteOnce(t *testing. nodesForVolume := asw.GetNodesForVolume(generatedVolumeName) + // check if multiattach is marked + // at least one volume should be marked with multiattach error + nodeAttachedTo := nodesForVolume[0] + for _, volumeToAttach := range dsw.GetVolumesToAttach() { + if volumeToAttach.NodeName != nodeAttachedTo { + if !volumeToAttach.MultiAttachErrorReported { + t.Fatalf("Expected volume %q on node %q to have multiattach error", volumeToAttach.VolumeName, volumeToAttach.NodeName) + } + } + } + // Act podToDelete := "" if nodesForVolume[0] == nodeName1 { From 4695904c1cc6f9923ad1d6f2a20d7a1d935df962 Mon Sep 17 00:00:00 2001 From: Hemant Kumar Date: Tue, 10 Oct 2017 17:52:55 -0400 Subject: [PATCH 54/78] UPSTREAM: 53682: Make sure we use rwlocks not just RLock --- .../volume/attachdetach/cache/desired_state_of_world.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/controller/volume/attachdetach/cache/desired_state_of_world.go b/pkg/controller/volume/attachdetach/cache/desired_state_of_world.go index affd6229a7245..57ee9253ec1d0 100644 --- a/pkg/controller/volume/attachdetach/cache/desired_state_of_world.go +++ b/pkg/controller/volume/attachdetach/cache/desired_state_of_world.go @@ -336,8 +336,8 @@ func (dsw *desiredStateOfWorld) VolumeExists( func (dsw *desiredStateOfWorld) SetMultiAttachError( volumeName v1.UniqueVolumeName, nodeName k8stypes.NodeName) { - dsw.RLock() - defer dsw.RUnlock() + dsw.Lock() + defer dsw.Unlock() nodeObj, nodeExists := dsw.nodesManaged[nodeName] if nodeExists { From 7d11795c4b7fb7a50b5408d9a4d43bb46d7bc384 Mon Sep 17 00:00:00 2001 From: Hemant Kumar Date: Fri, 13 Oct 2017 16:17:24 -0400 Subject: [PATCH 55/78] UPSTREAM: 53831: Fix volume reconciler test flake :100644 100644 492ca3d6b2... 2ee9a4bbb1... M pkg/controller/volume/attachdetach/reconciler/reconciler_test.go --- .../reconciler/reconciler_test.go | 30 ++++++++++++++----- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/pkg/controller/volume/attachdetach/reconciler/reconciler_test.go b/pkg/controller/volume/attachdetach/reconciler/reconciler_test.go index ea1edf877438e..0762a5a16d7c0 100644 --- a/pkg/controller/volume/attachdetach/reconciler/reconciler_test.go +++ b/pkg/controller/volume/attachdetach/reconciler/reconciler_test.go @@ -458,13 +458,7 @@ func Test_Run_OneVolumeAttachAndDetachMultipleNodesWithReadWriteOnce(t *testing. // check if multiattach is marked // at least one volume should be marked with multiattach error nodeAttachedTo := nodesForVolume[0] - for _, volumeToAttach := range dsw.GetVolumesToAttach() { - if volumeToAttach.NodeName != nodeAttachedTo { - if !volumeToAttach.MultiAttachErrorReported { - t.Fatalf("Expected volume %q on node %q to have multiattach error", volumeToAttach.VolumeName, volumeToAttach.NodeName) - } - } - } + waitForMultiAttachErrorOnNode(t, nodeAttachedTo, dsw) // Act podToDelete := "" @@ -495,6 +489,28 @@ func Test_Run_OneVolumeAttachAndDetachMultipleNodesWithReadWriteOnce(t *testing. waitForTotalAttachCallCount(t, 2 /* expectedAttachCallCount */, fakePlugin) } +func waitForMultiAttachErrorOnNode( + t *testing.T, + attachedNode k8stypes.NodeName, + dsow cache.DesiredStateOfWorld) { + multAttachCheckFunc := func() (bool, error) { + for _, volumeToAttach := range dsow.GetVolumesToAttach() { + if volumeToAttach.NodeName != attachedNode { + if volumeToAttach.MultiAttachErrorReported { + return true, nil + } + } + } + t.Logf("Warning: MultiAttach error not yet set on Node. Will retry.") + return false, nil + } + + err := retryWithExponentialBackOff(100*time.Millisecond, multAttachCheckFunc) + if err != nil { + t.Fatalf("Timed out waiting for MultiAttach Error to be set on non-attached node") + } +} + func waitForNewAttacherCallCount( t *testing.T, expectedCallCount int, From e1813472ab3d200d355bcf3284e7dd28aef8729e Mon Sep 17 00:00:00 2001 From: juanvallejo Date: Mon, 18 Sep 2017 11:35:16 -0400 Subject: [PATCH 56/78] UPSTREAM: 53606: implement ApproximatePodTemplateObject upstream :100644 100644 48b5d52550... 7f1327d3da... M pkg/kubectl/cmd/testing/fake.go :100644 100644 05014de60d... 29c63bcec5... M pkg/kubectl/cmd/util/factory.go :100644 100644 abb10d52bb... 01ad1ff2a3... M pkg/kubectl/cmd/util/factory_object_mapping.go --- pkg/kubectl/cmd/testing/fake.go | 8 +++++++ pkg/kubectl/cmd/util/factory.go | 5 ++++ .../cmd/util/factory_object_mapping.go | 23 +++++++++++++++++++ 3 files changed, 36 insertions(+) diff --git a/pkg/kubectl/cmd/testing/fake.go b/pkg/kubectl/cmd/testing/fake.go index 7d66b1c694359..5e0343e65ac31 100644 --- a/pkg/kubectl/cmd/testing/fake.go +++ b/pkg/kubectl/cmd/testing/fake.go @@ -455,6 +455,10 @@ func (f *FakeFactory) AttachablePodForObject(ob runtime.Object, timeout time.Dur return nil, nil } +func (f *FakeFactory) ApproximatePodTemplateForObject(obj runtime.Object) (*api.PodTemplateSpec, error) { + return f.ApproximatePodTemplateForObject(obj) +} + func (f *FakeFactory) UpdatePodSpecForObject(obj runtime.Object, fn func(*api.PodSpec) error) (bool, error) { return false, nil } @@ -735,6 +739,10 @@ func (f *fakeAPIFactory) Validator(validate bool, openapi bool, cacheDir string) return f.tf.Validator, f.tf.Err } +func (f *fakeAPIFactory) ApproximatePodTemplateForObject(obj runtime.Object) (*api.PodTemplateSpec, error) { + return f.Factory.ApproximatePodTemplateForObject(obj) +} + func (f *fakeAPIFactory) DefaultNamespace() (string, bool, error) { return f.tf.Namespace, false, f.tf.Err } diff --git a/pkg/kubectl/cmd/util/factory.go b/pkg/kubectl/cmd/util/factory.go index 992916dc5e492..c94ecf9793841 100644 --- a/pkg/kubectl/cmd/util/factory.go +++ b/pkg/kubectl/cmd/util/factory.go @@ -232,6 +232,11 @@ type ObjectMappingFactory interface { // AttachablePodForObject returns the pod to which to attach given an object. AttachablePodForObject(object runtime.Object, timeout time.Duration) (*api.Pod, error) + // ApproximatePodTemplateForObject returns a pod template object for the provided source. + // It may return both an error and a object. It attempt to return the best possible template + // available at the current time. + ApproximatePodTemplateForObject(runtime.Object) (*api.PodTemplateSpec, error) + // Returns a schema that can validate objects stored on disk. Validator(validate bool, openapi bool, cacheDir string) (validation.Schema, error) // SwaggerSchema returns the schema declaration for the provided group version kind. diff --git a/pkg/kubectl/cmd/util/factory_object_mapping.go b/pkg/kubectl/cmd/util/factory_object_mapping.go index 2b51808cf8450..0ed7db0ec1a8e 100644 --- a/pkg/kubectl/cmd/util/factory_object_mapping.go +++ b/pkg/kubectl/cmd/util/factory_object_mapping.go @@ -23,6 +23,7 @@ import ( "fmt" "os" "path" + "reflect" "sort" "sync" "time" @@ -356,6 +357,28 @@ func (f *ring1Factory) StatusViewer(mapping *meta.RESTMapping) (kubectl.StatusVi return kubectl.StatusViewerFor(mapping.GroupVersionKind.GroupKind(), clientset) } +func (f *ring1Factory) ApproximatePodTemplateForObject(object runtime.Object) (*api.PodTemplateSpec, error) { + switch t := object.(type) { + case *api.Pod: + return &api.PodTemplateSpec{ + ObjectMeta: t.ObjectMeta, + Spec: t.Spec, + }, nil + case *api.ReplicationController: + return t.Spec.Template, nil + case *extensions.ReplicaSet: + return &t.Spec.Template, nil + case *extensions.DaemonSet: + return &t.Spec.Template, nil + case *extensions.Deployment: + return &t.Spec.Template, nil + case *batch.Job: + return &t.Spec.Template, nil + } + + return nil, fmt.Errorf("unable to extract pod template from type %v", reflect.TypeOf(object)) +} + func (f *ring1Factory) AttachablePodForObject(object runtime.Object, timeout time.Duration) (*api.Pod, error) { clientset, err := f.clientAccessFactory.ClientSetForVersion(nil) if err != nil { From 626dddbea692e5ab86ff52cbee4cb03ee837cad9 Mon Sep 17 00:00:00 2001 From: Michal Fojtik Date: Thu, 9 Nov 2017 16:10:26 +0100 Subject: [PATCH 57/78] UPSTREAM: : get.go doesn't handle metav1.Status returned by rest.client (drop in 1.9) --- pkg/kubectl/cmd/get.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/pkg/kubectl/cmd/get.go b/pkg/kubectl/cmd/get.go index 91b889274389d..c260c30181727 100644 --- a/pkg/kubectl/cmd/get.go +++ b/pkg/kubectl/cmd/get.go @@ -26,7 +26,9 @@ import ( kapierrors "k8s.io/apimachinery/pkg/api/errors" "k8s.io/apimachinery/pkg/api/meta" + metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/apis/meta/v1/unstructured" + unstructuredconverter "k8s.io/apimachinery/pkg/conversion/unstructured" "k8s.io/apimachinery/pkg/runtime" utilerrors "k8s.io/apimachinery/pkg/util/errors" "k8s.io/apimachinery/pkg/util/sets" @@ -364,6 +366,17 @@ func RunGet(f cmdutil.Factory, out, errOut io.Writer, cmd *cobra.Command, args [ }, } for _, info := range infos { + // FIXME: This should be fixed in 1.9 and is needed to handle + // oc get projectrequest -o yaml + if _, ok := info.Object.(*metav1.Status); ok { + obj, err := unstructuredconverter.NewConverter(false).ToUnstructured(info.Object) + if err != nil { + errs = append(errs, err) + } else { + list.Items = append(list.Items, unstructured.Unstructured{Object: obj}) + } + continue + } list.Items = append(list.Items, *info.Object.(*unstructured.Unstructured)) } obj = list From c1d8af91ee2e8140a2b1a9656ae9870feadd3a2f Mon Sep 17 00:00:00 2001 From: Benjamin Bennett Date: Tue, 7 Nov 2017 12:39:32 -0500 Subject: [PATCH 58/78] UPSTREAM: 55248: increase iptables max wait from 2 seconds to 5 (fix) There were a few more places that had a different form of the wait argument. This catches those places and makes them use the same constant. https://bugzilla.redhat.com/show_bug.cgi?id=1506396 Upstream PR https://github.com/kubernetes/kubernetes/pull/55248 :100644 100644 da5db07854... a57d556f7d... M pkg/util/iptables/iptables.go :100644 100644 6feac30229... 8fc2f6efe5... M pkg/util/iptables/iptables_test.go --- pkg/util/iptables/iptables.go | 2 +- pkg/util/iptables/iptables_test.go | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/util/iptables/iptables.go b/pkg/util/iptables/iptables.go index da5db0785460f..a57d556f7da8b 100644 --- a/pkg/util/iptables/iptables.go +++ b/pkg/util/iptables/iptables.go @@ -571,7 +571,7 @@ func getIPTablesRestoreWaitFlag(exec utilexec.Interface) []string { return nil } - return []string{"--wait=2"} + return []string{WaitSecondsString} } // getIPTablesRestoreVersionString runs "iptables-restore --version" to get the version string diff --git a/pkg/util/iptables/iptables_test.go b/pkg/util/iptables/iptables_test.go index 6feac30229c00..8fc2f6efe5d26 100644 --- a/pkg/util/iptables/iptables_test.go +++ b/pkg/util/iptables/iptables_test.go @@ -1054,7 +1054,7 @@ func TestRestoreAllWait(t *testing.T) { } commandSet := sets.NewString(fcmd.CombinedOutputLog[2]...) - if !commandSet.HasAll("iptables-restore", "--wait=2", "--counters", "--noflush") { + if !commandSet.HasAll("iptables-restore", WaitSecondsString, "--counters", "--noflush") { t.Errorf("wrong CombinedOutput() log, got %s", fcmd.CombinedOutputLog[2]) } @@ -1103,8 +1103,8 @@ func TestRestoreAllWaitOldIptablesRestore(t *testing.T) { if !commandSet.HasAll("iptables-restore", "--counters", "--noflush") { t.Errorf("wrong CombinedOutput() log, got %s", fcmd.CombinedOutputLog[2]) } - if commandSet.HasAny("--wait=2") { - t.Errorf("wrong CombinedOutput() log (unexpected --wait=2 option), got %s", fcmd.CombinedOutputLog[2]) + if commandSet.HasAny(WaitSecondsString) { + t.Errorf("wrong CombinedOutput() log (unexpected %s option), got %s", WaitSecondsString, fcmd.CombinedOutputLog[2]) } if fcmd.CombinedOutputCalls != 3 { From af7d330b39f0a25a04c5a074b69f3b6f8bf80337 Mon Sep 17 00:00:00 2001 From: Maciej Szulik Date: Tue, 14 Nov 2017 09:31:33 +0100 Subject: [PATCH 59/78] UPSTREAM: 55704: Return original error instead of negotiation one :100644 100644 420e430669... 57a1c3ec25... M staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers.go --- .../pkg/endpoints/handlers/responsewriters/writers.go | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers.go b/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers.go index 420e430669c89..57a1c3ec25785 100644 --- a/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers.go +++ b/staging/src/k8s.io/apiserver/pkg/endpoints/handlers/responsewriters/writers.go @@ -100,6 +100,12 @@ func SerializeObject(mediaType string, encoder runtime.Encoder, w http.ResponseW func WriteObjectNegotiated(ctx request.Context, s runtime.NegotiatedSerializer, gv schema.GroupVersion, w http.ResponseWriter, req *http.Request, statusCode int, object runtime.Object) { serializer, err := negotiation.NegotiateOutputSerializer(req, s) if err != nil { + // if original statusCode was not successful we need to return the original error + // we cannot hide it behind negotiation problems + if statusCode < http.StatusOK || statusCode > http.StatusPartialContent { + WriteRawJSON(int(statusCode), object, w) + return + } status := ErrorToAPIStatus(err) WriteRawJSON(int(status.Code), status, w) return From 127810483930f1ac90bbdb779d427147a2e98559 Mon Sep 17 00:00:00 2001 From: Maciej Szulik Date: Tue, 14 Nov 2017 14:03:15 +0100 Subject: [PATCH 60/78] UPSTREAM: 56367: Use full gopath for externalTypes --- pkg/api/v1/doc.go | 2 +- pkg/apis/admission/v1alpha1/doc.go | 2 +- pkg/apis/admissionregistration/v1alpha1/doc.go | 2 +- pkg/apis/apps/v1beta1/doc.go | 2 +- pkg/apis/apps/v1beta2/doc.go | 2 +- pkg/apis/authentication/v1/doc.go | 2 +- pkg/apis/authentication/v1beta1/doc.go | 2 +- pkg/apis/authorization/v1/doc.go | 2 +- pkg/apis/authorization/v1beta1/doc.go | 2 +- pkg/apis/autoscaling/v1/doc.go | 2 +- pkg/apis/autoscaling/v2beta1/doc.go | 2 +- pkg/apis/batch/v1/doc.go | 2 +- pkg/apis/batch/v1beta1/doc.go | 2 +- pkg/apis/batch/v2alpha1/doc.go | 2 +- pkg/apis/certificates/v1beta1/doc.go | 2 +- pkg/apis/extensions/v1beta1/doc.go | 2 +- pkg/apis/imagepolicy/v1alpha1/doc.go | 2 +- pkg/apis/networking/v1/doc.go | 2 +- pkg/apis/policy/v1beta1/doc.go | 2 +- pkg/apis/rbac/v1/doc.go | 2 +- pkg/apis/rbac/v1alpha1/doc.go | 2 +- pkg/apis/rbac/v1beta1/doc.go | 2 +- pkg/apis/scheduling/v1alpha1/doc.go | 2 +- pkg/apis/settings/v1alpha1/doc.go | 2 +- pkg/apis/storage/v1/doc.go | 2 +- pkg/apis/storage/v1beta1/doc.go | 2 +- .../code-generator/cmd/conversion-gen/generators/conversion.go | 2 +- 27 files changed, 27 insertions(+), 27 deletions(-) diff --git a/pkg/api/v1/doc.go b/pkg/api/v1/doc.go index 0f1e0d495e252..d9c1383aa01a7 100644 --- a/pkg/api/v1/doc.go +++ b/pkg/api/v1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/api -// +k8s:conversion-gen-external-types=../../../vendor/k8s.io/api/core/v1 +// +k8s:conversion-gen-external-types=k8s.io/api/core/v1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../vendor/k8s.io/api/core/v1 diff --git a/pkg/apis/admission/v1alpha1/doc.go b/pkg/apis/admission/v1alpha1/doc.go index c26517427084d..4a33e5587c19e 100644 --- a/pkg/apis/admission/v1alpha1/doc.go +++ b/pkg/apis/admission/v1alpha1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/admission -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/admission/v1alpha1 +// +k8s:conversion-gen-external-types=k8s.io/api/admission/v1alpha1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/admission/v1alpha1 diff --git a/pkg/apis/admissionregistration/v1alpha1/doc.go b/pkg/apis/admissionregistration/v1alpha1/doc.go index 50945b2ee4540..b90193716d374 100644 --- a/pkg/apis/admissionregistration/v1alpha1/doc.go +++ b/pkg/apis/admissionregistration/v1alpha1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/admissionregistration -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/admissionregistration/v1alpha1 +// +k8s:conversion-gen-external-types=k8s.io/api/admissionregistration/v1alpha1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/admissionregistration/v1alpha1 diff --git a/pkg/apis/apps/v1beta1/doc.go b/pkg/apis/apps/v1beta1/doc.go index 058dce37f1d9c..32d3dcc2fb821 100644 --- a/pkg/apis/apps/v1beta1/doc.go +++ b/pkg/apis/apps/v1beta1/doc.go @@ -16,7 +16,7 @@ limitations under the License. // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/apps // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/extensions -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/apps/v1beta1 +// +k8s:conversion-gen-external-types=k8s.io/api/apps/v1beta1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/apps/v1beta1 diff --git a/pkg/apis/apps/v1beta2/doc.go b/pkg/apis/apps/v1beta2/doc.go index 9a0bb58199436..965941735a6f3 100644 --- a/pkg/apis/apps/v1beta2/doc.go +++ b/pkg/apis/apps/v1beta2/doc.go @@ -16,7 +16,7 @@ limitations under the License. // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/apps // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/extensions -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/apps/v1beta2 +// +k8s:conversion-gen-external-types=k8s.io/api/apps/v1beta2 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/apps/v1beta2 diff --git a/pkg/apis/authentication/v1/doc.go b/pkg/apis/authentication/v1/doc.go index 39ad62a8e9e62..50ec02077ff33 100644 --- a/pkg/apis/authentication/v1/doc.go +++ b/pkg/apis/authentication/v1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/authentication -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/authentication/v1 +// +k8s:conversion-gen-external-types=k8s.io/api/authentication/v1 // +groupName=authentication.k8s.io // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/authentication/v1 diff --git a/pkg/apis/authentication/v1beta1/doc.go b/pkg/apis/authentication/v1beta1/doc.go index 2c477c52c74d3..7f7a5ffa3be38 100644 --- a/pkg/apis/authentication/v1beta1/doc.go +++ b/pkg/apis/authentication/v1beta1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/authentication -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/authentication/v1beta1 +// +k8s:conversion-gen-external-types=k8s.io/api/authentication/v1beta1 // +groupName=authentication.k8s.io // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/authentication/v1beta1 diff --git a/pkg/apis/authorization/v1/doc.go b/pkg/apis/authorization/v1/doc.go index 5d3af7912e777..11b7605c89888 100644 --- a/pkg/apis/authorization/v1/doc.go +++ b/pkg/apis/authorization/v1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/authorization -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/authorization/v1 +// +k8s:conversion-gen-external-types=k8s.io/api/authorization/v1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/authorization/v1 diff --git a/pkg/apis/authorization/v1beta1/doc.go b/pkg/apis/authorization/v1beta1/doc.go index 76c8fad116059..a958fa36550b3 100644 --- a/pkg/apis/authorization/v1beta1/doc.go +++ b/pkg/apis/authorization/v1beta1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/authorization -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/authorization/v1beta1 +// +k8s:conversion-gen-external-types=k8s.io/api/authorization/v1beta1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/authorization/v1beta1 diff --git a/pkg/apis/autoscaling/v1/doc.go b/pkg/apis/autoscaling/v1/doc.go index 461e081a1162b..4ba5b92363385 100644 --- a/pkg/apis/autoscaling/v1/doc.go +++ b/pkg/apis/autoscaling/v1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/autoscaling -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/autoscaling/v1 +// +k8s:conversion-gen-external-types=k8s.io/api/autoscaling/v1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/autoscaling/v1 diff --git a/pkg/apis/autoscaling/v2beta1/doc.go b/pkg/apis/autoscaling/v2beta1/doc.go index 7b8df7617cc9f..411ef58dcf734 100644 --- a/pkg/apis/autoscaling/v2beta1/doc.go +++ b/pkg/apis/autoscaling/v2beta1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/autoscaling -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/autoscaling/v2beta1 +// +k8s:conversion-gen-external-types=k8s.io/api/autoscaling/v2beta1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/autoscaling/v2beta1 diff --git a/pkg/apis/batch/v1/doc.go b/pkg/apis/batch/v1/doc.go index 87d9c2969c318..835d295296959 100644 --- a/pkg/apis/batch/v1/doc.go +++ b/pkg/apis/batch/v1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/batch -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/batch/v1 +// +k8s:conversion-gen-external-types=k8s.io/api/batch/v1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/batch/v1 diff --git a/pkg/apis/batch/v1beta1/doc.go b/pkg/apis/batch/v1beta1/doc.go index 6c3e65dcb3d05..91d32c5f313b6 100644 --- a/pkg/apis/batch/v1beta1/doc.go +++ b/pkg/apis/batch/v1beta1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/batch -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/batch/v1beta1 +// +k8s:conversion-gen-external-types=k8s.io/api/batch/v1beta1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/batch/v1beta1 diff --git a/pkg/apis/batch/v2alpha1/doc.go b/pkg/apis/batch/v2alpha1/doc.go index 8fbe104196808..dabf0dc394c83 100644 --- a/pkg/apis/batch/v2alpha1/doc.go +++ b/pkg/apis/batch/v2alpha1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/batch -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/batch/v2alpha1 +// +k8s:conversion-gen-external-types=k8s.io/api/batch/v2alpha1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/batch/v2alpha1 diff --git a/pkg/apis/certificates/v1beta1/doc.go b/pkg/apis/certificates/v1beta1/doc.go index e2315d387fba9..d5f13dfff3a4b 100644 --- a/pkg/apis/certificates/v1beta1/doc.go +++ b/pkg/apis/certificates/v1beta1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/certificates -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/certificates/v1beta1 +// +k8s:conversion-gen-external-types=k8s.io/api/certificates/v1beta1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/certificates/v1beta1 diff --git a/pkg/apis/extensions/v1beta1/doc.go b/pkg/apis/extensions/v1beta1/doc.go index fb27eae221a27..17e86ce2f5b49 100644 --- a/pkg/apis/extensions/v1beta1/doc.go +++ b/pkg/apis/extensions/v1beta1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/extensions -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/extensions/v1beta1 +// +k8s:conversion-gen-external-types=k8s.io/api/extensions/v1beta1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/extensions/v1beta1 diff --git a/pkg/apis/imagepolicy/v1alpha1/doc.go b/pkg/apis/imagepolicy/v1alpha1/doc.go index dbd99ca486208..b517ce454380b 100644 --- a/pkg/apis/imagepolicy/v1alpha1/doc.go +++ b/pkg/apis/imagepolicy/v1alpha1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/imagepolicy -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/imagepolicy/v1alpha1 +// +k8s:conversion-gen-external-types=k8s.io/api/imagepolicy/v1alpha1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/imagepolicy/v1alpha1 diff --git a/pkg/apis/networking/v1/doc.go b/pkg/apis/networking/v1/doc.go index d069022f53dc9..f53cbf3dc65b1 100644 --- a/pkg/apis/networking/v1/doc.go +++ b/pkg/apis/networking/v1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/networking -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/networking/v1 +// +k8s:conversion-gen-external-types=k8s.io/api/networking/v1 // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/extensions // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/networking/v1 diff --git a/pkg/apis/policy/v1beta1/doc.go b/pkg/apis/policy/v1beta1/doc.go index f5500bb4b9f6a..9629da3fcd4f6 100644 --- a/pkg/apis/policy/v1beta1/doc.go +++ b/pkg/apis/policy/v1beta1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/policy -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/policy/v1beta1 +// +k8s:conversion-gen-external-types=k8s.io/api/policy/v1beta1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/policy/v1beta1 diff --git a/pkg/apis/rbac/v1/doc.go b/pkg/apis/rbac/v1/doc.go index 6dec982b7817d..1668eabe3b854 100644 --- a/pkg/apis/rbac/v1/doc.go +++ b/pkg/apis/rbac/v1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/rbac -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/rbac/v1 +// +k8s:conversion-gen-external-types=k8s.io/api/rbac/v1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/rbac/v1 diff --git a/pkg/apis/rbac/v1alpha1/doc.go b/pkg/apis/rbac/v1alpha1/doc.go index fa6dbc5cdc8a8..365f388143656 100644 --- a/pkg/apis/rbac/v1alpha1/doc.go +++ b/pkg/apis/rbac/v1alpha1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/rbac -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/rbac/v1alpha1 +// +k8s:conversion-gen-external-types=k8s.io/api/rbac/v1alpha1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/rbac/v1alpha1 diff --git a/pkg/apis/rbac/v1beta1/doc.go b/pkg/apis/rbac/v1beta1/doc.go index 3ae3e51d5121e..7ba759013a2b7 100644 --- a/pkg/apis/rbac/v1beta1/doc.go +++ b/pkg/apis/rbac/v1beta1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/rbac -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/rbac/v1beta1 +// +k8s:conversion-gen-external-types=k8s.io/api/rbac/v1beta1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/rbac/v1beta1 diff --git a/pkg/apis/scheduling/v1alpha1/doc.go b/pkg/apis/scheduling/v1alpha1/doc.go index 115597cc3b88b..e2bf21c769726 100644 --- a/pkg/apis/scheduling/v1alpha1/doc.go +++ b/pkg/apis/scheduling/v1alpha1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/scheduling -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/scheduling/v1alpha1 +// +k8s:conversion-gen-external-types=k8s.io/api/scheduling/v1alpha1 // +groupName=scheduling.k8s.io // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/scheduling/v1alpha1 diff --git a/pkg/apis/settings/v1alpha1/doc.go b/pkg/apis/settings/v1alpha1/doc.go index cdc4161eb0ead..4422bb3e77b7f 100644 --- a/pkg/apis/settings/v1alpha1/doc.go +++ b/pkg/apis/settings/v1alpha1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/settings -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/settings/v1alpha1 +// +k8s:conversion-gen-external-types=k8s.io/api/settings/v1alpha1 // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/settings/v1alpha1 diff --git a/pkg/apis/storage/v1/doc.go b/pkg/apis/storage/v1/doc.go index 3a5b7ac2dd168..617aa14c1aa03 100644 --- a/pkg/apis/storage/v1/doc.go +++ b/pkg/apis/storage/v1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/storage -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/storage/v1 +// +k8s:conversion-gen-external-types=k8s.io/api/storage/v1 // +groupName=storage.k8s.io // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/storage/v1 diff --git a/pkg/apis/storage/v1beta1/doc.go b/pkg/apis/storage/v1beta1/doc.go index b47a504492191..a5b0ca68ab802 100644 --- a/pkg/apis/storage/v1beta1/doc.go +++ b/pkg/apis/storage/v1beta1/doc.go @@ -15,7 +15,7 @@ limitations under the License. */ // +k8s:conversion-gen=k8s.io/kubernetes/pkg/apis/storage -// +k8s:conversion-gen-external-types=../../../../vendor/k8s.io/api/storage/v1beta1 +// +k8s:conversion-gen-external-types=k8s.io/api/storage/v1beta1 // +groupName=storage.k8s.io // +k8s:defaulter-gen=TypeMeta // +k8s:defaulter-gen-input=../../../../vendor/k8s.io/api/storage/v1beta1 diff --git a/staging/src/k8s.io/code-generator/cmd/conversion-gen/generators/conversion.go b/staging/src/k8s.io/code-generator/cmd/conversion-gen/generators/conversion.go index ba1eabc313d5d..b918745643185 100644 --- a/staging/src/k8s.io/code-generator/cmd/conversion-gen/generators/conversion.go +++ b/staging/src/k8s.io/code-generator/cmd/conversion-gen/generators/conversion.go @@ -262,7 +262,7 @@ func Packages(context *generator.Context, arguments *args.GeneratorArgs) generat externalTypes := externalTypesValues[0] glog.V(5).Infof(" external types tags: %q", externalTypes) var err error - typesPkg, err = context.AddDirectory(filepath.Join(pkg.Path, externalTypes)) + typesPkg, err = context.AddDirectory(externalTypes) if err != nil { glog.Fatalf("cannot import package %s", externalTypes) } From 021d92ee7be5f2d125d5040c46cb15241b574e50 Mon Sep 17 00:00:00 2001 From: Jordan Liggitt Date: Wed, 15 Nov 2017 02:33:35 -0500 Subject: [PATCH 61/78] UPSTREAM: 55772: Only attempt to construct GC informers for watchable resources :100644 100644 8853640871... 23783a6593... M pkg/controller/garbagecollector/garbagecollector.go :100644 100644 c19305312e... 2eed274c36... M pkg/controller/garbagecollector/graph_builder.go --- pkg/controller/garbagecollector/garbagecollector.go | 4 ++-- pkg/controller/garbagecollector/graph_builder.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/controller/garbagecollector/garbagecollector.go b/pkg/controller/garbagecollector/garbagecollector.go index 88536408713e9..23783a65930ff 100644 --- a/pkg/controller/garbagecollector/garbagecollector.go +++ b/pkg/controller/garbagecollector/garbagecollector.go @@ -591,13 +591,13 @@ func (gc *GarbageCollector) GraphHasUID(UIDs []types.UID) bool { // GetDeletableResources returns all resources from discoveryClient that the // garbage collector should recognize and work with. More specifically, all -// preferred resources which support the 'delete' verb. +// preferred resources which support the 'delete', 'list', and 'watch' verbs. func GetDeletableResources(discoveryClient discovery.DiscoveryInterface) (map[schema.GroupVersionResource]struct{}, error) { preferredResources, err := discoveryClient.ServerPreferredResources() if err != nil { return nil, fmt.Errorf("failed to get supported resources from server: %v", err) } - deletableResources := discovery.FilteredBy(discovery.SupportsAllVerbs{Verbs: []string{"delete"}}, preferredResources) + deletableResources := discovery.FilteredBy(discovery.SupportsAllVerbs{Verbs: []string{"delete", "list", "watch"}}, preferredResources) deletableGroupVersionResources, err := discovery.GroupVersionResources(deletableResources) if err != nil { return nil, fmt.Errorf("Failed to parse resources from server: %v", err) diff --git a/pkg/controller/garbagecollector/graph_builder.go b/pkg/controller/garbagecollector/graph_builder.go index c19305312e9c3..2eed274c36b86 100644 --- a/pkg/controller/garbagecollector/graph_builder.go +++ b/pkg/controller/garbagecollector/graph_builder.go @@ -230,7 +230,7 @@ func (gb *GraphBuilder) syncMonitors(resources map[schema.GroupVersionResource]s kept := 0 added := 0 for resource := range resources { - if _, ok := ignoredResources[resource.GroupResource()]; ok { + if _, ok := gb.ignoredResources[resource.GroupResource()]; ok { continue } if m, ok := toRemove[resource]; ok { From be214c73ea3e520751230d9ac83d0a8addf060ef Mon Sep 17 00:00:00 2001 From: Jordan Liggitt Date: Fri, 17 Nov 2017 15:50:35 -0500 Subject: [PATCH 62/78] UPSTREAM: 55974: Allow constructing spdy executor from existing transports :100644 100644 bcbe9fcd4f... 6b69f366e4... M staging/src/k8s.io/client-go/tools/remotecommand/remotecommand.go --- pkg/client/tests/remotecommand_test.go | 7 ++++- .../tools/remotecommand/remotecommand.go | 26 +++++++++++-------- 2 files changed, 21 insertions(+), 12 deletions(-) diff --git a/pkg/client/tests/remotecommand_test.go b/pkg/client/tests/remotecommand_test.go index 6ea8a96ecb157..16295279016e7 100644 --- a/pkg/client/tests/remotecommand_test.go +++ b/pkg/client/tests/remotecommand_test.go @@ -256,7 +256,12 @@ func TestStream(t *testing.T) { conf := &restclient.Config{ Host: server.URL, } - e, err := remoteclient.NewSPDYExecutorForProtocols(conf, "POST", req.URL(), testCase.ClientProtocols...) + transport, upgradeTransport, err := spdy.RoundTripperFor(conf) + if err != nil { + t.Errorf("%s: unexpected error: %v", name, err) + continue + } + e, err := remoteclient.NewSPDYExecutorForProtocols(transport, upgradeTransport, "POST", req.URL(), testCase.ClientProtocols...) if err != nil { t.Errorf("%s: unexpected error: %v", name, err) continue diff --git a/staging/src/k8s.io/client-go/tools/remotecommand/remotecommand.go b/staging/src/k8s.io/client-go/tools/remotecommand/remotecommand.go index bcbe9fcd4f0e9..6b69f366e4846 100644 --- a/staging/src/k8s.io/client-go/tools/remotecommand/remotecommand.go +++ b/staging/src/k8s.io/client-go/tools/remotecommand/remotecommand.go @@ -27,7 +27,6 @@ import ( "k8s.io/apimachinery/pkg/util/httpstream" "k8s.io/apimachinery/pkg/util/remotecommand" restclient "k8s.io/client-go/rest" - "k8s.io/client-go/transport" spdy "k8s.io/client-go/transport/spdy" ) @@ -72,8 +71,18 @@ type streamExecutor struct { // NewSPDYExecutor connects to the provided server and upgrades the connection to // multiplexed bidirectional streams. func NewSPDYExecutor(config *restclient.Config, method string, url *url.URL) (Executor, error) { + wrapper, upgradeRoundTripper, err := spdy.RoundTripperFor(config) + if err != nil { + return nil, err + } + return NewSPDYExecutorForTransports(wrapper, upgradeRoundTripper, method, url) +} + +// NewSPDYExecutorForTransports connects to the provided server using the given transport, +// upgrades the response using the given upgrader to multiplexed bidirectional streams. +func NewSPDYExecutorForTransports(transport http.RoundTripper, upgrader spdy.Upgrader, method string, url *url.URL) (Executor, error) { return NewSPDYExecutorForProtocols( - config, method, url, + transport, upgrader, method, url, remotecommand.StreamProtocolV4Name, remotecommand.StreamProtocolV3Name, remotecommand.StreamProtocolV2Name, @@ -83,16 +92,11 @@ func NewSPDYExecutor(config *restclient.Config, method string, url *url.URL) (Ex // NewSPDYExecutorForProtocols connects to the provided server and upgrades the connection to // multiplexed bidirectional streams using only the provided protocols. Exposed for testing, most -// callers should use NewSPDYExecutor. -func NewSPDYExecutorForProtocols(config *restclient.Config, method string, url *url.URL, protocols ...string) (Executor, error) { - wrapper, upgradeRoundTripper, err := spdy.RoundTripperFor(config) - if err != nil { - return nil, err - } - wrapper = transport.DebugWrappers(wrapper) +// callers should use NewSPDYExecutor or NewSPDYExecutorForTransports. +func NewSPDYExecutorForProtocols(transport http.RoundTripper, upgrader spdy.Upgrader, method string, url *url.URL, protocols ...string) (Executor, error) { return &streamExecutor{ - upgrader: upgradeRoundTripper, - transport: wrapper, + upgrader: upgrader, + transport: transport, method: method, url: url, protocols: protocols, From 4b843b08ae721c831e7265b5e1b20e465db64135 Mon Sep 17 00:00:00 2001 From: Michal Fojtik Date: Mon, 30 Oct 2017 17:03:10 +0100 Subject: [PATCH 63/78] UPSTREAM: : switch back to use ugorji/go to avoid deserialization errors :100644 100644 5d82f92cb4... 8b0c14664d... M pkg/api/serialization_test.go :100644 100644 1a13377e7d... 8b2b3957f1... M staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go :100644 100644 8ec26f54c4... b261dd2ed5... M staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/group_version_test.go :100644 100644 c7442ed7ff... 59a82bbfe5... M staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_test.go :100644 100644 76579e5f2f... 80644d3a68... M staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go --- pkg/api/serialization_test.go | 9 ++- .../pkg/apis/meta/fuzzer/fuzzer.go | 14 ++-- .../pkg/apis/meta/v1/group_version_test.go | 9 ++- .../pkg/apis/meta/v1/types_test.go | 5 +- .../pkg/runtime/serializer/json/json.go | 66 +++++++++---------- 5 files changed, 57 insertions(+), 46 deletions(-) diff --git a/pkg/api/serialization_test.go b/pkg/api/serialization_test.go index 609805a8a74dd..8b0c14664d33b 100644 --- a/pkg/api/serialization_test.go +++ b/pkg/api/serialization_test.go @@ -19,7 +19,6 @@ package api_test import ( "bytes" "encoding/hex" - "encoding/json" "io/ioutil" "math/rand" "reflect" @@ -27,7 +26,7 @@ import ( "testing" "github.com/golang/protobuf/proto" - jsoniter "github.com/json-iterator/go" + "github.com/ugorji/go/codec" "k8s.io/api/core/v1" "k8s.io/api/extensions/v1beta1" @@ -41,6 +40,7 @@ import ( "k8s.io/apimachinery/pkg/runtime/schema" "k8s.io/apimachinery/pkg/runtime/serializer/streaming" "k8s.io/apimachinery/pkg/util/diff" + "k8s.io/apimachinery/pkg/util/json" "k8s.io/apimachinery/pkg/util/sets" "k8s.io/apimachinery/pkg/watch" "k8s.io/kubernetes/pkg/api" @@ -550,10 +550,13 @@ func BenchmarkDecodeIntoJSONCodecGen(b *testing.B) { encoded[i] = data } + handler := &codec.JsonHandle{} + b.ResetTimer() for i := 0; i < b.N; i++ { obj := v1.Pod{} - if err := jsoniter.ConfigFastest.Unmarshal(encoded[i%width], &obj); err != nil { + // if err := jsoniter.ConfigFastest.Unmarshal(encoded[i%width], &obj); err != nil { + if err := codec.NewDecoderBytes(encoded[i%width], handler).Decode(&obj); err != nil { b.Fatal(err) } } diff --git a/staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go b/staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go index e5f5bd4c796f1..8b2b3957f13e9 100644 --- a/staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go +++ b/staging/src/k8s.io/apimachinery/pkg/apis/meta/fuzzer/fuzzer.go @@ -145,11 +145,15 @@ func v1alpha1FuzzerFuncs(codecs runtimeserializer.CodecFactory) []interface{} { case 2: r.Cells[i] = c.RandBool() case 3: - x := map[string]interface{}{} - for j := c.Intn(10) + 1; j >= 0; j-- { - x[c.RandString()] = c.RandString() - } - r.Cells[i] = x + // maps roundtrip as map[interface{}]interface{}, but the json codec cannot encode that + // TODO: get maps to roundtrip properly + /* + x := map[string]interface{}{} + for j := c.Intn(10) + 1; j >= 0; j-- { + x[c.RandString()] = c.RandString() + } + r.Cells[i] = x + */ case 4: x := make([]interface{}, c.Intn(10)) for i := range x { diff --git a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/group_version_test.go b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/group_version_test.go index 2217aa293d42a..b261dd2ed5e90 100644 --- a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/group_version_test.go +++ b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/group_version_test.go @@ -21,7 +21,7 @@ import ( "reflect" "testing" - jsoniter "github.com/json-iterator/go" + "github.com/ugorji/go/codec" ) type GroupVersionHolder struct { @@ -47,8 +47,11 @@ func TestGroupVersionUnmarshalJSON(t *testing.T) { t.Errorf("JSON codec failed to unmarshal input '%s': expected %+v, got %+v", c.input, c.expect, result.GV) } // test the json-iterator codec - if err := jsoniter.ConfigFastest.Unmarshal(c.input, &result); err != nil { - t.Errorf("json-iterator codec failed to unmarshal input '%v': %v", c.input, err) + // if err := jsoniter.ConfigFastest.Unmarshal(c.input, &result); err != nil { + // t.Errorf("json-iterator codec failed to unmarshal input '%v': %v", c.input, err) + // test the Ugorji codec + if err := codec.NewDecoderBytes(c.input, new(codec.JsonHandle)).Decode(&result); err != nil { + t.Errorf("Ugorji codec failed to unmarshal input '%v': %v", c.input, err) } if !reflect.DeepEqual(result.GV, c.expect) { t.Errorf("json-iterator codec failed to unmarshal input '%s': expected %+v, got %+v", c.input, c.expect, result.GV) diff --git a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_test.go b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_test.go index 21aa9560e92a3..59a82bbfe5c66 100644 --- a/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_test.go +++ b/staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_test.go @@ -21,7 +21,7 @@ import ( "reflect" "testing" - jsoniter "github.com/json-iterator/go" + "github.com/ugorji/go/codec" ) func TestVerbsUgorjiMarshalJSON(t *testing.T) { @@ -58,7 +58,8 @@ func TestVerbsUgorjiUnmarshalJSON(t *testing.T) { for i, c := range cases { var result APIResource - if err := jsoniter.ConfigFastest.Unmarshal([]byte(c.input), &result); err != nil { + // if err := jsoniter.ConfigFastest.Unmarshal([]byte(c.input), &result); err != nil { + if err := codec.NewDecoderBytes([]byte(c.input), new(codec.JsonHandle)).Decode(&result); err != nil { t.Errorf("[%d] Failed to unmarshal input '%v': %v", i, c.input, err) } if !reflect.DeepEqual(result, c.result) { diff --git a/staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go b/staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go index ce3d77c2b3bb4..80644d3a68df8 100644 --- a/staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go +++ b/staging/src/k8s.io/apimachinery/pkg/runtime/serializer/json/json.go @@ -19,11 +19,9 @@ package json import ( "encoding/json" "io" - "strconv" - "unsafe" "github.com/ghodss/yaml" - jsoniter "github.com/json-iterator/go" + "github.com/ugorji/go/codec" "k8s.io/apimachinery/pkg/runtime" "k8s.io/apimachinery/pkg/runtime/schema" @@ -70,32 +68,32 @@ var _ recognizer.RecognizingDecoder = &Serializer{} func init() { // Force jsoniter to decode number to interface{} via ints, if possible. - decodeNumberAsInt64IfPossible := func(ptr unsafe.Pointer, iter *jsoniter.Iterator) { - switch iter.WhatIsNext() { - case jsoniter.NumberValue: - var number json.Number - iter.ReadVal(&number) - u64, err := strconv.ParseUint(string(number), 10, 64) - if err == nil { - *(*interface{})(ptr) = u64 - return - } - i64, err := strconv.ParseInt(string(number), 10, 64) - if err == nil { - *(*interface{})(ptr) = i64 - return - } - f64, err := strconv.ParseFloat(string(number), 64) - if err == nil { - *(*interface{})(ptr) = f64 - return - } - // Not much we can do here. - default: - *(*interface{})(ptr) = iter.Read() - } - } - jsoniter.RegisterTypeDecoderFunc("interface {}", decodeNumberAsInt64IfPossible) + // decodeNumberAsInt64IfPossible := func(ptr unsafe.Pointer, iter *jsoniter.Iterator) { + // switch iter.WhatIsNext() { + // case jsoniter.NumberValue: + // var number json.Number + // iter.ReadVal(&number) + // u64, err := strconv.ParseUint(string(number), 10, 64) + // if err == nil { + // *(*interface{})(ptr) = u64 + // return + // } + // i64, err := strconv.ParseInt(string(number), 10, 64) + // if err == nil { + // *(*interface{})(ptr) = i64 + // return + // } + // f64, err := strconv.ParseFloat(string(number), 64) + // if err == nil { + // *(*interface{})(ptr) = f64 + // return + // } + // // Not much we can do here. + // default: + // *(*interface{})(ptr) = iter.Read() + // } + // } + // jsoniter.RegisterTypeDecoderFunc("interface {}", decodeNumberAsInt64IfPossible) } // Decode attempts to convert the provided data into YAML or JSON, extract the stored schema kind, apply the provided default gvk, and then @@ -153,7 +151,8 @@ func (s *Serializer) Decode(originalData []byte, gvk *schema.GroupVersionKind, i types, _, err := s.typer.ObjectKinds(into) switch { case runtime.IsNotRegisteredError(err): - if err := jsoniter.ConfigFastest.Unmarshal(data, into); err != nil { + // if err := jsoniter.ConfigFastest.Unmarshal(data, into); err != nil { + if err := codec.NewDecoderBytes(data, new(codec.JsonHandle)).Decode(into); err != nil { return nil, actual, err } return into, actual, nil @@ -187,7 +186,8 @@ func (s *Serializer) Decode(originalData []byte, gvk *schema.GroupVersionKind, i return nil, actual, err } - if err := jsoniter.ConfigFastest.Unmarshal(data, obj); err != nil { + // if err := jsoniter.ConfigFastest.Unmarshal(data, obj); err != nil { + if err := codec.NewDecoderBytes(data, new(codec.JsonHandle)).Decode(obj); err != nil { return nil, actual, err } return obj, actual, nil @@ -196,7 +196,7 @@ func (s *Serializer) Decode(originalData []byte, gvk *schema.GroupVersionKind, i // Encode serializes the provided object to the given writer. func (s *Serializer) Encode(obj runtime.Object, w io.Writer) error { if s.yaml { - json, err := jsoniter.ConfigFastest.Marshal(obj) + json, err := json.Marshal(obj) if err != nil { return err } @@ -209,7 +209,7 @@ func (s *Serializer) Encode(obj runtime.Object, w io.Writer) error { } if s.pretty { - data, err := jsoniter.ConfigFastest.MarshalIndent(obj, "", " ") + data, err := json.MarshalIndent(obj, "", " ") if err != nil { return err } From 9c6df7e7d251b98c7efdf279f5f46ef48a00df03 Mon Sep 17 00:00:00 2001 From: deads2k Date: Fri, 14 Jul 2017 08:57:23 -0400 Subject: [PATCH 64/78] UPSTREAM: : disable flaky InitFederation unit test :100644 100644 c6d5b1ea65... 1ce682b668... M federation/pkg/kubefed/init/init_test.go --- federation/pkg/kubefed/init/init_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/federation/pkg/kubefed/init/init_test.go b/federation/pkg/kubefed/init/init_test.go index 3c441e9f508d7..c87ac8b98d16c 100644 --- a/federation/pkg/kubefed/init/init_test.go +++ b/federation/pkg/kubefed/init/init_test.go @@ -75,7 +75,7 @@ const ( testAPIVersion = "testVersion" ) -func TestInitFederation(t *testing.T) { +func DISABLE_TestInitFederation(t *testing.T) { cmdErrMsg := "" cmdutil.BehaviorOnFatal(func(str string, code int) { cmdErrMsg = str From 04ba547afabbecc80835fb8419997f8374738c02 Mon Sep 17 00:00:00 2001 From: David Eads Date: Tue, 21 Nov 2017 12:44:02 -0500 Subject: [PATCH 65/78] UPSTREAM: : disable failing etcd test for old level :100644 100644 e5a9eb24d4... 0290024128... M third_party/forked/etcd221/pkg/fileutil/fileutil_test.go --- third_party/forked/etcd221/pkg/fileutil/fileutil_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/forked/etcd221/pkg/fileutil/fileutil_test.go b/third_party/forked/etcd221/pkg/fileutil/fileutil_test.go index e5a9eb24d41f5..02900241287bd 100644 --- a/third_party/forked/etcd221/pkg/fileutil/fileutil_test.go +++ b/third_party/forked/etcd221/pkg/fileutil/fileutil_test.go @@ -22,7 +22,7 @@ import ( "testing" ) -func TestIsDirWriteable(t *testing.T) { +func STestIsDirWriteable(t *testing.T) { tmpdir, err := ioutil.TempDir("", "") if err != nil { t.Fatalf("unexpected ioutil.TempDir error: %v", err) From b30f1bebd58e58c9cd4cd823fd95a5cc946803af Mon Sep 17 00:00:00 2001 From: Humble Chirammal Date: Wed, 22 Nov 2017 19:32:37 +0530 Subject: [PATCH 66/78] UPSTREAM: 55796: Correct ConstructVolumeSpec() Signed-off-by: Humble Chirammal :100644 100644 e1118b3ba0... 4bf855b962... M pkg/volume/glusterfs/glusterfs.go --- pkg/volume/glusterfs/glusterfs.go | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) diff --git a/pkg/volume/glusterfs/glusterfs.go b/pkg/volume/glusterfs/glusterfs.go index e1118b3ba0368..4bf855b962c9c 100644 --- a/pkg/volume/glusterfs/glusterfs.go +++ b/pkg/volume/glusterfs/glusterfs.go @@ -196,16 +196,11 @@ func (plugin *glusterfsPlugin) newUnmounterInternal(volName string, podUID types } func (plugin *glusterfsPlugin) ConstructVolumeSpec(volumeName, mountPath string) (*volume.Spec, error) { - glusterfsVolume := &v1.Volume{ - Name: volumeName, - VolumeSource: v1.VolumeSource{ - Glusterfs: &v1.GlusterfsVolumeSource{ - EndpointsName: volumeName, - Path: volumeName, - }, - }, - } - return volume.NewSpecFromVolume(glusterfsVolume), nil + + // To reconstrcut volume spec we need endpoint where fetching endpoint from mount + // string looks to be impossible, so returning error. + return nil, fmt.Errorf("impossible to reconstruct glusterfs volume spec from volume mountpath") + } // Glusterfs volumes represent a bare host file or directory mount of an Glusterfs export. From eeabd424e77ced6ab7eca07da6254761add0c89e Mon Sep 17 00:00:00 2001 From: Michal Fojtik Date: Mon, 20 Nov 2017 11:00:37 +0100 Subject: [PATCH 67/78] UPSTREAM: 56045: Fix getting logs from daemonset --- pkg/kubectl/cmd/util/factory_object_mapping.go | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pkg/kubectl/cmd/util/factory_object_mapping.go b/pkg/kubectl/cmd/util/factory_object_mapping.go index 0ed7db0ec1a8e..8aad271a9fa88 100644 --- a/pkg/kubectl/cmd/util/factory_object_mapping.go +++ b/pkg/kubectl/cmd/util/factory_object_mapping.go @@ -274,6 +274,13 @@ func (f *ring1Factory) LogsForObject(object, options runtime.Object, timeout tim return nil, fmt.Errorf("invalid label selector: %v", err) } + case *extensions.DaemonSet: + namespace = t.Namespace + selector, err = metav1.LabelSelectorAsSelector(t.Spec.Selector) + if err != nil { + return nil, fmt.Errorf("invalid label selector: %v", err) + } + case *batch.Job: namespace = t.Namespace selector, err = metav1.LabelSelectorAsSelector(t.Spec.Selector) From 68ee5dd3a6027cf498e8750ae8a3390c95ebc37d Mon Sep 17 00:00:00 2001 From: Jan Safranek Date: Thu, 23 Nov 2017 13:55:42 +0100 Subject: [PATCH 68/78] UPSTREAM: 53135: Fixed counting of unbound PVCs towards limit of attached volumes :100644 100644 ff893c3c41... c940d2f538... M plugin/pkg/scheduler/algorithm/predicates/BUILD :100644 100644 d047c0ffcd... efe1fac490... M plugin/pkg/scheduler/algorithm/predicates/predicates.go :100644 100644 d085d9d6f6... a148e112bc... M plugin/pkg/scheduler/algorithm/predicates/predicates_test.go --- .../pkg/scheduler/algorithm/predicates/BUILD | 1 + .../algorithm/predicates/predicates.go | 58 +++---- .../algorithm/predicates/predicates_test.go | 151 ++++++++++++++++++ 3 files changed, 182 insertions(+), 28 deletions(-) diff --git a/plugin/pkg/scheduler/algorithm/predicates/BUILD b/plugin/pkg/scheduler/algorithm/predicates/BUILD index ff893c3c41653..c940d2f538fb4 100644 --- a/plugin/pkg/scheduler/algorithm/predicates/BUILD +++ b/plugin/pkg/scheduler/algorithm/predicates/BUILD @@ -29,6 +29,7 @@ go_library( "//vendor/k8s.io/apimachinery/pkg/api/errors:go_default_library", "//vendor/k8s.io/apimachinery/pkg/apis/meta/v1:go_default_library", "//vendor/k8s.io/apimachinery/pkg/labels:go_default_library", + "//vendor/k8s.io/apimachinery/pkg/util/rand:go_default_library", "//vendor/k8s.io/apiserver/pkg/util/feature:go_default_library", "//vendor/k8s.io/client-go/listers/core/v1:go_default_library", "//vendor/k8s.io/client-go/util/workqueue:go_default_library", diff --git a/plugin/pkg/scheduler/algorithm/predicates/predicates.go b/plugin/pkg/scheduler/algorithm/predicates/predicates.go index d047c0ffcdfe5..efe1fac490f02 100644 --- a/plugin/pkg/scheduler/algorithm/predicates/predicates.go +++ b/plugin/pkg/scheduler/algorithm/predicates/predicates.go @@ -18,15 +18,13 @@ package predicates import ( "fmt" - "math/rand" - "strconv" "sync" - "time" "k8s.io/api/core/v1" apierrors "k8s.io/apimachinery/pkg/api/errors" metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/labels" + "k8s.io/apimachinery/pkg/util/rand" utilfeature "k8s.io/apiserver/pkg/util/feature" corelisters "k8s.io/client-go/listers/core/v1" "k8s.io/client-go/util/workqueue" @@ -206,7 +204,7 @@ func NewMaxPDVolumeCountPredicate(filter VolumeFilter, maxVolumes int, pvInfo Pe return c.predicate } -func (c *MaxPDVolumeCountChecker) filterVolumes(volumes []v1.Volume, namespace string, filteredVolumes map[string]bool) error { +func (c *MaxPDVolumeCountChecker) filterVolumes(volumes []v1.Volume, namespace string, randomPrefix string, filteredVolumes map[string]bool) error { for i := range volumes { vol := &volumes[i] if id, ok := c.filter.FilterVolume(vol); ok { @@ -216,40 +214,37 @@ func (c *MaxPDVolumeCountChecker) filterVolumes(volumes []v1.Volume, namespace s if pvcName == "" { return fmt.Errorf("PersistentVolumeClaim had no name") } + + // Until we know real ID of the volume use namespace/pvcName as substitute + // With a random prefix so it can't conflict with existing volume ID. + pvId := fmt.Sprintf("%s-%s/%s", randomPrefix, namespace, pvcName) + pvc, err := c.pvcInfo.GetPersistentVolumeClaimInfo(namespace, pvcName) - if err != nil { + if err != nil || pvc == nil { // if the PVC is not found, log the error and count the PV towards the PV limit - // generate a random volume ID since its required for de-dup glog.V(4).Infof("Unable to look up PVC info for %s/%s, assuming PVC matches predicate when counting limits: %v", namespace, pvcName, err) - source := rand.NewSource(time.Now().UnixNano()) - generatedID := "missingPVC" + strconv.Itoa(rand.New(source).Intn(1000000)) - filteredVolumes[generatedID] = true - return nil + filteredVolumes[pvId] = true + continue } - if pvc == nil { - return fmt.Errorf("PersistentVolumeClaim not found: %q", pvcName) + if pvc.Spec.VolumeName == "" { + // PVC is not bound. It was either deleted and created again or + // it was forcefuly unbound by admin. The pod can still use the + // original PV where it was bound to -> log the error and count + // the PV towards the PV limit + glog.V(4).Infof("PVC %s/%s is not bound, assuming PVC matches predicate when counting limits", namespace, pvcName) + filteredVolumes[pvId] = true + continue } pvName := pvc.Spec.VolumeName - if pvName == "" { - return fmt.Errorf("PersistentVolumeClaim is not bound: %q", pvcName) - } - pv, err := c.pvInfo.GetPersistentVolumeInfo(pvName) - if err != nil { + if err != nil || pv == nil { // if the PV is not found, log the error // and count the PV towards the PV limit - // generate a random volume ID since it is required for de-dup glog.V(4).Infof("Unable to look up PV info for %s/%s/%s, assuming PV matches predicate when counting limits: %v", namespace, pvcName, pvName, err) - source := rand.NewSource(time.Now().UnixNano()) - generatedID := "missingPV" + strconv.Itoa(rand.New(source).Intn(1000000)) - filteredVolumes[generatedID] = true - return nil - } - - if pv == nil { - return fmt.Errorf("PersistentVolume not found: %q", pvName) + filteredVolumes[pvId] = true + continue } if id, ok := c.filter.FilterPersistentVolume(pv); ok { @@ -268,8 +263,15 @@ func (c *MaxPDVolumeCountChecker) predicate(pod *v1.Pod, meta algorithm.Predicat return true, nil, nil } + // randomPrefix is a prefix of auxiliary volume IDs when we don't know the + // real volume ID, e.g. because the corresponding PV or PVC was deleted. It + // is random to avoid conflicts with real volume IDs and it needs to be + // stable in whole predicate() call so a deleted PVC used by two pods is + // counted as one volume and not as two. + randomPrefix := rand.String(32) + newVolumes := make(map[string]bool) - if err := c.filterVolumes(pod.Spec.Volumes, pod.Namespace, newVolumes); err != nil { + if err := c.filterVolumes(pod.Spec.Volumes, pod.Namespace, randomPrefix, newVolumes); err != nil { return false, nil, err } @@ -281,7 +283,7 @@ func (c *MaxPDVolumeCountChecker) predicate(pod *v1.Pod, meta algorithm.Predicat // count unique volumes existingVolumes := make(map[string]bool) for _, existingPod := range nodeInfo.Pods() { - if err := c.filterVolumes(existingPod.Spec.Volumes, existingPod.Namespace, existingVolumes); err != nil { + if err := c.filterVolumes(existingPod.Spec.Volumes, existingPod.Namespace, randomPrefix, existingVolumes); err != nil { return false, nil, err } } diff --git a/plugin/pkg/scheduler/algorithm/predicates/predicates_test.go b/plugin/pkg/scheduler/algorithm/predicates/predicates_test.go index d085d9d6f6e4a..a148e112bc28d 100644 --- a/plugin/pkg/scheduler/algorithm/predicates/predicates_test.go +++ b/plugin/pkg/scheduler/algorithm/predicates/predicates_test.go @@ -1708,6 +1708,26 @@ func TestEBSVolumeCountConflicts(t *testing.T) { }, }, } + twoDeletedPVCPod := &v1.Pod{ + Spec: v1.PodSpec{ + Volumes: []v1.Volume{ + { + VolumeSource: v1.VolumeSource{ + PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{ + ClaimName: "deletedPVC", + }, + }, + }, + { + VolumeSource: v1.VolumeSource{ + PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{ + ClaimName: "anotherDeletedPVC", + }, + }, + }, + }, + }, + } deletedPVPod := &v1.Pod{ Spec: v1.PodSpec{ Volumes: []v1.Volume{ @@ -1721,9 +1741,79 @@ func TestEBSVolumeCountConflicts(t *testing.T) { }, }, } + // deletedPVPod2 is a different pod than deletedPVPod but using the same PVC + deletedPVPod2 := &v1.Pod{ + Spec: v1.PodSpec{ + Volumes: []v1.Volume{ + { + VolumeSource: v1.VolumeSource{ + PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{ + ClaimName: "pvcWithDeletedPV", + }, + }, + }, + }, + }, + } + // anotherDeletedPVPod is a different pod than deletedPVPod and uses another PVC + anotherDeletedPVPod := &v1.Pod{ + Spec: v1.PodSpec{ + Volumes: []v1.Volume{ + { + VolumeSource: v1.VolumeSource{ + PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{ + ClaimName: "anotherPVCWithDeletedPV", + }, + }, + }, + }, + }, + } emptyPod := &v1.Pod{ Spec: v1.PodSpec{}, } + unboundPVCPod := &v1.Pod{ + Spec: v1.PodSpec{ + Volumes: []v1.Volume{ + { + VolumeSource: v1.VolumeSource{ + PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{ + ClaimName: "unboundPVC", + }, + }, + }, + }, + }, + } + // Different pod than unboundPVCPod, but using the same unbound PVC + unboundPVCPod2 := &v1.Pod{ + Spec: v1.PodSpec{ + Volumes: []v1.Volume{ + { + VolumeSource: v1.VolumeSource{ + PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{ + ClaimName: "unboundPVC", + }, + }, + }, + }, + }, + } + + // pod with unbound PVC that's different to unboundPVC + anotherUnboundPVCPod := &v1.Pod{ + Spec: v1.PodSpec{ + Volumes: []v1.Volume{ + { + VolumeSource: v1.VolumeSource{ + PersistentVolumeClaim: &v1.PersistentVolumeClaimVolumeSource{ + ClaimName: "anotherUnboundPVC", + }, + }, + }, + }, + }, + } tests := []struct { newPod *v1.Pod @@ -1809,6 +1899,13 @@ func TestEBSVolumeCountConflicts(t *testing.T) { fits: true, test: "pod with missing PVC is counted towards the PV limit", }, + { + newPod: ebsPVCPod, + existingPods: []*v1.Pod{oneVolPod, twoDeletedPVCPod}, + maxVols: 3, + fits: false, + test: "pod with missing two PVCs is counted towards the PV limit twice", + }, { newPod: ebsPVCPod, existingPods: []*v1.Pod{oneVolPod, deletedPVPod}, @@ -1823,6 +1920,48 @@ func TestEBSVolumeCountConflicts(t *testing.T) { fits: true, test: "pod with missing PV is counted towards the PV limit", }, + { + newPod: deletedPVPod2, + existingPods: []*v1.Pod{oneVolPod, deletedPVPod}, + maxVols: 2, + fits: true, + test: "two pods missing the same PV are counted towards the PV limit only once", + }, + { + newPod: anotherDeletedPVPod, + existingPods: []*v1.Pod{oneVolPod, deletedPVPod}, + maxVols: 2, + fits: false, + test: "two pods missing different PVs are counted towards the PV limit twice", + }, + { + newPod: ebsPVCPod, + existingPods: []*v1.Pod{oneVolPod, unboundPVCPod}, + maxVols: 2, + fits: false, + test: "pod with unbound PVC is counted towards the PV limit", + }, + { + newPod: ebsPVCPod, + existingPods: []*v1.Pod{oneVolPod, unboundPVCPod}, + maxVols: 3, + fits: true, + test: "pod with unbound PVC is counted towards the PV limit", + }, + { + newPod: unboundPVCPod2, + existingPods: []*v1.Pod{oneVolPod, unboundPVCPod}, + maxVols: 2, + fits: true, + test: "the same unbound PVC in multiple pods is counted towards the PV limit only once", + }, + { + newPod: anotherUnboundPVCPod, + existingPods: []*v1.Pod{oneVolPod, unboundPVCPod}, + maxVols: 2, + fits: false, + test: "two different unbound PVCs are counted towards the PV limit as two volumes", + }, } pvInfo := FakePersistentVolumeInfo{ @@ -1855,6 +1994,18 @@ func TestEBSVolumeCountConflicts(t *testing.T) { ObjectMeta: metav1.ObjectMeta{Name: "pvcWithDeletedPV"}, Spec: v1.PersistentVolumeClaimSpec{VolumeName: "pvcWithDeletedPV"}, }, + { + ObjectMeta: metav1.ObjectMeta{Name: "anotherPVCWithDeletedPV"}, + Spec: v1.PersistentVolumeClaimSpec{VolumeName: "anotherPVCWithDeletedPV"}, + }, + { + ObjectMeta: metav1.ObjectMeta{Name: "unboundPVC"}, + Spec: v1.PersistentVolumeClaimSpec{VolumeName: ""}, + }, + { + ObjectMeta: metav1.ObjectMeta{Name: "anotherUnboundPVC"}, + Spec: v1.PersistentVolumeClaimSpec{VolumeName: ""}, + }, } filter := VolumeFilter{ From c604bb9b5466321d47f62a7e63796d7dfaa675e9 Mon Sep 17 00:00:00 2001 From: Jan Safranek Date: Thu, 23 Nov 2017 14:07:20 +0100 Subject: [PATCH 69/78] UPSTREAM: 53989: Remove repeated random string generations in scheduler volume predicate :100644 100644 efe1fac490... 4282fb82cd... M plugin/pkg/scheduler/algorithm/predicates/predicates.go --- .../algorithm/predicates/predicates.go | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/plugin/pkg/scheduler/algorithm/predicates/predicates.go b/plugin/pkg/scheduler/algorithm/predicates/predicates.go index efe1fac490f02..4282fb82cdd23 100644 --- a/plugin/pkg/scheduler/algorithm/predicates/predicates.go +++ b/plugin/pkg/scheduler/algorithm/predicates/predicates.go @@ -177,6 +177,11 @@ type MaxPDVolumeCountChecker struct { maxVolumes int pvInfo PersistentVolumeInfo pvcInfo PersistentVolumeClaimInfo + + // The string below is generated randomly during the struct's initialization. + // It is used to prefix volumeID generated inside the predicate() method to + // avoid conflicts with any real volume. + randomVolumeIDPrefix string } // VolumeFilter contains information on how to filter PD Volumes when checking PD Volume caps @@ -195,16 +200,17 @@ type VolumeFilter struct { // the maximum. func NewMaxPDVolumeCountPredicate(filter VolumeFilter, maxVolumes int, pvInfo PersistentVolumeInfo, pvcInfo PersistentVolumeClaimInfo) algorithm.FitPredicate { c := &MaxPDVolumeCountChecker{ - filter: filter, - maxVolumes: maxVolumes, - pvInfo: pvInfo, - pvcInfo: pvcInfo, + filter: filter, + maxVolumes: maxVolumes, + pvInfo: pvInfo, + pvcInfo: pvcInfo, + randomVolumeIDPrefix: rand.String(32), } return c.predicate } -func (c *MaxPDVolumeCountChecker) filterVolumes(volumes []v1.Volume, namespace string, randomPrefix string, filteredVolumes map[string]bool) error { +func (c *MaxPDVolumeCountChecker) filterVolumes(volumes []v1.Volume, namespace string, filteredVolumes map[string]bool) error { for i := range volumes { vol := &volumes[i] if id, ok := c.filter.FilterVolume(vol); ok { @@ -216,8 +222,9 @@ func (c *MaxPDVolumeCountChecker) filterVolumes(volumes []v1.Volume, namespace s } // Until we know real ID of the volume use namespace/pvcName as substitute - // With a random prefix so it can't conflict with existing volume ID. - pvId := fmt.Sprintf("%s-%s/%s", randomPrefix, namespace, pvcName) + // with a random prefix (calculated and stored inside 'c' during initialization) + // to avoid conflicts with existing volume IDs. + pvId := fmt.Sprintf("%s-%s/%s", c.randomVolumeIDPrefix, namespace, pvcName) pvc, err := c.pvcInfo.GetPersistentVolumeClaimInfo(namespace, pvcName) if err != nil || pvc == nil { @@ -263,15 +270,8 @@ func (c *MaxPDVolumeCountChecker) predicate(pod *v1.Pod, meta algorithm.Predicat return true, nil, nil } - // randomPrefix is a prefix of auxiliary volume IDs when we don't know the - // real volume ID, e.g. because the corresponding PV or PVC was deleted. It - // is random to avoid conflicts with real volume IDs and it needs to be - // stable in whole predicate() call so a deleted PVC used by two pods is - // counted as one volume and not as two. - randomPrefix := rand.String(32) - newVolumes := make(map[string]bool) - if err := c.filterVolumes(pod.Spec.Volumes, pod.Namespace, randomPrefix, newVolumes); err != nil { + if err := c.filterVolumes(pod.Spec.Volumes, pod.Namespace, newVolumes); err != nil { return false, nil, err } @@ -283,7 +283,7 @@ func (c *MaxPDVolumeCountChecker) predicate(pod *v1.Pod, meta algorithm.Predicat // count unique volumes existingVolumes := make(map[string]bool) for _, existingPod := range nodeInfo.Pods() { - if err := c.filterVolumes(existingPod.Spec.Volumes, existingPod.Namespace, randomPrefix, existingVolumes); err != nil { + if err := c.filterVolumes(existingPod.Spec.Volumes, existingPod.Namespace, existingVolumes); err != nil { return false, nil, err } } From 3943aab9cbb25f697d7924bd95991200c076d17a Mon Sep 17 00:00:00 2001 From: Seth Jennings Date: Tue, 14 Nov 2017 08:49:13 -0600 Subject: [PATCH 70/78] UPSTREAM: 55641: dockershim: remove corrupt checkpoints immediately upon detection :100644 100644 5398ff8159... 92534b83d8... M pkg/kubelet/dockershim/BUILD :100644 100644 b8160bbd9b... 34254d3488... M pkg/kubelet/dockershim/checkpoint_store.go :100644 100644 6ad1d79416... 18f9d2d0d5... M pkg/kubelet/dockershim/docker_checkpoint.go :100644 100644 47220063e4... 56bfc3598c... M pkg/kubelet/dockershim/docker_sandbox.go :100644 100644 745286038a... d0614fc05c... M pkg/kubelet/dockershim/docker_service.go :100644 100644 02195b0266... 34bbb5303e... M pkg/kubelet/dockershim/testing/util.go --- pkg/kubelet/dockershim/BUILD | 2 -- pkg/kubelet/dockershim/checkpoint_store.go | 4 +--- pkg/kubelet/dockershim/docker_checkpoint.go | 11 ++++++----- pkg/kubelet/dockershim/docker_sandbox.go | 20 +------------------- pkg/kubelet/dockershim/docker_service.go | 8 +------- pkg/kubelet/dockershim/testing/util.go | 5 ++--- 6 files changed, 11 insertions(+), 39 deletions(-) diff --git a/pkg/kubelet/dockershim/BUILD b/pkg/kubelet/dockershim/BUILD index 5398ff8159bf5..92534b83d8d13 100644 --- a/pkg/kubelet/dockershim/BUILD +++ b/pkg/kubelet/dockershim/BUILD @@ -43,7 +43,6 @@ go_library( "//pkg/kubelet/cm:go_default_library", "//pkg/kubelet/container:go_default_library", "//pkg/kubelet/dockershim/cm:go_default_library", - "//pkg/kubelet/dockershim/errors:go_default_library", "//pkg/kubelet/dockershim/libdocker:go_default_library", "//pkg/kubelet/leaky:go_default_library", "//pkg/kubelet/network:go_default_library", @@ -141,7 +140,6 @@ filegroup( srcs = [ ":package-srcs", "//pkg/kubelet/dockershim/cm:all-srcs", - "//pkg/kubelet/dockershim/errors:all-srcs", "//pkg/kubelet/dockershim/libdocker:all-srcs", "//pkg/kubelet/dockershim/remote:all-srcs", "//pkg/kubelet/dockershim/testing:all-srcs", diff --git a/pkg/kubelet/dockershim/checkpoint_store.go b/pkg/kubelet/dockershim/checkpoint_store.go index b8160bbd9bd66..34254d3488465 100644 --- a/pkg/kubelet/dockershim/checkpoint_store.go +++ b/pkg/kubelet/dockershim/checkpoint_store.go @@ -24,8 +24,6 @@ import ( "path/filepath" "regexp" "strings" - - "k8s.io/kubernetes/pkg/kubelet/dockershim/errors" ) const ( @@ -106,7 +104,7 @@ func (fstore *FileStore) Read(key string) ([]byte, error) { } bytes, err := ioutil.ReadFile(fstore.getCheckpointPath(key)) if os.IsNotExist(err) { - return bytes, errors.CheckpointNotFoundError + return bytes, fmt.Errorf("checkpoint is not found.") } return bytes, err } diff --git a/pkg/kubelet/dockershim/docker_checkpoint.go b/pkg/kubelet/dockershim/docker_checkpoint.go index 6ad1d794169f3..18f9d2d0d53be 100644 --- a/pkg/kubelet/dockershim/docker_checkpoint.go +++ b/pkg/kubelet/dockershim/docker_checkpoint.go @@ -23,7 +23,6 @@ import ( "path/filepath" "github.com/golang/glog" - "k8s.io/kubernetes/pkg/kubelet/dockershim/errors" hashutil "k8s.io/kubernetes/pkg/util/hash" ) @@ -111,12 +110,14 @@ func (handler *PersistentCheckpointHandler) GetCheckpoint(podSandboxID string) ( //TODO: unmarhsal into a struct with just Version, check version, unmarshal into versioned type. err = json.Unmarshal(blob, &checkpoint) if err != nil { - glog.Errorf("Failed to unmarshal checkpoint %q. Checkpoint content: %q. ErrMsg: %v", podSandboxID, string(blob), err) - return &checkpoint, errors.CorruptCheckpointError + glog.Errorf("Failed to unmarshal checkpoint %q, removing checkpoint. Checkpoint content: %q. ErrMsg: %v", podSandboxID, string(blob), err) + handler.RemoveCheckpoint(podSandboxID) + return nil, fmt.Errorf("failed to unmarshal checkpoint") } if checkpoint.CheckSum != calculateChecksum(checkpoint) { - glog.Errorf("Checksum of checkpoint %q is not valid", podSandboxID) - return &checkpoint, errors.CorruptCheckpointError + glog.Errorf("Checksum of checkpoint %q is not valid, removing checkpoint", podSandboxID) + handler.RemoveCheckpoint(podSandboxID) + return nil, fmt.Errorf("checkpoint is corrupted") } return &checkpoint, nil } diff --git a/pkg/kubelet/dockershim/docker_sandbox.go b/pkg/kubelet/dockershim/docker_sandbox.go index 47220063e4a79..56bfc3598cf02 100644 --- a/pkg/kubelet/dockershim/docker_sandbox.go +++ b/pkg/kubelet/dockershim/docker_sandbox.go @@ -30,7 +30,6 @@ import ( utilerrors "k8s.io/apimachinery/pkg/util/errors" runtimeapi "k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime" kubecontainer "k8s.io/kubernetes/pkg/kubelet/container" - "k8s.io/kubernetes/pkg/kubelet/dockershim/errors" "k8s.io/kubernetes/pkg/kubelet/dockershim/libdocker" "k8s.io/kubernetes/pkg/kubelet/qos" "k8s.io/kubernetes/pkg/kubelet/types" @@ -193,20 +192,10 @@ func (ds *dockerService) StopPodSandbox(podSandboxID string) error { // actions will only have sandbox ID and not have pod namespace and name information. // Return error if encounter any unexpected error. if checkpointErr != nil { - if libdocker.IsContainerNotFoundError(statusErr) && checkpointErr == errors.CheckpointNotFoundError { + if libdocker.IsContainerNotFoundError(statusErr) { glog.Warningf("Both sandbox container and checkpoint for id %q could not be found. "+ "Proceed without further sandbox information.", podSandboxID) } else { - if checkpointErr == errors.CorruptCheckpointError { - // Remove the corrupted checkpoint so that the next - // StopPodSandbox call can proceed. This may indicate that - // some resources won't be reclaimed. - // TODO (#43021): Fix this properly. - glog.Warningf("Removing corrupted checkpoint %q: %+v", podSandboxID, *checkpoint) - if err := ds.checkpointHandler.RemoveCheckpoint(podSandboxID); err != nil { - glog.Warningf("Unable to remove corrupted checkpoint %q: %v", podSandboxID, err) - } - } return utilerrors.NewAggregate([]error{ fmt.Errorf("failed to get checkpoint for sandbox %q: %v", podSandboxID, checkpointErr), fmt.Errorf("failed to get sandbox status: %v", statusErr)}) @@ -494,13 +483,6 @@ func (ds *dockerService) ListPodSandbox(filter *runtimeapi.PodSandboxFilter) ([] checkpoint, err := ds.checkpointHandler.GetCheckpoint(id) if err != nil { glog.Errorf("Failed to retrieve checkpoint for sandbox %q: %v", id, err) - - if err == errors.CorruptCheckpointError { - glog.Warningf("Removing corrupted checkpoint %q: %+v", id, *checkpoint) - if err := ds.checkpointHandler.RemoveCheckpoint(id); err != nil { - glog.Warningf("Unable to remove corrupted checkpoint %q: %v", id, err) - } - } continue } result = append(result, checkpointToRuntimeAPISandbox(id, checkpoint)) diff --git a/pkg/kubelet/dockershim/docker_service.go b/pkg/kubelet/dockershim/docker_service.go index b5076025d896d..a873cffbab085 100644 --- a/pkg/kubelet/dockershim/docker_service.go +++ b/pkg/kubelet/dockershim/docker_service.go @@ -38,7 +38,6 @@ import ( kubecm "k8s.io/kubernetes/pkg/kubelet/cm" kubecontainer "k8s.io/kubernetes/pkg/kubelet/container" "k8s.io/kubernetes/pkg/kubelet/dockershim/cm" - "k8s.io/kubernetes/pkg/kubelet/dockershim/errors" "k8s.io/kubernetes/pkg/kubelet/network" "k8s.io/kubernetes/pkg/kubelet/network/cni" "k8s.io/kubernetes/pkg/kubelet/network/hostport" @@ -332,12 +331,7 @@ func (ds *dockerService) GetPodPortMappings(podSandboxID string) ([]*hostport.Po checkpoint, err := ds.checkpointHandler.GetCheckpoint(podSandboxID) // Return empty portMappings if checkpoint is not found if err != nil { - if err == errors.CheckpointNotFoundError { - glog.Warningf("Failed to retrieve checkpoint for sandbox %q: %v", podSandboxID, err) - return nil, nil - } else { - return nil, err - } + return nil, err } portMappings := make([]*hostport.PortMapping, 0, len(checkpoint.Data.PortMappings)) diff --git a/pkg/kubelet/dockershim/testing/util.go b/pkg/kubelet/dockershim/testing/util.go index 02195b0266ae2..34bbb5303ef8d 100644 --- a/pkg/kubelet/dockershim/testing/util.go +++ b/pkg/kubelet/dockershim/testing/util.go @@ -17,9 +17,8 @@ limitations under the License. package testing import ( + "fmt" "sync" - - "k8s.io/kubernetes/pkg/kubelet/dockershim/errors" ) // MemStore is an implementation of CheckpointStore interface which stores checkpoint in memory. @@ -44,7 +43,7 @@ func (mstore *MemStore) Read(key string) ([]byte, error) { defer mstore.Unlock() data, ok := mstore.mem[key] if !ok { - return nil, errors.CheckpointNotFoundError + return nil, fmt.Errorf("checkpoint is not found") } return data, nil } From a054249c04c0f65769376c8e1ec1125930b8a418 Mon Sep 17 00:00:00 2001 From: Antonio Murdaca Date: Mon, 6 Nov 2017 17:50:16 +0100 Subject: [PATCH 71/78] UPSTREAM: 55631: Parse and return the last line in the log even if it is partial Signed-off-by: Antonio Murdaca :100644 100644 4f9513d4b5... 99f7c13934... M pkg/kubelet/kuberuntime/kuberuntime_logs.go --- pkg/kubelet/kuberuntime/kuberuntime_logs.go | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/pkg/kubelet/kuberuntime/kuberuntime_logs.go b/pkg/kubelet/kuberuntime/kuberuntime_logs.go index 752e41b76e725..a64acb66f9f25 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_logs.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_logs.go @@ -154,6 +154,27 @@ func (m *kubeGenericRuntimeManager) ReadLogs(path, containerID string, apiOpts * // Return directly when reading to the end if not follow. if len(l) > 0 { glog.Warningf("Incomplete line in log file %q: %q", path, l) + if parse == nil { + // Intialize the log parsing function. + parse, err = getParseFunc(l) + if err != nil { + return fmt.Errorf("failed to get parse function: %v", err) + } + } + // Log a warning and exit if we can't parse the partial line. + if err := parse(l, msg); err != nil { + glog.Warningf("Failed with err %v when parsing partial line for log file %q: %q", err, path, l) + return nil + } + // Write the log line into the stream. + if err := writer.write(msg); err != nil { + if err == errMaximumWrite { + glog.V(2).Infof("Finish parsing log file %q, hit bytes limit %d(bytes)", path, opts.bytes) + return nil + } + glog.Errorf("Failed with err %v when writing partial log for log file %q: %+v", err, path, msg) + return err + } } glog.V(2).Infof("Finish parsing log file %q", path) return nil From df0eb54ef1ed0592d915d0f6f0e48000fd8de35c Mon Sep 17 00:00:00 2001 From: Slava Semushin Date: Wed, 29 Nov 2017 16:26:54 +0100 Subject: [PATCH 72/78] UPSTREAM: 56503: MustRunAsNonRoot should reject a pod if it has non-numeric USER :100644 100644 70bb933393... c470118306... M pkg/kubelet/kuberuntime/kuberuntime_container.go :100644 100644 e07834c071... 9c45e0a283... M pkg/kubelet/kuberuntime/kuberuntime_container_test.go :100644 100644 c0d4ce7347... 3d48d372ac... M pkg/kubelet/kuberuntime/security_context.go :100644 100644 ae724ab314... d3261b51f5... M pkg/kubelet/kuberuntime/security_context_test.go --- pkg/kubelet/kuberuntime/kuberuntime_container.go | 11 ++++------- .../kuberuntime/kuberuntime_container_test.go | 14 +++++++++++++- pkg/kubelet/kuberuntime/security_context.go | 11 +++++++---- pkg/kubelet/kuberuntime/security_context_test.go | 3 ++- 4 files changed, 26 insertions(+), 13 deletions(-) diff --git a/pkg/kubelet/kuberuntime/kuberuntime_container.go b/pkg/kubelet/kuberuntime/kuberuntime_container.go index 70bb933393630..c470118306948 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_container.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_container.go @@ -183,13 +183,10 @@ func (m *kubeGenericRuntimeManager) generateContainerConfig(container *v1.Contai if err != nil { return nil, err } - if uid != nil { - // Verify RunAsNonRoot. Non-root verification only supports numeric user. - if err := verifyRunAsNonRoot(pod, container, *uid); err != nil { - return nil, err - } - } else if username != "" { - glog.Warningf("Non-root verification doesn't support non-numeric user (%s)", username) + + // Verify RunAsNonRoot. Non-root verification only supports numeric user. + if err := verifyRunAsNonRoot(pod, container, uid, username); err != nil { + return nil, err } command, args := kubecontainer.ExpandContainerCommandAndArgs(container, opts.Envs) diff --git a/pkg/kubelet/kuberuntime/kuberuntime_container_test.go b/pkg/kubelet/kuberuntime/kuberuntime_container_test.go index e07834c0718bd..9c45e0a28316f 100644 --- a/pkg/kubelet/kuberuntime/kuberuntime_container_test.go +++ b/pkg/kubelet/kuberuntime/kuberuntime_container_test.go @@ -236,7 +236,7 @@ func makeExpetectedConfig(m *kubeGenericRuntimeManager, pod *v1.Pod, containerIn } func TestGenerateContainerConfig(t *testing.T) { - _, _, m, err := createTestRuntimeManager() + _, imageService, m, err := createTestRuntimeManager() assert.NoError(t, err) pod := &v1.Pod{ @@ -290,6 +290,18 @@ func TestGenerateContainerConfig(t *testing.T) { _, err = m.generateContainerConfig(&podWithContainerSecurityContext.Spec.Containers[0], podWithContainerSecurityContext, 0, "", podWithContainerSecurityContext.Spec.Containers[0].Image) assert.Error(t, err) + + imageId, _ := imageService.PullImage(&runtimeapi.ImageSpec{Image: "busybox"}, nil) + image, _ := imageService.ImageStatus(&runtimeapi.ImageSpec{Image: imageId}) + + image.Uid = nil + image.Username = "test" + + podWithContainerSecurityContext.Spec.Containers[0].SecurityContext.RunAsUser = nil + podWithContainerSecurityContext.Spec.Containers[0].SecurityContext.RunAsNonRoot = &runAsNonRootTrue + + _, err = m.generateContainerConfig(&podWithContainerSecurityContext.Spec.Containers[0], podWithContainerSecurityContext, 0, "", podWithContainerSecurityContext.Spec.Containers[0].Image) + assert.Error(t, err, "RunAsNonRoot should fail for non-numeric username") } func TestLifeCycleHook(t *testing.T) { diff --git a/pkg/kubelet/kuberuntime/security_context.go b/pkg/kubelet/kuberuntime/security_context.go index c0d4ce7347a14..3d48d372ac44c 100644 --- a/pkg/kubelet/kuberuntime/security_context.go +++ b/pkg/kubelet/kuberuntime/security_context.go @@ -75,7 +75,7 @@ func (m *kubeGenericRuntimeManager) determineEffectiveSecurityContext(pod *v1.Po } // verifyRunAsNonRoot verifies RunAsNonRoot. -func verifyRunAsNonRoot(pod *v1.Pod, container *v1.Container, uid int64) error { +func verifyRunAsNonRoot(pod *v1.Pod, container *v1.Container, uid *int64, username string) error { effectiveSc := securitycontext.DetermineEffectiveSecurityContext(pod, container) // If the option is not set, or if running as root is allowed, return nil. if effectiveSc == nil || effectiveSc.RunAsNonRoot == nil || !*effectiveSc.RunAsNonRoot { @@ -89,11 +89,14 @@ func verifyRunAsNonRoot(pod *v1.Pod, container *v1.Container, uid int64) error { return nil } - if uid == 0 { + switch { + case uid != nil && *uid == 0: return fmt.Errorf("container has runAsNonRoot and image will run as root") + case uid == nil && len(username) > 0: + return fmt.Errorf("container has runAsNonRoot and image has non-numeric user (%s), cannot verify user is non-root", username) + default: + return nil } - - return nil } // convertToRuntimeSecurityContext converts v1.SecurityContext to runtimeapi.SecurityContext. diff --git a/pkg/kubelet/kuberuntime/security_context_test.go b/pkg/kubelet/kuberuntime/security_context_test.go index ae724ab314aaa..d3261b51f5b1f 100644 --- a/pkg/kubelet/kuberuntime/security_context_test.go +++ b/pkg/kubelet/kuberuntime/security_context_test.go @@ -105,7 +105,8 @@ func TestVerifyRunAsNonRoot(t *testing.T) { }, } { pod.Spec.Containers[0].SecurityContext = test.sc - err := verifyRunAsNonRoot(pod, &pod.Spec.Containers[0], int64(0)) + uid := int64(0) + err := verifyRunAsNonRoot(pod, &pod.Spec.Containers[0], &uid, "") if test.fail { assert.Error(t, err, test.desc) } else { From 6602fbe76c7a9f4ba114504883ab86eaa156276e Mon Sep 17 00:00:00 2001 From: Tomas Nozicka Date: Wed, 29 Nov 2017 16:29:58 +0100 Subject: [PATCH 73/78] UPSTREAM: 56356: Wait for controllerrevision informer to sync on statefulset controller startup :100644 100644 2cde7ab3fe... 077eb0504c... M pkg/controller/statefulset/stateful_set.go --- pkg/controller/statefulset/stateful_set.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkg/controller/statefulset/stateful_set.go b/pkg/controller/statefulset/stateful_set.go index 2cde7ab3fe433..077eb0504c5ed 100644 --- a/pkg/controller/statefulset/stateful_set.go +++ b/pkg/controller/statefulset/stateful_set.go @@ -71,6 +71,8 @@ type StatefulSetController struct { setListerSynced cache.InformerSynced // pvcListerSynced returns true if the pvc shared informer has synced at least once pvcListerSynced cache.InformerSynced + // revListerSynced returns true if the rev shared informer has synced at least once + revListerSynced cache.InformerSynced // StatefulSets that need to be synced. queue workqueue.RateLimitingInterface } @@ -103,6 +105,8 @@ func NewStatefulSetController( pvcListerSynced: pvcInformer.Informer().HasSynced, queue: workqueue.NewNamedRateLimitingQueue(workqueue.DefaultControllerRateLimiter(), "statefulset"), podControl: controller.RealPodControl{KubeClient: kubeClient, Recorder: recorder}, + + revListerSynced: revInformer.Informer().HasSynced, } podInformer.Informer().AddEventHandler(cache.ResourceEventHandlerFuncs{ @@ -146,7 +150,7 @@ func (ssc *StatefulSetController) Run(workers int, stopCh <-chan struct{}) { glog.Infof("Starting stateful set controller") defer glog.Infof("Shutting down statefulset controller") - if !controller.WaitForCacheSync("stateful set", stopCh, ssc.podListerSynced, ssc.setListerSynced, ssc.pvcListerSynced) { + if !controller.WaitForCacheSync("stateful set", stopCh, ssc.podListerSynced, ssc.setListerSynced, ssc.pvcListerSynced, ssc.revListerSynced) { return } From 311cdd4167317b3749cbf0c274e1d27ff97a43c0 Mon Sep 17 00:00:00 2001 From: Tomas Nozicka Date: Wed, 29 Nov 2017 16:36:45 +0100 Subject: [PATCH 74/78] UPSTREAM: 54597: kubelet: check for illegal container state transition :100644 100644 20c751038a... 768c437fe4... M pkg/kubelet/status/status_manager.go --- pkg/kubelet/status/status_manager.go | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/pkg/kubelet/status/status_manager.go b/pkg/kubelet/status/status_manager.go index 20c751038a25f..768c437fe4308 100644 --- a/pkg/kubelet/status/status_manager.go +++ b/pkg/kubelet/status/status_manager.go @@ -17,6 +17,7 @@ limitations under the License. package status import ( + "fmt" "sort" "sync" "time" @@ -273,6 +274,23 @@ func (m *manager) TerminatePod(pod *v1.Pod) { m.updateStatusInternal(pod, status, true) } +// checkContainerStateTransition ensures that no container is trying to transition +// from a terminated to non-terminated state, which is illegal and indicates a +// logical error in the kubelet. +func checkContainerStateTransition(oldStatuses, newStatuses []v1.ContainerStatus) error { + for _, newStatus := range newStatuses { + for _, oldStatus := range oldStatuses { + if newStatus.Name != oldStatus.Name { + continue + } + if oldStatus.State.Terminated != nil && newStatus.State.Terminated == nil { + return fmt.Errorf("terminated container %v attempted illegal transition to non-terminated state", newStatus.Name) + } + } + } + return nil +} + // updateStatusInternal updates the internal status cache, and queues an update to the api server if // necessary. Returns whether an update was triggered. // This method IS NOT THREAD SAFE and must be called from a locked function. @@ -287,6 +305,18 @@ func (m *manager) updateStatusInternal(pod *v1.Pod, status v1.PodStatus, forceUp oldStatus = pod.Status } + // Check for illegal state transition in containers + if pod.Spec.RestartPolicy == v1.RestartPolicyNever { + if err := checkContainerStateTransition(oldStatus.ContainerStatuses, status.ContainerStatuses); err != nil { + glog.Errorf("Status update on pod %v/%v aborted: %v", pod.Namespace, pod.Name, err) + return false + } + if err := checkContainerStateTransition(oldStatus.InitContainerStatuses, status.InitContainerStatuses); err != nil { + glog.Errorf("Status update on pod %v/%v aborted: %v", pod.Namespace, pod.Name, err) + return false + } + } + // Set ReadyCondition.LastTransitionTime. if _, readyCondition := podutil.GetPodCondition(&status, v1.PodReady); readyCondition != nil { // Need to set LastTransitionTime. From 557e1730fa3e7855526e797e334276cbfdd4de24 Mon Sep 17 00:00:00 2001 From: Jordan Liggitt Date: Tue, 28 Nov 2017 17:19:43 -0500 Subject: [PATCH 75/78] UPSTREAM: : generated files --- pkg/generated/openapi/zz_generated.openapi.go | 25405 ++++++++++++++++ test/e2e/generated/bindata.go | 16007 ++++++++++ 2 files changed, 41412 insertions(+) create mode 100644 pkg/generated/openapi/zz_generated.openapi.go create mode 100644 test/e2e/generated/bindata.go diff --git a/pkg/generated/openapi/zz_generated.openapi.go b/pkg/generated/openapi/zz_generated.openapi.go new file mode 100644 index 0000000000000..dc99afdc8407d --- /dev/null +++ b/pkg/generated/openapi/zz_generated.openapi.go @@ -0,0 +1,25405 @@ +// +build !ignore_autogenerated + +/* +Copyright 2017 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. +*/ + +// This file was autogenerated by openapi-gen. Do not edit it manually! + +package openapi + +import ( + spec "github.com/go-openapi/spec" + resource "k8s.io/apimachinery/pkg/api/resource" + v1 "k8s.io/apimachinery/pkg/apis/meta/v1" + intstr "k8s.io/apimachinery/pkg/util/intstr" + common "k8s.io/kube-openapi/pkg/common" +) + +func GetOpenAPIDefinitions(ref common.ReferenceCallback) map[string]common.OpenAPIDefinition { + return map[string]common.OpenAPIDefinition{ + "k8s.io/api/admissionregistration/v1alpha1.AdmissionHookClientConfig": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "AdmissionHookClientConfig contains the information to make a TLS connection with the webhook", + Properties: map[string]spec.Schema{ + "service": { + SchemaProps: spec.SchemaProps{ + Description: "Service is a reference to the service for this webhook. If there is only one port open for the service, that port will be used. If there are multiple ports open, port 443 will be used if it is open, otherwise it is an error. Required", + Ref: ref("k8s.io/api/admissionregistration/v1alpha1.ServiceReference"), + }, + }, + "caBundle": { + SchemaProps: spec.SchemaProps{ + Description: "CABundle is a PEM encoded CA bundle which will be used to validate webhook's server certificate. Required", + Type: []string{"string"}, + Format: "byte", + }, + }, + }, + Required: []string{"service", "caBundle"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/admissionregistration/v1alpha1.ServiceReference"}, + }, + "k8s.io/api/admissionregistration/v1alpha1.ExternalAdmissionHook": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ExternalAdmissionHook describes an external admission webhook and the resources and operations it applies to.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "The name of the external admission webhook. Name should be fully qualified, e.g., imagepolicy.kubernetes.io, where \"imagepolicy\" is the name of the webhook, and kubernetes.io is the name of the organization. Required.", + Type: []string{"string"}, + Format: "", + }, + }, + "clientConfig": { + SchemaProps: spec.SchemaProps{ + Description: "ClientConfig defines how to communicate with the hook. Required", + Ref: ref("k8s.io/api/admissionregistration/v1alpha1.AdmissionHookClientConfig"), + }, + }, + "rules": { + SchemaProps: spec.SchemaProps{ + Description: "Rules describes what operations on what resources/subresources the webhook cares about. The webhook cares about an operation if it matches _any_ Rule.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/admissionregistration/v1alpha1.RuleWithOperations"), + }, + }, + }, + }, + }, + "failurePolicy": { + SchemaProps: spec.SchemaProps{ + Description: "FailurePolicy defines how unrecognized errors from the admission endpoint are handled - allowed values are Ignore or Fail. Defaults to Ignore.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"name", "clientConfig"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/admissionregistration/v1alpha1.AdmissionHookClientConfig", "k8s.io/api/admissionregistration/v1alpha1.RuleWithOperations"}, + }, + "k8s.io/api/admissionregistration/v1alpha1.ExternalAdmissionHookConfiguration": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ExternalAdmissionHookConfiguration describes the configuration of initializers.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "externalAdmissionHooks": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "ExternalAdmissionHooks is a list of external admission webhooks and the affected resources and operations.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/admissionregistration/v1alpha1.ExternalAdmissionHook"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/admissionregistration/v1alpha1.ExternalAdmissionHook", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/admissionregistration/v1alpha1.ExternalAdmissionHookConfigurationList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ExternalAdmissionHookConfigurationList is a list of ExternalAdmissionHookConfiguration.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of ExternalAdmissionHookConfiguration.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/admissionregistration/v1alpha1.ExternalAdmissionHookConfiguration"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/admissionregistration/v1alpha1.ExternalAdmissionHookConfiguration", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/admissionregistration/v1alpha1.Initializer": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Initializer describes the name and the failure policy of an initializer, and what resources it applies to.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name is the identifier of the initializer. It will be added to the object that needs to be initialized. Name should be fully qualified, e.g., alwayspullimages.kubernetes.io, where \"alwayspullimages\" is the name of the webhook, and kubernetes.io is the name of the organization. Required", + Type: []string{"string"}, + Format: "", + }, + }, + "rules": { + SchemaProps: spec.SchemaProps{ + Description: "Rules describes what resources/subresources the initializer cares about. The initializer cares about an operation if it matches _any_ Rule. Rule.Resources must not include subresources.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/admissionregistration/v1alpha1.Rule"), + }, + }, + }, + }, + }, + }, + Required: []string{"name"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/admissionregistration/v1alpha1.Rule"}, + }, + "k8s.io/api/admissionregistration/v1alpha1.InitializerConfiguration": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "InitializerConfiguration describes the configuration of initializers.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "initializers": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "Initializers is a list of resources and their default initializers Order-sensitive. When merging multiple InitializerConfigurations, we sort the initializers from different InitializerConfigurations by the name of the InitializerConfigurations; the order of the initializers from the same InitializerConfiguration is preserved.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/admissionregistration/v1alpha1.Initializer"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/admissionregistration/v1alpha1.Initializer", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/admissionregistration/v1alpha1.InitializerConfigurationList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "InitializerConfigurationList is a list of InitializerConfiguration.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of InitializerConfiguration.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/admissionregistration/v1alpha1.InitializerConfiguration"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/admissionregistration/v1alpha1.InitializerConfiguration", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/admissionregistration/v1alpha1.Rule": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Rule is a tuple of APIGroups, APIVersion, and Resources.It is recommended to make sure that all the tuple expansions are valid.", + Properties: map[string]spec.Schema{ + "apiGroups": { + SchemaProps: spec.SchemaProps{ + Description: "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "apiVersions": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "resources": { + SchemaProps: spec.SchemaProps{ + Description: "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/admissionregistration/v1alpha1.RuleWithOperations": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RuleWithOperations is a tuple of Operations and Resources. It is recommended to make sure that all the tuple expansions are valid.", + Properties: map[string]spec.Schema{ + "operations": { + SchemaProps: spec.SchemaProps{ + Description: "Operations is the operations the admission hook cares about - CREATE, UPDATE, or * for all operations. If '*' is present, the length of the slice must be one. Required.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "apiGroups": { + SchemaProps: spec.SchemaProps{ + Description: "APIGroups is the API groups the resources belong to. '*' is all groups. If '*' is present, the length of the slice must be one. Required.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "apiVersions": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersions is the API versions the resources belong to. '*' is all versions. If '*' is present, the length of the slice must be one. Required.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "resources": { + SchemaProps: spec.SchemaProps{ + Description: "Resources is a list of resources this rule applies to.\n\nFor example: 'pods' means pods. 'pods/log' means the log subresource of pods. '*' means all resources, but not subresources. 'pods/*' means all subresources of pods. '*/scale' means all scale subresources. '*/*' means all resources and their subresources.\n\nIf wildcard is present, the validation rule will ensure resources do not overlap with each other.\n\nDepending on the enclosing object, subresources might not be allowed. Required.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/admissionregistration/v1alpha1.ServiceReference": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ServiceReference holds a reference to Service.legacy.k8s.io", + Properties: map[string]spec.Schema{ + "namespace": { + SchemaProps: spec.SchemaProps{ + Description: "Namespace is the namespace of the service Required", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name is the name of the service Required", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"namespace", "name"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/apps/v1beta1.ControllerRevision": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DEPRECATED - This group version of ControllerRevision is deprecated by apps/v1beta2/ControllerRevision. See the release notes for more information. ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "data": { + SchemaProps: spec.SchemaProps{ + Description: "Data is the serialized representation of the state.", + Ref: ref("k8s.io/apimachinery/pkg/runtime.RawExtension"), + }, + }, + "revision": { + SchemaProps: spec.SchemaProps{ + Description: "Revision indicates the revision of the state represented by Data.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + }, + Required: []string{"revision"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta", "k8s.io/apimachinery/pkg/runtime.RawExtension"}, + }, + "k8s.io/api/apps/v1beta1.ControllerRevisionList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ControllerRevisionList is a resource containing a list of ControllerRevision objects.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is the list of ControllerRevisions", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/apps/v1beta1.ControllerRevision"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta1.ControllerRevision", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/apps/v1beta1.Deployment": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Specification of the desired behavior of the Deployment.", + Ref: ref("k8s.io/api/apps/v1beta1.DeploymentSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Most recently observed status of the Deployment.", + Ref: ref("k8s.io/api/apps/v1beta1.DeploymentStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta1.DeploymentSpec", "k8s.io/api/apps/v1beta1.DeploymentStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/apps/v1beta1.DeploymentCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DeploymentCondition describes the state of a deployment at a certain point.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of deployment condition.", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status of the condition, one of True, False, Unknown.", + Type: []string{"string"}, + Format: "", + }, + }, + "lastUpdateTime": { + SchemaProps: spec.SchemaProps{ + Description: "The last time this condition was updated.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time the condition transitioned from one status to another.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "The reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "A human readable message indicating details about the transition.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/apps/v1beta1.DeploymentList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DeploymentList is a list of Deployments.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is the list of Deployments.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/apps/v1beta1.Deployment"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta1.Deployment", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/apps/v1beta1.DeploymentRollback": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DEPRECATED. DeploymentRollback stores the information required to rollback a deployment.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Required: This must match the Name of a deployment.", + Type: []string{"string"}, + Format: "", + }, + }, + "updatedAnnotations": { + SchemaProps: spec.SchemaProps{ + Description: "The annotations to be updated to a deployment", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "rollbackTo": { + SchemaProps: spec.SchemaProps{ + Description: "The config of this deployment rollback.", + Ref: ref("k8s.io/api/apps/v1beta1.RollbackConfig"), + }, + }, + }, + Required: []string{"name", "rollbackTo"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta1.RollbackConfig"}, + }, + "k8s.io/api/apps/v1beta1.DeploymentSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DeploymentSpec is the specification of the desired behavior of the Deployment.", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "template": { + SchemaProps: spec.SchemaProps{ + Description: "Template describes the pods that will be created.", + Ref: ref("k8s.io/api/core/v1.PodTemplateSpec"), + }, + }, + "strategy": { + SchemaProps: spec.SchemaProps{ + Description: "The deployment strategy to use to replace existing pods with new ones.", + Ref: ref("k8s.io/api/apps/v1beta1.DeploymentStrategy"), + }, + }, + "minReadySeconds": { + SchemaProps: spec.SchemaProps{ + Description: "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "revisionHistoryLimit": { + SchemaProps: spec.SchemaProps{ + Description: "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 2.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "paused": { + SchemaProps: spec.SchemaProps{ + Description: "Indicates that the deployment is paused.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "rollbackTo": { + SchemaProps: spec.SchemaProps{ + Description: "DEPRECATED. The config this deployment is rolling back to. Will be cleared after rollback is done.", + Ref: ref("k8s.io/api/apps/v1beta1.RollbackConfig"), + }, + }, + "progressDeadlineSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"template"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta1.DeploymentStrategy", "k8s.io/api/apps/v1beta1.RollbackConfig", "k8s.io/api/core/v1.PodTemplateSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + }, + "k8s.io/api/apps/v1beta1.DeploymentStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DeploymentStatus is the most recently observed status of the Deployment.", + Properties: map[string]spec.Schema{ + "observedGeneration": { + SchemaProps: spec.SchemaProps{ + Description: "The generation observed by the deployment controller.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "Total number of non-terminated pods targeted by this deployment (their labels match the selector).", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "updatedReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "Total number of non-terminated pods targeted by this deployment that have the desired template spec.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "readyReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "Total number of ready pods targeted by this deployment.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "availableReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "unavailableReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "conditions": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "Represents the latest available observations of a deployment's current state.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/apps/v1beta1.DeploymentCondition"), + }, + }, + }, + }, + }, + "collisionCount": { + SchemaProps: spec.SchemaProps{ + Description: "Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta1.DeploymentCondition"}, + }, + "k8s.io/api/apps/v1beta1.DeploymentStrategy": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DeploymentStrategy describes how to replace existing pods with new ones.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.", + Type: []string{"string"}, + Format: "", + }, + }, + "rollingUpdate": { + SchemaProps: spec.SchemaProps{ + Description: "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.", + Ref: ref("k8s.io/api/apps/v1beta1.RollingUpdateDeployment"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta1.RollingUpdateDeployment"}, + }, + "k8s.io/api/apps/v1beta1.RollbackConfig": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DEPRECATED.", + Properties: map[string]spec.Schema{ + "revision": { + SchemaProps: spec.SchemaProps{ + Description: "The revision to rollback to. If set to 0, rollback to the last revision.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/apps/v1beta1.RollingUpdateDeployment": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Spec to control the desired behavior of rolling update.", + Properties: map[string]spec.Schema{ + "maxUnavailable": { + SchemaProps: spec.SchemaProps{ + Description: "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.", + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + "maxSurge": { + SchemaProps: spec.SchemaProps{ + Description: "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.", + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/util/intstr.IntOrString"}, + }, + "k8s.io/api/apps/v1beta1.RollingUpdateStatefulSetStrategy": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.", + Properties: map[string]spec.Schema{ + "partition": { + SchemaProps: spec.SchemaProps{ + Description: "Partition indicates the ordinal at which the StatefulSet should be partitioned.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/apps/v1beta1.Scale": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Scale represents a scaling request for a resource.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.", + Ref: ref("k8s.io/api/apps/v1beta1.ScaleSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.", + Ref: ref("k8s.io/api/apps/v1beta1.ScaleStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta1.ScaleSpec", "k8s.io/api/apps/v1beta1.ScaleStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/apps/v1beta1.ScaleSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ScaleSpec describes the attributes of a scale subresource", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "desired number of instances for the scaled object.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/apps/v1beta1.ScaleStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ScaleStatus represents the current status of a scale subresource.", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "actual number of observed instances of the scaled object.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "targetSelector": { + SchemaProps: spec.SchemaProps{ + Description: "label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"replicas"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/apps/v1beta1.StatefulSet": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DEPRECATED - This group version of StatefulSet is deprecated by apps/v1beta2/StatefulSet. See the release notes for more information. StatefulSet represents a set of pods with consistent identities. Identities are defined as:\n - Network: A single stable DNS and hostname.\n - Storage: As many VolumeClaims as requested.\nThe StatefulSet guarantees that a given network identity will always map to the same storage identity.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec defines the desired identities of pods in this set.", + Ref: ref("k8s.io/api/apps/v1beta1.StatefulSetSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time.", + Ref: ref("k8s.io/api/apps/v1beta1.StatefulSetStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta1.StatefulSetSpec", "k8s.io/api/apps/v1beta1.StatefulSetStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/apps/v1beta1.StatefulSetList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "StatefulSetList is a collection of StatefulSets.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/apps/v1beta1.StatefulSet"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta1.StatefulSet", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/apps/v1beta1.StatefulSetSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "A StatefulSetSpec is the specification of a StatefulSet.", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "selector is a label query over pods that should match the replica count. If empty, defaulted to labels on the pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "template": { + SchemaProps: spec.SchemaProps{ + Description: "template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet.", + Ref: ref("k8s.io/api/core/v1.PodTemplateSpec"), + }, + }, + "volumeClaimTemplates": { + SchemaProps: spec.SchemaProps{ + Description: "volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.PersistentVolumeClaim"), + }, + }, + }, + }, + }, + "serviceName": { + SchemaProps: spec.SchemaProps{ + Description: "serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where \"pod-specific-string\" is managed by the StatefulSet controller.", + Type: []string{"string"}, + Format: "", + }, + }, + "podManagementPolicy": { + SchemaProps: spec.SchemaProps{ + Description: "podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.", + Type: []string{"string"}, + Format: "", + }, + }, + "updateStrategy": { + SchemaProps: spec.SchemaProps{ + Description: "updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template.", + Ref: ref("k8s.io/api/apps/v1beta1.StatefulSetUpdateStrategy"), + }, + }, + "revisionHistoryLimit": { + SchemaProps: spec.SchemaProps{ + Description: "revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"template", "serviceName"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta1.StatefulSetUpdateStrategy", "k8s.io/api/core/v1.PersistentVolumeClaim", "k8s.io/api/core/v1.PodTemplateSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + }, + "k8s.io/api/apps/v1beta1.StatefulSetStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "StatefulSetStatus represents the current state of a StatefulSet.", + Properties: map[string]spec.Schema{ + "observedGeneration": { + SchemaProps: spec.SchemaProps{ + Description: "observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "replicas is the number of Pods created by the StatefulSet controller.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "readyReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "currentReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "updatedReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "currentRevision": { + SchemaProps: spec.SchemaProps{ + Description: "currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).", + Type: []string{"string"}, + Format: "", + }, + }, + "updateRevision": { + SchemaProps: spec.SchemaProps{ + Description: "updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)", + Type: []string{"string"}, + Format: "", + }, + }, + "collisionCount": { + SchemaProps: spec.SchemaProps{ + Description: "collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"replicas"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/apps/v1beta1.StatefulSetUpdateStrategy": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type indicates the type of the StatefulSetUpdateStrategy.", + Type: []string{"string"}, + Format: "", + }, + }, + "rollingUpdate": { + SchemaProps: spec.SchemaProps{ + Description: "RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.", + Ref: ref("k8s.io/api/apps/v1beta1.RollingUpdateStatefulSetStrategy"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta1.RollingUpdateStatefulSetStrategy"}, + }, + "k8s.io/api/apps/v1beta2.ControllerRevision": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ControllerRevision implements an immutable snapshot of state data. Clients are responsible for serializing and deserializing the objects that contain their internal state. Once a ControllerRevision has been successfully created, it can not be updated. The API Server will fail validation of all requests that attempt to mutate the Data field. ControllerRevisions may, however, be deleted. Note that, due to its use by both the DaemonSet and StatefulSet controllers for update and rollback, this object is beta. However, it may be subject to name and representation changes in future releases, and clients should not depend on its stability. It is primarily for internal use by controllers.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "data": { + SchemaProps: spec.SchemaProps{ + Description: "Data is the serialized representation of the state.", + Ref: ref("k8s.io/apimachinery/pkg/runtime.RawExtension"), + }, + }, + "revision": { + SchemaProps: spec.SchemaProps{ + Description: "Revision indicates the revision of the state represented by Data.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + }, + Required: []string{"revision"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta", "k8s.io/apimachinery/pkg/runtime.RawExtension"}, + }, + "k8s.io/api/apps/v1beta2.ControllerRevisionList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ControllerRevisionList is a resource containing a list of ControllerRevision objects.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is the list of ControllerRevisions", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/apps/v1beta2.ControllerRevision"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.ControllerRevision", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/apps/v1beta2.DaemonSet": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DaemonSet represents the configuration of a daemon set.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/apps/v1beta2.DaemonSetSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "The current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/apps/v1beta2.DaemonSetStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.DaemonSetSpec", "k8s.io/api/apps/v1beta2.DaemonSetStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/apps/v1beta2.DaemonSetList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DaemonSetList is a collection of daemon sets.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "A list of daemon sets.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/apps/v1beta2.DaemonSet"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.DaemonSet", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/apps/v1beta2.DaemonSetSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DaemonSetSpec is the specification of a daemon set.", + Properties: map[string]spec.Schema{ + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "A label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "template": { + SchemaProps: spec.SchemaProps{ + Description: "An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template", + Ref: ref("k8s.io/api/core/v1.PodTemplateSpec"), + }, + }, + "updateStrategy": { + SchemaProps: spec.SchemaProps{ + Description: "An update strategy to replace existing DaemonSet pods with new pods.", + Ref: ref("k8s.io/api/apps/v1beta2.DaemonSetUpdateStrategy"), + }, + }, + "minReadySeconds": { + SchemaProps: spec.SchemaProps{ + Description: "The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "revisionHistoryLimit": { + SchemaProps: spec.SchemaProps{ + Description: "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"template"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.DaemonSetUpdateStrategy", "k8s.io/api/core/v1.PodTemplateSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + }, + "k8s.io/api/apps/v1beta2.DaemonSetStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DaemonSetStatus represents the current status of a daemon set.", + Properties: map[string]spec.Schema{ + "currentNumberScheduled": { + SchemaProps: spec.SchemaProps{ + Description: "The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "numberMisscheduled": { + SchemaProps: spec.SchemaProps{ + Description: "The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "desiredNumberScheduled": { + SchemaProps: spec.SchemaProps{ + Description: "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "numberReady": { + SchemaProps: spec.SchemaProps{ + Description: "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "observedGeneration": { + SchemaProps: spec.SchemaProps{ + Description: "The most recent generation observed by the daemon set controller.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "updatedNumberScheduled": { + SchemaProps: spec.SchemaProps{ + Description: "The total number of nodes that are running updated daemon pod", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "numberAvailable": { + SchemaProps: spec.SchemaProps{ + Description: "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "numberUnavailable": { + SchemaProps: spec.SchemaProps{ + Description: "The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "collisionCount": { + SchemaProps: spec.SchemaProps{ + Description: "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"currentNumberScheduled", "numberMisscheduled", "desiredNumberScheduled", "numberReady"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/apps/v1beta2.DaemonSetUpdateStrategy": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DaemonSetUpdateStrategy is a struct used to control the update strategy for a DaemonSet.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is RollingUpdate.", + Type: []string{"string"}, + Format: "", + }, + }, + "rollingUpdate": { + SchemaProps: spec.SchemaProps{ + Description: "Rolling update config params. Present only if type = \"RollingUpdate\".", + Ref: ref("k8s.io/api/apps/v1beta2.RollingUpdateDaemonSet"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.RollingUpdateDaemonSet"}, + }, + "k8s.io/api/apps/v1beta2.Deployment": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Deployment enables declarative updates for Pods and ReplicaSets.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Specification of the desired behavior of the Deployment.", + Ref: ref("k8s.io/api/apps/v1beta2.DeploymentSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Most recently observed status of the Deployment.", + Ref: ref("k8s.io/api/apps/v1beta2.DeploymentStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.DeploymentSpec", "k8s.io/api/apps/v1beta2.DeploymentStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/apps/v1beta2.DeploymentCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DeploymentCondition describes the state of a deployment at a certain point.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of deployment condition.", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status of the condition, one of True, False, Unknown.", + Type: []string{"string"}, + Format: "", + }, + }, + "lastUpdateTime": { + SchemaProps: spec.SchemaProps{ + Description: "The last time this condition was updated.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time the condition transitioned from one status to another.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "The reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "A human readable message indicating details about the transition.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/apps/v1beta2.DeploymentList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DeploymentList is a list of Deployments.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is the list of Deployments.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/apps/v1beta2.Deployment"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.Deployment", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/apps/v1beta2.DeploymentSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DeploymentSpec is the specification of the desired behavior of the Deployment.", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "template": { + SchemaProps: spec.SchemaProps{ + Description: "Template describes the pods that will be created.", + Ref: ref("k8s.io/api/core/v1.PodTemplateSpec"), + }, + }, + "strategy": { + SchemaProps: spec.SchemaProps{ + Description: "The deployment strategy to use to replace existing pods with new ones.", + Ref: ref("k8s.io/api/apps/v1beta2.DeploymentStrategy"), + }, + }, + "minReadySeconds": { + SchemaProps: spec.SchemaProps{ + Description: "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "revisionHistoryLimit": { + SchemaProps: spec.SchemaProps{ + Description: "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "paused": { + SchemaProps: spec.SchemaProps{ + Description: "Indicates that the deployment is paused.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "progressDeadlineSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. Defaults to 600s.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"template"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.DeploymentStrategy", "k8s.io/api/core/v1.PodTemplateSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + }, + "k8s.io/api/apps/v1beta2.DeploymentStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DeploymentStatus is the most recently observed status of the Deployment.", + Properties: map[string]spec.Schema{ + "observedGeneration": { + SchemaProps: spec.SchemaProps{ + Description: "The generation observed by the deployment controller.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "Total number of non-terminated pods targeted by this deployment (their labels match the selector).", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "updatedReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "Total number of non-terminated pods targeted by this deployment that have the desired template spec.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "readyReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "Total number of ready pods targeted by this deployment.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "availableReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "unavailableReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "conditions": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "Represents the latest available observations of a deployment's current state.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/apps/v1beta2.DeploymentCondition"), + }, + }, + }, + }, + }, + "collisionCount": { + SchemaProps: spec.SchemaProps{ + Description: "Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.DeploymentCondition"}, + }, + "k8s.io/api/apps/v1beta2.DeploymentStrategy": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DeploymentStrategy describes how to replace existing pods with new ones.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.", + Type: []string{"string"}, + Format: "", + }, + }, + "rollingUpdate": { + SchemaProps: spec.SchemaProps{ + Description: "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.", + Ref: ref("k8s.io/api/apps/v1beta2.RollingUpdateDeployment"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.RollingUpdateDeployment"}, + }, + "k8s.io/api/apps/v1beta2.ReplicaSet": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ReplicaSet represents the configuration of a ReplicaSet.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/apps/v1beta2.ReplicaSetSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/apps/v1beta2.ReplicaSetStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.ReplicaSetSpec", "k8s.io/api/apps/v1beta2.ReplicaSetStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/apps/v1beta2.ReplicaSetCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ReplicaSetCondition describes the state of a replica set at a certain point.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of replica set condition.", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status of the condition, one of True, False, Unknown.", + Type: []string{"string"}, + Format: "", + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "The last time the condition transitioned from one status to another.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "The reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "A human readable message indicating details about the transition.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/apps/v1beta2.ReplicaSetList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ReplicaSetList is a collection of ReplicaSets.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/apps/v1beta2.ReplicaSet"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.ReplicaSet", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/apps/v1beta2.ReplicaSetSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ReplicaSetSpec is the specification of a ReplicaSet.", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "minReadySeconds": { + SchemaProps: spec.SchemaProps{ + Description: "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "template": { + SchemaProps: spec.SchemaProps{ + Description: "Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template", + Ref: ref("k8s.io/api/core/v1.PodTemplateSpec"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PodTemplateSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + }, + "k8s.io/api/apps/v1beta2.ReplicaSetStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ReplicaSetStatus represents the current status of a ReplicaSet.", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "fullyLabeledReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "The number of pods that have labels matching the labels of the pod template of the replicaset.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "readyReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "The number of ready replicas for this replica set.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "availableReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "The number of available replicas (ready for at least minReadySeconds) for this replica set.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "observedGeneration": { + SchemaProps: spec.SchemaProps{ + Description: "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "conditions": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "Represents the latest available observations of a replica set's current state.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/apps/v1beta2.ReplicaSetCondition"), + }, + }, + }, + }, + }, + }, + Required: []string{"replicas"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.ReplicaSetCondition"}, + }, + "k8s.io/api/apps/v1beta2.RollingUpdateDaemonSet": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Spec to control the desired behavior of daemon set rolling update.", + Properties: map[string]spec.Schema{ + "maxUnavailable": { + SchemaProps: spec.SchemaProps{ + Description: "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.", + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/util/intstr.IntOrString"}, + }, + "k8s.io/api/apps/v1beta2.RollingUpdateDeployment": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Spec to control the desired behavior of rolling update.", + Properties: map[string]spec.Schema{ + "maxUnavailable": { + SchemaProps: spec.SchemaProps{ + Description: "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 25%. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.", + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + "maxSurge": { + SchemaProps: spec.SchemaProps{ + Description: "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 25%. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.", + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/util/intstr.IntOrString"}, + }, + "k8s.io/api/apps/v1beta2.RollingUpdateStatefulSetStrategy": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RollingUpdateStatefulSetStrategy is used to communicate parameter for RollingUpdateStatefulSetStrategyType.", + Properties: map[string]spec.Schema{ + "partition": { + SchemaProps: spec.SchemaProps{ + Description: "Partition indicates the ordinal at which the StatefulSet should be partitioned. Default value is 0.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/apps/v1beta2.Scale": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Scale represents a scaling request for a resource.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.", + Ref: ref("k8s.io/api/apps/v1beta2.ScaleSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.", + Ref: ref("k8s.io/api/apps/v1beta2.ScaleStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.ScaleSpec", "k8s.io/api/apps/v1beta2.ScaleStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/apps/v1beta2.ScaleSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ScaleSpec describes the attributes of a scale subresource", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "desired number of instances for the scaled object.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/apps/v1beta2.ScaleStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ScaleStatus represents the current status of a scale subresource.", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "actual number of observed instances of the scaled object.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "targetSelector": { + SchemaProps: spec.SchemaProps{ + Description: "label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"replicas"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/apps/v1beta2.StatefulSet": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "StatefulSet represents a set of pods with consistent identities. Identities are defined as:\n - Network: A single stable DNS and hostname.\n - Storage: As many VolumeClaims as requested.\nThe StatefulSet guarantees that a given network identity will always map to the same storage identity.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec defines the desired identities of pods in this set.", + Ref: ref("k8s.io/api/apps/v1beta2.StatefulSetSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is the current status of Pods in this StatefulSet. This data may be out of date by some window of time.", + Ref: ref("k8s.io/api/apps/v1beta2.StatefulSetStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.StatefulSetSpec", "k8s.io/api/apps/v1beta2.StatefulSetStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/apps/v1beta2.StatefulSetList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "StatefulSetList is a collection of StatefulSets.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/apps/v1beta2.StatefulSet"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.StatefulSet", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/apps/v1beta2.StatefulSetSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "A StatefulSetSpec is the specification of a StatefulSet.", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "replicas is the desired number of replicas of the given Template. These are replicas in the sense that they are instantiations of the same Template, but individual replicas also have a consistent identity. If unspecified, defaults to 1.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "selector is a label query over pods that should match the replica count. If empty, defaulted to labels on the pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "template": { + SchemaProps: spec.SchemaProps{ + Description: "template is the object that describes the pod that will be created if insufficient replicas are detected. Each pod stamped out by the StatefulSet will fulfill this Template, but have a unique identity from the rest of the StatefulSet.", + Ref: ref("k8s.io/api/core/v1.PodTemplateSpec"), + }, + }, + "volumeClaimTemplates": { + SchemaProps: spec.SchemaProps{ + Description: "volumeClaimTemplates is a list of claims that pods are allowed to reference. The StatefulSet controller is responsible for mapping network identities to claims in a way that maintains the identity of a pod. Every claim in this list must have at least one matching (by name) volumeMount in one container in the template. A claim in this list takes precedence over any volumes in the template, with the same name.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.PersistentVolumeClaim"), + }, + }, + }, + }, + }, + "serviceName": { + SchemaProps: spec.SchemaProps{ + Description: "serviceName is the name of the service that governs this StatefulSet. This service must exist before the StatefulSet, and is responsible for the network identity of the set. Pods get DNS/hostnames that follow the pattern: pod-specific-string.serviceName.default.svc.cluster.local where \"pod-specific-string\" is managed by the StatefulSet controller.", + Type: []string{"string"}, + Format: "", + }, + }, + "podManagementPolicy": { + SchemaProps: spec.SchemaProps{ + Description: "podManagementPolicy controls how pods are created during initial scale up, when replacing pods on nodes, or when scaling down. The default policy is `OrderedReady`, where pods are created in increasing order (pod-0, then pod-1, etc) and the controller will wait until each pod is ready before continuing. When scaling down, the pods are removed in the opposite order. The alternative policy is `Parallel` which will create pods in parallel to match the desired scale without waiting, and on scale down will delete all pods at once.", + Type: []string{"string"}, + Format: "", + }, + }, + "updateStrategy": { + SchemaProps: spec.SchemaProps{ + Description: "updateStrategy indicates the StatefulSetUpdateStrategy that will be employed to update Pods in the StatefulSet when a revision is made to Template.", + Ref: ref("k8s.io/api/apps/v1beta2.StatefulSetUpdateStrategy"), + }, + }, + "revisionHistoryLimit": { + SchemaProps: spec.SchemaProps{ + Description: "revisionHistoryLimit is the maximum number of revisions that will be maintained in the StatefulSet's revision history. The revision history consists of all revisions not represented by a currently applied StatefulSetSpec version. The default value is 10.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"template", "serviceName"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.StatefulSetUpdateStrategy", "k8s.io/api/core/v1.PersistentVolumeClaim", "k8s.io/api/core/v1.PodTemplateSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + }, + "k8s.io/api/apps/v1beta2.StatefulSetStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "StatefulSetStatus represents the current state of a StatefulSet.", + Properties: map[string]spec.Schema{ + "observedGeneration": { + SchemaProps: spec.SchemaProps{ + Description: "observedGeneration is the most recent generation observed for this StatefulSet. It corresponds to the StatefulSet's generation, which is updated on mutation by the API Server.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "replicas is the number of Pods created by the StatefulSet controller.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "readyReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "readyReplicas is the number of Pods created by the StatefulSet controller that have a Ready Condition.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "currentReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "currentReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by currentRevision.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "updatedReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "updatedReplicas is the number of Pods created by the StatefulSet controller from the StatefulSet version indicated by updateRevision.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "currentRevision": { + SchemaProps: spec.SchemaProps{ + Description: "currentRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [0,currentReplicas).", + Type: []string{"string"}, + Format: "", + }, + }, + "updateRevision": { + SchemaProps: spec.SchemaProps{ + Description: "updateRevision, if not empty, indicates the version of the StatefulSet used to generate Pods in the sequence [replicas-updatedReplicas,replicas)", + Type: []string{"string"}, + Format: "", + }, + }, + "collisionCount": { + SchemaProps: spec.SchemaProps{ + Description: "collisionCount is the count of hash collisions for the StatefulSet. The StatefulSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"replicas"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/apps/v1beta2.StatefulSetUpdateStrategy": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "StatefulSetUpdateStrategy indicates the strategy that the StatefulSet controller will use to perform updates. It includes any additional parameters necessary to perform the update for the indicated strategy.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type indicates the type of the StatefulSetUpdateStrategy. Default is RollingUpdate.", + Type: []string{"string"}, + Format: "", + }, + }, + "rollingUpdate": { + SchemaProps: spec.SchemaProps{ + Description: "RollingUpdate is used to communicate parameters when Type is RollingUpdateStatefulSetStrategyType.", + Ref: ref("k8s.io/api/apps/v1beta2.RollingUpdateStatefulSetStrategy"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/apps/v1beta2.RollingUpdateStatefulSetStrategy"}, + }, + "k8s.io/api/authentication/v1.TokenReview": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec holds information about the request being evaluated", + Ref: ref("k8s.io/api/authentication/v1.TokenReviewSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is filled in by the server and indicates whether the request can be authenticated.", + Ref: ref("k8s.io/api/authentication/v1.TokenReviewStatus"), + }, + }, + }, + Required: []string{"spec"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/authentication/v1.TokenReviewSpec", "k8s.io/api/authentication/v1.TokenReviewStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/authentication/v1.TokenReviewSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "TokenReviewSpec is a description of the token authentication request.", + Properties: map[string]spec.Schema{ + "token": { + SchemaProps: spec.SchemaProps{ + Description: "Token is the opaque bearer token.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/authentication/v1.TokenReviewStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "TokenReviewStatus is the result of the token authentication request.", + Properties: map[string]spec.Schema{ + "authenticated": { + SchemaProps: spec.SchemaProps{ + Description: "Authenticated indicates that the token was associated with a known user.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "user": { + SchemaProps: spec.SchemaProps{ + Description: "User is the UserInfo associated with the provided token.", + Ref: ref("k8s.io/api/authentication/v1.UserInfo"), + }, + }, + "error": { + SchemaProps: spec.SchemaProps{ + Description: "Error indicates that the token couldn't be checked", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/authentication/v1.UserInfo"}, + }, + "k8s.io/api/authentication/v1.UserInfo": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "UserInfo holds the information about the user needed to implement the user.Info interface.", + Properties: map[string]spec.Schema{ + "username": { + SchemaProps: spec.SchemaProps{ + Description: "The name that uniquely identifies this user among all active users.", + Type: []string{"string"}, + Format: "", + }, + }, + "uid": { + SchemaProps: spec.SchemaProps{ + Description: "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.", + Type: []string{"string"}, + Format: "", + }, + }, + "groups": { + SchemaProps: spec.SchemaProps{ + Description: "The names of groups this user is a part of.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "extra": { + SchemaProps: spec.SchemaProps{ + Description: "Any additional information provided by the authenticator.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/authentication/v1beta1.TokenReview": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "TokenReview attempts to authenticate a token to a known user. Note: TokenReview requests may be cached by the webhook token authenticator plugin in the kube-apiserver.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec holds information about the request being evaluated", + Ref: ref("k8s.io/api/authentication/v1beta1.TokenReviewSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is filled in by the server and indicates whether the request can be authenticated.", + Ref: ref("k8s.io/api/authentication/v1beta1.TokenReviewStatus"), + }, + }, + }, + Required: []string{"spec"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/authentication/v1beta1.TokenReviewSpec", "k8s.io/api/authentication/v1beta1.TokenReviewStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/authentication/v1beta1.TokenReviewSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "TokenReviewSpec is a description of the token authentication request.", + Properties: map[string]spec.Schema{ + "token": { + SchemaProps: spec.SchemaProps{ + Description: "Token is the opaque bearer token.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/authentication/v1beta1.TokenReviewStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "TokenReviewStatus is the result of the token authentication request.", + Properties: map[string]spec.Schema{ + "authenticated": { + SchemaProps: spec.SchemaProps{ + Description: "Authenticated indicates that the token was associated with a known user.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "user": { + SchemaProps: spec.SchemaProps{ + Description: "User is the UserInfo associated with the provided token.", + Ref: ref("k8s.io/api/authentication/v1beta1.UserInfo"), + }, + }, + "error": { + SchemaProps: spec.SchemaProps{ + Description: "Error indicates that the token couldn't be checked", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/authentication/v1beta1.UserInfo"}, + }, + "k8s.io/api/authentication/v1beta1.UserInfo": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "UserInfo holds the information about the user needed to implement the user.Info interface.", + Properties: map[string]spec.Schema{ + "username": { + SchemaProps: spec.SchemaProps{ + Description: "The name that uniquely identifies this user among all active users.", + Type: []string{"string"}, + Format: "", + }, + }, + "uid": { + SchemaProps: spec.SchemaProps{ + Description: "A unique value that identifies this user across time. If this user is deleted and another user by the same name is added, they will have different UIDs.", + Type: []string{"string"}, + Format: "", + }, + }, + "groups": { + SchemaProps: spec.SchemaProps{ + Description: "The names of groups this user is a part of.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "extra": { + SchemaProps: spec.SchemaProps{ + Description: "Any additional information provided by the authenticator.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/authorization/v1.LocalSubjectAccessReview": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted.", + Ref: ref("k8s.io/api/authorization/v1.SubjectAccessReviewSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is filled in by the server and indicates whether the request is allowed or not", + Ref: ref("k8s.io/api/authorization/v1.SubjectAccessReviewStatus"), + }, + }, + }, + Required: []string{"spec"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/authorization/v1.SubjectAccessReviewSpec", "k8s.io/api/authorization/v1.SubjectAccessReviewStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/authorization/v1.NonResourceAttributes": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface", + Properties: map[string]spec.Schema{ + "path": { + SchemaProps: spec.SchemaProps{ + Description: "Path is the URL path of the request", + Type: []string{"string"}, + Format: "", + }, + }, + "verb": { + SchemaProps: spec.SchemaProps{ + Description: "Verb is the standard HTTP verb", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/authorization/v1.NonResourceRule": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NonResourceRule holds information that describes a rule for the non-resource", + Properties: map[string]spec.Schema{ + "verbs": { + SchemaProps: spec.SchemaProps{ + Description: "Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. \"*\" means all.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "nonResourceURLs": { + SchemaProps: spec.SchemaProps{ + Description: "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path. \"*\" means all.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"verbs"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/authorization/v1.ResourceAttributes": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface", + Properties: map[string]spec.Schema{ + "namespace": { + SchemaProps: spec.SchemaProps{ + Description: "Namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces \"\" (empty) is defaulted for LocalSubjectAccessReviews \"\" (empty) is empty for cluster-scoped resources \"\" (empty) means \"all\" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview", + Type: []string{"string"}, + Format: "", + }, + }, + "verb": { + SchemaProps: spec.SchemaProps{ + Description: "Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", + Type: []string{"string"}, + Format: "", + }, + }, + "group": { + SchemaProps: spec.SchemaProps{ + Description: "Group is the API Group of the Resource. \"*\" means all.", + Type: []string{"string"}, + Format: "", + }, + }, + "version": { + SchemaProps: spec.SchemaProps{ + Description: "Version is the API Version of the Resource. \"*\" means all.", + Type: []string{"string"}, + Format: "", + }, + }, + "resource": { + SchemaProps: spec.SchemaProps{ + Description: "Resource is one of the existing resource types. \"*\" means all.", + Type: []string{"string"}, + Format: "", + }, + }, + "subresource": { + SchemaProps: spec.SchemaProps{ + Description: "Subresource is one of the existing resource types. \"\" means none.", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name is the name of the resource being requested for a \"get\" or deleted for a \"delete\". \"\" (empty) means all.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/authorization/v1.ResourceRule": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + Properties: map[string]spec.Schema{ + "verbs": { + SchemaProps: spec.SchemaProps{ + Description: "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "apiGroups": { + SchemaProps: spec.SchemaProps{ + Description: "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"*\" means all.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "resources": { + SchemaProps: spec.SchemaProps{ + Description: "Resources is a list of resources this rule applies to. ResourceAll represents all resources. \"*\" means all.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "resourceNames": { + SchemaProps: spec.SchemaProps{ + Description: "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. \"*\" means all.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"verbs"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/authorization/v1.SelfSubjectAccessReview": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means \"in all namespaces\". Self is a special case, because users should always be able to check whether they can perform an action", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec holds information about the request being evaluated. user and groups must be empty", + Ref: ref("k8s.io/api/authorization/v1.SelfSubjectAccessReviewSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is filled in by the server and indicates whether the request is allowed or not", + Ref: ref("k8s.io/api/authorization/v1.SubjectAccessReviewStatus"), + }, + }, + }, + Required: []string{"spec"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/authorization/v1.SelfSubjectAccessReviewSpec", "k8s.io/api/authorization/v1.SubjectAccessReviewStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/authorization/v1.SelfSubjectAccessReviewSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", + Properties: map[string]spec.Schema{ + "resourceAttributes": { + SchemaProps: spec.SchemaProps{ + Description: "ResourceAuthorizationAttributes describes information for a resource access request", + Ref: ref("k8s.io/api/authorization/v1.ResourceAttributes"), + }, + }, + "nonResourceAttributes": { + SchemaProps: spec.SchemaProps{ + Description: "NonResourceAttributes describes information for a non-resource access request", + Ref: ref("k8s.io/api/authorization/v1.NonResourceAttributes"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/authorization/v1.NonResourceAttributes", "k8s.io/api/authorization/v1.ResourceAttributes"}, + }, + "k8s.io/api/authorization/v1.SelfSubjectRulesReview": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec holds information about the request being evaluated.", + Ref: ref("k8s.io/api/authorization/v1.SelfSubjectRulesReviewSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is filled in by the server and indicates the set of actions a user can perform.", + Ref: ref("k8s.io/api/authorization/v1.SubjectRulesReviewStatus"), + }, + }, + }, + Required: []string{"spec"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/authorization/v1.SelfSubjectRulesReviewSpec", "k8s.io/api/authorization/v1.SubjectRulesReviewStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/authorization/v1.SelfSubjectRulesReviewSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "namespace": { + SchemaProps: spec.SchemaProps{ + Description: "Namespace to evaluate rules for. Required.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/authorization/v1.SubjectAccessReview": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SubjectAccessReview checks whether or not a user or group can perform an action.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec holds information about the request being evaluated", + Ref: ref("k8s.io/api/authorization/v1.SubjectAccessReviewSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is filled in by the server and indicates whether the request is allowed or not", + Ref: ref("k8s.io/api/authorization/v1.SubjectAccessReviewStatus"), + }, + }, + }, + Required: []string{"spec"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/authorization/v1.SubjectAccessReviewSpec", "k8s.io/api/authorization/v1.SubjectAccessReviewStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/authorization/v1.SubjectAccessReviewSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", + Properties: map[string]spec.Schema{ + "resourceAttributes": { + SchemaProps: spec.SchemaProps{ + Description: "ResourceAuthorizationAttributes describes information for a resource access request", + Ref: ref("k8s.io/api/authorization/v1.ResourceAttributes"), + }, + }, + "nonResourceAttributes": { + SchemaProps: spec.SchemaProps{ + Description: "NonResourceAttributes describes information for a non-resource access request", + Ref: ref("k8s.io/api/authorization/v1.NonResourceAttributes"), + }, + }, + "user": { + SchemaProps: spec.SchemaProps{ + Description: "User is the user you're testing for. If you specify \"User\" but not \"Groups\", then is it interpreted as \"What if User were not a member of any groups", + Type: []string{"string"}, + Format: "", + }, + }, + "groups": { + SchemaProps: spec.SchemaProps{ + Description: "Groups is the groups you're testing for.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "extra": { + SchemaProps: spec.SchemaProps{ + Description: "Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + "uid": { + SchemaProps: spec.SchemaProps{ + Description: "UID information about the requesting user.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/authorization/v1.NonResourceAttributes", "k8s.io/api/authorization/v1.ResourceAttributes"}, + }, + "k8s.io/api/authorization/v1.SubjectAccessReviewStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SubjectAccessReviewStatus", + Properties: map[string]spec.Schema{ + "allowed": { + SchemaProps: spec.SchemaProps{ + Description: "Allowed is required. True if the action would be allowed, false otherwise.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "Reason is optional. It indicates why a request was allowed or denied.", + Type: []string{"string"}, + Format: "", + }, + }, + "evaluationError": { + SchemaProps: spec.SchemaProps{ + Description: "EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"allowed"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/authorization/v1.SubjectRulesReviewStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.", + Properties: map[string]spec.Schema{ + "resourceRules": { + SchemaProps: spec.SchemaProps{ + Description: "ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/authorization/v1.ResourceRule"), + }, + }, + }, + }, + }, + "nonResourceRules": { + SchemaProps: spec.SchemaProps{ + Description: "NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/authorization/v1.NonResourceRule"), + }, + }, + }, + }, + }, + "incomplete": { + SchemaProps: spec.SchemaProps{ + Description: "Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "evaluationError": { + SchemaProps: spec.SchemaProps{ + Description: "EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"resourceRules", "nonResourceRules", "incomplete"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/authorization/v1.NonResourceRule", "k8s.io/api/authorization/v1.ResourceRule"}, + }, + "k8s.io/api/authorization/v1beta1.LocalSubjectAccessReview": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "LocalSubjectAccessReview checks whether or not a user or group can perform an action in a given namespace. Having a namespace scoped resource makes it much easier to grant namespace scoped policy that includes permissions checking.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec holds information about the request being evaluated. spec.namespace must be equal to the namespace you made the request against. If empty, it is defaulted.", + Ref: ref("k8s.io/api/authorization/v1beta1.SubjectAccessReviewSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is filled in by the server and indicates whether the request is allowed or not", + Ref: ref("k8s.io/api/authorization/v1beta1.SubjectAccessReviewStatus"), + }, + }, + }, + Required: []string{"spec"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/authorization/v1beta1.SubjectAccessReviewSpec", "k8s.io/api/authorization/v1beta1.SubjectAccessReviewStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/authorization/v1beta1.NonResourceAttributes": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NonResourceAttributes includes the authorization attributes available for non-resource requests to the Authorizer interface", + Properties: map[string]spec.Schema{ + "path": { + SchemaProps: spec.SchemaProps{ + Description: "Path is the URL path of the request", + Type: []string{"string"}, + Format: "", + }, + }, + "verb": { + SchemaProps: spec.SchemaProps{ + Description: "Verb is the standard HTTP verb", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/authorization/v1beta1.NonResourceRule": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NonResourceRule holds information that describes a rule for the non-resource", + Properties: map[string]spec.Schema{ + "verbs": { + SchemaProps: spec.SchemaProps{ + Description: "Verb is a list of kubernetes non-resource API verbs, like: get, post, put, delete, patch, head, options. \"*\" means all.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "nonResourceURLs": { + SchemaProps: spec.SchemaProps{ + Description: "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path. \"*\" means all.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"verbs"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/authorization/v1beta1.ResourceAttributes": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ResourceAttributes includes the authorization attributes available for resource requests to the Authorizer interface", + Properties: map[string]spec.Schema{ + "namespace": { + SchemaProps: spec.SchemaProps{ + Description: "Namespace is the namespace of the action being requested. Currently, there is no distinction between no namespace and all namespaces \"\" (empty) is defaulted for LocalSubjectAccessReviews \"\" (empty) is empty for cluster-scoped resources \"\" (empty) means \"all\" for namespace scoped resources from a SubjectAccessReview or SelfSubjectAccessReview", + Type: []string{"string"}, + Format: "", + }, + }, + "verb": { + SchemaProps: spec.SchemaProps{ + Description: "Verb is a kubernetes resource API verb, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", + Type: []string{"string"}, + Format: "", + }, + }, + "group": { + SchemaProps: spec.SchemaProps{ + Description: "Group is the API Group of the Resource. \"*\" means all.", + Type: []string{"string"}, + Format: "", + }, + }, + "version": { + SchemaProps: spec.SchemaProps{ + Description: "Version is the API Version of the Resource. \"*\" means all.", + Type: []string{"string"}, + Format: "", + }, + }, + "resource": { + SchemaProps: spec.SchemaProps{ + Description: "Resource is one of the existing resource types. \"*\" means all.", + Type: []string{"string"}, + Format: "", + }, + }, + "subresource": { + SchemaProps: spec.SchemaProps{ + Description: "Subresource is one of the existing resource types. \"\" means none.", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name is the name of the resource being requested for a \"get\" or deleted for a \"delete\". \"\" (empty) means all.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/authorization/v1beta1.ResourceRule": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ResourceRule is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + Properties: map[string]spec.Schema{ + "verbs": { + SchemaProps: spec.SchemaProps{ + Description: "Verb is a list of kubernetes resource API verbs, like: get, list, watch, create, update, delete, proxy. \"*\" means all.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "apiGroups": { + SchemaProps: spec.SchemaProps{ + Description: "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed. \"*\" means all.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "resources": { + SchemaProps: spec.SchemaProps{ + Description: "Resources is a list of resources this rule applies to. ResourceAll represents all resources. \"*\" means all.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "resourceNames": { + SchemaProps: spec.SchemaProps{ + Description: "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed. \"*\" means all.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"verbs"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/authorization/v1beta1.SelfSubjectAccessReview": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SelfSubjectAccessReview checks whether or the current user can perform an action. Not filling in a spec.namespace means \"in all namespaces\". Self is a special case, because users should always be able to check whether they can perform an action", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec holds information about the request being evaluated. user and groups must be empty", + Ref: ref("k8s.io/api/authorization/v1beta1.SelfSubjectAccessReviewSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is filled in by the server and indicates whether the request is allowed or not", + Ref: ref("k8s.io/api/authorization/v1beta1.SubjectAccessReviewStatus"), + }, + }, + }, + Required: []string{"spec"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/authorization/v1beta1.SelfSubjectAccessReviewSpec", "k8s.io/api/authorization/v1beta1.SubjectAccessReviewStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/authorization/v1beta1.SelfSubjectAccessReviewSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SelfSubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", + Properties: map[string]spec.Schema{ + "resourceAttributes": { + SchemaProps: spec.SchemaProps{ + Description: "ResourceAuthorizationAttributes describes information for a resource access request", + Ref: ref("k8s.io/api/authorization/v1beta1.ResourceAttributes"), + }, + }, + "nonResourceAttributes": { + SchemaProps: spec.SchemaProps{ + Description: "NonResourceAttributes describes information for a non-resource access request", + Ref: ref("k8s.io/api/authorization/v1beta1.NonResourceAttributes"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/authorization/v1beta1.NonResourceAttributes", "k8s.io/api/authorization/v1beta1.ResourceAttributes"}, + }, + "k8s.io/api/authorization/v1beta1.SelfSubjectRulesReview": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SelfSubjectRulesReview enumerates the set of actions the current user can perform within a namespace. The returned list of actions may be incomplete depending on the server's authorization mode, and any errors experienced during the evaluation. SelfSubjectRulesReview should be used by UIs to show/hide actions, or to quickly let an end user reason about their permissions. It should NOT Be used by external systems to drive authorization decisions as this raises confused deputy, cache lifetime/revocation, and correctness concerns. SubjectAccessReview, and LocalAccessReview are the correct way to defer authorization decisions to the API server.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec holds information about the request being evaluated.", + Ref: ref("k8s.io/api/authorization/v1beta1.SelfSubjectRulesReviewSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is filled in by the server and indicates the set of actions a user can perform.", + Ref: ref("k8s.io/api/authorization/v1beta1.SubjectRulesReviewStatus"), + }, + }, + }, + Required: []string{"spec"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/authorization/v1beta1.SelfSubjectRulesReviewSpec", "k8s.io/api/authorization/v1beta1.SubjectRulesReviewStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/authorization/v1beta1.SelfSubjectRulesReviewSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "namespace": { + SchemaProps: spec.SchemaProps{ + Description: "Namespace to evaluate rules for. Required.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/authorization/v1beta1.SubjectAccessReview": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SubjectAccessReview checks whether or not a user or group can perform an action.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec holds information about the request being evaluated", + Ref: ref("k8s.io/api/authorization/v1beta1.SubjectAccessReviewSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is filled in by the server and indicates whether the request is allowed or not", + Ref: ref("k8s.io/api/authorization/v1beta1.SubjectAccessReviewStatus"), + }, + }, + }, + Required: []string{"spec"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/authorization/v1beta1.SubjectAccessReviewSpec", "k8s.io/api/authorization/v1beta1.SubjectAccessReviewStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/authorization/v1beta1.SubjectAccessReviewSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SubjectAccessReviewSpec is a description of the access request. Exactly one of ResourceAuthorizationAttributes and NonResourceAuthorizationAttributes must be set", + Properties: map[string]spec.Schema{ + "resourceAttributes": { + SchemaProps: spec.SchemaProps{ + Description: "ResourceAuthorizationAttributes describes information for a resource access request", + Ref: ref("k8s.io/api/authorization/v1beta1.ResourceAttributes"), + }, + }, + "nonResourceAttributes": { + SchemaProps: spec.SchemaProps{ + Description: "NonResourceAttributes describes information for a non-resource access request", + Ref: ref("k8s.io/api/authorization/v1beta1.NonResourceAttributes"), + }, + }, + "user": { + SchemaProps: spec.SchemaProps{ + Description: "User is the user you're testing for. If you specify \"User\" but not \"Group\", then is it interpreted as \"What if User were not a member of any groups", + Type: []string{"string"}, + Format: "", + }, + }, + "group": { + SchemaProps: spec.SchemaProps{ + Description: "Groups is the groups you're testing for.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "extra": { + SchemaProps: spec.SchemaProps{ + Description: "Extra corresponds to the user.Info.GetExtra() method from the authenticator. Since that is input to the authorizer it needs a reflection here.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + "uid": { + SchemaProps: spec.SchemaProps{ + Description: "UID information about the requesting user.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/authorization/v1beta1.NonResourceAttributes", "k8s.io/api/authorization/v1beta1.ResourceAttributes"}, + }, + "k8s.io/api/authorization/v1beta1.SubjectAccessReviewStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SubjectAccessReviewStatus", + Properties: map[string]spec.Schema{ + "allowed": { + SchemaProps: spec.SchemaProps{ + Description: "Allowed is required. True if the action would be allowed, false otherwise.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "Reason is optional. It indicates why a request was allowed or denied.", + Type: []string{"string"}, + Format: "", + }, + }, + "evaluationError": { + SchemaProps: spec.SchemaProps{ + Description: "EvaluationError is an indication that some error occurred during the authorization check. It is entirely possible to get an error and be able to continue determine authorization status in spite of it. For instance, RBAC can be missing a role, but enough roles are still present and bound to reason about the request.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"allowed"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/authorization/v1beta1.SubjectRulesReviewStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SubjectRulesReviewStatus contains the result of a rules check. This check can be incomplete depending on the set of authorizers the server is configured with and any errors experienced during evaluation. Because authorization rules are additive, if a rule appears in a list it's safe to assume the subject has that permission, even if that list is incomplete.", + Properties: map[string]spec.Schema{ + "resourceRules": { + SchemaProps: spec.SchemaProps{ + Description: "ResourceRules is the list of actions the subject is allowed to perform on resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/authorization/v1beta1.ResourceRule"), + }, + }, + }, + }, + }, + "nonResourceRules": { + SchemaProps: spec.SchemaProps{ + Description: "NonResourceRules is the list of actions the subject is allowed to perform on non-resources. The list ordering isn't significant, may contain duplicates, and possibly be incomplete.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/authorization/v1beta1.NonResourceRule"), + }, + }, + }, + }, + }, + "incomplete": { + SchemaProps: spec.SchemaProps{ + Description: "Incomplete is true when the rules returned by this call are incomplete. This is most commonly encountered when an authorizer, such as an external authorizer, doesn't support rules evaluation.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "evaluationError": { + SchemaProps: spec.SchemaProps{ + Description: "EvaluationError can appear in combination with Rules. It indicates an error occurred during rule evaluation, such as an authorizer that doesn't support rule evaluation, and that ResourceRules and/or NonResourceRules may be incomplete.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"resourceRules", "nonResourceRules", "incomplete"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/authorization/v1beta1.NonResourceRule", "k8s.io/api/authorization/v1beta1.ResourceRule"}, + }, + "k8s.io/api/autoscaling/v1.CrossVersionObjectReference": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CrossVersionObjectReference contains enough information to let you identify the referred resource.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\"", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "API version of the referent", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"kind", "name"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/autoscaling/v1.HorizontalPodAutoscaler": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "configuration of a horizontal pod autoscaler.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "behaviour of autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.", + Ref: ref("k8s.io/api/autoscaling/v1.HorizontalPodAutoscalerSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "current information about the autoscaler.", + Ref: ref("k8s.io/api/autoscaling/v1.HorizontalPodAutoscalerStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/autoscaling/v1.HorizontalPodAutoscalerSpec", "k8s.io/api/autoscaling/v1.HorizontalPodAutoscalerStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/autoscaling/v1.HorizontalPodAutoscalerCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "type describes the current condition", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "status is the status of the condition (True, False, Unknown)", + Type: []string{"string"}, + Format: "", + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "lastTransitionTime is the last time the condition transitioned from one status to another", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "reason is the reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "message is a human-readable explanation containing details about the transition", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/autoscaling/v1.HorizontalPodAutoscalerList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "list of horizontal pod autoscaler objects.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "list of horizontal pod autoscaler objects.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/autoscaling/v1.HorizontalPodAutoscaler"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/autoscaling/v1.HorizontalPodAutoscaler", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/autoscaling/v1.HorizontalPodAutoscalerSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "specification of a horizontal pod autoscaler.", + Properties: map[string]spec.Schema{ + "scaleTargetRef": { + SchemaProps: spec.SchemaProps{ + Description: "reference to scaled resource; horizontal pod autoscaler will learn the current resource consumption and will set the desired number of pods by using its Scale subresource.", + Ref: ref("k8s.io/api/autoscaling/v1.CrossVersionObjectReference"), + }, + }, + "minReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "lower limit for the number of pods that can be set by the autoscaler, default 1.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "maxReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "upper limit for the number of pods that can be set by the autoscaler; cannot be smaller than MinReplicas.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "targetCPUUtilizationPercentage": { + SchemaProps: spec.SchemaProps{ + Description: "target average CPU utilization (represented as a percentage of requested CPU) over all the pods; if not specified the default autoscaling policy will be used.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"scaleTargetRef", "maxReplicas"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/autoscaling/v1.CrossVersionObjectReference"}, + }, + "k8s.io/api/autoscaling/v1.HorizontalPodAutoscalerStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "current status of a horizontal pod autoscaler", + Properties: map[string]spec.Schema{ + "observedGeneration": { + SchemaProps: spec.SchemaProps{ + Description: "most recent generation observed by this autoscaler.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "lastScaleTime": { + SchemaProps: spec.SchemaProps{ + Description: "last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "currentReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "current number of replicas of pods managed by this autoscaler.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "desiredReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "desired number of replicas of pods managed by this autoscaler.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "currentCPUUtilizationPercentage": { + SchemaProps: spec.SchemaProps{ + Description: "current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"currentReplicas", "desiredReplicas"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/autoscaling/v1.MetricSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "type is the type of metric source. It should match one of the fields below.", + Type: []string{"string"}, + Format: "", + }, + }, + "object": { + SchemaProps: spec.SchemaProps{ + Description: "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).", + Ref: ref("k8s.io/api/autoscaling/v1.ObjectMetricSource"), + }, + }, + "pods": { + SchemaProps: spec.SchemaProps{ + Description: "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", + Ref: ref("k8s.io/api/autoscaling/v1.PodsMetricSource"), + }, + }, + "resource": { + SchemaProps: spec.SchemaProps{ + Description: "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", + Ref: ref("k8s.io/api/autoscaling/v1.ResourceMetricSource"), + }, + }, + }, + Required: []string{"type"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/autoscaling/v1.ObjectMetricSource", "k8s.io/api/autoscaling/v1.PodsMetricSource", "k8s.io/api/autoscaling/v1.ResourceMetricSource"}, + }, + "k8s.io/api/autoscaling/v1.MetricStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "MetricStatus describes the last-read state of a single metric.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "type is the type of metric source. It will match one of the fields below.", + Type: []string{"string"}, + Format: "", + }, + }, + "object": { + SchemaProps: spec.SchemaProps{ + Description: "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).", + Ref: ref("k8s.io/api/autoscaling/v1.ObjectMetricStatus"), + }, + }, + "pods": { + SchemaProps: spec.SchemaProps{ + Description: "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", + Ref: ref("k8s.io/api/autoscaling/v1.PodsMetricStatus"), + }, + }, + "resource": { + SchemaProps: spec.SchemaProps{ + Description: "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", + Ref: ref("k8s.io/api/autoscaling/v1.ResourceMetricStatus"), + }, + }, + }, + Required: []string{"type"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/autoscaling/v1.ObjectMetricStatus", "k8s.io/api/autoscaling/v1.PodsMetricStatus", "k8s.io/api/autoscaling/v1.ResourceMetricStatus"}, + }, + "k8s.io/api/autoscaling/v1.ObjectMetricSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", + Properties: map[string]spec.Schema{ + "target": { + SchemaProps: spec.SchemaProps{ + Description: "target is the described Kubernetes object.", + Ref: ref("k8s.io/api/autoscaling/v1.CrossVersionObjectReference"), + }, + }, + "metricName": { + SchemaProps: spec.SchemaProps{ + Description: "metricName is the name of the metric in question.", + Type: []string{"string"}, + Format: "", + }, + }, + "targetValue": { + SchemaProps: spec.SchemaProps{ + Description: "targetValue is the target value of the metric (as a quantity).", + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + Required: []string{"target", "metricName", "targetValue"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/autoscaling/v1.CrossVersionObjectReference", "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/autoscaling/v1.ObjectMetricStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", + Properties: map[string]spec.Schema{ + "target": { + SchemaProps: spec.SchemaProps{ + Description: "target is the described Kubernetes object.", + Ref: ref("k8s.io/api/autoscaling/v1.CrossVersionObjectReference"), + }, + }, + "metricName": { + SchemaProps: spec.SchemaProps{ + Description: "metricName is the name of the metric in question.", + Type: []string{"string"}, + Format: "", + }, + }, + "currentValue": { + SchemaProps: spec.SchemaProps{ + Description: "currentValue is the current value of the metric (as a quantity).", + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + Required: []string{"target", "metricName", "currentValue"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/autoscaling/v1.CrossVersionObjectReference", "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/autoscaling/v1.PodsMetricSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", + Properties: map[string]spec.Schema{ + "metricName": { + SchemaProps: spec.SchemaProps{ + Description: "metricName is the name of the metric in question", + Type: []string{"string"}, + Format: "", + }, + }, + "targetAverageValue": { + SchemaProps: spec.SchemaProps{ + Description: "targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)", + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + Required: []string{"metricName", "targetAverageValue"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/autoscaling/v1.PodsMetricStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).", + Properties: map[string]spec.Schema{ + "metricName": { + SchemaProps: spec.SchemaProps{ + Description: "metricName is the name of the metric in question", + Type: []string{"string"}, + Format: "", + }, + }, + "currentAverageValue": { + SchemaProps: spec.SchemaProps{ + Description: "currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)", + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + Required: []string{"metricName", "currentAverageValue"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/autoscaling/v1.ResourceMetricSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "name is the name of the resource in question.", + Type: []string{"string"}, + Format: "", + }, + }, + "targetAverageUtilization": { + SchemaProps: spec.SchemaProps{ + Description: "targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "targetAverageValue": { + SchemaProps: spec.SchemaProps{ + Description: "targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type.", + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + Required: []string{"name"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/autoscaling/v1.ResourceMetricStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "name is the name of the resource in question.", + Type: []string{"string"}, + Format: "", + }, + }, + "currentAverageUtilization": { + SchemaProps: spec.SchemaProps{ + Description: "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. It will only be present if `targetAverageValue` was set in the corresponding metric specification.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "currentAverageValue": { + SchemaProps: spec.SchemaProps{ + Description: "currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type. It will always be set, regardless of the corresponding metric specification.", + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + Required: []string{"name", "currentAverageValue"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/autoscaling/v1.Scale": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Scale represents a scaling request for a resource.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.", + Ref: ref("k8s.io/api/autoscaling/v1.ScaleSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.", + Ref: ref("k8s.io/api/autoscaling/v1.ScaleStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/autoscaling/v1.ScaleSpec", "k8s.io/api/autoscaling/v1.ScaleStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/autoscaling/v1.ScaleSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ScaleSpec describes the attributes of a scale subresource.", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "desired number of instances for the scaled object.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/autoscaling/v1.ScaleStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ScaleStatus represents the current status of a scale subresource.", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "actual number of observed instances of the scaled object.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "label query over pods that should match the replicas count. This is same as the label selector but in the string format to avoid introspection by clients. The string will be in the same format as the query-param syntax. More info about label selectors: http://kubernetes.io/docs/user-guide/labels#label-selectors", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"replicas"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/autoscaling/v2beta1.CrossVersionObjectReference": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CrossVersionObjectReference contains enough information to let you identify the referred resource.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind of the referent; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds\"", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the referent; More info: http://kubernetes.io/docs/user-guide/identifiers#names", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "API version of the referent", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"kind", "name"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/autoscaling/v2beta1.HorizontalPodAutoscaler": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "HorizontalPodAutoscaler is the configuration for a horizontal pod autoscaler, which automatically manages the replica count of any resource implementing the scale subresource based on the metrics specified.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "metadata is the standard object metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "spec is the specification for the behaviour of the autoscaler. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.", + Ref: ref("k8s.io/api/autoscaling/v2beta1.HorizontalPodAutoscalerSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "status is the current information about the autoscaler.", + Ref: ref("k8s.io/api/autoscaling/v2beta1.HorizontalPodAutoscalerStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/autoscaling/v2beta1.HorizontalPodAutoscalerSpec", "k8s.io/api/autoscaling/v2beta1.HorizontalPodAutoscalerStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/autoscaling/v2beta1.HorizontalPodAutoscalerCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "HorizontalPodAutoscalerCondition describes the state of a HorizontalPodAutoscaler at a certain point.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "type describes the current condition", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "status is the status of the condition (True, False, Unknown)", + Type: []string{"string"}, + Format: "", + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "lastTransitionTime is the last time the condition transitioned from one status to another", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "reason is the reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "message is a human-readable explanation containing details about the transition", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/autoscaling/v2beta1.HorizontalPodAutoscalerList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "HorizontalPodAutoscaler is a list of horizontal pod autoscaler objects.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "metadata is the standard list metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "items is the list of horizontal pod autoscaler objects.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/autoscaling/v2beta1.HorizontalPodAutoscaler"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/autoscaling/v2beta1.HorizontalPodAutoscaler", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/autoscaling/v2beta1.HorizontalPodAutoscalerSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "HorizontalPodAutoscalerSpec describes the desired functionality of the HorizontalPodAutoscaler.", + Properties: map[string]spec.Schema{ + "scaleTargetRef": { + SchemaProps: spec.SchemaProps{ + Description: "scaleTargetRef points to the target resource to scale, and is used to the pods for which metrics should be collected, as well as to actually change the replica count.", + Ref: ref("k8s.io/api/autoscaling/v2beta1.CrossVersionObjectReference"), + }, + }, + "minReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "minReplicas is the lower limit for the number of replicas to which the autoscaler can scale down. It defaults to 1 pod.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "maxReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "maxReplicas is the upper limit for the number of replicas to which the autoscaler can scale up. It cannot be less that minReplicas.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "metrics": { + SchemaProps: spec.SchemaProps{ + Description: "metrics contains the specifications for which to use to calculate the desired replica count (the maximum replica count across all metrics will be used). The desired replica count is calculated multiplying the ratio between the target value and the current value by the current number of pods. Ergo, metrics used must decrease as the pod count is increased, and vice-versa. See the individual metric source types for more information about how each type of metric must respond.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/autoscaling/v2beta1.MetricSpec"), + }, + }, + }, + }, + }, + }, + Required: []string{"scaleTargetRef", "maxReplicas"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/autoscaling/v2beta1.CrossVersionObjectReference", "k8s.io/api/autoscaling/v2beta1.MetricSpec"}, + }, + "k8s.io/api/autoscaling/v2beta1.HorizontalPodAutoscalerStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "HorizontalPodAutoscalerStatus describes the current status of a horizontal pod autoscaler.", + Properties: map[string]spec.Schema{ + "observedGeneration": { + SchemaProps: spec.SchemaProps{ + Description: "observedGeneration is the most recent generation observed by this autoscaler.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "lastScaleTime": { + SchemaProps: spec.SchemaProps{ + Description: "lastScaleTime is the last time the HorizontalPodAutoscaler scaled the number of pods, used by the autoscaler to control how often the number of pods is changed.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "currentReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "currentReplicas is current number of replicas of pods managed by this autoscaler, as last seen by the autoscaler.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "desiredReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "desiredReplicas is the desired number of replicas of pods managed by this autoscaler, as last calculated by the autoscaler.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "currentMetrics": { + SchemaProps: spec.SchemaProps{ + Description: "currentMetrics is the last read state of the metrics used by this autoscaler.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/autoscaling/v2beta1.MetricStatus"), + }, + }, + }, + }, + }, + "conditions": { + SchemaProps: spec.SchemaProps{ + Description: "conditions is the set of conditions required for this autoscaler to scale its target, and indicates whether or not those conditions are met.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/autoscaling/v2beta1.HorizontalPodAutoscalerCondition"), + }, + }, + }, + }, + }, + }, + Required: []string{"currentReplicas", "desiredReplicas", "currentMetrics", "conditions"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/autoscaling/v2beta1.HorizontalPodAutoscalerCondition", "k8s.io/api/autoscaling/v2beta1.MetricStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/autoscaling/v2beta1.MetricSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "MetricSpec specifies how to scale based on a single metric (only `type` and one other matching field should be set at once).", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "type is the type of metric source. It should match one of the fields below.", + Type: []string{"string"}, + Format: "", + }, + }, + "object": { + SchemaProps: spec.SchemaProps{ + Description: "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).", + Ref: ref("k8s.io/api/autoscaling/v2beta1.ObjectMetricSource"), + }, + }, + "pods": { + SchemaProps: spec.SchemaProps{ + Description: "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", + Ref: ref("k8s.io/api/autoscaling/v2beta1.PodsMetricSource"), + }, + }, + "resource": { + SchemaProps: spec.SchemaProps{ + Description: "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", + Ref: ref("k8s.io/api/autoscaling/v2beta1.ResourceMetricSource"), + }, + }, + }, + Required: []string{"type"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/autoscaling/v2beta1.ObjectMetricSource", "k8s.io/api/autoscaling/v2beta1.PodsMetricSource", "k8s.io/api/autoscaling/v2beta1.ResourceMetricSource"}, + }, + "k8s.io/api/autoscaling/v2beta1.MetricStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "MetricStatus describes the last-read state of a single metric.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "type is the type of metric source. It will match one of the fields below.", + Type: []string{"string"}, + Format: "", + }, + }, + "object": { + SchemaProps: spec.SchemaProps{ + Description: "object refers to a metric describing a single kubernetes object (for example, hits-per-second on an Ingress object).", + Ref: ref("k8s.io/api/autoscaling/v2beta1.ObjectMetricStatus"), + }, + }, + "pods": { + SchemaProps: spec.SchemaProps{ + Description: "pods refers to a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", + Ref: ref("k8s.io/api/autoscaling/v2beta1.PodsMetricStatus"), + }, + }, + "resource": { + SchemaProps: spec.SchemaProps{ + Description: "resource refers to a resource metric (such as those specified in requests and limits) known to Kubernetes describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", + Ref: ref("k8s.io/api/autoscaling/v2beta1.ResourceMetricStatus"), + }, + }, + }, + Required: []string{"type"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/autoscaling/v2beta1.ObjectMetricStatus", "k8s.io/api/autoscaling/v2beta1.PodsMetricStatus", "k8s.io/api/autoscaling/v2beta1.ResourceMetricStatus"}, + }, + "k8s.io/api/autoscaling/v2beta1.ObjectMetricSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ObjectMetricSource indicates how to scale on a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", + Properties: map[string]spec.Schema{ + "target": { + SchemaProps: spec.SchemaProps{ + Description: "target is the described Kubernetes object.", + Ref: ref("k8s.io/api/autoscaling/v2beta1.CrossVersionObjectReference"), + }, + }, + "metricName": { + SchemaProps: spec.SchemaProps{ + Description: "metricName is the name of the metric in question.", + Type: []string{"string"}, + Format: "", + }, + }, + "targetValue": { + SchemaProps: spec.SchemaProps{ + Description: "targetValue is the target value of the metric (as a quantity).", + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + Required: []string{"target", "metricName", "targetValue"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/autoscaling/v2beta1.CrossVersionObjectReference", "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/autoscaling/v2beta1.ObjectMetricStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).", + Properties: map[string]spec.Schema{ + "target": { + SchemaProps: spec.SchemaProps{ + Description: "target is the described Kubernetes object.", + Ref: ref("k8s.io/api/autoscaling/v2beta1.CrossVersionObjectReference"), + }, + }, + "metricName": { + SchemaProps: spec.SchemaProps{ + Description: "metricName is the name of the metric in question.", + Type: []string{"string"}, + Format: "", + }, + }, + "currentValue": { + SchemaProps: spec.SchemaProps{ + Description: "currentValue is the current value of the metric (as a quantity).", + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + Required: []string{"target", "metricName", "currentValue"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/autoscaling/v2beta1.CrossVersionObjectReference", "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/autoscaling/v2beta1.PodsMetricSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodsMetricSource indicates how to scale on a metric describing each pod in the current scale target (for example, transactions-processed-per-second). The values will be averaged together before being compared to the target value.", + Properties: map[string]spec.Schema{ + "metricName": { + SchemaProps: spec.SchemaProps{ + Description: "metricName is the name of the metric in question", + Type: []string{"string"}, + Format: "", + }, + }, + "targetAverageValue": { + SchemaProps: spec.SchemaProps{ + Description: "targetAverageValue is the target value of the average of the metric across all relevant pods (as a quantity)", + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + Required: []string{"metricName", "targetAverageValue"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/autoscaling/v2beta1.PodsMetricStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodsMetricStatus indicates the current value of a metric describing each pod in the current scale target (for example, transactions-processed-per-second).", + Properties: map[string]spec.Schema{ + "metricName": { + SchemaProps: spec.SchemaProps{ + Description: "metricName is the name of the metric in question", + Type: []string{"string"}, + Format: "", + }, + }, + "currentAverageValue": { + SchemaProps: spec.SchemaProps{ + Description: "currentAverageValue is the current value of the average of the metric across all relevant pods (as a quantity)", + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + Required: []string{"metricName", "currentAverageValue"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/autoscaling/v2beta1.ResourceMetricSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ResourceMetricSource indicates how to scale on a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). The values will be averaged together before being compared to the target. Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source. Only one \"target\" type should be set.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "name is the name of the resource in question.", + Type: []string{"string"}, + Format: "", + }, + }, + "targetAverageUtilization": { + SchemaProps: spec.SchemaProps{ + Description: "targetAverageUtilization is the target value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "targetAverageValue": { + SchemaProps: spec.SchemaProps{ + Description: "targetAverageValue is the target value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type.", + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + Required: []string{"name"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/autoscaling/v2beta1.ResourceMetricStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ResourceMetricStatus indicates the current value of a resource metric known to Kubernetes, as specified in requests and limits, describing each pod in the current scale target (e.g. CPU or memory). Such metrics are built in to Kubernetes, and have special scaling options on top of those available to normal per-pod metrics using the \"pods\" source.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "name is the name of the resource in question.", + Type: []string{"string"}, + Format: "", + }, + }, + "currentAverageUtilization": { + SchemaProps: spec.SchemaProps{ + Description: "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods. It will only be present if `targetAverageValue` was set in the corresponding metric specification.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "currentAverageValue": { + SchemaProps: spec.SchemaProps{ + Description: "currentAverageValue is the current value of the average of the resource metric across all relevant pods, as a raw value (instead of as a percentage of the request), similar to the \"pods\" metric source type. It will always be set, regardless of the corresponding metric specification.", + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + Required: []string{"name", "currentAverageValue"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/batch/v1.Job": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Job represents the configuration of a single job.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Specification of the desired behavior of a job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/batch/v1.JobSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Current status of a job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/batch/v1.JobStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/batch/v1.JobSpec", "k8s.io/api/batch/v1.JobStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/batch/v1.JobCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "JobCondition describes current state of a job.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of job condition, Complete or Failed.", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status of the condition, one of True, False, Unknown.", + Type: []string{"string"}, + Format: "", + }, + }, + "lastProbeTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time the condition was checked.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time the condition transit from one status to another.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "(brief) reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "Human readable message indicating details about last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/batch/v1.JobList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "JobList is a collection of jobs.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "items is the list of Jobs.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/batch/v1.Job"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/batch/v1.Job", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/batch/v1.JobSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "JobSpec describes how the job execution will look like.", + Properties: map[string]spec.Schema{ + "parallelism": { + SchemaProps: spec.SchemaProps{ + Description: "Specifies the maximum desired number of pods the job should run at any given time. The actual number of pods running in steady state will be less than this number when ((.spec.completions - .status.successful) < .spec.parallelism), i.e. when the work left to do is less than max parallelism. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "completions": { + SchemaProps: spec.SchemaProps{ + Description: "Specifies the desired number of successfully finished pods the job should be run with. Setting to nil means that the success of any pod signals the success of all pods, and allows parallelism to have any positive value. Setting to 1 means that parallelism is limited to 1 and the success of that pod signals the success of the job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "activeDeadlineSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "Specifies the duration in seconds relative to the startTime that the job may be active before the system tries to terminate it; value must be positive integer", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "backoffLimit": { + SchemaProps: spec.SchemaProps{ + Description: "Specifies the number of retries before marking this job failed. Defaults to 6", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "A label query over pods that should match the pod count. Normally, the system sets this field for you. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "manualSelector": { + SchemaProps: spec.SchemaProps{ + Description: "manualSelector controls generation of pod labels and pod selectors. Leave `manualSelector` unset unless you are certain what you are doing. When false or unset, the system pick labels unique to this job and appends those labels to the pod template. When true, the user is responsible for picking unique labels and specifying the selector. Failure to pick a unique label may cause this and other jobs to not function correctly. However, You may see `manualSelector=true` in jobs that were created with the old `extensions/v1beta1` API. More info: https://git.k8s.io/community/contributors/design-proposals/selector-generation.md", + Type: []string{"boolean"}, + Format: "", + }, + }, + "template": { + SchemaProps: spec.SchemaProps{ + Description: "Describes the pod that will be created when executing a job. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", + Ref: ref("k8s.io/api/core/v1.PodTemplateSpec"), + }, + }, + }, + Required: []string{"template"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PodTemplateSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + }, + "k8s.io/api/batch/v1.JobStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "JobStatus represents the current state of a Job.", + Properties: map[string]spec.Schema{ + "conditions": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "The latest available observations of an object's current state. More info: https://kubernetes.io/docs/concepts/workloads/controllers/jobs-run-to-completion/", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/batch/v1.JobCondition"), + }, + }, + }, + }, + }, + "startTime": { + SchemaProps: spec.SchemaProps{ + Description: "Represents time when the job was acknowledged by the job controller. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "completionTime": { + SchemaProps: spec.SchemaProps{ + Description: "Represents time when the job was completed. It is not guaranteed to be set in happens-before order across separate operations. It is represented in RFC3339 form and is in UTC.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "active": { + SchemaProps: spec.SchemaProps{ + Description: "The number of actively running pods.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "succeeded": { + SchemaProps: spec.SchemaProps{ + Description: "The number of pods which reached phase Succeeded.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "failed": { + SchemaProps: spec.SchemaProps{ + Description: "The number of pods which reached phase Failed.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/batch/v1.JobCondition", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/batch/v1beta1.CronJob": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CronJob represents the configuration of a single cron job.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/batch/v1beta1.CronJobSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/batch/v1beta1.CronJobStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/batch/v1beta1.CronJobSpec", "k8s.io/api/batch/v1beta1.CronJobStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/batch/v1beta1.CronJobList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CronJobList is a collection of cron jobs.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "items is the list of CronJobs.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/batch/v1beta1.CronJob"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/batch/v1beta1.CronJob", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/batch/v1beta1.CronJobSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CronJobSpec describes how the job execution will look like and when it will actually run.", + Properties: map[string]spec.Schema{ + "schedule": { + SchemaProps: spec.SchemaProps{ + Description: "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.", + Type: []string{"string"}, + Format: "", + }, + }, + "startingDeadlineSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "concurrencyPolicy": { + SchemaProps: spec.SchemaProps{ + Description: "Specifies how to treat concurrent executions of a Job. Defaults to Allow.", + Type: []string{"string"}, + Format: "", + }, + }, + "suspend": { + SchemaProps: spec.SchemaProps{ + Description: "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "jobTemplate": { + SchemaProps: spec.SchemaProps{ + Description: "Specifies the job that will be created when executing a CronJob.", + Ref: ref("k8s.io/api/batch/v1beta1.JobTemplateSpec"), + }, + }, + "successfulJobsHistoryLimit": { + SchemaProps: spec.SchemaProps{ + Description: "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 3.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "failedJobsHistoryLimit": { + SchemaProps: spec.SchemaProps{ + Description: "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"schedule", "jobTemplate"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/batch/v1beta1.JobTemplateSpec"}, + }, + "k8s.io/api/batch/v1beta1.CronJobStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CronJobStatus represents the current state of a cron job.", + Properties: map[string]spec.Schema{ + "active": { + SchemaProps: spec.SchemaProps{ + Description: "A list of pointers to currently running jobs.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.ObjectReference"), + }, + }, + }, + }, + }, + "lastScheduleTime": { + SchemaProps: spec.SchemaProps{ + Description: "Information when was the last time the job was successfully scheduled.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ObjectReference", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/batch/v1beta1.JobTemplate": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "JobTemplate describes a template for creating copies of a predefined pod.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "template": { + SchemaProps: spec.SchemaProps{ + Description: "Defines jobs that will be created from this template. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/batch/v1beta1.JobTemplateSpec"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/batch/v1beta1.JobTemplateSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/batch/v1beta1.JobTemplateSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "JobTemplateSpec describes the data a Job should have when created from a template", + Properties: map[string]spec.Schema{ + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/batch/v1.JobSpec"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/batch/v1.JobSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/batch/v2alpha1.CronJob": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CronJob represents the configuration of a single cron job.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Specification of the desired behavior of a cron job, including the schedule. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/batch/v2alpha1.CronJobSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Current status of a cron job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/batch/v2alpha1.CronJobStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/batch/v2alpha1.CronJobSpec", "k8s.io/api/batch/v2alpha1.CronJobStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/batch/v2alpha1.CronJobList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CronJobList is a collection of cron jobs.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "items is the list of CronJobs.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/batch/v2alpha1.CronJob"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/batch/v2alpha1.CronJob", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/batch/v2alpha1.CronJobSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CronJobSpec describes how the job execution will look like and when it will actually run.", + Properties: map[string]spec.Schema{ + "schedule": { + SchemaProps: spec.SchemaProps{ + Description: "The schedule in Cron format, see https://en.wikipedia.org/wiki/Cron.", + Type: []string{"string"}, + Format: "", + }, + }, + "startingDeadlineSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "Optional deadline in seconds for starting the job if it misses scheduled time for any reason. Missed jobs executions will be counted as failed ones.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "concurrencyPolicy": { + SchemaProps: spec.SchemaProps{ + Description: "Specifies how to treat concurrent executions of a Job. Defaults to Allow.", + Type: []string{"string"}, + Format: "", + }, + }, + "suspend": { + SchemaProps: spec.SchemaProps{ + Description: "This flag tells the controller to suspend subsequent executions, it does not apply to already started executions. Defaults to false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "jobTemplate": { + SchemaProps: spec.SchemaProps{ + Description: "Specifies the job that will be created when executing a CronJob.", + Ref: ref("k8s.io/api/batch/v2alpha1.JobTemplateSpec"), + }, + }, + "successfulJobsHistoryLimit": { + SchemaProps: spec.SchemaProps{ + Description: "The number of successful finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "failedJobsHistoryLimit": { + SchemaProps: spec.SchemaProps{ + Description: "The number of failed finished jobs to retain. This is a pointer to distinguish between explicit zero and not specified.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"schedule", "jobTemplate"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/batch/v2alpha1.JobTemplateSpec"}, + }, + "k8s.io/api/batch/v2alpha1.CronJobStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CronJobStatus represents the current state of a cron job.", + Properties: map[string]spec.Schema{ + "active": { + SchemaProps: spec.SchemaProps{ + Description: "A list of pointers to currently running jobs.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.ObjectReference"), + }, + }, + }, + }, + }, + "lastScheduleTime": { + SchemaProps: spec.SchemaProps{ + Description: "Information when was the last time the job was successfully scheduled.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ObjectReference", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/batch/v2alpha1.JobTemplate": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "JobTemplate describes a template for creating copies of a predefined pod.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "template": { + SchemaProps: spec.SchemaProps{ + Description: "Defines jobs that will be created from this template. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/batch/v2alpha1.JobTemplateSpec"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/batch/v2alpha1.JobTemplateSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/batch/v2alpha1.JobTemplateSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "JobTemplateSpec describes the data a Job should have when created from a template", + Properties: map[string]spec.Schema{ + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata of the jobs created from this template. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Specification of the desired behavior of the job. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/batch/v1.JobSpec"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/batch/v1.JobSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/certificates/v1beta1.CertificateSigningRequest": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Describes a certificate signing request", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "The certificate request itself and any additional information.", + Ref: ref("k8s.io/api/certificates/v1beta1.CertificateSigningRequestSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Derived information about the request.", + Ref: ref("k8s.io/api/certificates/v1beta1.CertificateSigningRequestStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/certificates/v1beta1.CertificateSigningRequestSpec", "k8s.io/api/certificates/v1beta1.CertificateSigningRequestStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/certificates/v1beta1.CertificateSigningRequestCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "request approval state, currently Approved or Denied.", + Type: []string{"string"}, + Format: "", + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "brief reason for the request state", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "human readable message with details about the request state", + Type: []string{"string"}, + Format: "", + }, + }, + "lastUpdateTime": { + SchemaProps: spec.SchemaProps{ + Description: "timestamp for the last update to this condition", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + }, + Required: []string{"type"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/certificates/v1beta1.CertificateSigningRequestList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/certificates/v1beta1.CertificateSigningRequest"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/certificates/v1beta1.CertificateSigningRequest", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/certificates/v1beta1.CertificateSigningRequestSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "This information is immutable after the request is created. Only the Request and Usages fields can be set on creation, other fields are derived by Kubernetes and cannot be modified by users.", + Properties: map[string]spec.Schema{ + "request": { + SchemaProps: spec.SchemaProps{ + Description: "Base64-encoded PKCS#10 CSR data", + Type: []string{"string"}, + Format: "byte", + }, + }, + "usages": { + SchemaProps: spec.SchemaProps{ + Description: "allowedUsages specifies a set of usage contexts the key will be valid for. See: https://tools.ietf.org/html/rfc5280#section-4.2.1.3\n https://tools.ietf.org/html/rfc5280#section-4.2.1.12", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "username": { + SchemaProps: spec.SchemaProps{ + Description: "Information about the requesting user. See user.Info interface for details.", + Type: []string{"string"}, + Format: "", + }, + }, + "uid": { + SchemaProps: spec.SchemaProps{ + Description: "UID information about the requesting user. See user.Info interface for details.", + Type: []string{"string"}, + Format: "", + }, + }, + "groups": { + SchemaProps: spec.SchemaProps{ + Description: "Group information about the requesting user. See user.Info interface for details.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "extra": { + SchemaProps: spec.SchemaProps{ + Description: "Extra information about the requesting user. See user.Info interface for details.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + }, + Required: []string{"request"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/certificates/v1beta1.CertificateSigningRequestStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "conditions": { + SchemaProps: spec.SchemaProps{ + Description: "Conditions applied to the request, such as approval or denial.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/certificates/v1beta1.CertificateSigningRequestCondition"), + }, + }, + }, + }, + }, + "certificate": { + SchemaProps: spec.SchemaProps{ + Description: "If request was approved, the controller will place the issued certificate here.", + Type: []string{"string"}, + Format: "byte", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/certificates/v1beta1.CertificateSigningRequestCondition"}, + }, + "k8s.io/api/core/v1.AWSElasticBlockStoreVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents a Persistent Disk resource in AWS.\n\nAn AWS EBS disk must exist before mounting to a container. The disk must also be in the same AWS zone as the kubelet. An AWS EBS disk can only be mounted as read/write once. AWS EBS volumes support ownership management and SELinux relabeling.", + Properties: map[string]spec.Schema{ + "volumeID": { + SchemaProps: spec.SchemaProps{ + Description: "Unique ID of the persistent disk resource in AWS (Amazon EBS volume). More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + Type: []string{"string"}, + Format: "", + }, + }, + "fsType": { + SchemaProps: spec.SchemaProps{ + Description: "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + Type: []string{"string"}, + Format: "", + }, + }, + "partition": { + SchemaProps: spec.SchemaProps{ + Description: "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty).", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "Specify \"true\" to force and set the ReadOnly property in VolumeMounts to \"true\". If omitted, the default is \"false\". More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"volumeID"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.Affinity": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Affinity is a group of affinity scheduling rules.", + Properties: map[string]spec.Schema{ + "nodeAffinity": { + SchemaProps: spec.SchemaProps{ + Description: "Describes node affinity scheduling rules for the pod.", + Ref: ref("k8s.io/api/core/v1.NodeAffinity"), + }, + }, + "podAffinity": { + SchemaProps: spec.SchemaProps{ + Description: "Describes pod affinity scheduling rules (e.g. co-locate this pod in the same node, zone, etc. as some other pod(s)).", + Ref: ref("k8s.io/api/core/v1.PodAffinity"), + }, + }, + "podAntiAffinity": { + SchemaProps: spec.SchemaProps{ + Description: "Describes pod anti-affinity scheduling rules (e.g. avoid putting this pod in the same node, zone, etc. as some other pod(s)).", + Ref: ref("k8s.io/api/core/v1.PodAntiAffinity"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.NodeAffinity", "k8s.io/api/core/v1.PodAffinity", "k8s.io/api/core/v1.PodAntiAffinity"}, + }, + "k8s.io/api/core/v1.AttachedVolume": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "AttachedVolume describes a volume attached to a node", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the attached volume", + Type: []string{"string"}, + Format: "", + }, + }, + "devicePath": { + SchemaProps: spec.SchemaProps{ + Description: "DevicePath represents the device path where the volume should be available", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"name", "devicePath"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.AvoidPods": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "AvoidPods describes pods that should avoid this node. This is the value for a Node annotation with key scheduler.alpha.kubernetes.io/preferAvoidPods and will eventually become a field of NodeStatus.", + Properties: map[string]spec.Schema{ + "preferAvoidPods": { + SchemaProps: spec.SchemaProps{ + Description: "Bounded-sized list of signatures of pods that should avoid this node, sorted in timestamp order from oldest to newest. Size of the slice is unspecified.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.PreferAvoidPodsEntry"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PreferAvoidPodsEntry"}, + }, + "k8s.io/api/core/v1.AzureDiskVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", + Properties: map[string]spec.Schema{ + "diskName": { + SchemaProps: spec.SchemaProps{ + Description: "The Name of the data disk in the blob storage", + Type: []string{"string"}, + Format: "", + }, + }, + "diskURI": { + SchemaProps: spec.SchemaProps{ + Description: "The URI the data disk in the blob storage", + Type: []string{"string"}, + Format: "", + }, + }, + "cachingMode": { + SchemaProps: spec.SchemaProps{ + Description: "Host Caching mode: None, Read Only, Read Write.", + Type: []string{"string"}, + Format: "", + }, + }, + "fsType": { + SchemaProps: spec.SchemaProps{ + Description: "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + Type: []string{"string"}, + Format: "", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Expected values Shared: mulitple blob disks per storage account Dedicated: single blob disk per storage account Managed: azure managed data disk (only in managed availability set). defaults to shared", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"diskName", "diskURI"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.AzureFilePersistentVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", + Properties: map[string]spec.Schema{ + "secretName": { + SchemaProps: spec.SchemaProps{ + Description: "the name of secret that contains Azure Storage Account Name and Key", + Type: []string{"string"}, + Format: "", + }, + }, + "shareName": { + SchemaProps: spec.SchemaProps{ + Description: "Share Name", + Type: []string{"string"}, + Format: "", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "secretNamespace": { + SchemaProps: spec.SchemaProps{ + Description: "the namespace of the secret that contains Azure Storage Account Name and Key default is the same as the Pod", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"secretName", "shareName"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.AzureFileVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", + Properties: map[string]spec.Schema{ + "secretName": { + SchemaProps: spec.SchemaProps{ + Description: "the name of secret that contains Azure Storage Account Name and Key", + Type: []string{"string"}, + Format: "", + }, + }, + "shareName": { + SchemaProps: spec.SchemaProps{ + Description: "Share Name", + Type: []string{"string"}, + Format: "", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"secretName", "shareName"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.Binding": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Binding ties one object to another; for example, a pod is bound to a node by a scheduler. Deprecated in 1.7, please use the bindings subresource of pods instead.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "target": { + SchemaProps: spec.SchemaProps{ + Description: "The target object that you want to bind to the standard object.", + Ref: ref("k8s.io/api/core/v1.ObjectReference"), + }, + }, + }, + Required: []string{"target"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ObjectReference", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.Capabilities": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Adds and removes POSIX capabilities from running containers.", + Properties: map[string]spec.Schema{ + "add": { + SchemaProps: spec.SchemaProps{ + Description: "Added capabilities", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "drop": { + SchemaProps: spec.SchemaProps{ + Description: "Removed capabilities", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.CephFSPersistentVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", + Properties: map[string]spec.Schema{ + "monitors": { + SchemaProps: spec.SchemaProps{ + Description: "Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "path": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", + Type: []string{"string"}, + Format: "", + }, + }, + "user": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it", + Type: []string{"string"}, + Format: "", + }, + }, + "secretFile": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it", + Type: []string{"string"}, + Format: "", + }, + }, + "secretRef": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it", + Ref: ref("k8s.io/api/core/v1.SecretReference"), + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"monitors"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.SecretReference"}, + }, + "k8s.io/api/core/v1.CephFSVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents a Ceph Filesystem mount that lasts the lifetime of a pod Cephfs volumes do not support ownership management or SELinux relabeling.", + Properties: map[string]spec.Schema{ + "monitors": { + SchemaProps: spec.SchemaProps{ + Description: "Required: Monitors is a collection of Ceph monitors More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "path": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: Used as the mounted root, rather than the full Ceph tree, default is /", + Type: []string{"string"}, + Format: "", + }, + }, + "user": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: User is the rados user name, default is admin More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it", + Type: []string{"string"}, + Format: "", + }, + }, + "secretFile": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: SecretFile is the path to key ring for User, default is /etc/ceph/user.secret More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it", + Type: []string{"string"}, + Format: "", + }, + }, + "secretRef": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: SecretRef is reference to the authentication secret for User, default is empty. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it", + Ref: ref("k8s.io/api/core/v1.LocalObjectReference"), + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/volumes/cephfs/README.md#how-to-use-it", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"monitors"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.LocalObjectReference"}, + }, + "k8s.io/api/core/v1.CinderVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents a cinder volume resource in Openstack. A Cinder volume must exist before mounting to a container. The volume must also be in the same region as the kubelet. Cinder volumes support ownership management and SELinux relabeling.", + Properties: map[string]spec.Schema{ + "volumeID": { + SchemaProps: spec.SchemaProps{ + Description: "volume id used to identify the volume in cinder More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md", + Type: []string{"string"}, + Format: "", + }, + }, + "fsType": { + SchemaProps: spec.SchemaProps{ + Description: "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md", + Type: []string{"string"}, + Format: "", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"volumeID"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.ClientIPConfig": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClientIPConfig represents the configurations of Client IP based session affinity.", + Properties: map[string]spec.Schema{ + "timeoutSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "timeoutSeconds specifies the seconds of ClientIP type session sticky time. The value must be >0 && <=86400(for 1 day) if ServiceAffinity == \"ClientIP\". Default value is 10800(for 3 hours).", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.ComponentCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Information about the condition of a component.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of condition for a component. Valid value: \"Healthy\"", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status of the condition for a component. Valid values for \"Healthy\": \"True\", \"False\", or \"Unknown\".", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "Message about the condition for a component. For example, information about a health check.", + Type: []string{"string"}, + Format: "", + }, + }, + "error": { + SchemaProps: spec.SchemaProps{ + Description: "Condition error code for a component. For example, a health check error code.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.ComponentStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ComponentStatus (and ComponentStatusList) holds the cluster validation info.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "conditions": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "List of component conditions observed", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.ComponentCondition"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ComponentCondition", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.ComponentStatusList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Status of all the conditions for the component as a list of ComponentStatus objects.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of ComponentStatus objects.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.ComponentStatus"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ComponentStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/core/v1.ConfigMap": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ConfigMap holds configuration data for pods to consume.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "data": { + SchemaProps: spec.SchemaProps{ + Description: "Data contains the configuration data. Each key must consist of alphanumeric characters, '-', '_' or '.'.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.ConfigMapEnvSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ConfigMapEnvSource selects a ConfigMap to populate the environment variables with.\n\nThe contents of the target ConfigMap's Data field will represent the key-value pairs as environment variables.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + Type: []string{"string"}, + Format: "", + }, + }, + "optional": { + SchemaProps: spec.SchemaProps{ + Description: "Specify whether the ConfigMap must be defined", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.ConfigMapKeySelector": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Selects a key from a ConfigMap.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + Type: []string{"string"}, + Format: "", + }, + }, + "key": { + SchemaProps: spec.SchemaProps{ + Description: "The key to select.", + Type: []string{"string"}, + Format: "", + }, + }, + "optional": { + SchemaProps: spec.SchemaProps{ + Description: "Specify whether the ConfigMap or it's key must be defined", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"key"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.ConfigMapList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ConfigMapList is a resource containing a list of ConfigMap objects.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is the list of ConfigMaps.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.ConfigMap"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ConfigMap", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/core/v1.ConfigMapProjection": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Adapts a ConfigMap into a projected volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a projected volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. Note that this is identical to a configmap volume source without the default mode.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + Type: []string{"string"}, + Format: "", + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.KeyToPath"), + }, + }, + }, + }, + }, + "optional": { + SchemaProps: spec.SchemaProps{ + Description: "Specify whether the ConfigMap or it's keys must be defined", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.KeyToPath"}, + }, + "k8s.io/api/core/v1.ConfigMapVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Adapts a ConfigMap into a volume.\n\nThe contents of the target ConfigMap's Data field will be presented in a volume as files using the keys in the Data field as the file names, unless the items element is populated with specific mappings of keys to paths. ConfigMap volumes support ownership management and SELinux relabeling.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + Type: []string{"string"}, + Format: "", + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "If unspecified, each key-value pair in the Data field of the referenced ConfigMap will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the ConfigMap, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.KeyToPath"), + }, + }, + }, + }, + }, + "defaultMode": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "optional": { + SchemaProps: spec.SchemaProps{ + Description: "Specify whether the ConfigMap or it's keys must be defined", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.KeyToPath"}, + }, + "k8s.io/api/core/v1.Container": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "A single application container that you want to run within a pod.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated.", + Type: []string{"string"}, + Format: "", + }, + }, + "image": { + SchemaProps: spec.SchemaProps{ + Description: "Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.", + Type: []string{"string"}, + Format: "", + }, + }, + "command": { + SchemaProps: spec.SchemaProps{ + Description: "Entrypoint array. Not executed within a shell. The docker image's ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "args": { + SchemaProps: spec.SchemaProps{ + Description: "Arguments to the entrypoint. The docker image's CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container's environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "workingDir": { + SchemaProps: spec.SchemaProps{ + Description: "Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated.", + Type: []string{"string"}, + Format: "", + }, + }, + "ports": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "containerPort", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default \"0.0.0.0\" address inside a container will be accessible from the network. Cannot be updated.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.ContainerPort"), + }, + }, + }, + }, + }, + "envFrom": { + SchemaProps: spec.SchemaProps{ + Description: "List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.EnvFromSource"), + }, + }, + }, + }, + }, + "env": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "List of environment variables to set in the container. Cannot be updated.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.EnvVar"), + }, + }, + }, + }, + }, + "resources": { + SchemaProps: spec.SchemaProps{ + Description: "Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources", + Ref: ref("k8s.io/api/core/v1.ResourceRequirements"), + }, + }, + "volumeMounts": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "mountPath", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "Pod volumes to mount into the container's filesystem. Cannot be updated.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.VolumeMount"), + }, + }, + }, + }, + }, + "livenessProbe": { + SchemaProps: spec.SchemaProps{ + Description: "Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + Ref: ref("k8s.io/api/core/v1.Probe"), + }, + }, + "readinessProbe": { + SchemaProps: spec.SchemaProps{ + Description: "Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + Ref: ref("k8s.io/api/core/v1.Probe"), + }, + }, + "lifecycle": { + SchemaProps: spec.SchemaProps{ + Description: "Actions that the management system should take in response to container lifecycle events. Cannot be updated.", + Ref: ref("k8s.io/api/core/v1.Lifecycle"), + }, + }, + "terminationMessagePath": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: Path at which the file to which the container's termination message will be written is mounted into the container's filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.", + Type: []string{"string"}, + Format: "", + }, + }, + "terminationMessagePolicy": { + SchemaProps: spec.SchemaProps{ + Description: "Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated.", + Type: []string{"string"}, + Format: "", + }, + }, + "imagePullPolicy": { + SchemaProps: spec.SchemaProps{ + Description: "Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images", + Type: []string{"string"}, + Format: "", + }, + }, + "securityContext": { + SchemaProps: spec.SchemaProps{ + Description: "Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://git.k8s.io/community/contributors/design-proposals/security_context.md", + Ref: ref("k8s.io/api/core/v1.SecurityContext"), + }, + }, + "stdin": { + SchemaProps: spec.SchemaProps{ + Description: "Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "stdinOnce": { + SchemaProps: spec.SchemaProps{ + Description: "Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false", + Type: []string{"boolean"}, + Format: "", + }, + }, + "tty": { + SchemaProps: spec.SchemaProps{ + Description: "Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"name"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ContainerPort", "k8s.io/api/core/v1.EnvFromSource", "k8s.io/api/core/v1.EnvVar", "k8s.io/api/core/v1.Lifecycle", "k8s.io/api/core/v1.Probe", "k8s.io/api/core/v1.ResourceRequirements", "k8s.io/api/core/v1.SecurityContext", "k8s.io/api/core/v1.VolumeMount"}, + }, + "k8s.io/api/core/v1.ContainerImage": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Describe a container image", + Properties: map[string]spec.Schema{ + "names": { + SchemaProps: spec.SchemaProps{ + Description: "Names by which this image is known. e.g. [\"gcr.io/google_containers/hyperkube:v1.0.7\", \"dockerhub.io/google_containers/hyperkube:v1.0.7\"]", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "sizeBytes": { + SchemaProps: spec.SchemaProps{ + Description: "The size of the image in bytes.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + }, + Required: []string{"names"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.ContainerPort": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ContainerPort represents a network port in a single container.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services.", + Type: []string{"string"}, + Format: "", + }, + }, + "hostPort": { + SchemaProps: spec.SchemaProps{ + Description: "Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "containerPort": { + SchemaProps: spec.SchemaProps{ + Description: "Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "protocol": { + SchemaProps: spec.SchemaProps{ + Description: "Protocol for port. Must be UDP or TCP. Defaults to \"TCP\".", + Type: []string{"string"}, + Format: "", + }, + }, + "hostIP": { + SchemaProps: spec.SchemaProps{ + Description: "What host IP to bind the external port to.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"containerPort"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.ContainerState": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ContainerState holds a possible state of container. Only one of its members may be specified. If none of them is specified, the default one is ContainerStateWaiting.", + Properties: map[string]spec.Schema{ + "waiting": { + SchemaProps: spec.SchemaProps{ + Description: "Details about a waiting container", + Ref: ref("k8s.io/api/core/v1.ContainerStateWaiting"), + }, + }, + "running": { + SchemaProps: spec.SchemaProps{ + Description: "Details about a running container", + Ref: ref("k8s.io/api/core/v1.ContainerStateRunning"), + }, + }, + "terminated": { + SchemaProps: spec.SchemaProps{ + Description: "Details about a terminated container", + Ref: ref("k8s.io/api/core/v1.ContainerStateTerminated"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ContainerStateRunning", "k8s.io/api/core/v1.ContainerStateTerminated", "k8s.io/api/core/v1.ContainerStateWaiting"}, + }, + "k8s.io/api/core/v1.ContainerStateRunning": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ContainerStateRunning is a running state of a container.", + Properties: map[string]spec.Schema{ + "startedAt": { + SchemaProps: spec.SchemaProps{ + Description: "Time at which the container was last (re-)started", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/core/v1.ContainerStateTerminated": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ContainerStateTerminated is a terminated state of a container.", + Properties: map[string]spec.Schema{ + "exitCode": { + SchemaProps: spec.SchemaProps{ + Description: "Exit status from the last termination of the container", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "signal": { + SchemaProps: spec.SchemaProps{ + Description: "Signal from the last termination of the container", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "(brief) reason from the last termination of the container", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "Message regarding the last termination of the container", + Type: []string{"string"}, + Format: "", + }, + }, + "startedAt": { + SchemaProps: spec.SchemaProps{ + Description: "Time at which previous execution of the container started", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "finishedAt": { + SchemaProps: spec.SchemaProps{ + Description: "Time at which the container last terminated", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "containerID": { + SchemaProps: spec.SchemaProps{ + Description: "Container's ID in the format 'docker://'", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"exitCode"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/core/v1.ContainerStateWaiting": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ContainerStateWaiting is a waiting state of a container.", + Properties: map[string]spec.Schema{ + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "(brief) reason the container is not yet running.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "Message regarding why the container is not yet running.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.ContainerStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ContainerStatus contains details for the current status of this container.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "This must be a DNS_LABEL. Each container in a pod must have a unique name. Cannot be updated.", + Type: []string{"string"}, + Format: "", + }, + }, + "state": { + SchemaProps: spec.SchemaProps{ + Description: "Details about the container's current condition.", + Ref: ref("k8s.io/api/core/v1.ContainerState"), + }, + }, + "lastState": { + SchemaProps: spec.SchemaProps{ + Description: "Details about the container's last termination condition.", + Ref: ref("k8s.io/api/core/v1.ContainerState"), + }, + }, + "ready": { + SchemaProps: spec.SchemaProps{ + Description: "Specifies whether the container has passed its readiness probe.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "restartCount": { + SchemaProps: spec.SchemaProps{ + Description: "The number of times the container has been restarted, currently based on the number of dead containers that have not yet been removed. Note that this is calculated from dead containers. But those containers are subject to garbage collection. This value will get capped at 5 by GC.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "image": { + SchemaProps: spec.SchemaProps{ + Description: "The image the container is running. More info: https://kubernetes.io/docs/concepts/containers/images", + Type: []string{"string"}, + Format: "", + }, + }, + "imageID": { + SchemaProps: spec.SchemaProps{ + Description: "ImageID of the container's image.", + Type: []string{"string"}, + Format: "", + }, + }, + "containerID": { + SchemaProps: spec.SchemaProps{ + Description: "Container's ID in the format 'docker://'.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"name", "ready", "restartCount", "image", "imageID"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ContainerState"}, + }, + "k8s.io/api/core/v1.DaemonEndpoint": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DaemonEndpoint contains information about a single Daemon endpoint.", + Properties: map[string]spec.Schema{ + "Port": { + SchemaProps: spec.SchemaProps{ + Description: "Port number of the given endpoint.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"Port"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.DownwardAPIProjection": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents downward API info for projecting into a projected volume. Note that this is identical to a downwardAPI volume source without the default mode.", + Properties: map[string]spec.Schema{ + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of DownwardAPIVolume file", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.DownwardAPIVolumeFile"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.DownwardAPIVolumeFile"}, + }, + "k8s.io/api/core/v1.DownwardAPIVolumeFile": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DownwardAPIVolumeFile represents information to create the file containing the pod field", + Properties: map[string]spec.Schema{ + "path": { + SchemaProps: spec.SchemaProps{ + Description: "Required: Path is the relative path name of the file to be created. Must not be absolute or contain the '..' path. Must be utf-8 encoded. The first item of the relative path must not start with '..'", + Type: []string{"string"}, + Format: "", + }, + }, + "fieldRef": { + SchemaProps: spec.SchemaProps{ + Description: "Required: Selects a field of the pod: only annotations, labels, name and namespace are supported.", + Ref: ref("k8s.io/api/core/v1.ObjectFieldSelector"), + }, + }, + "resourceFieldRef": { + SchemaProps: spec.SchemaProps{ + Description: "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, requests.cpu and requests.memory) are currently supported.", + Ref: ref("k8s.io/api/core/v1.ResourceFieldSelector"), + }, + }, + "mode": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"path"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ObjectFieldSelector", "k8s.io/api/core/v1.ResourceFieldSelector"}, + }, + "k8s.io/api/core/v1.DownwardAPIVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DownwardAPIVolumeSource represents a volume containing downward API info. Downward API volumes support ownership management and SELinux relabeling.", + Properties: map[string]spec.Schema{ + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of downward API volume file", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.DownwardAPIVolumeFile"), + }, + }, + }, + }, + }, + "defaultMode": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.DownwardAPIVolumeFile"}, + }, + "k8s.io/api/core/v1.EmptyDirVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents an empty directory for a pod. Empty directory volumes support ownership management and SELinux relabeling.", + Properties: map[string]spec.Schema{ + "medium": { + SchemaProps: spec.SchemaProps{ + Description: "What type of storage medium should back this directory. The default is \"\" which means to use the node's default medium. Must be an empty string (default) or Memory. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", + Type: []string{"string"}, + Format: "", + }, + }, + "sizeLimit": { + SchemaProps: spec.SchemaProps{ + Description: "Total amount of local storage required for this EmptyDir volume. The size limit is also applicable for memory medium. The maximum usage on memory medium EmptyDir would be the minimum value between the SizeLimit specified here and the sum of memory limits of all containers in a pod. The default is nil which means that the limit is undefined. More info: http://kubernetes.io/docs/user-guide/volumes#emptydir", + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/core/v1.EndpointAddress": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "EndpointAddress is a tuple that describes single IP address.", + Properties: map[string]spec.Schema{ + "ip": { + SchemaProps: spec.SchemaProps{ + Description: "The IP of this endpoint. May not be loopback (127.0.0.0/8), link-local (169.254.0.0/16), or link-local multicast ((224.0.0.0/24). IPv6 is also accepted but not fully supported on all platforms. Also, certain kubernetes components, like kube-proxy, are not IPv6 ready.", + Type: []string{"string"}, + Format: "", + }, + }, + "hostname": { + SchemaProps: spec.SchemaProps{ + Description: "The Hostname of this endpoint", + Type: []string{"string"}, + Format: "", + }, + }, + "nodeName": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: Node hosting this endpoint. This can be used to determine endpoints local to a node.", + Type: []string{"string"}, + Format: "", + }, + }, + "targetRef": { + SchemaProps: spec.SchemaProps{ + Description: "Reference to object providing the endpoint.", + Ref: ref("k8s.io/api/core/v1.ObjectReference"), + }, + }, + }, + Required: []string{"ip"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ObjectReference"}, + }, + "k8s.io/api/core/v1.EndpointPort": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "EndpointPort is a tuple that describes a single port.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "The name of this port (corresponds to ServicePort.Name). Must be a DNS_LABEL. Optional only if one port is defined.", + Type: []string{"string"}, + Format: "", + }, + }, + "port": { + SchemaProps: spec.SchemaProps{ + Description: "The port number of the endpoint.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "protocol": { + SchemaProps: spec.SchemaProps{ + Description: "The IP protocol for this port. Must be UDP or TCP. Default is TCP.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"port"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.EndpointSubset": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "EndpointSubset is a group of addresses with a common set of ports. The expanded set of endpoints is the Cartesian product of Addresses x Ports. For example, given:\n {\n Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n }\nThe resulting set of endpoints can be viewed as:\n a: [ 10.10.1.1:8675, 10.10.2.2:8675 ],\n b: [ 10.10.1.1:309, 10.10.2.2:309 ]", + Properties: map[string]spec.Schema{ + "addresses": { + SchemaProps: spec.SchemaProps{ + Description: "IP addresses which offer the related ports that are marked as ready. These endpoints should be considered safe for load balancers and clients to utilize.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.EndpointAddress"), + }, + }, + }, + }, + }, + "notReadyAddresses": { + SchemaProps: spec.SchemaProps{ + Description: "IP addresses which offer the related ports but are not currently marked as ready because they have not yet finished starting, have recently failed a readiness check, or have recently failed a liveness check.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.EndpointAddress"), + }, + }, + }, + }, + }, + "ports": { + SchemaProps: spec.SchemaProps{ + Description: "Port numbers available on the related IP addresses.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.EndpointPort"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.EndpointAddress", "k8s.io/api/core/v1.EndpointPort"}, + }, + "k8s.io/api/core/v1.Endpoints": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Endpoints is a collection of endpoints that implement the actual service. Example:\n Name: \"mysvc\",\n Subsets: [\n {\n Addresses: [{\"ip\": \"10.10.1.1\"}, {\"ip\": \"10.10.2.2\"}],\n Ports: [{\"name\": \"a\", \"port\": 8675}, {\"name\": \"b\", \"port\": 309}]\n },\n {\n Addresses: [{\"ip\": \"10.10.3.3\"}],\n Ports: [{\"name\": \"a\", \"port\": 93}, {\"name\": \"b\", \"port\": 76}]\n },\n ]", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "subsets": { + SchemaProps: spec.SchemaProps{ + Description: "The set of all endpoints is the union of all subsets. Addresses are placed into subsets according to the IPs they share. A single address with multiple ports, some of which are ready and some of which are not (because they come from different containers) will result in the address being displayed in different subsets for the different ports. No address will appear in both Addresses and NotReadyAddresses in the same subset. Sets of addresses and ports that comprise a service.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.EndpointSubset"), + }, + }, + }, + }, + }, + }, + Required: []string{"subsets"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.EndpointSubset", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.EndpointsList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "EndpointsList is a list of endpoints.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of endpoints.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.Endpoints"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.Endpoints", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/core/v1.EnvFromSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "EnvFromSource represents the source of a set of ConfigMaps", + Properties: map[string]spec.Schema{ + "prefix": { + SchemaProps: spec.SchemaProps{ + Description: "An optional identifer to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER.", + Type: []string{"string"}, + Format: "", + }, + }, + "configMapRef": { + SchemaProps: spec.SchemaProps{ + Description: "The ConfigMap to select from", + Ref: ref("k8s.io/api/core/v1.ConfigMapEnvSource"), + }, + }, + "secretRef": { + SchemaProps: spec.SchemaProps{ + Description: "The Secret to select from", + Ref: ref("k8s.io/api/core/v1.SecretEnvSource"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ConfigMapEnvSource", "k8s.io/api/core/v1.SecretEnvSource"}, + }, + "k8s.io/api/core/v1.EnvVar": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "EnvVar represents an environment variable present in a Container.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the environment variable. Must be a C_IDENTIFIER.", + Type: []string{"string"}, + Format: "", + }, + }, + "value": { + SchemaProps: spec.SchemaProps{ + Description: "Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to \"\".", + Type: []string{"string"}, + Format: "", + }, + }, + "valueFrom": { + SchemaProps: spec.SchemaProps{ + Description: "Source for the environment variable's value. Cannot be used if value is not empty.", + Ref: ref("k8s.io/api/core/v1.EnvVarSource"), + }, + }, + }, + Required: []string{"name"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.EnvVarSource"}, + }, + "k8s.io/api/core/v1.EnvVarSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "EnvVarSource represents a source for the value of an EnvVar.", + Properties: map[string]spec.Schema{ + "fieldRef": { + SchemaProps: spec.SchemaProps{ + Description: "Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP.", + Ref: ref("k8s.io/api/core/v1.ObjectFieldSelector"), + }, + }, + "resourceFieldRef": { + SchemaProps: spec.SchemaProps{ + Description: "Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.", + Ref: ref("k8s.io/api/core/v1.ResourceFieldSelector"), + }, + }, + "configMapKeyRef": { + SchemaProps: spec.SchemaProps{ + Description: "Selects a key of a ConfigMap.", + Ref: ref("k8s.io/api/core/v1.ConfigMapKeySelector"), + }, + }, + "secretKeyRef": { + SchemaProps: spec.SchemaProps{ + Description: "Selects a key of a secret in the pod's namespace", + Ref: ref("k8s.io/api/core/v1.SecretKeySelector"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ConfigMapKeySelector", "k8s.io/api/core/v1.ObjectFieldSelector", "k8s.io/api/core/v1.ResourceFieldSelector", "k8s.io/api/core/v1.SecretKeySelector"}, + }, + "k8s.io/api/core/v1.Event": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Event is a report of an event somewhere in the cluster.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "involvedObject": { + SchemaProps: spec.SchemaProps{ + Description: "The object that this event is about.", + Ref: ref("k8s.io/api/core/v1.ObjectReference"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "This should be a short, machine understandable string that gives the reason for the transition into the object's current status.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "A human-readable description of the status of this operation.", + Type: []string{"string"}, + Format: "", + }, + }, + "source": { + SchemaProps: spec.SchemaProps{ + Description: "The component reporting this event. Should be a short machine understandable string.", + Ref: ref("k8s.io/api/core/v1.EventSource"), + }, + }, + "firstTimestamp": { + SchemaProps: spec.SchemaProps{ + Description: "The time at which the event was first recorded. (Time of server receipt is in TypeMeta.)", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "lastTimestamp": { + SchemaProps: spec.SchemaProps{ + Description: "The time at which the most recent occurrence of this event was recorded.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "count": { + SchemaProps: spec.SchemaProps{ + Description: "The number of times this event has occurred.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of this event (Normal, Warning), new types could be added in the future", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"metadata", "involvedObject"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.EventSource", "k8s.io/api/core/v1.ObjectReference", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/core/v1.EventList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "EventList is a list of events.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of events", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.Event"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.Event", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/core/v1.EventSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "EventSource contains information for an event.", + Properties: map[string]spec.Schema{ + "component": { + SchemaProps: spec.SchemaProps{ + Description: "Component from which the event is generated.", + Type: []string{"string"}, + Format: "", + }, + }, + "host": { + SchemaProps: spec.SchemaProps{ + Description: "Node name on which the event is generated.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.ExecAction": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ExecAction describes a \"run in container\" action.", + Properties: map[string]spec.Schema{ + "command": { + SchemaProps: spec.SchemaProps{ + Description: "Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.FCVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents a Fibre Channel volume. Fibre Channel volumes can only be mounted as read/write once. Fibre Channel volumes support ownership management and SELinux relabeling.", + Properties: map[string]spec.Schema{ + "targetWWNs": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: FC target worldwide names (WWNs)", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "lun": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: FC target lun number", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "fsType": { + SchemaProps: spec.SchemaProps{ + Description: "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + Type: []string{"string"}, + Format: "", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "wwids": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: FC volume world wide identifiers (wwids) Either wwids or combination of targetWWNs and lun must be set, but not both simultaneously.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.FlexVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. This is an alpha feature and may change in future.", + Properties: map[string]spec.Schema{ + "driver": { + SchemaProps: spec.SchemaProps{ + Description: "Driver is the name of the driver to use for this volume.", + Type: []string{"string"}, + Format: "", + }, + }, + "fsType": { + SchemaProps: spec.SchemaProps{ + Description: "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". The default filesystem depends on FlexVolume script.", + Type: []string{"string"}, + Format: "", + }, + }, + "secretRef": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: SecretRef is reference to the secret object containing sensitive information to pass to the plugin scripts. This may be empty if no secret object is specified. If the secret object contains more than one secret, all secrets are passed to the plugin scripts.", + Ref: ref("k8s.io/api/core/v1.LocalObjectReference"), + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "options": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: Extra command options if any.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"driver"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.LocalObjectReference"}, + }, + "k8s.io/api/core/v1.FlockerVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents a Flocker volume mounted by the Flocker agent. One and only one of datasetName and datasetUUID should be set. Flocker volumes do not support ownership management or SELinux relabeling.", + Properties: map[string]spec.Schema{ + "datasetName": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the dataset stored as metadata -> name on the dataset for Flocker should be considered as deprecated", + Type: []string{"string"}, + Format: "", + }, + }, + "datasetUUID": { + SchemaProps: spec.SchemaProps{ + Description: "UUID of the dataset. This is unique identifier of a Flocker dataset", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.GCEPersistentDiskVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents a Persistent Disk resource in Google Compute Engine.\n\nA GCE PD must exist before mounting to a container. The disk must also be in the same GCE project and zone as the kubelet. A GCE PD can only be mounted as read/write once or read-only many times. GCE PDs support ownership management and SELinux relabeling.", + Properties: map[string]spec.Schema{ + "pdName": { + SchemaProps: spec.SchemaProps{ + Description: "Unique name of the PD resource in GCE. Used to identify the disk in GCE. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + Type: []string{"string"}, + Format: "", + }, + }, + "fsType": { + SchemaProps: spec.SchemaProps{ + Description: "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + Type: []string{"string"}, + Format: "", + }, + }, + "partition": { + SchemaProps: spec.SchemaProps{ + Description: "The partition in the volume that you want to mount. If omitted, the default is to mount by volume name. Examples: For volume /dev/sda1, you specify the partition as \"1\". Similarly, the volume partition for /dev/sda is \"0\" (or you can leave the property empty). More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"pdName"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.GitRepoVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents a volume that is populated with the contents of a git repository. Git repo volumes do not support ownership management. Git repo volumes support SELinux relabeling.", + Properties: map[string]spec.Schema{ + "repository": { + SchemaProps: spec.SchemaProps{ + Description: "Repository URL", + Type: []string{"string"}, + Format: "", + }, + }, + "revision": { + SchemaProps: spec.SchemaProps{ + Description: "Commit hash for the specified revision.", + Type: []string{"string"}, + Format: "", + }, + }, + "directory": { + SchemaProps: spec.SchemaProps{ + Description: "Target directory name. Must not contain or start with '..'. If '.' is supplied, the volume directory will be the git repository. Otherwise, if specified, the volume will contain the git repository in the subdirectory with the given name.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"repository"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.GlusterfsVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents a Glusterfs mount that lasts the lifetime of a pod. Glusterfs volumes do not support ownership management or SELinux relabeling.", + Properties: map[string]spec.Schema{ + "endpoints": { + SchemaProps: spec.SchemaProps{ + Description: "EndpointsName is the endpoint name that details Glusterfs topology. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod", + Type: []string{"string"}, + Format: "", + }, + }, + "path": { + SchemaProps: spec.SchemaProps{ + Description: "Path is the Glusterfs volume path. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod", + Type: []string{"string"}, + Format: "", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "ReadOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md#create-a-pod", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"endpoints", "path"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.HTTPGetAction": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "HTTPGetAction describes an action based on HTTP Get requests.", + Properties: map[string]spec.Schema{ + "path": { + SchemaProps: spec.SchemaProps{ + Description: "Path to access on the HTTP server.", + Type: []string{"string"}, + Format: "", + }, + }, + "port": { + SchemaProps: spec.SchemaProps{ + Description: "Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.", + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + "host": { + SchemaProps: spec.SchemaProps{ + Description: "Host name to connect to, defaults to the pod IP. You probably want to set \"Host\" in httpHeaders instead.", + Type: []string{"string"}, + Format: "", + }, + }, + "scheme": { + SchemaProps: spec.SchemaProps{ + Description: "Scheme to use for connecting to the host. Defaults to HTTP.", + Type: []string{"string"}, + Format: "", + }, + }, + "httpHeaders": { + SchemaProps: spec.SchemaProps{ + Description: "Custom headers to set in the request. HTTP allows repeated headers.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.HTTPHeader"), + }, + }, + }, + }, + }, + }, + Required: []string{"port"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.HTTPHeader", "k8s.io/apimachinery/pkg/util/intstr.IntOrString"}, + }, + "k8s.io/api/core/v1.HTTPHeader": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "HTTPHeader describes a custom header to be used in HTTP probes", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "The header field name", + Type: []string{"string"}, + Format: "", + }, + }, + "value": { + SchemaProps: spec.SchemaProps{ + Description: "The header field value", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"name", "value"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.Handler": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Handler defines a specific action that should be taken", + Properties: map[string]spec.Schema{ + "exec": { + SchemaProps: spec.SchemaProps{ + Description: "One and only one of the following should be specified. Exec specifies the action to take.", + Ref: ref("k8s.io/api/core/v1.ExecAction"), + }, + }, + "httpGet": { + SchemaProps: spec.SchemaProps{ + Description: "HTTPGet specifies the http request to perform.", + Ref: ref("k8s.io/api/core/v1.HTTPGetAction"), + }, + }, + "tcpSocket": { + SchemaProps: spec.SchemaProps{ + Description: "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported", + Ref: ref("k8s.io/api/core/v1.TCPSocketAction"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ExecAction", "k8s.io/api/core/v1.HTTPGetAction", "k8s.io/api/core/v1.TCPSocketAction"}, + }, + "k8s.io/api/core/v1.HostAlias": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "HostAlias holds the mapping between IP and hostnames that will be injected as an entry in the pod's hosts file.", + Properties: map[string]spec.Schema{ + "ip": { + SchemaProps: spec.SchemaProps{ + Description: "IP address of the host file entry.", + Type: []string{"string"}, + Format: "", + }, + }, + "hostnames": { + SchemaProps: spec.SchemaProps{ + Description: "Hostnames for the above IP address.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.HostPathVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents a host path mapped into a pod. Host path volumes do not support ownership management or SELinux relabeling.", + Properties: map[string]spec.Schema{ + "path": { + SchemaProps: spec.SchemaProps{ + Description: "Path of the directory on the host. If the path is a symlink, it will follow the link to the real path. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", + Type: []string{"string"}, + Format: "", + }, + }, + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type for HostPath Volume Defaults to \"\" More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"path"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.ISCSIVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents an ISCSI disk. ISCSI volumes can only be mounted as read/write once. ISCSI volumes support ownership management and SELinux relabeling.", + Properties: map[string]spec.Schema{ + "targetPortal": { + SchemaProps: spec.SchemaProps{ + Description: "iSCSI target portal. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", + Type: []string{"string"}, + Format: "", + }, + }, + "iqn": { + SchemaProps: spec.SchemaProps{ + Description: "Target iSCSI Qualified Name.", + Type: []string{"string"}, + Format: "", + }, + }, + "lun": { + SchemaProps: spec.SchemaProps{ + Description: "iSCSI target lun number.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "iscsiInterface": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: Defaults to 'default' (tcp). iSCSI interface name that uses an iSCSI transport.", + Type: []string{"string"}, + Format: "", + }, + }, + "fsType": { + SchemaProps: spec.SchemaProps{ + Description: "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#iscsi", + Type: []string{"string"}, + Format: "", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "portals": { + SchemaProps: spec.SchemaProps{ + Description: "iSCSI target portal List. The portal is either an IP or ip_addr:port if the port is other than default (typically TCP ports 860 and 3260).", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "chapAuthDiscovery": { + SchemaProps: spec.SchemaProps{ + Description: "whether support iSCSI Discovery CHAP authentication", + Type: []string{"boolean"}, + Format: "", + }, + }, + "chapAuthSession": { + SchemaProps: spec.SchemaProps{ + Description: "whether support iSCSI Session CHAP authentication", + Type: []string{"boolean"}, + Format: "", + }, + }, + "secretRef": { + SchemaProps: spec.SchemaProps{ + Description: "CHAP secret for iSCSI target and initiator authentication", + Ref: ref("k8s.io/api/core/v1.LocalObjectReference"), + }, + }, + "initiatorName": { + SchemaProps: spec.SchemaProps{ + Description: "Custom iSCSI initiator name. If initiatorName is specified with iscsiInterface simultaneously, new iSCSI interface : will be created for the connection.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"targetPortal", "iqn", "lun"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.LocalObjectReference"}, + }, + "k8s.io/api/core/v1.KeyToPath": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Maps a string key to a path within a volume.", + Properties: map[string]spec.Schema{ + "key": { + SchemaProps: spec.SchemaProps{ + Description: "The key to project.", + Type: []string{"string"}, + Format: "", + }, + }, + "path": { + SchemaProps: spec.SchemaProps{ + Description: "The relative path of the file to map the key to. May not be an absolute path. May not contain the path element '..'. May not start with the string '..'.", + Type: []string{"string"}, + Format: "", + }, + }, + "mode": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: mode bits to use on this file, must be a value between 0 and 0777. If not specified, the volume defaultMode will be used. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"key", "path"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.Lifecycle": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Lifecycle describes actions that the management system should take in response to container lifecycle events. For the PostStart and PreStop lifecycle handlers, management of the container blocks until the action is complete, unless the container process fails, in which case the handler is aborted.", + Properties: map[string]spec.Schema{ + "postStart": { + SchemaProps: spec.SchemaProps{ + Description: "PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks", + Ref: ref("k8s.io/api/core/v1.Handler"), + }, + }, + "preStop": { + SchemaProps: spec.SchemaProps{ + Description: "PreStop is called immediately before a container is terminated. The container is terminated after the handler completes. The reason for termination is passed to the handler. Regardless of the outcome of the handler, the container is eventually terminated. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks", + Ref: ref("k8s.io/api/core/v1.Handler"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.Handler"}, + }, + "k8s.io/api/core/v1.LimitRange": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "LimitRange sets resource usage limits for each kind of resource in a Namespace.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec defines the limits enforced. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/core/v1.LimitRangeSpec"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.LimitRangeSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.LimitRangeItem": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "LimitRangeItem defines a min/max usage limit for any resource that matches on kind.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of resource that this limit applies to.", + Type: []string{"string"}, + Format: "", + }, + }, + "max": { + SchemaProps: spec.SchemaProps{ + Description: "Max usage constraints on this kind by resource name.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + "min": { + SchemaProps: spec.SchemaProps{ + Description: "Min usage constraints on this kind by resource name.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + "default": { + SchemaProps: spec.SchemaProps{ + Description: "Default resource requirement limit value by resource name if resource limit is omitted.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + "defaultRequest": { + SchemaProps: spec.SchemaProps{ + Description: "DefaultRequest is the default resource requirement request value by resource name if resource request is omitted.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + "maxLimitRequestRatio": { + SchemaProps: spec.SchemaProps{ + Description: "MaxLimitRequestRatio if specified, the named resource must have a request and limit that are both non-zero where limit divided by request is less than or equal to the enumerated value; this represents the max burst for the named resource.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/core/v1.LimitRangeList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "LimitRangeList is a list of LimitRange items.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of LimitRange objects. More info: https://git.k8s.io/community/contributors/design-proposals/admission_control_limit_range.md", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.LimitRange"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.LimitRange", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/core/v1.LimitRangeSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "LimitRangeSpec defines a min/max usage limit for resources that match on kind.", + Properties: map[string]spec.Schema{ + "limits": { + SchemaProps: spec.SchemaProps{ + Description: "Limits is the list of LimitRangeItem objects that are enforced.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.LimitRangeItem"), + }, + }, + }, + }, + }, + }, + Required: []string{"limits"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.LimitRangeItem"}, + }, + "k8s.io/api/core/v1.List": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "List holds a list of objects, which may not be known by the server.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of objects", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/runtime.RawExtension"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta", "k8s.io/apimachinery/pkg/runtime.RawExtension"}, + }, + "k8s.io/api/core/v1.LoadBalancerIngress": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "LoadBalancerIngress represents the status of a load-balancer ingress point: traffic intended for the service should be sent to an ingress point.", + Properties: map[string]spec.Schema{ + "ip": { + SchemaProps: spec.SchemaProps{ + Description: "IP is set for load-balancer ingress points that are IP based (typically GCE or OpenStack load-balancers)", + Type: []string{"string"}, + Format: "", + }, + }, + "hostname": { + SchemaProps: spec.SchemaProps{ + Description: "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.LoadBalancerStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "LoadBalancerStatus represents the status of a load-balancer.", + Properties: map[string]spec.Schema{ + "ingress": { + SchemaProps: spec.SchemaProps{ + Description: "Ingress is a list containing ingress points for the load-balancer. Traffic intended for the service should be sent to these ingress points.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.LoadBalancerIngress"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.LoadBalancerIngress"}, + }, + "k8s.io/api/core/v1.LocalObjectReference": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "LocalObjectReference contains enough information to let you locate the referenced object inside the same namespace.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.LocalVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Local represents directly-attached storage with node affinity", + Properties: map[string]spec.Schema{ + "path": { + SchemaProps: spec.SchemaProps{ + Description: "The full path to the volume on the node For alpha, this path must be a directory Once block as a source is supported, then this path can point to a block device", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"path"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.NFSVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents an NFS mount that lasts the lifetime of a pod. NFS volumes do not support ownership management or SELinux relabeling.", + Properties: map[string]spec.Schema{ + "server": { + SchemaProps: spec.SchemaProps{ + Description: "Server is the hostname or IP address of the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + Type: []string{"string"}, + Format: "", + }, + }, + "path": { + SchemaProps: spec.SchemaProps{ + Description: "Path that is exported by the NFS server. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + Type: []string{"string"}, + Format: "", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "ReadOnly here will force the NFS export to be mounted with read-only permissions. Defaults to false. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"server", "path"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.Namespace": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Namespace provides a scope for Names. Use of multiple namespaces is optional.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec defines the behavior of the Namespace. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/core/v1.NamespaceSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status describes the current status of a Namespace. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/core/v1.NamespaceStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.NamespaceSpec", "k8s.io/api/core/v1.NamespaceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.NamespaceList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NamespaceList is a list of Namespaces.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is the list of Namespace objects in the list. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.Namespace"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.Namespace", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/core/v1.NamespaceSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NamespaceSpec describes the attributes on a Namespace.", + Properties: map[string]spec.Schema{ + "finalizers": { + SchemaProps: spec.SchemaProps{ + Description: "Finalizers is an opaque list of values that must be empty to permanently remove object from storage. More info: https://git.k8s.io/community/contributors/design-proposals/namespaces.md#finalizers", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.NamespaceStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NamespaceStatus is information about the current status of a Namespace.", + Properties: map[string]spec.Schema{ + "phase": { + SchemaProps: spec.SchemaProps{ + Description: "Phase is the current lifecycle phase of the namespace. More info: https://git.k8s.io/community/contributors/design-proposals/namespaces.md#phases", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.Node": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Node is a worker node in Kubernetes. Each node will have a unique identifier in the cache (i.e. in etcd).", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec defines the behavior of a node. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/core/v1.NodeSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Most recently observed status of the node. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/core/v1.NodeStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.NodeSpec", "k8s.io/api/core/v1.NodeStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.NodeAddress": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NodeAddress contains information for the node's address.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Node address type, one of Hostname, ExternalIP or InternalIP.", + Type: []string{"string"}, + Format: "", + }, + }, + "address": { + SchemaProps: spec.SchemaProps{ + Description: "The node address.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "address"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.NodeAffinity": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Node affinity is a group of node affinity scheduling rules.", + Properties: map[string]spec.Schema{ + "requiredDuringSchedulingIgnoredDuringExecution": { + SchemaProps: spec.SchemaProps{ + Description: "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to an update), the system may or may not try to eventually evict the pod from its node.", + Ref: ref("k8s.io/api/core/v1.NodeSelector"), + }, + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + SchemaProps: spec.SchemaProps{ + Description: "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node matches the corresponding matchExpressions; the node(s) with the highest sum are the most preferred.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.PreferredSchedulingTerm"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.NodeSelector", "k8s.io/api/core/v1.PreferredSchedulingTerm"}, + }, + "k8s.io/api/core/v1.NodeCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NodeCondition contains condition information for a node.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of node condition.", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status of the condition, one of True, False, Unknown.", + Type: []string{"string"}, + Format: "", + }, + }, + "lastHeartbeatTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time we got an update on a given condition.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time the condition transit from one status to another.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "(brief) reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "Human readable message indicating details about last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/core/v1.NodeConfigSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NodeConfigSource specifies a source of node configuration. Exactly one subfield (excluding metadata) must be non-nil.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "configMapRef": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.ObjectReference"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ObjectReference"}, + }, + "k8s.io/api/core/v1.NodeDaemonEndpoints": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NodeDaemonEndpoints lists ports opened by daemons running on the Node.", + Properties: map[string]spec.Schema{ + "kubeletEndpoint": { + SchemaProps: spec.SchemaProps{ + Description: "Endpoint on which Kubelet is listening.", + Ref: ref("k8s.io/api/core/v1.DaemonEndpoint"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.DaemonEndpoint"}, + }, + "k8s.io/api/core/v1.NodeList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NodeList is the whole list of all Nodes which have been registered with master.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of nodes", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.Node"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.Node", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/core/v1.NodeProxyOptions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NodeProxyOptions is the query options to a Node's proxy call.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "path": { + SchemaProps: spec.SchemaProps{ + Description: "Path is the URL path to use for the current proxy request to node.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.NodeResources": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NodeResources is an object for conveying resource information about a node. see http://releases.k8s.io/HEAD/docs/design/resources.md for more details.", + Properties: map[string]spec.Schema{ + "Capacity": { + SchemaProps: spec.SchemaProps{ + Description: "Capacity represents the available resources of a node", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + }, + Required: []string{"Capacity"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/core/v1.NodeSelector": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "A node selector represents the union of the results of one or more label queries over a set of nodes; that is, it represents the OR of the selectors represented by the node selector terms.", + Properties: map[string]spec.Schema{ + "nodeSelectorTerms": { + SchemaProps: spec.SchemaProps{ + Description: "Required. A list of node selector terms. The terms are ORed.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.NodeSelectorTerm"), + }, + }, + }, + }, + }, + }, + Required: []string{"nodeSelectorTerms"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.NodeSelectorTerm"}, + }, + "k8s.io/api/core/v1.NodeSelectorRequirement": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "A node selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", + Properties: map[string]spec.Schema{ + "key": { + SchemaProps: spec.SchemaProps{ + Description: "The label key that the selector applies to.", + Type: []string{"string"}, + Format: "", + }, + }, + "operator": { + SchemaProps: spec.SchemaProps{ + Description: "Represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. Gt, and Lt.", + Type: []string{"string"}, + Format: "", + }, + }, + "values": { + SchemaProps: spec.SchemaProps{ + Description: "An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. If the operator is Gt or Lt, the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"key", "operator"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.NodeSelectorTerm": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "A null or empty node selector term matches no objects.", + Properties: map[string]spec.Schema{ + "matchExpressions": { + SchemaProps: spec.SchemaProps{ + Description: "Required. A list of node selector requirements. The requirements are ANDed.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.NodeSelectorRequirement"), + }, + }, + }, + }, + }, + }, + Required: []string{"matchExpressions"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.NodeSelectorRequirement"}, + }, + "k8s.io/api/core/v1.NodeSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NodeSpec describes the attributes that a node is created with.", + Properties: map[string]spec.Schema{ + "podCIDR": { + SchemaProps: spec.SchemaProps{ + Description: "PodCIDR represents the pod IP range assigned to the node.", + Type: []string{"string"}, + Format: "", + }, + }, + "externalID": { + SchemaProps: spec.SchemaProps{ + Description: "External ID of the node assigned by some machine database (e.g. a cloud provider). Deprecated.", + Type: []string{"string"}, + Format: "", + }, + }, + "providerID": { + SchemaProps: spec.SchemaProps{ + Description: "ID of the node assigned by the cloud provider in the format: ://", + Type: []string{"string"}, + Format: "", + }, + }, + "unschedulable": { + SchemaProps: spec.SchemaProps{ + Description: "Unschedulable controls node schedulability of new pods. By default, node is schedulable. More info: https://kubernetes.io/docs/concepts/nodes/node/#manual-node-administration", + Type: []string{"boolean"}, + Format: "", + }, + }, + "taints": { + SchemaProps: spec.SchemaProps{ + Description: "If specified, the node's taints.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.Taint"), + }, + }, + }, + }, + }, + "configSource": { + SchemaProps: spec.SchemaProps{ + Description: "If specified, the source to get node configuration from The DynamicKubeletConfig feature gate must be enabled for the Kubelet to use this field", + Ref: ref("k8s.io/api/core/v1.NodeConfigSource"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.NodeConfigSource", "k8s.io/api/core/v1.Taint"}, + }, + "k8s.io/api/core/v1.NodeStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NodeStatus is information about the current status of a node.", + Properties: map[string]spec.Schema{ + "capacity": { + SchemaProps: spec.SchemaProps{ + Description: "Capacity represents the total resources of a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + "allocatable": { + SchemaProps: spec.SchemaProps{ + Description: "Allocatable represents the resources of a node that are available for scheduling. Defaults to Capacity.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + "phase": { + SchemaProps: spec.SchemaProps{ + Description: "NodePhase is the recently observed lifecycle phase of the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#phase The field is never populated, and now is deprecated.", + Type: []string{"string"}, + Format: "", + }, + }, + "conditions": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "Conditions is an array of current observed node conditions. More info: https://kubernetes.io/docs/concepts/nodes/node/#condition", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.NodeCondition"), + }, + }, + }, + }, + }, + "addresses": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "List of addresses reachable to the node. Queried from cloud provider, if available. More info: https://kubernetes.io/docs/concepts/nodes/node/#addresses", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.NodeAddress"), + }, + }, + }, + }, + }, + "daemonEndpoints": { + SchemaProps: spec.SchemaProps{ + Description: "Endpoints of daemons running on the Node.", + Ref: ref("k8s.io/api/core/v1.NodeDaemonEndpoints"), + }, + }, + "nodeInfo": { + SchemaProps: spec.SchemaProps{ + Description: "Set of ids/uuids to uniquely identify the node. More info: https://kubernetes.io/docs/concepts/nodes/node/#info", + Ref: ref("k8s.io/api/core/v1.NodeSystemInfo"), + }, + }, + "images": { + SchemaProps: spec.SchemaProps{ + Description: "List of container images on this node", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.ContainerImage"), + }, + }, + }, + }, + }, + "volumesInUse": { + SchemaProps: spec.SchemaProps{ + Description: "List of attachable volumes in use (mounted) by the node.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "volumesAttached": { + SchemaProps: spec.SchemaProps{ + Description: "List of volumes that are attached to the node.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.AttachedVolume"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.AttachedVolume", "k8s.io/api/core/v1.ContainerImage", "k8s.io/api/core/v1.NodeAddress", "k8s.io/api/core/v1.NodeCondition", "k8s.io/api/core/v1.NodeDaemonEndpoints", "k8s.io/api/core/v1.NodeSystemInfo", "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/core/v1.NodeSystemInfo": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NodeSystemInfo is a set of ids/uuids to uniquely identify the node.", + Properties: map[string]spec.Schema{ + "machineID": { + SchemaProps: spec.SchemaProps{ + Description: "MachineID reported by the node. For unique machine identification in the cluster this field is preferred. Learn more from man(5) machine-id: http://man7.org/linux/man-pages/man5/machine-id.5.html", + Type: []string{"string"}, + Format: "", + }, + }, + "systemUUID": { + SchemaProps: spec.SchemaProps{ + Description: "SystemUUID reported by the node. For unique machine identification MachineID is preferred. This field is specific to Red Hat hosts https://access.redhat.com/documentation/en-US/Red_Hat_Subscription_Management/1/html/RHSM/getting-system-uuid.html", + Type: []string{"string"}, + Format: "", + }, + }, + "bootID": { + SchemaProps: spec.SchemaProps{ + Description: "Boot ID reported by the node.", + Type: []string{"string"}, + Format: "", + }, + }, + "kernelVersion": { + SchemaProps: spec.SchemaProps{ + Description: "Kernel Version reported by the node from 'uname -r' (e.g. 3.16.0-0.bpo.4-amd64).", + Type: []string{"string"}, + Format: "", + }, + }, + "osImage": { + SchemaProps: spec.SchemaProps{ + Description: "OS Image reported by the node from /etc/os-release (e.g. Debian GNU/Linux 7 (wheezy)).", + Type: []string{"string"}, + Format: "", + }, + }, + "containerRuntimeVersion": { + SchemaProps: spec.SchemaProps{ + Description: "ContainerRuntime Version reported by the node through runtime remote API (e.g. docker://1.5.0).", + Type: []string{"string"}, + Format: "", + }, + }, + "kubeletVersion": { + SchemaProps: spec.SchemaProps{ + Description: "Kubelet Version reported by the node.", + Type: []string{"string"}, + Format: "", + }, + }, + "kubeProxyVersion": { + SchemaProps: spec.SchemaProps{ + Description: "KubeProxy Version reported by the node.", + Type: []string{"string"}, + Format: "", + }, + }, + "operatingSystem": { + SchemaProps: spec.SchemaProps{ + Description: "The Operating System reported by the node", + Type: []string{"string"}, + Format: "", + }, + }, + "architecture": { + SchemaProps: spec.SchemaProps{ + Description: "The Architecture reported by the node", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"machineID", "systemUUID", "bootID", "kernelVersion", "osImage", "containerRuntimeVersion", "kubeletVersion", "kubeProxyVersion", "operatingSystem", "architecture"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.ObjectFieldSelector": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ObjectFieldSelector selects an APIVersioned field of an object.", + Properties: map[string]spec.Schema{ + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "Version of the schema the FieldPath is written in terms of, defaults to \"v1\".", + Type: []string{"string"}, + Format: "", + }, + }, + "fieldPath": { + SchemaProps: spec.SchemaProps{ + Description: "Path of the field to select in the specified API version.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"fieldPath"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.ObjectReference": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ObjectReference contains enough information to let you inspect or modify the referred object.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "namespace": { + SchemaProps: spec.SchemaProps{ + Description: "Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + Type: []string{"string"}, + Format: "", + }, + }, + "uid": { + SchemaProps: spec.SchemaProps{ + Description: "UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "API version of the referent.", + Type: []string{"string"}, + Format: "", + }, + }, + "resourceVersion": { + SchemaProps: spec.SchemaProps{ + Description: "Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency", + Type: []string{"string"}, + Format: "", + }, + }, + "fieldPath": { + SchemaProps: spec.SchemaProps{ + Description: "If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: \"spec.containers{name}\" (where \"name\" refers to the name of the container that triggered the event) or if no container name is specified \"spec.containers[2]\" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.PersistentVolume": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PersistentVolume (PV) is a storage resource provisioned by an administrator. It is analogous to a node. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec defines a specification of a persistent volume owned by the cluster. Provisioned by an administrator. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes", + Ref: ref("k8s.io/api/core/v1.PersistentVolumeSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status represents the current information/status for the persistent volume. Populated by the system. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistent-volumes", + Ref: ref("k8s.io/api/core/v1.PersistentVolumeStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PersistentVolumeSpec", "k8s.io/api/core/v1.PersistentVolumeStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.PersistentVolumeClaim": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PersistentVolumeClaim is a user's request for and claim to a persistent volume", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec defines the desired characteristics of a volume requested by a pod author. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", + Ref: ref("k8s.io/api/core/v1.PersistentVolumeClaimSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status represents the current information/status of a persistent volume claim. Read-only. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", + Ref: ref("k8s.io/api/core/v1.PersistentVolumeClaimStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PersistentVolumeClaimSpec", "k8s.io/api/core/v1.PersistentVolumeClaimStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.PersistentVolumeClaimCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PersistentVolumeClaimCondition contails details about state of pvc", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "lastProbeTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time we probed the condition.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time the condition transitioned from one status to another.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "Unique, this should be a short, machine understandable string that gives the reason for condition's last transition. If it reports \"ResizeStarted\" that means the underlying persistent volume is being resized.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "Human-readable message indicating details about last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/core/v1.PersistentVolumeClaimList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PersistentVolumeClaimList is a list of PersistentVolumeClaim items.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "A list of persistent volume claims. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.PersistentVolumeClaim"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PersistentVolumeClaim", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/core/v1.PersistentVolumeClaimSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PersistentVolumeClaimSpec describes the common attributes of storage devices and allows a Source for provider-specific attributes", + Properties: map[string]spec.Schema{ + "accessModes": { + SchemaProps: spec.SchemaProps{ + Description: "AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "A label query over volumes to consider for binding.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "resources": { + SchemaProps: spec.SchemaProps{ + Description: "Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources", + Ref: ref("k8s.io/api/core/v1.ResourceRequirements"), + }, + }, + "volumeName": { + SchemaProps: spec.SchemaProps{ + Description: "VolumeName is the binding reference to the PersistentVolume backing this claim.", + Type: []string{"string"}, + Format: "", + }, + }, + "storageClassName": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ResourceRequirements", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + }, + "k8s.io/api/core/v1.PersistentVolumeClaimStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PersistentVolumeClaimStatus is the current status of a persistent volume claim.", + Properties: map[string]spec.Schema{ + "phase": { + SchemaProps: spec.SchemaProps{ + Description: "Phase represents the current phase of PersistentVolumeClaim.", + Type: []string{"string"}, + Format: "", + }, + }, + "accessModes": { + SchemaProps: spec.SchemaProps{ + Description: "AccessModes contains the actual access modes the volume backing the PVC has. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "capacity": { + SchemaProps: spec.SchemaProps{ + Description: "Represents the actual resources of the underlying volume.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + "conditions": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "Current Condition of persistent volume claim. If underlying persistent volume is being resized then the Condition will be set to 'ResizeStarted'.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.PersistentVolumeClaimCondition"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PersistentVolumeClaimCondition", "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/core/v1.PersistentVolumeClaimVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PersistentVolumeClaimVolumeSource references the user's PVC in the same namespace. This volume finds the bound PV and mounts that volume for the pod. A PersistentVolumeClaimVolumeSource is, essentially, a wrapper around another type of volume that is owned by someone else (the system).", + Properties: map[string]spec.Schema{ + "claimName": { + SchemaProps: spec.SchemaProps{ + Description: "ClaimName is the name of a PersistentVolumeClaim in the same namespace as the pod using this volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", + Type: []string{"string"}, + Format: "", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "Will force the ReadOnly setting in VolumeMounts. Default false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"claimName"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.PersistentVolumeList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PersistentVolumeList is a list of PersistentVolume items.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of persistent volumes. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.PersistentVolume"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PersistentVolume", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/core/v1.PersistentVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PersistentVolumeSource is similar to VolumeSource but meant for the administrator who creates PVs. Exactly one of its members must be set.", + Properties: map[string]spec.Schema{ + "gcePersistentDisk": { + SchemaProps: spec.SchemaProps{ + Description: "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + Ref: ref("k8s.io/api/core/v1.GCEPersistentDiskVolumeSource"), + }, + }, + "awsElasticBlockStore": { + SchemaProps: spec.SchemaProps{ + Description: "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + Ref: ref("k8s.io/api/core/v1.AWSElasticBlockStoreVolumeSource"), + }, + }, + "hostPath": { + SchemaProps: spec.SchemaProps{ + Description: "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", + Ref: ref("k8s.io/api/core/v1.HostPathVolumeSource"), + }, + }, + "glusterfs": { + SchemaProps: spec.SchemaProps{ + Description: "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md", + Ref: ref("k8s.io/api/core/v1.GlusterfsVolumeSource"), + }, + }, + "nfs": { + SchemaProps: spec.SchemaProps{ + Description: "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + Ref: ref("k8s.io/api/core/v1.NFSVolumeSource"), + }, + }, + "rbd": { + SchemaProps: spec.SchemaProps{ + Description: "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md", + Ref: ref("k8s.io/api/core/v1.RBDVolumeSource"), + }, + }, + "iscsi": { + SchemaProps: spec.SchemaProps{ + Description: "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin.", + Ref: ref("k8s.io/api/core/v1.ISCSIVolumeSource"), + }, + }, + "cinder": { + SchemaProps: spec.SchemaProps{ + Description: "Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md", + Ref: ref("k8s.io/api/core/v1.CinderVolumeSource"), + }, + }, + "cephfs": { + SchemaProps: spec.SchemaProps{ + Description: "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime", + Ref: ref("k8s.io/api/core/v1.CephFSPersistentVolumeSource"), + }, + }, + "fc": { + SchemaProps: spec.SchemaProps{ + Description: "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.", + Ref: ref("k8s.io/api/core/v1.FCVolumeSource"), + }, + }, + "flocker": { + SchemaProps: spec.SchemaProps{ + Description: "Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running", + Ref: ref("k8s.io/api/core/v1.FlockerVolumeSource"), + }, + }, + "flexVolume": { + SchemaProps: spec.SchemaProps{ + Description: "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. This is an alpha feature and may change in future.", + Ref: ref("k8s.io/api/core/v1.FlexVolumeSource"), + }, + }, + "azureFile": { + SchemaProps: spec.SchemaProps{ + Description: "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", + Ref: ref("k8s.io/api/core/v1.AzureFilePersistentVolumeSource"), + }, + }, + "vsphereVolume": { + SchemaProps: spec.SchemaProps{ + Description: "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine", + Ref: ref("k8s.io/api/core/v1.VsphereVirtualDiskVolumeSource"), + }, + }, + "quobyte": { + SchemaProps: spec.SchemaProps{ + Description: "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime", + Ref: ref("k8s.io/api/core/v1.QuobyteVolumeSource"), + }, + }, + "azureDisk": { + SchemaProps: spec.SchemaProps{ + Description: "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", + Ref: ref("k8s.io/api/core/v1.AzureDiskVolumeSource"), + }, + }, + "photonPersistentDisk": { + SchemaProps: spec.SchemaProps{ + Description: "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine", + Ref: ref("k8s.io/api/core/v1.PhotonPersistentDiskVolumeSource"), + }, + }, + "portworxVolume": { + SchemaProps: spec.SchemaProps{ + Description: "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine", + Ref: ref("k8s.io/api/core/v1.PortworxVolumeSource"), + }, + }, + "scaleIO": { + SchemaProps: spec.SchemaProps{ + Description: "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.", + Ref: ref("k8s.io/api/core/v1.ScaleIOPersistentVolumeSource"), + }, + }, + "local": { + SchemaProps: spec.SchemaProps{ + Description: "Local represents directly-attached storage with node affinity", + Ref: ref("k8s.io/api/core/v1.LocalVolumeSource"), + }, + }, + "storageos": { + SchemaProps: spec.SchemaProps{ + Description: "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://releases.k8s.io/HEAD/examples/volumes/storageos/README.md", + Ref: ref("k8s.io/api/core/v1.StorageOSPersistentVolumeSource"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.AWSElasticBlockStoreVolumeSource", "k8s.io/api/core/v1.AzureDiskVolumeSource", "k8s.io/api/core/v1.AzureFilePersistentVolumeSource", "k8s.io/api/core/v1.CephFSPersistentVolumeSource", "k8s.io/api/core/v1.CinderVolumeSource", "k8s.io/api/core/v1.FCVolumeSource", "k8s.io/api/core/v1.FlexVolumeSource", "k8s.io/api/core/v1.FlockerVolumeSource", "k8s.io/api/core/v1.GCEPersistentDiskVolumeSource", "k8s.io/api/core/v1.GlusterfsVolumeSource", "k8s.io/api/core/v1.HostPathVolumeSource", "k8s.io/api/core/v1.ISCSIVolumeSource", "k8s.io/api/core/v1.LocalVolumeSource", "k8s.io/api/core/v1.NFSVolumeSource", "k8s.io/api/core/v1.PhotonPersistentDiskVolumeSource", "k8s.io/api/core/v1.PortworxVolumeSource", "k8s.io/api/core/v1.QuobyteVolumeSource", "k8s.io/api/core/v1.RBDVolumeSource", "k8s.io/api/core/v1.ScaleIOPersistentVolumeSource", "k8s.io/api/core/v1.StorageOSPersistentVolumeSource", "k8s.io/api/core/v1.VsphereVirtualDiskVolumeSource"}, + }, + "k8s.io/api/core/v1.PersistentVolumeSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PersistentVolumeSpec is the specification of a persistent volume.", + Properties: map[string]spec.Schema{ + "capacity": { + SchemaProps: spec.SchemaProps{ + Description: "A description of the persistent volume's resources and capacity. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#capacity", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + "gcePersistentDisk": { + SchemaProps: spec.SchemaProps{ + Description: "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + Ref: ref("k8s.io/api/core/v1.GCEPersistentDiskVolumeSource"), + }, + }, + "awsElasticBlockStore": { + SchemaProps: spec.SchemaProps{ + Description: "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + Ref: ref("k8s.io/api/core/v1.AWSElasticBlockStoreVolumeSource"), + }, + }, + "hostPath": { + SchemaProps: spec.SchemaProps{ + Description: "HostPath represents a directory on the host. Provisioned by a developer or tester. This is useful for single-node development and testing only! On-host storage is not supported in any way and WILL NOT WORK in a multi-node cluster. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", + Ref: ref("k8s.io/api/core/v1.HostPathVolumeSource"), + }, + }, + "glusterfs": { + SchemaProps: spec.SchemaProps{ + Description: "Glusterfs represents a Glusterfs volume that is attached to a host and exposed to the pod. Provisioned by an admin. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md", + Ref: ref("k8s.io/api/core/v1.GlusterfsVolumeSource"), + }, + }, + "nfs": { + SchemaProps: spec.SchemaProps{ + Description: "NFS represents an NFS mount on the host. Provisioned by an admin. More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + Ref: ref("k8s.io/api/core/v1.NFSVolumeSource"), + }, + }, + "rbd": { + SchemaProps: spec.SchemaProps{ + Description: "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md", + Ref: ref("k8s.io/api/core/v1.RBDVolumeSource"), + }, + }, + "iscsi": { + SchemaProps: spec.SchemaProps{ + Description: "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. Provisioned by an admin.", + Ref: ref("k8s.io/api/core/v1.ISCSIVolumeSource"), + }, + }, + "cinder": { + SchemaProps: spec.SchemaProps{ + Description: "Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md", + Ref: ref("k8s.io/api/core/v1.CinderVolumeSource"), + }, + }, + "cephfs": { + SchemaProps: spec.SchemaProps{ + Description: "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime", + Ref: ref("k8s.io/api/core/v1.CephFSPersistentVolumeSource"), + }, + }, + "fc": { + SchemaProps: spec.SchemaProps{ + Description: "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.", + Ref: ref("k8s.io/api/core/v1.FCVolumeSource"), + }, + }, + "flocker": { + SchemaProps: spec.SchemaProps{ + Description: "Flocker represents a Flocker volume attached to a kubelet's host machine and exposed to the pod for its usage. This depends on the Flocker control service being running", + Ref: ref("k8s.io/api/core/v1.FlockerVolumeSource"), + }, + }, + "flexVolume": { + SchemaProps: spec.SchemaProps{ + Description: "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. This is an alpha feature and may change in future.", + Ref: ref("k8s.io/api/core/v1.FlexVolumeSource"), + }, + }, + "azureFile": { + SchemaProps: spec.SchemaProps{ + Description: "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", + Ref: ref("k8s.io/api/core/v1.AzureFilePersistentVolumeSource"), + }, + }, + "vsphereVolume": { + SchemaProps: spec.SchemaProps{ + Description: "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine", + Ref: ref("k8s.io/api/core/v1.VsphereVirtualDiskVolumeSource"), + }, + }, + "quobyte": { + SchemaProps: spec.SchemaProps{ + Description: "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime", + Ref: ref("k8s.io/api/core/v1.QuobyteVolumeSource"), + }, + }, + "azureDisk": { + SchemaProps: spec.SchemaProps{ + Description: "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", + Ref: ref("k8s.io/api/core/v1.AzureDiskVolumeSource"), + }, + }, + "photonPersistentDisk": { + SchemaProps: spec.SchemaProps{ + Description: "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine", + Ref: ref("k8s.io/api/core/v1.PhotonPersistentDiskVolumeSource"), + }, + }, + "portworxVolume": { + SchemaProps: spec.SchemaProps{ + Description: "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine", + Ref: ref("k8s.io/api/core/v1.PortworxVolumeSource"), + }, + }, + "scaleIO": { + SchemaProps: spec.SchemaProps{ + Description: "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.", + Ref: ref("k8s.io/api/core/v1.ScaleIOPersistentVolumeSource"), + }, + }, + "local": { + SchemaProps: spec.SchemaProps{ + Description: "Local represents directly-attached storage with node affinity", + Ref: ref("k8s.io/api/core/v1.LocalVolumeSource"), + }, + }, + "storageos": { + SchemaProps: spec.SchemaProps{ + Description: "StorageOS represents a StorageOS volume that is attached to the kubelet's host machine and mounted into the pod More info: https://releases.k8s.io/HEAD/examples/volumes/storageos/README.md", + Ref: ref("k8s.io/api/core/v1.StorageOSPersistentVolumeSource"), + }, + }, + "accessModes": { + SchemaProps: spec.SchemaProps{ + Description: "AccessModes contains all ways the volume can be mounted. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "claimRef": { + SchemaProps: spec.SchemaProps{ + Description: "ClaimRef is part of a bi-directional binding between PersistentVolume and PersistentVolumeClaim. Expected to be non-nil when bound. claim.VolumeName is the authoritative bind between PV and PVC. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#binding", + Ref: ref("k8s.io/api/core/v1.ObjectReference"), + }, + }, + "persistentVolumeReclaimPolicy": { + SchemaProps: spec.SchemaProps{ + Description: "What happens to a persistent volume when released from its claim. Valid options are Retain (default) and Recycle. Recycling must be supported by the volume plugin underlying this persistent volume. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#reclaiming", + Type: []string{"string"}, + Format: "", + }, + }, + "storageClassName": { + SchemaProps: spec.SchemaProps{ + Description: "Name of StorageClass to which this persistent volume belongs. Empty value means that this volume does not belong to any StorageClass.", + Type: []string{"string"}, + Format: "", + }, + }, + "mountOptions": { + SchemaProps: spec.SchemaProps{ + Description: "A list of mount options, e.g. [\"ro\", \"soft\"]. Not validated - mount will simply fail if one is invalid. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes/#mount-options", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.AWSElasticBlockStoreVolumeSource", "k8s.io/api/core/v1.AzureDiskVolumeSource", "k8s.io/api/core/v1.AzureFilePersistentVolumeSource", "k8s.io/api/core/v1.CephFSPersistentVolumeSource", "k8s.io/api/core/v1.CinderVolumeSource", "k8s.io/api/core/v1.FCVolumeSource", "k8s.io/api/core/v1.FlexVolumeSource", "k8s.io/api/core/v1.FlockerVolumeSource", "k8s.io/api/core/v1.GCEPersistentDiskVolumeSource", "k8s.io/api/core/v1.GlusterfsVolumeSource", "k8s.io/api/core/v1.HostPathVolumeSource", "k8s.io/api/core/v1.ISCSIVolumeSource", "k8s.io/api/core/v1.LocalVolumeSource", "k8s.io/api/core/v1.NFSVolumeSource", "k8s.io/api/core/v1.ObjectReference", "k8s.io/api/core/v1.PhotonPersistentDiskVolumeSource", "k8s.io/api/core/v1.PortworxVolumeSource", "k8s.io/api/core/v1.QuobyteVolumeSource", "k8s.io/api/core/v1.RBDVolumeSource", "k8s.io/api/core/v1.ScaleIOPersistentVolumeSource", "k8s.io/api/core/v1.StorageOSPersistentVolumeSource", "k8s.io/api/core/v1.VsphereVirtualDiskVolumeSource", "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/core/v1.PersistentVolumeStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PersistentVolumeStatus is the current status of a persistent volume.", + Properties: map[string]spec.Schema{ + "phase": { + SchemaProps: spec.SchemaProps{ + Description: "Phase indicates if a volume is available, bound to a claim, or released by a claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#phase", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "A human-readable message indicating details about why the volume is in this state.", + Type: []string{"string"}, + Format: "", + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "Reason is a brief CamelCase string that describes any failure and is meant for machine parsing and tidy display in the CLI.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.PhotonPersistentDiskVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents a Photon Controller persistent disk resource.", + Properties: map[string]spec.Schema{ + "pdID": { + SchemaProps: spec.SchemaProps{ + Description: "ID that identifies Photon Controller persistent disk", + Type: []string{"string"}, + Format: "", + }, + }, + "fsType": { + SchemaProps: spec.SchemaProps{ + Description: "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"pdID"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.Pod": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Pod is a collection of containers that can run on a host. This resource is created by clients and scheduled onto hosts.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/core/v1.PodSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Most recently observed status of the pod. This data may not be up to date. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/core/v1.PodStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PodSpec", "k8s.io/api/core/v1.PodStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.PodAffinity": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Pod affinity is a group of inter pod affinity scheduling rules.", + Properties: map[string]spec.Schema{ + "requiredDuringSchedulingIgnoredDuringExecution": { + SchemaProps: spec.SchemaProps{ + Description: "If the affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.PodAffinityTerm"), + }, + }, + }, + }, + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + SchemaProps: spec.SchemaProps{ + Description: "The scheduler will prefer to schedule pods to nodes that satisfy the affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.WeightedPodAffinityTerm"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PodAffinityTerm", "k8s.io/api/core/v1.WeightedPodAffinityTerm"}, + }, + "k8s.io/api/core/v1.PodAffinityTerm": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Defines a set of pods (namely those matching the labelSelector relative to the given namespace(s)) that this pod should be co-located (affinity) or not co-located (anti-affinity) with, where co-located is defined as running on a node whose value of the label with key tches that of any node on which a pod of the set of pods is running", + Properties: map[string]spec.Schema{ + "labelSelector": { + SchemaProps: spec.SchemaProps{ + Description: "A label query over a set of resources, in this case pods.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "namespaces": { + SchemaProps: spec.SchemaProps{ + Description: "namespaces specifies which namespaces the labelSelector applies to (matches against); null or empty list means \"this pod's namespace\"", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "topologyKey": { + SchemaProps: spec.SchemaProps{ + Description: "This pod should be co-located (affinity) or not co-located (anti-affinity) with the pods matching the labelSelector in the specified namespaces, where co-located is defined as running on a node whose value of the label with key topologyKey matches that of any node on which any of the selected pods is running. For PreferredDuringScheduling pod anti-affinity, empty topologyKey is interpreted as \"all topologies\" (\"all topologies\" here means all the topologyKeys indicated by scheduler command-line argument --failure-domains); for affinity and for RequiredDuringScheduling pod anti-affinity, empty topologyKey is not allowed.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + }, + "k8s.io/api/core/v1.PodAntiAffinity": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Pod anti affinity is a group of inter pod anti affinity scheduling rules.", + Properties: map[string]spec.Schema{ + "requiredDuringSchedulingIgnoredDuringExecution": { + SchemaProps: spec.SchemaProps{ + Description: "If the anti-affinity requirements specified by this field are not met at scheduling time, the pod will not be scheduled onto the node. If the anti-affinity requirements specified by this field cease to be met at some point during pod execution (e.g. due to a pod label update), the system may or may not try to eventually evict the pod from its node. When there are multiple elements, the lists of nodes corresponding to each podAffinityTerm are intersected, i.e. all terms must be satisfied.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.PodAffinityTerm"), + }, + }, + }, + }, + }, + "preferredDuringSchedulingIgnoredDuringExecution": { + SchemaProps: spec.SchemaProps{ + Description: "The scheduler will prefer to schedule pods to nodes that satisfy the anti-affinity expressions specified by this field, but it may choose a node that violates one or more of the expressions. The node that is most preferred is the one with the greatest sum of weights, i.e. for each node that meets all of the scheduling requirements (resource request, requiredDuringScheduling anti-affinity expressions, etc.), compute a sum by iterating through the elements of this field and adding \"weight\" to the sum if the node has pods which matches the corresponding podAffinityTerm; the node(s) with the highest sum are the most preferred.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.WeightedPodAffinityTerm"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PodAffinityTerm", "k8s.io/api/core/v1.WeightedPodAffinityTerm"}, + }, + "k8s.io/api/core/v1.PodAttachOptions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodAttachOptions is the query options to a Pod's remote attach call.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "stdin": { + SchemaProps: spec.SchemaProps{ + Description: "Stdin if true, redirects the standard input stream of the pod for this call. Defaults to false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "stdout": { + SchemaProps: spec.SchemaProps{ + Description: "Stdout if true indicates that stdout is to be redirected for the attach call. Defaults to true.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "stderr": { + SchemaProps: spec.SchemaProps{ + Description: "Stderr if true indicates that stderr is to be redirected for the attach call. Defaults to true.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "tty": { + SchemaProps: spec.SchemaProps{ + Description: "TTY if true indicates that a tty will be allocated for the attach call. This is passed through the container runtime so the tty is allocated on the worker node by the container runtime. Defaults to false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "container": { + SchemaProps: spec.SchemaProps{ + Description: "The container in which to execute the command. Defaults to only container if there is only one container in the pod.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.PodCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodCondition contains details for the current condition of this pod.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type is the type of the condition. Currently only Ready. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is the status of the condition. Can be True, False, Unknown. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", + Type: []string{"string"}, + Format: "", + }, + }, + "lastProbeTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time we probed the condition.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time the condition transitioned from one status to another.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "Unique, one-word, CamelCase reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "Human-readable message indicating details about last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/core/v1.PodExecOptions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodExecOptions is the query options to a Pod's remote exec call.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "stdin": { + SchemaProps: spec.SchemaProps{ + Description: "Redirect the standard input stream of the pod for this call. Defaults to false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "stdout": { + SchemaProps: spec.SchemaProps{ + Description: "Redirect the standard output stream of the pod for this call. Defaults to true.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "stderr": { + SchemaProps: spec.SchemaProps{ + Description: "Redirect the standard error stream of the pod for this call. Defaults to true.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "tty": { + SchemaProps: spec.SchemaProps{ + Description: "TTY if true indicates that a tty will be allocated for the exec call. Defaults to false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "container": { + SchemaProps: spec.SchemaProps{ + Description: "Container in which to execute the command. Defaults to only container if there is only one container in the pod.", + Type: []string{"string"}, + Format: "", + }, + }, + "command": { + SchemaProps: spec.SchemaProps{ + Description: "Command is the remote command to execute. argv array. Not executed within a shell.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"command"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.PodList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodList is a list of Pods.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of pods. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.Pod"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.Pod", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/core/v1.PodLogOptions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodLogOptions is the query options for a Pod's logs REST call.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "container": { + SchemaProps: spec.SchemaProps{ + Description: "The container for which to stream logs. Defaults to only container if there is one container in the pod.", + Type: []string{"string"}, + Format: "", + }, + }, + "follow": { + SchemaProps: spec.SchemaProps{ + Description: "Follow the log stream of the pod. Defaults to false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "previous": { + SchemaProps: spec.SchemaProps{ + Description: "Return previous terminated container logs. Defaults to false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "sinceSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "A relative time in seconds before the current time from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "sinceTime": { + SchemaProps: spec.SchemaProps{ + Description: "An RFC3339 timestamp from which to show logs. If this value precedes the time a pod was started, only logs since the pod start will be returned. If this value is in the future, no logs will be returned. Only one of sinceSeconds or sinceTime may be specified.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "timestamps": { + SchemaProps: spec.SchemaProps{ + Description: "If true, add an RFC3339 or RFC3339Nano timestamp at the beginning of every line of log output. Defaults to false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "tailLines": { + SchemaProps: spec.SchemaProps{ + Description: "If set, the number of lines from the end of the logs to show. If not specified, logs are shown from the creation of the container or sinceSeconds or sinceTime", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "limitBytes": { + SchemaProps: spec.SchemaProps{ + Description: "If set, the number of bytes to read from the server before terminating the log output. This may not display a complete final line of logging, and may return slightly more or slightly less than the specified limit.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/core/v1.PodPortForwardOptions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodPortForwardOptions is the query options to a Pod's port forward call when using WebSockets. The `port` query parameter must specify the port or ports (comma separated) to forward over. Port forwarding over SPDY does not use these options. It requires the port to be passed in the `port` header as part of request.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "ports": { + SchemaProps: spec.SchemaProps{ + Description: "List of ports to forward Required when using WebSockets", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.PodProxyOptions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodProxyOptions is the query options to a Pod's proxy call.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "path": { + SchemaProps: spec.SchemaProps{ + Description: "Path is the URL path to use for the current proxy request to pod.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.PodSecurityContext": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodSecurityContext holds pod-level security attributes and common container settings. Some fields are also present in container.securityContext. Field values of container.securityContext take precedence over field values of PodSecurityContext.", + Properties: map[string]spec.Schema{ + "seLinuxOptions": { + SchemaProps: spec.SchemaProps{ + Description: "The SELinux context to be applied to all containers. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", + Ref: ref("k8s.io/api/core/v1.SELinuxOptions"), + }, + }, + "runAsUser": { + SchemaProps: spec.SchemaProps{ + Description: "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence for that container.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "runAsNonRoot": { + SchemaProps: spec.SchemaProps{ + Description: "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in SecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "supplementalGroups": { + SchemaProps: spec.SchemaProps{ + Description: "A list of groups applied to the first process run in each container, in addition to the container's primary GID. If unspecified, no groups will be added to any container.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"integer"}, + Format: "int64", + }, + }, + }, + }, + }, + "fsGroup": { + SchemaProps: spec.SchemaProps{ + Description: "A special supplemental group that applies to all containers in a pod. Some volume types allow the Kubelet to change the ownership of that volume to be owned by the pod:\n\n1. The owning GID will be the FSGroup 2. The setgid bit is set (new files created in the volume will be owned by FSGroup) 3. The permission bits are OR'd with rw-rw----\n\nIf unset, the Kubelet will not modify the ownership and permissions of any volume.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.SELinuxOptions"}, + }, + "k8s.io/api/core/v1.PodSignature": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Describes the class of pods that should avoid this node. Exactly one field should be set.", + Properties: map[string]spec.Schema{ + "podController": { + SchemaProps: spec.SchemaProps{ + Description: "Reference to controller whose pods should avoid this node.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.OwnerReference"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.OwnerReference"}, + }, + "k8s.io/api/core/v1.PodSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodSpec is a description of a pod.", + Properties: map[string]spec.Schema{ + "volumes": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge,retainKeys", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "List of volumes that can be mounted by containers belonging to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.Volume"), + }, + }, + }, + }, + }, + "initContainers": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "List of initialization containers belonging to the pod. Init containers are executed in order prior to containers being started. If any init container fails, the pod is considered to have failed and is handled according to its restartPolicy. The name for an init container or normal container must be unique among all containers. Init containers may not have Lifecycle actions, Readiness probes, or Liveness probes. The resourceRequirements of an init container are taken into account during scheduling by finding the highest request/limit for each resource type, and then using the max of of that value or the sum of the normal containers. Limits are applied to init containers in a similar fashion. Init containers cannot currently be added or removed. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/init-containers/", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.Container"), + }, + }, + }, + }, + }, + "containers": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "List of containers belonging to the pod. Containers cannot currently be added or removed. There must be at least one container in a Pod. Cannot be updated.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.Container"), + }, + }, + }, + }, + }, + "restartPolicy": { + SchemaProps: spec.SchemaProps{ + Description: "Restart policy for all containers within the pod. One of Always, OnFailure, Never. Default to Always. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#restart-policy", + Type: []string{"string"}, + Format: "", + }, + }, + "terminationGracePeriodSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "Optional duration in seconds the pod needs to terminate gracefully. May be decreased in delete request. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period will be used instead. The grace period is the duration in seconds after the processes running in the pod are sent a termination signal and the time when the processes are forcibly halted with a kill signal. Set this value longer than the expected cleanup time for your process. Defaults to 30 seconds.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "activeDeadlineSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "Optional duration in seconds the pod may be active on the node relative to StartTime before the system will actively try to mark it failed and kill associated containers. Value must be a positive integer.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "dnsPolicy": { + SchemaProps: spec.SchemaProps{ + Description: "Set DNS policy for containers within the pod. One of 'ClusterFirstWithHostNet', 'ClusterFirst' or 'Default'. Defaults to \"ClusterFirst\". To have DNS options set along with hostNetwork, you have to specify DNS policy explicitly to 'ClusterFirstWithHostNet'.", + Type: []string{"string"}, + Format: "", + }, + }, + "nodeSelector": { + SchemaProps: spec.SchemaProps{ + Description: "NodeSelector is a selector which must be true for the pod to fit on a node. Selector which must match a node's labels for the pod to be scheduled on that node. More info: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "serviceAccountName": { + SchemaProps: spec.SchemaProps{ + Description: "ServiceAccountName is the name of the ServiceAccount to use to run this pod. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/", + Type: []string{"string"}, + Format: "", + }, + }, + "serviceAccount": { + SchemaProps: spec.SchemaProps{ + Description: "DeprecatedServiceAccount is a depreciated alias for ServiceAccountName. Deprecated: Use serviceAccountName instead.", + Type: []string{"string"}, + Format: "", + }, + }, + "automountServiceAccountToken": { + SchemaProps: spec.SchemaProps{ + Description: "AutomountServiceAccountToken indicates whether a service account token should be automatically mounted.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "nodeName": { + SchemaProps: spec.SchemaProps{ + Description: "NodeName is a request to schedule this pod onto a specific node. If it is non-empty, the scheduler simply schedules this pod onto that node, assuming that it fits resource requirements.", + Type: []string{"string"}, + Format: "", + }, + }, + "hostNetwork": { + SchemaProps: spec.SchemaProps{ + Description: "Host networking requested for this pod. Use the host's network namespace. If this option is set, the ports that will be used must be specified. Default to false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "hostPID": { + SchemaProps: spec.SchemaProps{ + Description: "Use the host's pid namespace. Optional: Default to false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "hostIPC": { + SchemaProps: spec.SchemaProps{ + Description: "Use the host's ipc namespace. Optional: Default to false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "securityContext": { + SchemaProps: spec.SchemaProps{ + Description: "SecurityContext holds pod-level security attributes and common container settings. Optional: Defaults to empty. See type description for default values of each field.", + Ref: ref("k8s.io/api/core/v1.PodSecurityContext"), + }, + }, + "imagePullSecrets": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "ImagePullSecrets is an optional list of references to secrets in the same namespace to use for pulling any of the images used by this PodSpec. If specified, these secrets will be passed to individual puller implementations for them to use. For example, in the case of docker, only DockerConfig type secrets are honored. More info: https://kubernetes.io/docs/concepts/containers/images#specifying-imagepullsecrets-on-a-pod", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.LocalObjectReference"), + }, + }, + }, + }, + }, + "hostname": { + SchemaProps: spec.SchemaProps{ + Description: "Specifies the hostname of the Pod If not specified, the pod's hostname will be set to a system-defined value.", + Type: []string{"string"}, + Format: "", + }, + }, + "subdomain": { + SchemaProps: spec.SchemaProps{ + Description: "If specified, the fully qualified Pod hostname will be \"...svc.\". If not specified, the pod will not have a domainname at all.", + Type: []string{"string"}, + Format: "", + }, + }, + "affinity": { + SchemaProps: spec.SchemaProps{ + Description: "If specified, the pod's scheduling constraints", + Ref: ref("k8s.io/api/core/v1.Affinity"), + }, + }, + "schedulerName": { + SchemaProps: spec.SchemaProps{ + Description: "If specified, the pod will be dispatched by specified scheduler. If not specified, the pod will be dispatched by default scheduler.", + Type: []string{"string"}, + Format: "", + }, + }, + "tolerations": { + SchemaProps: spec.SchemaProps{ + Description: "If specified, the pod's tolerations.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.Toleration"), + }, + }, + }, + }, + }, + "hostAliases": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "ip", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "HostAliases is an optional list of hosts and IPs that will be injected into the pod's hosts file if specified. This is only valid for non-hostNetwork pods.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.HostAlias"), + }, + }, + }, + }, + }, + "priorityClassName": { + SchemaProps: spec.SchemaProps{ + Description: "If specified, indicates the pod's priority. \"SYSTEM\" is a special keyword which indicates the highest priority. Any other name must be defined by creating a PriorityClass object with that name. If not specified, the pod priority will be default or zero if there is no default.", + Type: []string{"string"}, + Format: "", + }, + }, + "priority": { + SchemaProps: spec.SchemaProps{ + Description: "The priority value. Various system components use this field to find the priority of the pod. When Priority Admission Controller is enabled, it prevents users from setting this field. The admission controller populates this field from PriorityClassName. The higher the value, the higher the priority.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"containers"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.Affinity", "k8s.io/api/core/v1.Container", "k8s.io/api/core/v1.HostAlias", "k8s.io/api/core/v1.LocalObjectReference", "k8s.io/api/core/v1.PodSecurityContext", "k8s.io/api/core/v1.Toleration", "k8s.io/api/core/v1.Volume"}, + }, + "k8s.io/api/core/v1.PodStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodStatus represents information about the status of a pod. Status may trail the actual state of a system.", + Properties: map[string]spec.Schema{ + "phase": { + SchemaProps: spec.SchemaProps{ + Description: "Current condition of the pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-phase", + Type: []string{"string"}, + Format: "", + }, + }, + "conditions": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "Current service state of pod. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-conditions", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.PodCondition"), + }, + }, + }, + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "A human readable message indicating details about why the pod is in this condition.", + Type: []string{"string"}, + Format: "", + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "A brief CamelCase message indicating details about why the pod is in this state. e.g. 'Evicted'", + Type: []string{"string"}, + Format: "", + }, + }, + "hostIP": { + SchemaProps: spec.SchemaProps{ + Description: "IP address of the host to which the pod is assigned. Empty if not yet scheduled.", + Type: []string{"string"}, + Format: "", + }, + }, + "podIP": { + SchemaProps: spec.SchemaProps{ + Description: "IP address allocated to the pod. Routable at least within the cluster. Empty if not yet allocated.", + Type: []string{"string"}, + Format: "", + }, + }, + "startTime": { + SchemaProps: spec.SchemaProps{ + Description: "RFC 3339 date and time at which the object was acknowledged by the Kubelet. This is before the Kubelet pulled the container image(s) for the pod.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "initContainerStatuses": { + SchemaProps: spec.SchemaProps{ + Description: "The list has one entry per init container in the manifest. The most recent successful init container will have ready = true, the most recently started container will have startTime set. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.ContainerStatus"), + }, + }, + }, + }, + }, + "containerStatuses": { + SchemaProps: spec.SchemaProps{ + Description: "The list has one entry per container in the manifest. Each entry is currently the output of `docker inspect`. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#pod-and-container-status", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.ContainerStatus"), + }, + }, + }, + }, + }, + "qosClass": { + SchemaProps: spec.SchemaProps{ + Description: "The Quality of Service (QOS) classification assigned to the pod based on resource requirements See PodQOSClass type for available QOS classes More info: https://github.com/kubernetes/kubernetes/blob/master/docs/design/resource-qos.md", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ContainerStatus", "k8s.io/api/core/v1.PodCondition", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/core/v1.PodStatusResult": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodStatusResult is a wrapper for PodStatus returned by kubelet that can be encode/decoded", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Most recently observed status of the pod. This data may not be up to date. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/core/v1.PodStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PodStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.PodTemplate": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodTemplate describes a template for creating copies of a predefined pod.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "template": { + SchemaProps: spec.SchemaProps{ + Description: "Template defines the pods that will be created from this pod template. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/core/v1.PodTemplateSpec"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PodTemplateSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.PodTemplateList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodTemplateList is a list of PodTemplates.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of pod templates", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.PodTemplate"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PodTemplate", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/core/v1.PodTemplateSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodTemplateSpec describes the data a pod should have when created from a template", + Properties: map[string]spec.Schema{ + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Specification of the desired behavior of the pod. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/core/v1.PodSpec"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PodSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.PortworxVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PortworxVolumeSource represents a Portworx volume resource.", + Properties: map[string]spec.Schema{ + "volumeID": { + SchemaProps: spec.SchemaProps{ + Description: "VolumeID uniquely identifies a Portworx volume", + Type: []string{"string"}, + Format: "", + }, + }, + "fsType": { + SchemaProps: spec.SchemaProps{ + Description: "FSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\". Implicitly inferred to be \"ext4\" if unspecified.", + Type: []string{"string"}, + Format: "", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"volumeID"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.PreferAvoidPodsEntry": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Describes a class of pods that should avoid this node.", + Properties: map[string]spec.Schema{ + "podSignature": { + SchemaProps: spec.SchemaProps{ + Description: "The class of pods.", + Ref: ref("k8s.io/api/core/v1.PodSignature"), + }, + }, + "evictionTime": { + SchemaProps: spec.SchemaProps{ + Description: "Time at which this entry was added to the list.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "(brief) reason why this entry was added to the list.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "Human readable message indicating why this entry was added to the list.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"podSignature"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PodSignature", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/core/v1.PreferredSchedulingTerm": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "An empty preferred scheduling term matches all objects with implicit weight 0 (i.e. it's a no-op). A null preferred scheduling term matches no objects (i.e. is also a no-op).", + Properties: map[string]spec.Schema{ + "weight": { + SchemaProps: spec.SchemaProps{ + Description: "Weight associated with matching the corresponding nodeSelectorTerm, in the range 1-100.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "preference": { + SchemaProps: spec.SchemaProps{ + Description: "A node selector term, associated with the corresponding weight.", + Ref: ref("k8s.io/api/core/v1.NodeSelectorTerm"), + }, + }, + }, + Required: []string{"weight", "preference"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.NodeSelectorTerm"}, + }, + "k8s.io/api/core/v1.Probe": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Probe describes a health check to be performed against a container to determine whether it is alive or ready to receive traffic.", + Properties: map[string]spec.Schema{ + "exec": { + SchemaProps: spec.SchemaProps{ + Description: "One and only one of the following should be specified. Exec specifies the action to take.", + Ref: ref("k8s.io/api/core/v1.ExecAction"), + }, + }, + "httpGet": { + SchemaProps: spec.SchemaProps{ + Description: "HTTPGet specifies the http request to perform.", + Ref: ref("k8s.io/api/core/v1.HTTPGetAction"), + }, + }, + "tcpSocket": { + SchemaProps: spec.SchemaProps{ + Description: "TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported", + Ref: ref("k8s.io/api/core/v1.TCPSocketAction"), + }, + }, + "initialDelaySeconds": { + SchemaProps: spec.SchemaProps{ + Description: "Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "timeoutSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "periodSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "successThreshold": { + SchemaProps: spec.SchemaProps{ + Description: "Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness. Minimum value is 1.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "failureThreshold": { + SchemaProps: spec.SchemaProps{ + Description: "Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ExecAction", "k8s.io/api/core/v1.HTTPGetAction", "k8s.io/api/core/v1.TCPSocketAction"}, + }, + "k8s.io/api/core/v1.ProjectedVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents a projected volume source", + Properties: map[string]spec.Schema{ + "sources": { + SchemaProps: spec.SchemaProps{ + Description: "list of volume projections", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.VolumeProjection"), + }, + }, + }, + }, + }, + "defaultMode": { + SchemaProps: spec.SchemaProps{ + Description: "Mode bits to use on created files by default. Must be a value between 0 and 0777. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"sources"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.VolumeProjection"}, + }, + "k8s.io/api/core/v1.QuobyteVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents a Quobyte mount that lasts the lifetime of a pod. Quobyte volumes do not support ownership management or SELinux relabeling.", + Properties: map[string]spec.Schema{ + "registry": { + SchemaProps: spec.SchemaProps{ + Description: "Registry represents a single or multiple Quobyte Registry services specified as a string as host:port pair (multiple entries are separated with commas) which acts as the central registry for volumes", + Type: []string{"string"}, + Format: "", + }, + }, + "volume": { + SchemaProps: spec.SchemaProps{ + Description: "Volume is a string that references an already created Quobyte volume by name.", + Type: []string{"string"}, + Format: "", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "ReadOnly here will force the Quobyte volume to be mounted with read-only permissions. Defaults to false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "user": { + SchemaProps: spec.SchemaProps{ + Description: "User to map volume access to Defaults to serivceaccount user", + Type: []string{"string"}, + Format: "", + }, + }, + "group": { + SchemaProps: spec.SchemaProps{ + Description: "Group to map volume access to Default is no group", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"registry", "volume"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.RBDVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents a Rados Block Device mount that lasts the lifetime of a pod. RBD volumes support ownership management and SELinux relabeling.", + Properties: map[string]spec.Schema{ + "monitors": { + SchemaProps: spec.SchemaProps{ + Description: "A collection of Ceph monitors. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "image": { + SchemaProps: spec.SchemaProps{ + Description: "The rados image name. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it", + Type: []string{"string"}, + Format: "", + }, + }, + "fsType": { + SchemaProps: spec.SchemaProps{ + Description: "Filesystem type of the volume that you want to mount. Tip: Ensure that the filesystem type is supported by the host operating system. Examples: \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified. More info: https://kubernetes.io/docs/concepts/storage/volumes#rbd", + Type: []string{"string"}, + Format: "", + }, + }, + "pool": { + SchemaProps: spec.SchemaProps{ + Description: "The rados pool name. Default is rbd. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it", + Type: []string{"string"}, + Format: "", + }, + }, + "user": { + SchemaProps: spec.SchemaProps{ + Description: "The rados user name. Default is admin. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it", + Type: []string{"string"}, + Format: "", + }, + }, + "keyring": { + SchemaProps: spec.SchemaProps{ + Description: "Keyring is the path to key ring for RBDUser. Default is /etc/ceph/keyring. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it", + Type: []string{"string"}, + Format: "", + }, + }, + "secretRef": { + SchemaProps: spec.SchemaProps{ + Description: "SecretRef is name of the authentication secret for RBDUser. If provided overrides keyring. Default is nil. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it", + Ref: ref("k8s.io/api/core/v1.LocalObjectReference"), + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "ReadOnly here will force the ReadOnly setting in VolumeMounts. Defaults to false. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md#how-to-use-it", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"monitors", "image"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.LocalObjectReference"}, + }, + "k8s.io/api/core/v1.RangeAllocation": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RangeAllocation is not a public type.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "range": { + SchemaProps: spec.SchemaProps{ + Description: "Range is string that identifies the range represented by 'data'.", + Type: []string{"string"}, + Format: "", + }, + }, + "data": { + SchemaProps: spec.SchemaProps{ + Description: "Data is a bit array containing all allocated addresses in the previous segment.", + Type: []string{"string"}, + Format: "byte", + }, + }, + }, + Required: []string{"range", "data"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.ReplicationController": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ReplicationController represents the configuration of a replication controller.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "If the Labels of a ReplicationController are empty, they are defaulted to be the same as the Pod(s) that the replication controller manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec defines the specification of the desired behavior of the replication controller. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/core/v1.ReplicationControllerSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is the most recently observed status of the replication controller. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/core/v1.ReplicationControllerStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ReplicationControllerSpec", "k8s.io/api/core/v1.ReplicationControllerStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.ReplicationControllerCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ReplicationControllerCondition describes the state of a replication controller at a certain point.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of replication controller condition.", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status of the condition, one of True, False, Unknown.", + Type: []string{"string"}, + Format: "", + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "The last time the condition transitioned from one status to another.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "The reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "A human readable message indicating details about the transition.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/core/v1.ReplicationControllerList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ReplicationControllerList is a collection of replication controllers.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of replication controllers. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.ReplicationController"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ReplicationController", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/core/v1.ReplicationControllerSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ReplicationControllerSpec is the specification of a replication controller.", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "minReadySeconds": { + SchemaProps: spec.SchemaProps{ + Description: "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "Selector is a label query over pods that should match the Replicas count. If Selector is empty, it is defaulted to the labels present on the Pod template. Label keys and values that must match in order to be controlled by this replication controller, if empty defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "template": { + SchemaProps: spec.SchemaProps{ + Description: "Template is the object that describes the pod that will be created if insufficient replicas are detected. This takes precedence over a TemplateRef. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template", + Ref: ref("k8s.io/api/core/v1.PodTemplateSpec"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PodTemplateSpec"}, + }, + "k8s.io/api/core/v1.ReplicationControllerStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ReplicationControllerStatus represents the current status of a replication controller.", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#what-is-a-replicationcontroller", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "fullyLabeledReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "The number of pods that have labels matching the labels of the pod template of the replication controller.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "readyReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "The number of ready replicas for this replication controller.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "availableReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "The number of available replicas (ready for at least minReadySeconds) for this replication controller.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "observedGeneration": { + SchemaProps: spec.SchemaProps{ + Description: "ObservedGeneration reflects the generation of the most recently observed replication controller.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "conditions": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "Represents the latest available observations of a replication controller's current state.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.ReplicationControllerCondition"), + }, + }, + }, + }, + }, + }, + Required: []string{"replicas"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ReplicationControllerCondition"}, + }, + "k8s.io/api/core/v1.ResourceFieldSelector": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ResourceFieldSelector represents container resources (cpu, memory) and their output format", + Properties: map[string]spec.Schema{ + "containerName": { + SchemaProps: spec.SchemaProps{ + Description: "Container name: required for volumes, optional for env vars", + Type: []string{"string"}, + Format: "", + }, + }, + "resource": { + SchemaProps: spec.SchemaProps{ + Description: "Required: resource to select", + Type: []string{"string"}, + Format: "", + }, + }, + "divisor": { + SchemaProps: spec.SchemaProps{ + Description: "Specifies the output format of the exposed resources, defaults to \"1\"", + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + Required: []string{"resource"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/core/v1.ResourceQuota": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ResourceQuota sets aggregate quota restrictions enforced per namespace", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec defines the desired quota. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/core/v1.ResourceQuotaSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status defines the actual enforced quota and its current usage. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/core/v1.ResourceQuotaStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ResourceQuotaSpec", "k8s.io/api/core/v1.ResourceQuotaStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.ResourceQuotaList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ResourceQuotaList is a list of ResourceQuota items.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of ResourceQuota objects. More info: https://git.k8s.io/community/contributors/design-proposals/admission_control_resource_quota.md", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.ResourceQuota"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ResourceQuota", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/core/v1.ResourceQuotaSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ResourceQuotaSpec defines the desired hard limits to enforce for Quota.", + Properties: map[string]spec.Schema{ + "hard": { + SchemaProps: spec.SchemaProps{ + Description: "Hard is the set of desired hard limits for each named resource. More info: https://git.k8s.io/community/contributors/design-proposals/admission_control_resource_quota.md", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + "scopes": { + SchemaProps: spec.SchemaProps{ + Description: "A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/core/v1.ResourceQuotaStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ResourceQuotaStatus defines the enforced hard limits and observed use.", + Properties: map[string]spec.Schema{ + "hard": { + SchemaProps: spec.SchemaProps{ + Description: "Hard is the set of enforced hard limits for each named resource. More info: https://git.k8s.io/community/contributors/design-proposals/admission_control_resource_quota.md", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + "used": { + SchemaProps: spec.SchemaProps{ + Description: "Used is the current observed total usage of the resource in the namespace.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/core/v1.ResourceRequirements": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ResourceRequirements describes the compute resource requirements.", + Properties: map[string]spec.Schema{ + "limits": { + SchemaProps: spec.SchemaProps{ + Description: "Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + "requests": { + SchemaProps: spec.SchemaProps{ + Description: "Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/core/v1.SELinuxOptions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SELinuxOptions are the labels to be applied to the container", + Properties: map[string]spec.Schema{ + "user": { + SchemaProps: spec.SchemaProps{ + Description: "User is a SELinux user label that applies to the container.", + Type: []string{"string"}, + Format: "", + }, + }, + "role": { + SchemaProps: spec.SchemaProps{ + Description: "Role is a SELinux role label that applies to the container.", + Type: []string{"string"}, + Format: "", + }, + }, + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type is a SELinux type label that applies to the container.", + Type: []string{"string"}, + Format: "", + }, + }, + "level": { + SchemaProps: spec.SchemaProps{ + Description: "Level is SELinux level label that applies to the container.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.ScaleIOPersistentVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ScaleIOPersistentVolumeSource represents a persistent ScaleIO volume", + Properties: map[string]spec.Schema{ + "gateway": { + SchemaProps: spec.SchemaProps{ + Description: "The host address of the ScaleIO API Gateway.", + Type: []string{"string"}, + Format: "", + }, + }, + "system": { + SchemaProps: spec.SchemaProps{ + Description: "The name of the storage system as configured in ScaleIO.", + Type: []string{"string"}, + Format: "", + }, + }, + "secretRef": { + SchemaProps: spec.SchemaProps{ + Description: "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.", + Ref: ref("k8s.io/api/core/v1.SecretReference"), + }, + }, + "sslEnabled": { + SchemaProps: spec.SchemaProps{ + Description: "Flag to enable/disable SSL communication with Gateway, default false", + Type: []string{"boolean"}, + Format: "", + }, + }, + "protectionDomain": { + SchemaProps: spec.SchemaProps{ + Description: "The name of the ScaleIO Protection Domain for the configured storage.", + Type: []string{"string"}, + Format: "", + }, + }, + "storagePool": { + SchemaProps: spec.SchemaProps{ + Description: "The ScaleIO Storage Pool associated with the protection domain.", + Type: []string{"string"}, + Format: "", + }, + }, + "storageMode": { + SchemaProps: spec.SchemaProps{ + Description: "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.", + Type: []string{"string"}, + Format: "", + }, + }, + "volumeName": { + SchemaProps: spec.SchemaProps{ + Description: "The name of a volume already created in the ScaleIO system that is associated with this volume source.", + Type: []string{"string"}, + Format: "", + }, + }, + "fsType": { + SchemaProps: spec.SchemaProps{ + Description: "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + Type: []string{"string"}, + Format: "", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"gateway", "system", "secretRef"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.SecretReference"}, + }, + "k8s.io/api/core/v1.ScaleIOVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ScaleIOVolumeSource represents a persistent ScaleIO volume", + Properties: map[string]spec.Schema{ + "gateway": { + SchemaProps: spec.SchemaProps{ + Description: "The host address of the ScaleIO API Gateway.", + Type: []string{"string"}, + Format: "", + }, + }, + "system": { + SchemaProps: spec.SchemaProps{ + Description: "The name of the storage system as configured in ScaleIO.", + Type: []string{"string"}, + Format: "", + }, + }, + "secretRef": { + SchemaProps: spec.SchemaProps{ + Description: "SecretRef references to the secret for ScaleIO user and other sensitive information. If this is not provided, Login operation will fail.", + Ref: ref("k8s.io/api/core/v1.LocalObjectReference"), + }, + }, + "sslEnabled": { + SchemaProps: spec.SchemaProps{ + Description: "Flag to enable/disable SSL communication with Gateway, default false", + Type: []string{"boolean"}, + Format: "", + }, + }, + "protectionDomain": { + SchemaProps: spec.SchemaProps{ + Description: "The name of the ScaleIO Protection Domain for the configured storage.", + Type: []string{"string"}, + Format: "", + }, + }, + "storagePool": { + SchemaProps: spec.SchemaProps{ + Description: "The ScaleIO Storage Pool associated with the protection domain.", + Type: []string{"string"}, + Format: "", + }, + }, + "storageMode": { + SchemaProps: spec.SchemaProps{ + Description: "Indicates whether the storage for a volume should be ThickProvisioned or ThinProvisioned.", + Type: []string{"string"}, + Format: "", + }, + }, + "volumeName": { + SchemaProps: spec.SchemaProps{ + Description: "The name of a volume already created in the ScaleIO system that is associated with this volume source.", + Type: []string{"string"}, + Format: "", + }, + }, + "fsType": { + SchemaProps: spec.SchemaProps{ + Description: "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + Type: []string{"string"}, + Format: "", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"gateway", "system", "secretRef"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.LocalObjectReference"}, + }, + "k8s.io/api/core/v1.Secret": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "data": { + SchemaProps: spec.SchemaProps{ + Description: "Data contains the secret data. Each key must consist of alphanumeric characters, '-', '_' or '.'. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "byte", + }, + }, + }, + }, + }, + "stringData": { + SchemaProps: spec.SchemaProps{ + Description: "stringData allows specifying non-binary secret data in string form. It is provided as a write-only convenience method. All keys and values are merged into the data field on write, overwriting any existing values. It is never output when reading from the API.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Used to facilitate programmatic handling of secret data.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.SecretEnvSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SecretEnvSource selects a Secret to populate the environment variables with.\n\nThe contents of the target Secret's Data field will represent the key-value pairs as environment variables.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + Type: []string{"string"}, + Format: "", + }, + }, + "optional": { + SchemaProps: spec.SchemaProps{ + Description: "Specify whether the Secret must be defined", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.SecretKeySelector": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SecretKeySelector selects a key of a Secret.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + Type: []string{"string"}, + Format: "", + }, + }, + "key": { + SchemaProps: spec.SchemaProps{ + Description: "The key of the secret to select from. Must be a valid secret key.", + Type: []string{"string"}, + Format: "", + }, + }, + "optional": { + SchemaProps: spec.SchemaProps{ + Description: "Specify whether the Secret or it's key must be defined", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"key"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.SecretList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SecretList is a list of Secret.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of secret objects. More info: https://kubernetes.io/docs/concepts/configuration/secret", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.Secret"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.Secret", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/core/v1.SecretProjection": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Adapts a secret into a projected volume.\n\nThe contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + Type: []string{"string"}, + Format: "", + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.KeyToPath"), + }, + }, + }, + }, + }, + "optional": { + SchemaProps: spec.SchemaProps{ + Description: "Specify whether the Secret or its key must be defined", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.KeyToPath"}, + }, + "k8s.io/api/core/v1.SecretReference": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SecretReference represents a Secret Reference. It has enough information to retrieve secret in any namespace", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name is unique within a namespace to reference a secret resource.", + Type: []string{"string"}, + Format: "", + }, + }, + "namespace": { + SchemaProps: spec.SchemaProps{ + Description: "Namespace defines the space within which the secret name must be unique.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.SecretVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Adapts a Secret into a volume.\n\nThe contents of the target Secret's Data field will be presented in a volume as files using the keys in the Data field as the file names. Secret volumes support ownership management and SELinux relabeling.", + Properties: map[string]spec.Schema{ + "secretName": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the secret in the pod's namespace to use. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", + Type: []string{"string"}, + Format: "", + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "If unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.KeyToPath"), + }, + }, + }, + }, + }, + "defaultMode": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "optional": { + SchemaProps: spec.SchemaProps{ + Description: "Specify whether the Secret or it's keys must be defined", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.KeyToPath"}, + }, + "k8s.io/api/core/v1.SecurityContext": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SecurityContext holds security configuration that will be applied to a container. Some fields are present in both SecurityContext and PodSecurityContext. When both are set, the values in SecurityContext take precedence.", + Properties: map[string]spec.Schema{ + "capabilities": { + SchemaProps: spec.SchemaProps{ + Description: "The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime.", + Ref: ref("k8s.io/api/core/v1.Capabilities"), + }, + }, + "privileged": { + SchemaProps: spec.SchemaProps{ + Description: "Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "seLinuxOptions": { + SchemaProps: spec.SchemaProps{ + Description: "The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", + Ref: ref("k8s.io/api/core/v1.SELinuxOptions"), + }, + }, + "runAsUser": { + SchemaProps: spec.SchemaProps{ + Description: "The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "runAsNonRoot": { + SchemaProps: spec.SchemaProps{ + Description: "Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "readOnlyRootFilesystem": { + SchemaProps: spec.SchemaProps{ + Description: "Whether this container has a read-only root filesystem. Default is false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "allowPrivilegeEscalation": { + SchemaProps: spec.SchemaProps{ + Description: "AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.Capabilities", "k8s.io/api/core/v1.SELinuxOptions"}, + }, + "k8s.io/api/core/v1.SerializedReference": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SerializedReference is a reference to serialized object.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "reference": { + SchemaProps: spec.SchemaProps{ + Description: "The reference to an object in the system.", + Ref: ref("k8s.io/api/core/v1.ObjectReference"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ObjectReference"}, + }, + "k8s.io/api/core/v1.Service": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Service is a named abstraction of software service (for example, mysql) consisting of local port (for example 3306) that the proxy listens on, and the selector that determines which pods will answer requests sent through the proxy.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec defines the behavior of a service. https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/core/v1.ServiceSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Most recently observed status of the service. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/core/v1.ServiceStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ServiceSpec", "k8s.io/api/core/v1.ServiceStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.ServiceAccount": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ServiceAccount binds together: * a name, understood by users, and perhaps by peripheral systems, for an identity * a principal that can be authenticated and authorized * a set of secrets", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "secrets": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "Secrets is the list of secrets allowed to be used by pods running using this ServiceAccount. More info: https://kubernetes.io/docs/concepts/configuration/secret", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.ObjectReference"), + }, + }, + }, + }, + }, + "imagePullSecrets": { + SchemaProps: spec.SchemaProps{ + Description: "ImagePullSecrets is a list of references to secrets in the same namespace to use for pulling any images in pods that reference this ServiceAccount. ImagePullSecrets are distinct from Secrets because Secrets can be mounted in the pod, but ImagePullSecrets are only accessed by the kubelet. More info: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.LocalObjectReference"), + }, + }, + }, + }, + }, + "automountServiceAccountToken": { + SchemaProps: spec.SchemaProps{ + Description: "AutomountServiceAccountToken indicates whether pods running as this service account should have an API token automatically mounted. Can be overridden at the pod level.", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.LocalObjectReference", "k8s.io/api/core/v1.ObjectReference", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/core/v1.ServiceAccountList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ServiceAccountList is a list of ServiceAccount objects", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of ServiceAccounts. More info: https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.ServiceAccount"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ServiceAccount", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/core/v1.ServiceList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ServiceList holds a list of services.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of services", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.Service"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.Service", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/core/v1.ServicePort": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ServicePort contains information on service's port.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "The name of this port within the service. This must be a DNS_LABEL. All ports within a ServiceSpec must have unique names. This maps to the 'Name' field in EndpointPort objects. Optional if only one ServicePort is defined on this service.", + Type: []string{"string"}, + Format: "", + }, + }, + "protocol": { + SchemaProps: spec.SchemaProps{ + Description: "The IP protocol for this port. Supports \"TCP\" and \"UDP\". Default is TCP.", + Type: []string{"string"}, + Format: "", + }, + }, + "port": { + SchemaProps: spec.SchemaProps{ + Description: "The port that will be exposed by this service.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "targetPort": { + SchemaProps: spec.SchemaProps{ + Description: "Number or name of the port to access on the pods targeted by the service. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. If this is a string, it will be looked up as a named port in the target Pod's container ports. If this is not specified, the value of the 'port' field is used (an identity map). This field is ignored for services with clusterIP=None, and should be omitted or set equal to the 'port' field. More info: https://kubernetes.io/docs/concepts/services-networking/service/#defining-a-service", + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + "nodePort": { + SchemaProps: spec.SchemaProps{ + Description: "The port on each node on which this service is exposed when type=NodePort or LoadBalancer. Usually assigned by the system. If specified, it will be allocated to the service if unused or else creation of the service will fail. Default is to auto-allocate a port if the ServiceType of this Service requires one. More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"port"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/util/intstr.IntOrString"}, + }, + "k8s.io/api/core/v1.ServiceProxyOptions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ServiceProxyOptions is the query options to a Service's proxy call.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "path": { + SchemaProps: spec.SchemaProps{ + Description: "Path is the part of URLs that include service endpoints, suffixes, and parameters to use for the current proxy request to service. For example, the whole request URL is http://localhost/api/v1/namespaces/kube-system/services/elasticsearch-logging/_search?q=user:kimchy. Path is _search?q=user:kimchy.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.ServiceSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ServiceSpec describes the attributes that a user creates on a service.", + Properties: map[string]spec.Schema{ + "ports": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "port", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "The list of ports that are exposed by this service. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.ServicePort"), + }, + }, + }, + }, + }, + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "Route service traffic to pods with label keys and values matching this selector. If empty or not present, the service is assumed to have an external process managing its endpoints, which Kubernetes will not modify. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "clusterIP": { + SchemaProps: spec.SchemaProps{ + Description: "clusterIP is the IP address of the service and is usually assigned randomly by the master. If an address is specified manually and is not in use by others, it will be allocated to the service; otherwise, creation of the service will fail. This field can not be changed through updates. Valid values are \"None\", empty string (\"\"), or a valid IP address. \"None\" can be specified for headless services when proxying is not required. Only applies to types ClusterIP, NodePort, and LoadBalancer. Ignored if type is ExternalName. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", + Type: []string{"string"}, + Format: "", + }, + }, + "type": { + SchemaProps: spec.SchemaProps{ + Description: "type determines how the Service is exposed. Defaults to ClusterIP. Valid options are ExternalName, ClusterIP, NodePort, and LoadBalancer. \"ExternalName\" maps to the specified externalName. \"ClusterIP\" allocates a cluster-internal IP address for load-balancing to endpoints. Endpoints are determined by the selector or if that is not specified, by manual construction of an Endpoints object. If clusterIP is \"None\", no virtual IP is allocated and the endpoints are published as a set of endpoints rather than a stable IP. \"NodePort\" builds on ClusterIP and allocates a port on every node which routes to the clusterIP. \"LoadBalancer\" builds on NodePort and creates an external load-balancer (if supported in the current cloud) which routes to the clusterIP. More info: https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services---service-types", + Type: []string{"string"}, + Format: "", + }, + }, + "externalIPs": { + SchemaProps: spec.SchemaProps{ + Description: "externalIPs is a list of IP addresses for which nodes in the cluster will also accept traffic for this service. These IPs are not managed by Kubernetes. The user is responsible for ensuring that traffic arrives at a node with this IP. A common example is external load-balancers that are not part of the Kubernetes system.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "sessionAffinity": { + SchemaProps: spec.SchemaProps{ + Description: "Supports \"ClientIP\" and \"None\". Used to maintain session affinity. Enable client IP based session affinity. Must be ClientIP or None. Defaults to None. More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies", + Type: []string{"string"}, + Format: "", + }, + }, + "loadBalancerIP": { + SchemaProps: spec.SchemaProps{ + Description: "Only applies to Service Type: LoadBalancer LoadBalancer will get created with the IP specified in this field. This feature depends on whether the underlying cloud-provider supports specifying the loadBalancerIP when a load balancer is created. This field will be ignored if the cloud-provider does not support the feature.", + Type: []string{"string"}, + Format: "", + }, + }, + "loadBalancerSourceRanges": { + SchemaProps: spec.SchemaProps{ + Description: "If specified and supported by the platform, this will restrict traffic through the cloud-provider load-balancer will be restricted to the specified client IPs. This field will be ignored if the cloud-provider does not support the feature.\" More info: https://kubernetes.io/docs/tasks/access-application-cluster/configure-cloud-provider-firewall/", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "externalName": { + SchemaProps: spec.SchemaProps{ + Description: "externalName is the external reference that kubedns or equivalent will return as a CNAME record for this service. No proxying will be involved. Must be a valid DNS name and requires Type to be ExternalName.", + Type: []string{"string"}, + Format: "", + }, + }, + "externalTrafficPolicy": { + SchemaProps: spec.SchemaProps{ + Description: "externalTrafficPolicy denotes if this Service desires to route external traffic to node-local or cluster-wide endpoints. \"Local\" preserves the client source IP and avoids a second hop for LoadBalancer and Nodeport type services, but risks potentially imbalanced traffic spreading. \"Cluster\" obscures the client source IP and may cause a second hop to another node, but should have good overall load-spreading.", + Type: []string{"string"}, + Format: "", + }, + }, + "healthCheckNodePort": { + SchemaProps: spec.SchemaProps{ + Description: "healthCheckNodePort specifies the healthcheck nodePort for the service. If not specified, HealthCheckNodePort is created by the service api backend with the allocated nodePort. Will use user-specified nodePort value if specified by the client. Only effects when Type is set to LoadBalancer and ExternalTrafficPolicy is set to Local.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "publishNotReadyAddresses": { + SchemaProps: spec.SchemaProps{ + Description: "publishNotReadyAddresses, when set to true, indicates that DNS implementations must publish the notReadyAddresses of subsets for the Endpoints associated with the Service. The default value is false. The primary use case for setting this field is to use a StatefulSet's Headless Service to propagate SRV records for its Pods without respect to their readiness for purpose of peer discovery. This field will replace the service.alpha.kubernetes.io/tolerate-unready-endpoints when that annotation is deprecated and all clients have been converted to use this field.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "sessionAffinityConfig": { + SchemaProps: spec.SchemaProps{ + Description: "sessionAffinityConfig contains the configurations of session affinity.", + Ref: ref("k8s.io/api/core/v1.SessionAffinityConfig"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ServicePort", "k8s.io/api/core/v1.SessionAffinityConfig"}, + }, + "k8s.io/api/core/v1.ServiceStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ServiceStatus represents the current status of a service.", + Properties: map[string]spec.Schema{ + "loadBalancer": { + SchemaProps: spec.SchemaProps{ + Description: "LoadBalancer contains the current status of the load-balancer, if one is present.", + Ref: ref("k8s.io/api/core/v1.LoadBalancerStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.LoadBalancerStatus"}, + }, + "k8s.io/api/core/v1.SessionAffinityConfig": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SessionAffinityConfig represents the configurations of session affinity.", + Properties: map[string]spec.Schema{ + "clientIP": { + SchemaProps: spec.SchemaProps{ + Description: "clientIP contains the configurations of Client IP based session affinity.", + Ref: ref("k8s.io/api/core/v1.ClientIPConfig"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ClientIPConfig"}, + }, + "k8s.io/api/core/v1.StorageOSPersistentVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents a StorageOS persistent volume resource.", + Properties: map[string]spec.Schema{ + "volumeName": { + SchemaProps: spec.SchemaProps{ + Description: "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", + Type: []string{"string"}, + Format: "", + }, + }, + "volumeNamespace": { + SchemaProps: spec.SchemaProps{ + Description: "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", + Type: []string{"string"}, + Format: "", + }, + }, + "fsType": { + SchemaProps: spec.SchemaProps{ + Description: "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + Type: []string{"string"}, + Format: "", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "secretRef": { + SchemaProps: spec.SchemaProps{ + Description: "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.", + Ref: ref("k8s.io/api/core/v1.ObjectReference"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ObjectReference"}, + }, + "k8s.io/api/core/v1.StorageOSVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents a StorageOS persistent volume resource.", + Properties: map[string]spec.Schema{ + "volumeName": { + SchemaProps: spec.SchemaProps{ + Description: "VolumeName is the human-readable name of the StorageOS volume. Volume names are only unique within a namespace.", + Type: []string{"string"}, + Format: "", + }, + }, + "volumeNamespace": { + SchemaProps: spec.SchemaProps{ + Description: "VolumeNamespace specifies the scope of the volume within StorageOS. If no namespace is specified then the Pod's namespace will be used. This allows the Kubernetes name scoping to be mirrored within StorageOS for tighter integration. Set VolumeName to any name to override the default behaviour. Set to \"default\" if you are not using namespaces within StorageOS. Namespaces that do not pre-exist within StorageOS will be created.", + Type: []string{"string"}, + Format: "", + }, + }, + "fsType": { + SchemaProps: spec.SchemaProps{ + Description: "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + Type: []string{"string"}, + Format: "", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "Defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "secretRef": { + SchemaProps: spec.SchemaProps{ + Description: "SecretRef specifies the secret to use for obtaining the StorageOS API credentials. If not specified, default values will be attempted.", + Ref: ref("k8s.io/api/core/v1.LocalObjectReference"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.LocalObjectReference"}, + }, + "k8s.io/api/core/v1.Sysctl": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Sysctl defines a kernel parameter to be set", + Properties: map[string]spec.Schema{ + "Name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of a property to set", + Type: []string{"string"}, + Format: "", + }, + }, + "Value": { + SchemaProps: spec.SchemaProps{ + Description: "Value of a property to set", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"Name", "Value"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.TCPSocketAction": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "TCPSocketAction describes an action based on opening a socket", + Properties: map[string]spec.Schema{ + "port": { + SchemaProps: spec.SchemaProps{ + Description: "Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME.", + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + "host": { + SchemaProps: spec.SchemaProps{ + Description: "Optional: Host name to connect to, defaults to the pod IP.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"port"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/util/intstr.IntOrString"}, + }, + "k8s.io/api/core/v1.Taint": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "The node this Taint is attached to has the \"effect\" on any pod that does not tolerate the Taint.", + Properties: map[string]spec.Schema{ + "key": { + SchemaProps: spec.SchemaProps{ + Description: "Required. The taint key to be applied to a node.", + Type: []string{"string"}, + Format: "", + }, + }, + "value": { + SchemaProps: spec.SchemaProps{ + Description: "Required. The taint value corresponding to the taint key.", + Type: []string{"string"}, + Format: "", + }, + }, + "effect": { + SchemaProps: spec.SchemaProps{ + Description: "Required. The effect of the taint on pods that do not tolerate the taint. Valid effects are NoSchedule, PreferNoSchedule and NoExecute.", + Type: []string{"string"}, + Format: "", + }, + }, + "timeAdded": { + SchemaProps: spec.SchemaProps{ + Description: "TimeAdded represents the time at which the taint was added. It is only written for NoExecute taints.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + }, + Required: []string{"key", "effect"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/core/v1.Toleration": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator .", + Properties: map[string]spec.Schema{ + "key": { + SchemaProps: spec.SchemaProps{ + Description: "Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys.", + Type: []string{"string"}, + Format: "", + }, + }, + "operator": { + SchemaProps: spec.SchemaProps{ + Description: "Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category.", + Type: []string{"string"}, + Format: "", + }, + }, + "value": { + SchemaProps: spec.SchemaProps{ + Description: "Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string.", + Type: []string{"string"}, + Format: "", + }, + }, + "effect": { + SchemaProps: spec.SchemaProps{ + Description: "Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute.", + Type: []string{"string"}, + Format: "", + }, + }, + "tolerationSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.Volume": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Volume represents a named volume in a pod that may be accessed by any container in the pod.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Volume's name. Must be a DNS_LABEL and unique within the pod. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names", + Type: []string{"string"}, + Format: "", + }, + }, + "hostPath": { + SchemaProps: spec.SchemaProps{ + Description: "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", + Ref: ref("k8s.io/api/core/v1.HostPathVolumeSource"), + }, + }, + "emptyDir": { + SchemaProps: spec.SchemaProps{ + Description: "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", + Ref: ref("k8s.io/api/core/v1.EmptyDirVolumeSource"), + }, + }, + "gcePersistentDisk": { + SchemaProps: spec.SchemaProps{ + Description: "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + Ref: ref("k8s.io/api/core/v1.GCEPersistentDiskVolumeSource"), + }, + }, + "awsElasticBlockStore": { + SchemaProps: spec.SchemaProps{ + Description: "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + Ref: ref("k8s.io/api/core/v1.AWSElasticBlockStoreVolumeSource"), + }, + }, + "gitRepo": { + SchemaProps: spec.SchemaProps{ + Description: "GitRepo represents a git repository at a particular revision.", + Ref: ref("k8s.io/api/core/v1.GitRepoVolumeSource"), + }, + }, + "secret": { + SchemaProps: spec.SchemaProps{ + Description: "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", + Ref: ref("k8s.io/api/core/v1.SecretVolumeSource"), + }, + }, + "nfs": { + SchemaProps: spec.SchemaProps{ + Description: "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + Ref: ref("k8s.io/api/core/v1.NFSVolumeSource"), + }, + }, + "iscsi": { + SchemaProps: spec.SchemaProps{ + Description: "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md", + Ref: ref("k8s.io/api/core/v1.ISCSIVolumeSource"), + }, + }, + "glusterfs": { + SchemaProps: spec.SchemaProps{ + Description: "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md", + Ref: ref("k8s.io/api/core/v1.GlusterfsVolumeSource"), + }, + }, + "persistentVolumeClaim": { + SchemaProps: spec.SchemaProps{ + Description: "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", + Ref: ref("k8s.io/api/core/v1.PersistentVolumeClaimVolumeSource"), + }, + }, + "rbd": { + SchemaProps: spec.SchemaProps{ + Description: "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md", + Ref: ref("k8s.io/api/core/v1.RBDVolumeSource"), + }, + }, + "flexVolume": { + SchemaProps: spec.SchemaProps{ + Description: "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. This is an alpha feature and may change in future.", + Ref: ref("k8s.io/api/core/v1.FlexVolumeSource"), + }, + }, + "cinder": { + SchemaProps: spec.SchemaProps{ + Description: "Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md", + Ref: ref("k8s.io/api/core/v1.CinderVolumeSource"), + }, + }, + "cephfs": { + SchemaProps: spec.SchemaProps{ + Description: "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime", + Ref: ref("k8s.io/api/core/v1.CephFSVolumeSource"), + }, + }, + "flocker": { + SchemaProps: spec.SchemaProps{ + Description: "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running", + Ref: ref("k8s.io/api/core/v1.FlockerVolumeSource"), + }, + }, + "downwardAPI": { + SchemaProps: spec.SchemaProps{ + Description: "DownwardAPI represents downward API about the pod that should populate this volume", + Ref: ref("k8s.io/api/core/v1.DownwardAPIVolumeSource"), + }, + }, + "fc": { + SchemaProps: spec.SchemaProps{ + Description: "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.", + Ref: ref("k8s.io/api/core/v1.FCVolumeSource"), + }, + }, + "azureFile": { + SchemaProps: spec.SchemaProps{ + Description: "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", + Ref: ref("k8s.io/api/core/v1.AzureFileVolumeSource"), + }, + }, + "configMap": { + SchemaProps: spec.SchemaProps{ + Description: "ConfigMap represents a configMap that should populate this volume", + Ref: ref("k8s.io/api/core/v1.ConfigMapVolumeSource"), + }, + }, + "vsphereVolume": { + SchemaProps: spec.SchemaProps{ + Description: "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine", + Ref: ref("k8s.io/api/core/v1.VsphereVirtualDiskVolumeSource"), + }, + }, + "quobyte": { + SchemaProps: spec.SchemaProps{ + Description: "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime", + Ref: ref("k8s.io/api/core/v1.QuobyteVolumeSource"), + }, + }, + "azureDisk": { + SchemaProps: spec.SchemaProps{ + Description: "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", + Ref: ref("k8s.io/api/core/v1.AzureDiskVolumeSource"), + }, + }, + "photonPersistentDisk": { + SchemaProps: spec.SchemaProps{ + Description: "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine", + Ref: ref("k8s.io/api/core/v1.PhotonPersistentDiskVolumeSource"), + }, + }, + "projected": { + SchemaProps: spec.SchemaProps{ + Description: "Items for all in one resources secrets, configmaps, and downward API", + Ref: ref("k8s.io/api/core/v1.ProjectedVolumeSource"), + }, + }, + "portworxVolume": { + SchemaProps: spec.SchemaProps{ + Description: "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine", + Ref: ref("k8s.io/api/core/v1.PortworxVolumeSource"), + }, + }, + "scaleIO": { + SchemaProps: spec.SchemaProps{ + Description: "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.", + Ref: ref("k8s.io/api/core/v1.ScaleIOVolumeSource"), + }, + }, + "storageos": { + SchemaProps: spec.SchemaProps{ + Description: "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.", + Ref: ref("k8s.io/api/core/v1.StorageOSVolumeSource"), + }, + }, + }, + Required: []string{"name"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.AWSElasticBlockStoreVolumeSource", "k8s.io/api/core/v1.AzureDiskVolumeSource", "k8s.io/api/core/v1.AzureFileVolumeSource", "k8s.io/api/core/v1.CephFSVolumeSource", "k8s.io/api/core/v1.CinderVolumeSource", "k8s.io/api/core/v1.ConfigMapVolumeSource", "k8s.io/api/core/v1.DownwardAPIVolumeSource", "k8s.io/api/core/v1.EmptyDirVolumeSource", "k8s.io/api/core/v1.FCVolumeSource", "k8s.io/api/core/v1.FlexVolumeSource", "k8s.io/api/core/v1.FlockerVolumeSource", "k8s.io/api/core/v1.GCEPersistentDiskVolumeSource", "k8s.io/api/core/v1.GitRepoVolumeSource", "k8s.io/api/core/v1.GlusterfsVolumeSource", "k8s.io/api/core/v1.HostPathVolumeSource", "k8s.io/api/core/v1.ISCSIVolumeSource", "k8s.io/api/core/v1.NFSVolumeSource", "k8s.io/api/core/v1.PersistentVolumeClaimVolumeSource", "k8s.io/api/core/v1.PhotonPersistentDiskVolumeSource", "k8s.io/api/core/v1.PortworxVolumeSource", "k8s.io/api/core/v1.ProjectedVolumeSource", "k8s.io/api/core/v1.QuobyteVolumeSource", "k8s.io/api/core/v1.RBDVolumeSource", "k8s.io/api/core/v1.ScaleIOVolumeSource", "k8s.io/api/core/v1.SecretVolumeSource", "k8s.io/api/core/v1.StorageOSVolumeSource", "k8s.io/api/core/v1.VsphereVirtualDiskVolumeSource"}, + }, + "k8s.io/api/core/v1.VolumeMount": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "VolumeMount describes a mounting of a Volume within a container.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "This must match the Name of a Volume.", + Type: []string{"string"}, + Format: "", + }, + }, + "readOnly": { + SchemaProps: spec.SchemaProps{ + Description: "Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "mountPath": { + SchemaProps: spec.SchemaProps{ + Description: "Path within the container at which the volume should be mounted. Must not contain ':'.", + Type: []string{"string"}, + Format: "", + }, + }, + "subPath": { + SchemaProps: spec.SchemaProps{ + Description: "Path within the volume from which the container's volume should be mounted. Defaults to \"\" (volume's root).", + Type: []string{"string"}, + Format: "", + }, + }, + "mountPropagation": { + SchemaProps: spec.SchemaProps{ + Description: "mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationHostToContainer is used. This field is alpha in 1.8 and can be reworked or removed in a future release.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"name", "mountPath"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.VolumeProjection": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Projection that may be projected along with other supported volume types", + Properties: map[string]spec.Schema{ + "secret": { + SchemaProps: spec.SchemaProps{ + Description: "information about the secret data to project", + Ref: ref("k8s.io/api/core/v1.SecretProjection"), + }, + }, + "downwardAPI": { + SchemaProps: spec.SchemaProps{ + Description: "information about the downwardAPI data to project", + Ref: ref("k8s.io/api/core/v1.DownwardAPIProjection"), + }, + }, + "configMap": { + SchemaProps: spec.SchemaProps{ + Description: "information about the configMap data to project", + Ref: ref("k8s.io/api/core/v1.ConfigMapProjection"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ConfigMapProjection", "k8s.io/api/core/v1.DownwardAPIProjection", "k8s.io/api/core/v1.SecretProjection"}, + }, + "k8s.io/api/core/v1.VolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents the source of a volume to mount. Only one of its members may be specified.", + Properties: map[string]spec.Schema{ + "hostPath": { + SchemaProps: spec.SchemaProps{ + Description: "HostPath represents a pre-existing file or directory on the host machine that is directly exposed to the container. This is generally used for system agents or other privileged things that are allowed to see the host machine. Most containers will NOT need this. More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath", + Ref: ref("k8s.io/api/core/v1.HostPathVolumeSource"), + }, + }, + "emptyDir": { + SchemaProps: spec.SchemaProps{ + Description: "EmptyDir represents a temporary directory that shares a pod's lifetime. More info: https://kubernetes.io/docs/concepts/storage/volumes#emptydir", + Ref: ref("k8s.io/api/core/v1.EmptyDirVolumeSource"), + }, + }, + "gcePersistentDisk": { + SchemaProps: spec.SchemaProps{ + Description: "GCEPersistentDisk represents a GCE Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#gcepersistentdisk", + Ref: ref("k8s.io/api/core/v1.GCEPersistentDiskVolumeSource"), + }, + }, + "awsElasticBlockStore": { + SchemaProps: spec.SchemaProps{ + Description: "AWSElasticBlockStore represents an AWS Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore", + Ref: ref("k8s.io/api/core/v1.AWSElasticBlockStoreVolumeSource"), + }, + }, + "gitRepo": { + SchemaProps: spec.SchemaProps{ + Description: "GitRepo represents a git repository at a particular revision.", + Ref: ref("k8s.io/api/core/v1.GitRepoVolumeSource"), + }, + }, + "secret": { + SchemaProps: spec.SchemaProps{ + Description: "Secret represents a secret that should populate this volume. More info: https://kubernetes.io/docs/concepts/storage/volumes#secret", + Ref: ref("k8s.io/api/core/v1.SecretVolumeSource"), + }, + }, + "nfs": { + SchemaProps: spec.SchemaProps{ + Description: "NFS represents an NFS mount on the host that shares a pod's lifetime More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs", + Ref: ref("k8s.io/api/core/v1.NFSVolumeSource"), + }, + }, + "iscsi": { + SchemaProps: spec.SchemaProps{ + Description: "ISCSI represents an ISCSI Disk resource that is attached to a kubelet's host machine and then exposed to the pod. More info: https://releases.k8s.io/HEAD/examples/volumes/iscsi/README.md", + Ref: ref("k8s.io/api/core/v1.ISCSIVolumeSource"), + }, + }, + "glusterfs": { + SchemaProps: spec.SchemaProps{ + Description: "Glusterfs represents a Glusterfs mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/glusterfs/README.md", + Ref: ref("k8s.io/api/core/v1.GlusterfsVolumeSource"), + }, + }, + "persistentVolumeClaim": { + SchemaProps: spec.SchemaProps{ + Description: "PersistentVolumeClaimVolumeSource represents a reference to a PersistentVolumeClaim in the same namespace. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#persistentvolumeclaims", + Ref: ref("k8s.io/api/core/v1.PersistentVolumeClaimVolumeSource"), + }, + }, + "rbd": { + SchemaProps: spec.SchemaProps{ + Description: "RBD represents a Rados Block Device mount on the host that shares a pod's lifetime. More info: https://releases.k8s.io/HEAD/examples/volumes/rbd/README.md", + Ref: ref("k8s.io/api/core/v1.RBDVolumeSource"), + }, + }, + "flexVolume": { + SchemaProps: spec.SchemaProps{ + Description: "FlexVolume represents a generic volume resource that is provisioned/attached using an exec based plugin. This is an alpha feature and may change in future.", + Ref: ref("k8s.io/api/core/v1.FlexVolumeSource"), + }, + }, + "cinder": { + SchemaProps: spec.SchemaProps{ + Description: "Cinder represents a cinder volume attached and mounted on kubelets host machine More info: https://releases.k8s.io/HEAD/examples/mysql-cinder-pd/README.md", + Ref: ref("k8s.io/api/core/v1.CinderVolumeSource"), + }, + }, + "cephfs": { + SchemaProps: spec.SchemaProps{ + Description: "CephFS represents a Ceph FS mount on the host that shares a pod's lifetime", + Ref: ref("k8s.io/api/core/v1.CephFSVolumeSource"), + }, + }, + "flocker": { + SchemaProps: spec.SchemaProps{ + Description: "Flocker represents a Flocker volume attached to a kubelet's host machine. This depends on the Flocker control service being running", + Ref: ref("k8s.io/api/core/v1.FlockerVolumeSource"), + }, + }, + "downwardAPI": { + SchemaProps: spec.SchemaProps{ + Description: "DownwardAPI represents downward API about the pod that should populate this volume", + Ref: ref("k8s.io/api/core/v1.DownwardAPIVolumeSource"), + }, + }, + "fc": { + SchemaProps: spec.SchemaProps{ + Description: "FC represents a Fibre Channel resource that is attached to a kubelet's host machine and then exposed to the pod.", + Ref: ref("k8s.io/api/core/v1.FCVolumeSource"), + }, + }, + "azureFile": { + SchemaProps: spec.SchemaProps{ + Description: "AzureFile represents an Azure File Service mount on the host and bind mount to the pod.", + Ref: ref("k8s.io/api/core/v1.AzureFileVolumeSource"), + }, + }, + "configMap": { + SchemaProps: spec.SchemaProps{ + Description: "ConfigMap represents a configMap that should populate this volume", + Ref: ref("k8s.io/api/core/v1.ConfigMapVolumeSource"), + }, + }, + "vsphereVolume": { + SchemaProps: spec.SchemaProps{ + Description: "VsphereVolume represents a vSphere volume attached and mounted on kubelets host machine", + Ref: ref("k8s.io/api/core/v1.VsphereVirtualDiskVolumeSource"), + }, + }, + "quobyte": { + SchemaProps: spec.SchemaProps{ + Description: "Quobyte represents a Quobyte mount on the host that shares a pod's lifetime", + Ref: ref("k8s.io/api/core/v1.QuobyteVolumeSource"), + }, + }, + "azureDisk": { + SchemaProps: spec.SchemaProps{ + Description: "AzureDisk represents an Azure Data Disk mount on the host and bind mount to the pod.", + Ref: ref("k8s.io/api/core/v1.AzureDiskVolumeSource"), + }, + }, + "photonPersistentDisk": { + SchemaProps: spec.SchemaProps{ + Description: "PhotonPersistentDisk represents a PhotonController persistent disk attached and mounted on kubelets host machine", + Ref: ref("k8s.io/api/core/v1.PhotonPersistentDiskVolumeSource"), + }, + }, + "projected": { + SchemaProps: spec.SchemaProps{ + Description: "Items for all in one resources secrets, configmaps, and downward API", + Ref: ref("k8s.io/api/core/v1.ProjectedVolumeSource"), + }, + }, + "portworxVolume": { + SchemaProps: spec.SchemaProps{ + Description: "PortworxVolume represents a portworx volume attached and mounted on kubelets host machine", + Ref: ref("k8s.io/api/core/v1.PortworxVolumeSource"), + }, + }, + "scaleIO": { + SchemaProps: spec.SchemaProps{ + Description: "ScaleIO represents a ScaleIO persistent volume attached and mounted on Kubernetes nodes.", + Ref: ref("k8s.io/api/core/v1.ScaleIOVolumeSource"), + }, + }, + "storageos": { + SchemaProps: spec.SchemaProps{ + Description: "StorageOS represents a StorageOS volume attached and mounted on Kubernetes nodes.", + Ref: ref("k8s.io/api/core/v1.StorageOSVolumeSource"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.AWSElasticBlockStoreVolumeSource", "k8s.io/api/core/v1.AzureDiskVolumeSource", "k8s.io/api/core/v1.AzureFileVolumeSource", "k8s.io/api/core/v1.CephFSVolumeSource", "k8s.io/api/core/v1.CinderVolumeSource", "k8s.io/api/core/v1.ConfigMapVolumeSource", "k8s.io/api/core/v1.DownwardAPIVolumeSource", "k8s.io/api/core/v1.EmptyDirVolumeSource", "k8s.io/api/core/v1.FCVolumeSource", "k8s.io/api/core/v1.FlexVolumeSource", "k8s.io/api/core/v1.FlockerVolumeSource", "k8s.io/api/core/v1.GCEPersistentDiskVolumeSource", "k8s.io/api/core/v1.GitRepoVolumeSource", "k8s.io/api/core/v1.GlusterfsVolumeSource", "k8s.io/api/core/v1.HostPathVolumeSource", "k8s.io/api/core/v1.ISCSIVolumeSource", "k8s.io/api/core/v1.NFSVolumeSource", "k8s.io/api/core/v1.PersistentVolumeClaimVolumeSource", "k8s.io/api/core/v1.PhotonPersistentDiskVolumeSource", "k8s.io/api/core/v1.PortworxVolumeSource", "k8s.io/api/core/v1.ProjectedVolumeSource", "k8s.io/api/core/v1.QuobyteVolumeSource", "k8s.io/api/core/v1.RBDVolumeSource", "k8s.io/api/core/v1.ScaleIOVolumeSource", "k8s.io/api/core/v1.SecretVolumeSource", "k8s.io/api/core/v1.StorageOSVolumeSource", "k8s.io/api/core/v1.VsphereVirtualDiskVolumeSource"}, + }, + "k8s.io/api/core/v1.VsphereVirtualDiskVolumeSource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Represents a vSphere volume resource.", + Properties: map[string]spec.Schema{ + "volumePath": { + SchemaProps: spec.SchemaProps{ + Description: "Path that identifies vSphere volume vmdk", + Type: []string{"string"}, + Format: "", + }, + }, + "fsType": { + SchemaProps: spec.SchemaProps{ + Description: "Filesystem type to mount. Must be a filesystem type supported by the host operating system. Ex. \"ext4\", \"xfs\", \"ntfs\". Implicitly inferred to be \"ext4\" if unspecified.", + Type: []string{"string"}, + Format: "", + }, + }, + "storagePolicyName": { + SchemaProps: spec.SchemaProps{ + Description: "Storage Policy Based Management (SPBM) profile name.", + Type: []string{"string"}, + Format: "", + }, + }, + "storagePolicyID": { + SchemaProps: spec.SchemaProps{ + Description: "Storage Policy Based Management (SPBM) profile ID associated with the StoragePolicyName.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"volumePath"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/core/v1.WeightedPodAffinityTerm": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "The weights of all of the matched WeightedPodAffinityTerm fields are added per-node to find the most preferred node(s)", + Properties: map[string]spec.Schema{ + "weight": { + SchemaProps: spec.SchemaProps{ + Description: "weight associated with matching the corresponding podAffinityTerm, in the range 1-100.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "podAffinityTerm": { + SchemaProps: spec.SchemaProps{ + Description: "Required. A pod affinity term, associated with the corresponding weight.", + Ref: ref("k8s.io/api/core/v1.PodAffinityTerm"), + }, + }, + }, + Required: []string{"weight", "podAffinityTerm"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PodAffinityTerm"}, + }, + "k8s.io/api/extensions/v1beta1.APIVersion": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "An APIVersion represents a single concrete version of an object model.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of this version (e.g. 'v1').", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/extensions/v1beta1.AllowedHostPath": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "defines the host volume conditions that will be enabled by a policy for pods to use. It requires the path prefix to be defined.", + Properties: map[string]spec.Schema{ + "pathPrefix": { + SchemaProps: spec.SchemaProps{ + Description: "is the path prefix that the host volume must match. It does not support `*`. Trailing slashes are trimmed when validating the path prefix with a host path.\n\nExamples: `/foo` would allow `/foo`, `/foo/` and `/foo/bar` `/foo` would not allow `/food` or `/etc/foo`", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/extensions/v1beta1.CustomMetricCurrentStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Custom Metric name.", + Type: []string{"string"}, + Format: "", + }, + }, + "value": { + SchemaProps: spec.SchemaProps{ + Description: "Custom Metric value (average).", + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + Required: []string{"name", "value"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/extensions/v1beta1.CustomMetricCurrentStatusList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "items": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.CustomMetricCurrentStatus"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.CustomMetricCurrentStatus"}, + }, + "k8s.io/api/extensions/v1beta1.CustomMetricTarget": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Alpha-level support for Custom Metrics in HPA (as annotations).", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Custom Metric name.", + Type: []string{"string"}, + Format: "", + }, + }, + "value": { + SchemaProps: spec.SchemaProps{ + Description: "Custom Metric value (average).", + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + Required: []string{"name", "value"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/api/extensions/v1beta1.CustomMetricTargetList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "items": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.CustomMetricTarget"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.CustomMetricTarget"}, + }, + "k8s.io/api/extensions/v1beta1.DaemonSet": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DEPRECATED - This group version of DaemonSet is deprecated by apps/v1beta2/DaemonSet. See the release notes for more information. DaemonSet represents the configuration of a daemon set.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "The desired behavior of this daemon set. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/extensions/v1beta1.DaemonSetSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "The current status of this daemon set. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/extensions/v1beta1.DaemonSetStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.DaemonSetSpec", "k8s.io/api/extensions/v1beta1.DaemonSetStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/extensions/v1beta1.DaemonSetList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DaemonSetList is a collection of daemon sets.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "A list of daemon sets.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.DaemonSet"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.DaemonSet", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/extensions/v1beta1.DaemonSetSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DaemonSetSpec is the specification of a daemon set.", + Properties: map[string]spec.Schema{ + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "A label query over pods that are managed by the daemon set. Must match in order to be controlled. If empty, defaulted to labels on Pod template. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "template": { + SchemaProps: spec.SchemaProps{ + Description: "An object that describes the pod that will be created. The DaemonSet will create exactly one copy of this pod on every node that matches the template's node selector (or on every node if no node selector is specified). More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template", + Ref: ref("k8s.io/api/core/v1.PodTemplateSpec"), + }, + }, + "updateStrategy": { + SchemaProps: spec.SchemaProps{ + Description: "An update strategy to replace existing DaemonSet pods with new pods.", + Ref: ref("k8s.io/api/extensions/v1beta1.DaemonSetUpdateStrategy"), + }, + }, + "minReadySeconds": { + SchemaProps: spec.SchemaProps{ + Description: "The minimum number of seconds for which a newly created DaemonSet pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready).", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "templateGeneration": { + SchemaProps: spec.SchemaProps{ + Description: "DEPRECATED. A sequence number representing a specific generation of the template. Populated by the system. It can be set only during the creation.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "revisionHistoryLimit": { + SchemaProps: spec.SchemaProps{ + Description: "The number of old history to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified. Defaults to 10.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"template"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PodTemplateSpec", "k8s.io/api/extensions/v1beta1.DaemonSetUpdateStrategy", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + }, + "k8s.io/api/extensions/v1beta1.DaemonSetStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DaemonSetStatus represents the current status of a daemon set.", + Properties: map[string]spec.Schema{ + "currentNumberScheduled": { + SchemaProps: spec.SchemaProps{ + Description: "The number of nodes that are running at least 1 daemon pod and are supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "numberMisscheduled": { + SchemaProps: spec.SchemaProps{ + Description: "The number of nodes that are running the daemon pod, but are not supposed to run the daemon pod. More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "desiredNumberScheduled": { + SchemaProps: spec.SchemaProps{ + Description: "The total number of nodes that should be running the daemon pod (including nodes correctly running the daemon pod). More info: https://kubernetes.io/docs/concepts/workloads/controllers/daemonset/", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "numberReady": { + SchemaProps: spec.SchemaProps{ + Description: "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and ready.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "observedGeneration": { + SchemaProps: spec.SchemaProps{ + Description: "The most recent generation observed by the daemon set controller.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "updatedNumberScheduled": { + SchemaProps: spec.SchemaProps{ + Description: "The total number of nodes that are running updated daemon pod", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "numberAvailable": { + SchemaProps: spec.SchemaProps{ + Description: "The number of nodes that should be running the daemon pod and have one or more of the daemon pod running and available (ready for at least spec.minReadySeconds)", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "numberUnavailable": { + SchemaProps: spec.SchemaProps{ + Description: "The number of nodes that should be running the daemon pod and have none of the daemon pod running and available (ready for at least spec.minReadySeconds)", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "collisionCount": { + SchemaProps: spec.SchemaProps{ + Description: "Count of hash collisions for the DaemonSet. The DaemonSet controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ControllerRevision.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"currentNumberScheduled", "numberMisscheduled", "desiredNumberScheduled", "numberReady"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/extensions/v1beta1.DaemonSetUpdateStrategy": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of daemon set update. Can be \"RollingUpdate\" or \"OnDelete\". Default is OnDelete.", + Type: []string{"string"}, + Format: "", + }, + }, + "rollingUpdate": { + SchemaProps: spec.SchemaProps{ + Description: "Rolling update config params. Present only if type = \"RollingUpdate\".", + Ref: ref("k8s.io/api/extensions/v1beta1.RollingUpdateDaemonSet"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.RollingUpdateDaemonSet"}, + }, + "k8s.io/api/extensions/v1beta1.Deployment": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DEPRECATED - This group version of Deployment is deprecated by apps/v1beta2/Deployment. See the release notes for more information. Deployment enables declarative updates for Pods and ReplicaSets.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Specification of the desired behavior of the Deployment.", + Ref: ref("k8s.io/api/extensions/v1beta1.DeploymentSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Most recently observed status of the Deployment.", + Ref: ref("k8s.io/api/extensions/v1beta1.DeploymentStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.DeploymentSpec", "k8s.io/api/extensions/v1beta1.DeploymentStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/extensions/v1beta1.DeploymentCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DeploymentCondition describes the state of a deployment at a certain point.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of deployment condition.", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status of the condition, one of True, False, Unknown.", + Type: []string{"string"}, + Format: "", + }, + }, + "lastUpdateTime": { + SchemaProps: spec.SchemaProps{ + Description: "The last time this condition was updated.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time the condition transitioned from one status to another.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "The reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "A human readable message indicating details about the transition.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/extensions/v1beta1.DeploymentList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DeploymentList is a list of Deployments.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is the list of Deployments.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.Deployment"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.Deployment", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/extensions/v1beta1.DeploymentRollback": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DEPRECATED. DeploymentRollback stores the information required to rollback a deployment.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Required: This must match the Name of a deployment.", + Type: []string{"string"}, + Format: "", + }, + }, + "updatedAnnotations": { + SchemaProps: spec.SchemaProps{ + Description: "The annotations to be updated to a deployment", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "rollbackTo": { + SchemaProps: spec.SchemaProps{ + Description: "The config of this deployment rollback.", + Ref: ref("k8s.io/api/extensions/v1beta1.RollbackConfig"), + }, + }, + }, + Required: []string{"name", "rollbackTo"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.RollbackConfig"}, + }, + "k8s.io/api/extensions/v1beta1.DeploymentSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DeploymentSpec is the specification of the desired behavior of the Deployment.", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "Number of desired pods. This is a pointer to distinguish between explicit zero and not specified. Defaults to 1.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "Label selector for pods. Existing ReplicaSets whose pods are selected by this will be the ones affected by this deployment.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "template": { + SchemaProps: spec.SchemaProps{ + Description: "Template describes the pods that will be created.", + Ref: ref("k8s.io/api/core/v1.PodTemplateSpec"), + }, + }, + "strategy": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-strategy": "retainKeys", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "The deployment strategy to use to replace existing pods with new ones.", + Ref: ref("k8s.io/api/extensions/v1beta1.DeploymentStrategy"), + }, + }, + "minReadySeconds": { + SchemaProps: spec.SchemaProps{ + Description: "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "revisionHistoryLimit": { + SchemaProps: spec.SchemaProps{ + Description: "The number of old ReplicaSets to retain to allow rollback. This is a pointer to distinguish between explicit zero and not specified.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "paused": { + SchemaProps: spec.SchemaProps{ + Description: "Indicates that the deployment is paused and will not be processed by the deployment controller.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "rollbackTo": { + SchemaProps: spec.SchemaProps{ + Description: "DEPRECATED. The config this deployment is rolling back to. Will be cleared after rollback is done.", + Ref: ref("k8s.io/api/extensions/v1beta1.RollbackConfig"), + }, + }, + "progressDeadlineSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "The maximum time in seconds for a deployment to make progress before it is considered to be failed. The deployment controller will continue to process failed deployments and a condition with a ProgressDeadlineExceeded reason will be surfaced in the deployment status. Note that progress will not be estimated during the time a deployment is paused. This is not set by default.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"template"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PodTemplateSpec", "k8s.io/api/extensions/v1beta1.DeploymentStrategy", "k8s.io/api/extensions/v1beta1.RollbackConfig", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + }, + "k8s.io/api/extensions/v1beta1.DeploymentStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DeploymentStatus is the most recently observed status of the Deployment.", + Properties: map[string]spec.Schema{ + "observedGeneration": { + SchemaProps: spec.SchemaProps{ + Description: "The generation observed by the deployment controller.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "Total number of non-terminated pods targeted by this deployment (their labels match the selector).", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "updatedReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "Total number of non-terminated pods targeted by this deployment that have the desired template spec.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "readyReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "Total number of ready pods targeted by this deployment.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "availableReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "Total number of available pods (ready for at least minReadySeconds) targeted by this deployment.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "unavailableReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "Total number of unavailable pods targeted by this deployment. This is the total number of pods that are still required for the deployment to have 100% available capacity. They may either be pods that are running but not yet available or pods that still have not been created.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "conditions": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "Represents the latest available observations of a deployment's current state.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.DeploymentCondition"), + }, + }, + }, + }, + }, + "collisionCount": { + SchemaProps: spec.SchemaProps{ + Description: "Count of hash collisions for the Deployment. The Deployment controller uses this field as a collision avoidance mechanism when it needs to create the name for the newest ReplicaSet.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.DeploymentCondition"}, + }, + "k8s.io/api/extensions/v1beta1.DeploymentStrategy": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DeploymentStrategy describes how to replace existing pods with new ones.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of deployment. Can be \"Recreate\" or \"RollingUpdate\". Default is RollingUpdate.", + Type: []string{"string"}, + Format: "", + }, + }, + "rollingUpdate": { + SchemaProps: spec.SchemaProps{ + Description: "Rolling update config params. Present only if DeploymentStrategyType = RollingUpdate.", + Ref: ref("k8s.io/api/extensions/v1beta1.RollingUpdateDeployment"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.RollingUpdateDeployment"}, + }, + "k8s.io/api/extensions/v1beta1.FSGroupStrategyOptions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "FSGroupStrategyOptions defines the strategy type and options used to create the strategy.", + Properties: map[string]spec.Schema{ + "rule": { + SchemaProps: spec.SchemaProps{ + Description: "Rule is the strategy that will dictate what FSGroup is used in the SecurityContext.", + Type: []string{"string"}, + Format: "", + }, + }, + "ranges": { + SchemaProps: spec.SchemaProps{ + Description: "Ranges are the allowed ranges of fs groups. If you would like to force a single fs group then supply a single range with the same start and end.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.IDRange"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.IDRange"}, + }, + "k8s.io/api/extensions/v1beta1.HTTPIngressPath": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "HTTPIngressPath associates a path regex with a backend. Incoming urls matching the path are forwarded to the backend.", + Properties: map[string]spec.Schema{ + "path": { + SchemaProps: spec.SchemaProps{ + Description: "Path is an extended POSIX regex as defined by IEEE Std 1003.1, (i.e this follows the egrep/unix syntax, not the perl syntax) matched against the path of an incoming request. Currently it can contain characters disallowed from the conventional \"path\" part of a URL as defined by RFC 3986. Paths must begin with a '/'. If unspecified, the path defaults to a catch all sending traffic to the backend.", + Type: []string{"string"}, + Format: "", + }, + }, + "backend": { + SchemaProps: spec.SchemaProps{ + Description: "Backend defines the referenced service endpoint to which the traffic will be forwarded to.", + Ref: ref("k8s.io/api/extensions/v1beta1.IngressBackend"), + }, + }, + }, + Required: []string{"backend"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.IngressBackend"}, + }, + "k8s.io/api/extensions/v1beta1.HTTPIngressRuleValue": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "HTTPIngressRuleValue is a list of http selectors pointing to backends. In the example: http:///? -> backend where where parts of the url correspond to RFC 3986, this resource will be used to match against everything after the last '/' and before the first '?' or '#'.", + Properties: map[string]spec.Schema{ + "paths": { + SchemaProps: spec.SchemaProps{ + Description: "A collection of paths that map requests to backends.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.HTTPIngressPath"), + }, + }, + }, + }, + }, + }, + Required: []string{"paths"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.HTTPIngressPath"}, + }, + "k8s.io/api/extensions/v1beta1.HostPortRange": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Host Port Range defines a range of host ports that will be enabled by a policy for pods to use. It requires both the start and end to be defined.", + Properties: map[string]spec.Schema{ + "min": { + SchemaProps: spec.SchemaProps{ + Description: "min is the start of the range, inclusive.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "max": { + SchemaProps: spec.SchemaProps{ + Description: "max is the end of the range, inclusive.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"min", "max"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/extensions/v1beta1.IDRange": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ID Range provides a min/max of an allowed range of IDs.", + Properties: map[string]spec.Schema{ + "min": { + SchemaProps: spec.SchemaProps{ + Description: "Min is the start of the range, inclusive.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "max": { + SchemaProps: spec.SchemaProps{ + Description: "Max is the end of the range, inclusive.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + }, + Required: []string{"min", "max"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/extensions/v1beta1.IPBlock": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "IPBlock describes a particular CIDR (Ex. \"192.168.1.1/24\") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.", + Properties: map[string]spec.Schema{ + "cidr": { + SchemaProps: spec.SchemaProps{ + Description: "CIDR is a string representing the IP Block Valid examples are \"192.168.1.1/24\"", + Type: []string{"string"}, + Format: "", + }, + }, + "except": { + SchemaProps: spec.SchemaProps{ + Description: "Except is a slice of CIDRs that should not be included within an IP Block Valid examples are \"192.168.1.1/24\" Except values will be rejected if they are outside the CIDR range", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"cidr"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/extensions/v1beta1.Ingress": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Ingress is a collection of rules that allow inbound connections to reach the endpoints defined by a backend. An Ingress can be configured to give services externally-reachable urls, load balance traffic, terminate SSL, offer name based virtual hosting etc.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec is the desired state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/extensions/v1beta1.IngressSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is the current state of the Ingress. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/extensions/v1beta1.IngressStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.IngressSpec", "k8s.io/api/extensions/v1beta1.IngressStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/extensions/v1beta1.IngressBackend": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "IngressBackend describes all endpoints for a given service and port.", + Properties: map[string]spec.Schema{ + "serviceName": { + SchemaProps: spec.SchemaProps{ + Description: "Specifies the name of the referenced service.", + Type: []string{"string"}, + Format: "", + }, + }, + "servicePort": { + SchemaProps: spec.SchemaProps{ + Description: "Specifies the port of the referenced service.", + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + }, + Required: []string{"serviceName", "servicePort"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/util/intstr.IntOrString"}, + }, + "k8s.io/api/extensions/v1beta1.IngressList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "IngressList is a collection of Ingress.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is the list of Ingress.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.Ingress"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.Ingress", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/extensions/v1beta1.IngressRule": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "IngressRule represents the rules mapping the paths under a specified host to the related backend services. Incoming requests are first evaluated for a host match, then routed to the backend associated with the matching IngressRuleValue.", + Properties: map[string]spec.Schema{ + "host": { + SchemaProps: spec.SchemaProps{ + Description: "Host is the fully qualified domain name of a network host, as defined by RFC 3986. Note the following deviations from the \"host\" part of the URI as defined in the RFC: 1. IPs are not allowed. Currently an IngressRuleValue can only apply to the\n\t IP in the Spec of the parent Ingress.\n2. The `:` delimiter is not respected because ports are not allowed.\n\t Currently the port of an Ingress is implicitly :80 for http and\n\t :443 for https.\nBoth these may change in the future. Incoming requests are matched against the host before the IngressRuleValue. If the host is unspecified, the Ingress routes all traffic based on the specified IngressRuleValue.", + Type: []string{"string"}, + Format: "", + }, + }, + "http": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.HTTPIngressRuleValue"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.HTTPIngressRuleValue"}, + }, + "k8s.io/api/extensions/v1beta1.IngressRuleValue": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "IngressRuleValue represents a rule to apply against incoming requests. If the rule is satisfied, the request is routed to the specified backend. Currently mixing different types of rules in a single Ingress is disallowed, so exactly one of the following must be set.", + Properties: map[string]spec.Schema{ + "http": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.HTTPIngressRuleValue"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.HTTPIngressRuleValue"}, + }, + "k8s.io/api/extensions/v1beta1.IngressSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "IngressSpec describes the Ingress the user wishes to exist.", + Properties: map[string]spec.Schema{ + "backend": { + SchemaProps: spec.SchemaProps{ + Description: "A default backend capable of servicing requests that don't match any rule. At least one of 'backend' or 'rules' must be specified. This field is optional to allow the loadbalancer controller or defaulting logic to specify a global default.", + Ref: ref("k8s.io/api/extensions/v1beta1.IngressBackend"), + }, + }, + "tls": { + SchemaProps: spec.SchemaProps{ + Description: "TLS configuration. Currently the Ingress only supports a single TLS port, 443. If multiple members of this list specify different hosts, they will be multiplexed on the same port according to the hostname specified through the SNI TLS extension, if the ingress controller fulfilling the ingress supports SNI.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.IngressTLS"), + }, + }, + }, + }, + }, + "rules": { + SchemaProps: spec.SchemaProps{ + Description: "A list of host rules used to configure the Ingress. If unspecified, or no rule matches, all traffic is sent to the default backend.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.IngressRule"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.IngressBackend", "k8s.io/api/extensions/v1beta1.IngressRule", "k8s.io/api/extensions/v1beta1.IngressTLS"}, + }, + "k8s.io/api/extensions/v1beta1.IngressStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "IngressStatus describe the current state of the Ingress.", + Properties: map[string]spec.Schema{ + "loadBalancer": { + SchemaProps: spec.SchemaProps{ + Description: "LoadBalancer contains the current status of the load-balancer.", + Ref: ref("k8s.io/api/core/v1.LoadBalancerStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.LoadBalancerStatus"}, + }, + "k8s.io/api/extensions/v1beta1.IngressTLS": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "IngressTLS describes the transport layer security associated with an Ingress.", + Properties: map[string]spec.Schema{ + "hosts": { + SchemaProps: spec.SchemaProps{ + Description: "Hosts are a list of hosts included in the TLS certificate. The values in this list must match the name/s used in the tlsSecret. Defaults to the wildcard host setting for the loadbalancer controller fulfilling this Ingress, if left unspecified.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "secretName": { + SchemaProps: spec.SchemaProps{ + Description: "SecretName is the name of the secret used to terminate SSL traffic on 443. Field is left optional to allow SSL routing based on SNI hostname alone. If the SNI host in a listener conflicts with the \"Host\" header field used by an IngressRule, the SNI host is used for termination and value of the Host header is used for routing.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/extensions/v1beta1.NetworkPolicy": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NetworkPolicy describes what network traffic is allowed for a set of Pods", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Specification of the desired behavior for this NetworkPolicy.", + Ref: ref("k8s.io/api/extensions/v1beta1.NetworkPolicySpec"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.NetworkPolicySpec", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/extensions/v1beta1.NetworkPolicyEgressRule": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8", + Properties: map[string]spec.Schema{ + "ports": { + SchemaProps: spec.SchemaProps{ + Description: "List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.NetworkPolicyPort"), + }, + }, + }, + }, + }, + "to": { + SchemaProps: spec.SchemaProps{ + Description: "List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.NetworkPolicyPeer"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.NetworkPolicyPeer", "k8s.io/api/extensions/v1beta1.NetworkPolicyPort"}, + }, + "k8s.io/api/extensions/v1beta1.NetworkPolicyIngressRule": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "This NetworkPolicyIngressRule matches traffic if and only if the traffic matches both ports AND from.", + Properties: map[string]spec.Schema{ + "ports": { + SchemaProps: spec.SchemaProps{ + Description: "List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.NetworkPolicyPort"), + }, + }, + }, + }, + }, + "from": { + SchemaProps: spec.SchemaProps{ + Description: "List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least on item, this rule allows traffic only if the traffic matches at least one item in the from list.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.NetworkPolicyPeer"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.NetworkPolicyPeer", "k8s.io/api/extensions/v1beta1.NetworkPolicyPort"}, + }, + "k8s.io/api/extensions/v1beta1.NetworkPolicyList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Network Policy List is a list of NetworkPolicy objects.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of schema objects.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.NetworkPolicy"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.NetworkPolicy", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/extensions/v1beta1.NetworkPolicyPeer": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "podSelector": { + SchemaProps: spec.SchemaProps{ + Description: "This is a label selector which selects Pods in this namespace. This field follows standard label selector semantics. If present but empty, this selector selects all pods in this namespace.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "namespaceSelector": { + SchemaProps: spec.SchemaProps{ + Description: "Selects Namespaces using cluster scoped-labels. This matches all pods in all namespaces selected by this label selector. This field follows standard label selector semantics. If present but empty, this selector selects all namespaces.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "ipBlock": { + SchemaProps: spec.SchemaProps{ + Description: "IPBlock defines policy on a particular IPBlock", + Ref: ref("k8s.io/api/extensions/v1beta1.IPBlock"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.IPBlock", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + }, + "k8s.io/api/extensions/v1beta1.NetworkPolicyPort": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "protocol": { + SchemaProps: spec.SchemaProps{ + Description: "Optional. The protocol (TCP or UDP) which traffic must match. If not specified, this field defaults to TCP.", + Type: []string{"string"}, + Format: "", + }, + }, + "port": { + SchemaProps: spec.SchemaProps{ + Description: "If specified, the port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers. If present, only traffic on the specified protocol AND port will be matched.", + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/util/intstr.IntOrString"}, + }, + "k8s.io/api/extensions/v1beta1.NetworkPolicySpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "podSelector": { + SchemaProps: spec.SchemaProps{ + Description: "Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "ingress": { + SchemaProps: spec.SchemaProps{ + Description: "List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default).", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.NetworkPolicyIngressRule"), + }, + }, + }, + }, + }, + "egress": { + SchemaProps: spec.SchemaProps{ + Description: "List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.NetworkPolicyEgressRule"), + }, + }, + }, + }, + }, + "policyTypes": { + SchemaProps: spec.SchemaProps{ + Description: "List of rule types that the NetworkPolicy relates to. Valid options are Ingress, Egress, or Ingress,Egress. If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ \"Egress\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include an Egress section and would otherwise default to just [ \"Ingress\" ]). This field is beta-level in 1.8", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"podSelector"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.NetworkPolicyEgressRule", "k8s.io/api/extensions/v1beta1.NetworkPolicyIngressRule", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + }, + "k8s.io/api/extensions/v1beta1.PodSecurityPolicy": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Pod Security Policy governs the ability to make requests that affect the Security Context that will be applied to a pod and container.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "spec defines the policy enforced.", + Ref: ref("k8s.io/api/extensions/v1beta1.PodSecurityPolicySpec"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.PodSecurityPolicySpec", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/extensions/v1beta1.PodSecurityPolicyList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Pod Security Policy List is a list of PodSecurityPolicy objects.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of schema objects.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.PodSecurityPolicy"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.PodSecurityPolicy", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/extensions/v1beta1.PodSecurityPolicySpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Pod Security Policy Spec defines the policy enforced.", + Properties: map[string]spec.Schema{ + "privileged": { + SchemaProps: spec.SchemaProps{ + Description: "privileged determines if a pod can request to be run as privileged.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "defaultAddCapabilities": { + SchemaProps: spec.SchemaProps{ + Description: "DefaultAddCapabilities is the default set of capabilities that will be added to the container unless the pod spec specifically drops the capability. You may not list a capabiility in both DefaultAddCapabilities and RequiredDropCapabilities.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "requiredDropCapabilities": { + SchemaProps: spec.SchemaProps{ + Description: "RequiredDropCapabilities are the capabilities that will be dropped from the container. These are required to be dropped and cannot be added.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "allowedCapabilities": { + SchemaProps: spec.SchemaProps{ + Description: "AllowedCapabilities is a list of capabilities that can be requested to add to the container. Capabilities in this field may be added at the pod author's discretion. You must not list a capability in both AllowedCapabilities and RequiredDropCapabilities.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "volumes": { + SchemaProps: spec.SchemaProps{ + Description: "volumes is a white list of allowed volume plugins. Empty indicates that all plugins may be used.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "hostNetwork": { + SchemaProps: spec.SchemaProps{ + Description: "hostNetwork determines if the policy allows the use of HostNetwork in the pod spec.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "hostPorts": { + SchemaProps: spec.SchemaProps{ + Description: "hostPorts determines which host port ranges are allowed to be exposed.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.HostPortRange"), + }, + }, + }, + }, + }, + "hostPID": { + SchemaProps: spec.SchemaProps{ + Description: "hostPID determines if the policy allows the use of HostPID in the pod spec.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "hostIPC": { + SchemaProps: spec.SchemaProps{ + Description: "hostIPC determines if the policy allows the use of HostIPC in the pod spec.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "seLinux": { + SchemaProps: spec.SchemaProps{ + Description: "seLinux is the strategy that will dictate the allowable labels that may be set.", + Ref: ref("k8s.io/api/extensions/v1beta1.SELinuxStrategyOptions"), + }, + }, + "runAsUser": { + SchemaProps: spec.SchemaProps{ + Description: "runAsUser is the strategy that will dictate the allowable RunAsUser values that may be set.", + Ref: ref("k8s.io/api/extensions/v1beta1.RunAsUserStrategyOptions"), + }, + }, + "supplementalGroups": { + SchemaProps: spec.SchemaProps{ + Description: "SupplementalGroups is the strategy that will dictate what supplemental groups are used by the SecurityContext.", + Ref: ref("k8s.io/api/extensions/v1beta1.SupplementalGroupsStrategyOptions"), + }, + }, + "fsGroup": { + SchemaProps: spec.SchemaProps{ + Description: "FSGroup is the strategy that will dictate what fs group is used by the SecurityContext.", + Ref: ref("k8s.io/api/extensions/v1beta1.FSGroupStrategyOptions"), + }, + }, + "readOnlyRootFilesystem": { + SchemaProps: spec.SchemaProps{ + Description: "ReadOnlyRootFilesystem when set to true will force containers to run with a read only root file system. If the container specifically requests to run with a non-read only root file system the PSP should deny the pod. If set to false the container may run with a read only root file system if it wishes but it will not be forced to.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "defaultAllowPrivilegeEscalation": { + SchemaProps: spec.SchemaProps{ + Description: "DefaultAllowPrivilegeEscalation controls the default setting for whether a process can gain more privileges than its parent process.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "allowPrivilegeEscalation": { + SchemaProps: spec.SchemaProps{ + Description: "AllowPrivilegeEscalation determines if a pod can request to allow privilege escalation. If unspecified, defaults to true.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "allowedHostPaths": { + SchemaProps: spec.SchemaProps{ + Description: "is a white list of allowed host paths. Empty indicates that all host paths may be used.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.AllowedHostPath"), + }, + }, + }, + }, + }, + }, + Required: []string{"seLinux", "runAsUser", "supplementalGroups", "fsGroup"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.AllowedHostPath", "k8s.io/api/extensions/v1beta1.FSGroupStrategyOptions", "k8s.io/api/extensions/v1beta1.HostPortRange", "k8s.io/api/extensions/v1beta1.RunAsUserStrategyOptions", "k8s.io/api/extensions/v1beta1.SELinuxStrategyOptions", "k8s.io/api/extensions/v1beta1.SupplementalGroupsStrategyOptions"}, + }, + "k8s.io/api/extensions/v1beta1.ReplicaSet": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DEPRECATED - This group version of ReplicaSet is deprecated by apps/v1beta2/ReplicaSet. See the release notes for more information. ReplicaSet represents the configuration of a ReplicaSet.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "If the Labels of a ReplicaSet are empty, they are defaulted to be the same as the Pod(s) that the ReplicaSet manages. Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec defines the specification of the desired behavior of the ReplicaSet. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/extensions/v1beta1.ReplicaSetSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is the most recently observed status of the ReplicaSet. This data may be out of date by some window of time. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Ref: ref("k8s.io/api/extensions/v1beta1.ReplicaSetStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.ReplicaSetSpec", "k8s.io/api/extensions/v1beta1.ReplicaSetStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/extensions/v1beta1.ReplicaSetCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ReplicaSetCondition describes the state of a replica set at a certain point.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of replica set condition.", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status of the condition, one of True, False, Unknown.", + Type: []string{"string"}, + Format: "", + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "The last time the condition transitioned from one status to another.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "The reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "A human readable message indicating details about the transition.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/extensions/v1beta1.ReplicaSetList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ReplicaSetList is a collection of ReplicaSets.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of ReplicaSets. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.ReplicaSet"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.ReplicaSet", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/extensions/v1beta1.ReplicaSetSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ReplicaSetSpec is the specification of a ReplicaSet.", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "Replicas is the number of desired replicas. This is a pointer to distinguish between explicit zero and unspecified. Defaults to 1. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "minReadySeconds": { + SchemaProps: spec.SchemaProps{ + Description: "Minimum number of seconds for which a newly created pod should be ready without any of its container crashing, for it to be considered available. Defaults to 0 (pod will be considered available as soon as it is ready)", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "Selector is a label query over pods that should match the replica count. If the selector is empty, it is defaulted to the labels present on the pod template. Label keys and values that must match in order to be controlled by this replica set. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "template": { + SchemaProps: spec.SchemaProps{ + Description: "Template is the object that describes the pod that will be created if insufficient replicas are detected. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller#pod-template", + Ref: ref("k8s.io/api/core/v1.PodTemplateSpec"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.PodTemplateSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + }, + "k8s.io/api/extensions/v1beta1.ReplicaSetStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ReplicaSetStatus represents the current status of a ReplicaSet.", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "Replicas is the most recently oberved number of replicas. More info: https://kubernetes.io/docs/concepts/workloads/controllers/replicationcontroller/#what-is-a-replicationcontroller", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "fullyLabeledReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "The number of pods that have labels matching the labels of the pod template of the replicaset.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "readyReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "The number of ready replicas for this replica set.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "availableReplicas": { + SchemaProps: spec.SchemaProps{ + Description: "The number of available replicas (ready for at least minReadySeconds) for this replica set.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "observedGeneration": { + SchemaProps: spec.SchemaProps{ + Description: "ObservedGeneration reflects the generation of the most recently observed ReplicaSet.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "conditions": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "Represents the latest available observations of a replica set's current state.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.ReplicaSetCondition"), + }, + }, + }, + }, + }, + }, + Required: []string{"replicas"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.ReplicaSetCondition"}, + }, + "k8s.io/api/extensions/v1beta1.ReplicationControllerDummy": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Dummy definition", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/extensions/v1beta1.RollbackConfig": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DEPRECATED.", + Properties: map[string]spec.Schema{ + "revision": { + SchemaProps: spec.SchemaProps{ + Description: "The revision to rollback to. If set to 0, rollback to the last revision.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/extensions/v1beta1.RollingUpdateDaemonSet": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Spec to control the desired behavior of daemon set rolling update.", + Properties: map[string]spec.Schema{ + "maxUnavailable": { + SchemaProps: spec.SchemaProps{ + Description: "The maximum number of DaemonSet pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of total number of DaemonSet pods at the start of the update (ex: 10%). Absolute number is calculated from percentage by rounding up. This cannot be 0. Default value is 1. Example: when this is set to 30%, at most 30% of the total number of nodes that should be running the daemon pod (i.e. status.desiredNumberScheduled) can have their pods stopped for an update at any given time. The update starts by stopping at most 30% of those DaemonSet pods and then brings up new DaemonSet pods in their place. Once the new pods are available, it then proceeds onto other DaemonSet pods, thus ensuring that at least 70% of original number of DaemonSet pods are available at all times during the update.", + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/util/intstr.IntOrString"}, + }, + "k8s.io/api/extensions/v1beta1.RollingUpdateDeployment": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Spec to control the desired behavior of rolling update.", + Properties: map[string]spec.Schema{ + "maxUnavailable": { + SchemaProps: spec.SchemaProps{ + Description: "The maximum number of pods that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. By default, a fixed value of 1 is used. Example: when this is set to 30%, the old RC can be scaled down to 70% of desired pods immediately when the rolling update starts. Once new pods are ready, old RC can be scaled down further, followed by scaling up the new RC, ensuring that the total number of pods available at all times during the update is at least 70% of desired pods.", + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + "maxSurge": { + SchemaProps: spec.SchemaProps{ + Description: "The maximum number of pods that can be scheduled above the desired number of pods. Value can be an absolute number (ex: 5) or a percentage of desired pods (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. By default, a value of 1 is used. Example: when this is set to 30%, the new RC can be scaled up immediately when the rolling update starts, such that the total number of old and new pods do not exceed 130% of desired pods. Once old pods have been killed, new RC can be scaled up further, ensuring that total number of pods running at any time during the update is atmost 130% of desired pods.", + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/util/intstr.IntOrString"}, + }, + "k8s.io/api/extensions/v1beta1.RunAsUserStrategyOptions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Run A sUser Strategy Options defines the strategy type and any options used to create the strategy.", + Properties: map[string]spec.Schema{ + "rule": { + SchemaProps: spec.SchemaProps{ + Description: "Rule is the strategy that will dictate the allowable RunAsUser values that may be set.", + Type: []string{"string"}, + Format: "", + }, + }, + "ranges": { + SchemaProps: spec.SchemaProps{ + Description: "Ranges are the allowed ranges of uids that may be used.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.IDRange"), + }, + }, + }, + }, + }, + }, + Required: []string{"rule"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.IDRange"}, + }, + "k8s.io/api/extensions/v1beta1.SELinuxStrategyOptions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SELinux Strategy Options defines the strategy type and any options used to create the strategy.", + Properties: map[string]spec.Schema{ + "rule": { + SchemaProps: spec.SchemaProps{ + Description: "type is the strategy that will dictate the allowable labels that may be set.", + Type: []string{"string"}, + Format: "", + }, + }, + "seLinuxOptions": { + SchemaProps: spec.SchemaProps{ + Description: "seLinuxOptions required to run as; required for MustRunAs More info: https://git.k8s.io/community/contributors/design-proposals/security_context.md", + Ref: ref("k8s.io/api/core/v1.SELinuxOptions"), + }, + }, + }, + Required: []string{"rule"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.SELinuxOptions"}, + }, + "k8s.io/api/extensions/v1beta1.Scale": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "represents a scaling request for a resource.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object metadata; More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "defines the behavior of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status.", + Ref: ref("k8s.io/api/extensions/v1beta1.ScaleSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "current status of the scale. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status. Read-only.", + Ref: ref("k8s.io/api/extensions/v1beta1.ScaleStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.ScaleSpec", "k8s.io/api/extensions/v1beta1.ScaleStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/extensions/v1beta1.ScaleSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "describes the attributes of a scale subresource", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "desired number of instances for the scaled object.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/extensions/v1beta1.ScaleStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "represents the current status of a scale subresource.", + Properties: map[string]spec.Schema{ + "replicas": { + SchemaProps: spec.SchemaProps{ + Description: "actual number of observed instances of the scaled object.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "label query over pods that should match the replicas count. More info: http://kubernetes.io/docs/user-guide/labels#label-selectors", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "targetSelector": { + SchemaProps: spec.SchemaProps{ + Description: "label selector for pods that should match the replicas count. This is a serializated version of both map-based and more expressive set-based selectors. This is done to avoid introspection in the clients. The string will be in the same format as the query-param syntax. If the target type only supports map-based selectors, both this field and map-based selector field are populated. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/#label-selectors", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"replicas"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/extensions/v1beta1.SupplementalGroupsStrategyOptions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "SupplementalGroupsStrategyOptions defines the strategy type and options used to create the strategy.", + Properties: map[string]spec.Schema{ + "rule": { + SchemaProps: spec.SchemaProps{ + Description: "Rule is the strategy that will dictate what supplemental groups is used in the SecurityContext.", + Type: []string{"string"}, + Format: "", + }, + }, + "ranges": { + SchemaProps: spec.SchemaProps{ + Description: "Ranges are the allowed ranges of supplemental groups. If you would like to force a single supplemental group then supply a single range with the same start and end.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.IDRange"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.IDRange"}, + }, + "k8s.io/api/extensions/v1beta1.ThirdPartyResource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "A ThirdPartyResource is a generic representation of a resource, it is used by add-ons and plugins to add new resource types to the API. It consists of one or more Versions of the api.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "description": { + SchemaProps: spec.SchemaProps{ + Description: "Description is the description of this object.", + Type: []string{"string"}, + Format: "", + }, + }, + "versions": { + SchemaProps: spec.SchemaProps{ + Description: "Versions are versions for this third party object", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.APIVersion"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.APIVersion", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/extensions/v1beta1.ThirdPartyResourceData": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "An internal object, used for versioned storage in etcd. Not exposed to the end user.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "data": { + SchemaProps: spec.SchemaProps{ + Description: "Data is the raw JSON data for this data.", + Type: []string{"string"}, + Format: "byte", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/extensions/v1beta1.ThirdPartyResourceDataList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ThirdPartyResrouceDataList is a list of ThirdPartyResourceData.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is the list of ThirdpartyResourceData.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.ThirdPartyResourceData"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.ThirdPartyResourceData", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/extensions/v1beta1.ThirdPartyResourceList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ThirdPartyResourceList is a list of ThirdPartyResources.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is the list of ThirdPartyResources.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/extensions/v1beta1.ThirdPartyResource"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/extensions/v1beta1.ThirdPartyResource", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/imagepolicy/v1alpha1.ImageReview": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ImageReview checks if the set of images in a pod are allowed.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec holds information about the pod being evaluated", + Ref: ref("k8s.io/api/imagepolicy/v1alpha1.ImageReviewSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is filled in by the backend and indicates whether the pod should be allowed.", + Ref: ref("k8s.io/api/imagepolicy/v1alpha1.ImageReviewStatus"), + }, + }, + }, + Required: []string{"spec"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/imagepolicy/v1alpha1.ImageReviewSpec", "k8s.io/api/imagepolicy/v1alpha1.ImageReviewStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/imagepolicy/v1alpha1.ImageReviewContainerSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ImageReviewContainerSpec is a description of a container within the pod creation request.", + Properties: map[string]spec.Schema{ + "image": { + SchemaProps: spec.SchemaProps{ + Description: "This can be in the form image:tag or image@SHA:012345679abcdef.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/imagepolicy/v1alpha1.ImageReviewSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ImageReviewSpec is a description of the pod creation request.", + Properties: map[string]spec.Schema{ + "containers": { + SchemaProps: spec.SchemaProps{ + Description: "Containers is a list of a subset of the information in each container of the Pod being created.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/imagepolicy/v1alpha1.ImageReviewContainerSpec"), + }, + }, + }, + }, + }, + "annotations": { + SchemaProps: spec.SchemaProps{ + Description: "Annotations is a list of key-value pairs extracted from the Pod's annotations. It only includes keys which match the pattern `*.image-policy.k8s.io/*`. It is up to each webhook backend to determine how to interpret these annotations, if at all.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "namespace": { + SchemaProps: spec.SchemaProps{ + Description: "Namespace is the namespace the pod is being created in.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/imagepolicy/v1alpha1.ImageReviewContainerSpec"}, + }, + "k8s.io/api/imagepolicy/v1alpha1.ImageReviewStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ImageReviewStatus is the result of the token authentication request.", + Properties: map[string]spec.Schema{ + "allowed": { + SchemaProps: spec.SchemaProps{ + Description: "Allowed indicates that all images were allowed to be run.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "Reason should be empty unless Allowed is false in which case it may contain a short description of what is wrong. Kubernetes may truncate excessively long errors when displaying to the user.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"allowed"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/networking/v1.IPBlock": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "IPBlock describes a particular CIDR (Ex. \"192.168.1.1/24\") that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The except entry describes CIDRs that should not be included within this rule.", + Properties: map[string]spec.Schema{ + "cidr": { + SchemaProps: spec.SchemaProps{ + Description: "CIDR is a string representing the IP Block Valid examples are \"192.168.1.1/24\"", + Type: []string{"string"}, + Format: "", + }, + }, + "except": { + SchemaProps: spec.SchemaProps{ + Description: "Except is a slice of CIDRs that should not be included within an IP Block Valid examples are \"192.168.1.1/24\" Except values will be rejected if they are outside the CIDR range", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"cidr"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/networking/v1.NetworkPolicy": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NetworkPolicy describes what network traffic is allowed for a set of Pods", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Specification of the desired behavior for this NetworkPolicy.", + Ref: ref("k8s.io/api/networking/v1.NetworkPolicySpec"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/networking/v1.NetworkPolicySpec", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/networking/v1.NetworkPolicyEgressRule": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NetworkPolicyEgressRule describes a particular set of traffic that is allowed out of pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and to. This type is beta-level in 1.8", + Properties: map[string]spec.Schema{ + "ports": { + SchemaProps: spec.SchemaProps{ + Description: "List of destination ports for outgoing traffic. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/networking/v1.NetworkPolicyPort"), + }, + }, + }, + }, + }, + "to": { + SchemaProps: spec.SchemaProps{ + Description: "List of destinations for outgoing traffic of pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all destinations (traffic not restricted by destination). If this field is present and contains at least one item, this rule allows traffic only if the traffic matches at least one item in the to list.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/networking/v1.NetworkPolicyPeer"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/networking/v1.NetworkPolicyPeer", "k8s.io/api/networking/v1.NetworkPolicyPort"}, + }, + "k8s.io/api/networking/v1.NetworkPolicyIngressRule": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NetworkPolicyIngressRule describes a particular set of traffic that is allowed to the pods matched by a NetworkPolicySpec's podSelector. The traffic must match both ports and from.", + Properties: map[string]spec.Schema{ + "ports": { + SchemaProps: spec.SchemaProps{ + Description: "List of ports which should be made accessible on the pods selected for this rule. Each item in this list is combined using a logical OR. If this field is empty or missing, this rule matches all ports (traffic not restricted by port). If this field is present and contains at least one item, then this rule allows traffic only if the traffic matches at least one port in the list.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/networking/v1.NetworkPolicyPort"), + }, + }, + }, + }, + }, + "from": { + SchemaProps: spec.SchemaProps{ + Description: "List of sources which should be able to access the pods selected for this rule. Items in this list are combined using a logical OR operation. If this field is empty or missing, this rule matches all sources (traffic not restricted by source). If this field is present and contains at least on item, this rule allows traffic only if the traffic matches at least one item in the from list.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/networking/v1.NetworkPolicyPeer"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/networking/v1.NetworkPolicyPeer", "k8s.io/api/networking/v1.NetworkPolicyPort"}, + }, + "k8s.io/api/networking/v1.NetworkPolicyList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NetworkPolicyList is a list of NetworkPolicy objects.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of schema objects.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/networking/v1.NetworkPolicy"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/networking/v1.NetworkPolicy", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/networking/v1.NetworkPolicyPeer": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NetworkPolicyPeer describes a peer to allow traffic from. Exactly one of its fields must be specified.", + Properties: map[string]spec.Schema{ + "podSelector": { + SchemaProps: spec.SchemaProps{ + Description: "This is a label selector which selects Pods in this namespace. This field follows standard label selector semantics. If present but empty, this selector selects all pods in this namespace.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "namespaceSelector": { + SchemaProps: spec.SchemaProps{ + Description: "Selects Namespaces using cluster scoped-labels. This matches all pods in all namespaces selected by this label selector. This field follows standard label selector semantics. If present but empty, this selector selects all namespaces.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "ipBlock": { + SchemaProps: spec.SchemaProps{ + Description: "IPBlock defines policy on a particular IPBlock", + Ref: ref("k8s.io/api/networking/v1.IPBlock"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/networking/v1.IPBlock", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + }, + "k8s.io/api/networking/v1.NetworkPolicyPort": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NetworkPolicyPort describes a port to allow traffic on", + Properties: map[string]spec.Schema{ + "protocol": { + SchemaProps: spec.SchemaProps{ + Description: "The protocol (TCP or UDP) which traffic must match. If not specified, this field defaults to TCP.", + Type: []string{"string"}, + Format: "", + }, + }, + "port": { + SchemaProps: spec.SchemaProps{ + Description: "The port on the given protocol. This can either be a numerical or named port on a pod. If this field is not provided, this matches all port names and numbers.", + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/util/intstr.IntOrString"}, + }, + "k8s.io/api/networking/v1.NetworkPolicySpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NetworkPolicySpec provides the specification of a NetworkPolicy", + Properties: map[string]spec.Schema{ + "podSelector": { + SchemaProps: spec.SchemaProps{ + Description: "Selects the pods to which this NetworkPolicy object applies. The array of ingress rules is applied to any pods selected by this field. Multiple network policies can select the same set of pods. In this case, the ingress rules for each are combined additively. This field is NOT optional and follows standard label selector semantics. An empty podSelector matches all pods in this namespace.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "ingress": { + SchemaProps: spec.SchemaProps{ + Description: "List of ingress rules to be applied to the selected pods. Traffic is allowed to a pod if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic source is the pod's local node, OR if the traffic matches at least one ingress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy does not allow any traffic (and serves solely to ensure that the pods it selects are isolated by default)", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/networking/v1.NetworkPolicyIngressRule"), + }, + }, + }, + }, + }, + "egress": { + SchemaProps: spec.SchemaProps{ + Description: "List of egress rules to be applied to the selected pods. Outgoing traffic is allowed if there are no NetworkPolicies selecting the pod (and cluster policy otherwise allows the traffic), OR if the traffic matches at least one egress rule across all of the NetworkPolicy objects whose podSelector matches the pod. If this field is empty then this NetworkPolicy limits all outgoing traffic (and serves solely to ensure that the pods it selects are isolated by default). This field is beta-level in 1.8", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/networking/v1.NetworkPolicyEgressRule"), + }, + }, + }, + }, + }, + "policyTypes": { + SchemaProps: spec.SchemaProps{ + Description: "List of rule types that the NetworkPolicy relates to. Valid options are Ingress, Egress, or Ingress,Egress. If this field is not specified, it will default based on the existence of Ingress or Egress rules; policies that contain an Egress section are assumed to affect Egress, and all policies (whether or not they contain an Ingress section) are assumed to affect Ingress. If you want to write an egress-only policy, you must explicitly specify policyTypes [ \"Egress\" ]. Likewise, if you want to write a policy that specifies that no egress is allowed, you must specify a policyTypes value that include \"Egress\" (since such a policy would not include an Egress section and would otherwise default to just [ \"Ingress\" ]). This field is beta-level in 1.8", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"podSelector"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/networking/v1.NetworkPolicyEgressRule", "k8s.io/api/networking/v1.NetworkPolicyIngressRule", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + }, + "k8s.io/api/policy/v1beta1.Eviction": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Eviction evicts a pod from its node subject to certain policies and safety constraints. This is a subresource of Pod. A request to cause such an eviction is created by POSTing to .../pods//evictions.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "ObjectMeta describes the pod that is being evicted.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "deleteOptions": { + SchemaProps: spec.SchemaProps{ + Description: "DeleteOptions may be provided", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.DeleteOptions"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.DeleteOptions", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/policy/v1beta1.PodDisruptionBudget": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodDisruptionBudget is an object to define the max disruption that can be caused to a collection of pods", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Specification of the desired behavior of the PodDisruptionBudget.", + Ref: ref("k8s.io/api/policy/v1beta1.PodDisruptionBudgetSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Most recently observed status of the PodDisruptionBudget.", + Ref: ref("k8s.io/api/policy/v1beta1.PodDisruptionBudgetStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/policy/v1beta1.PodDisruptionBudgetSpec", "k8s.io/api/policy/v1beta1.PodDisruptionBudgetStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/policy/v1beta1.PodDisruptionBudgetList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodDisruptionBudgetList is a collection of PodDisruptionBudgets.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/policy/v1beta1.PodDisruptionBudget"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/policy/v1beta1.PodDisruptionBudget", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/policy/v1beta1.PodDisruptionBudgetSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.", + Properties: map[string]spec.Schema{ + "minAvailable": { + SchemaProps: spec.SchemaProps{ + Description: "An eviction is allowed if at least \"minAvailable\" pods selected by \"selector\" will still be available after the eviction, i.e. even in the absence of the evicted pod. So for example you can prevent all voluntary evictions by specifying \"100%\".", + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "Label query over pods whose evictions are managed by the disruption budget.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "maxUnavailable": { + SchemaProps: spec.SchemaProps{ + Description: "An eviction is allowed if at most \"maxUnavailable\" pods selected by \"selector\" are unavailable after the eviction, i.e. even in absence of the evicted pod. For example, one can prevent all voluntary evictions by specifying 0. This is a mutually exclusive setting with \"minAvailable\".", + Ref: ref("k8s.io/apimachinery/pkg/util/intstr.IntOrString"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector", "k8s.io/apimachinery/pkg/util/intstr.IntOrString"}, + }, + "k8s.io/api/policy/v1beta1.PodDisruptionBudgetStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodDisruptionBudgetStatus represents information about the status of a PodDisruptionBudget. Status may trail the actual state of a system.", + Properties: map[string]spec.Schema{ + "observedGeneration": { + SchemaProps: spec.SchemaProps{ + Description: "Most recent generation observed when updating this PDB status. PodDisruptionsAllowed and other status informatio is valid only if observedGeneration equals to PDB's object generation.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "disruptedPods": { + SchemaProps: spec.SchemaProps{ + Description: "DisruptedPods contains information about pods whose eviction was processed by the API server eviction subresource handler but has not yet been observed by the PodDisruptionBudget controller. A pod will be in this map from the time when the API server processed the eviction request to the time when the pod is seen by PDB controller as having been marked for deletion (or after a timeout). The key in the map is the name of the pod and the value is the time when the API server processed the eviction request. If the deletion didn't occur and a pod is still there it will be removed from the list automatically by PodDisruptionBudget controller after some time. If everything goes smooth this map should be empty for the most of the time. Large number of entries in the map may indicate problems with pod deletions.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + }, + }, + }, + "disruptionsAllowed": { + SchemaProps: spec.SchemaProps{ + Description: "Number of pod disruptions that are currently allowed.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "currentHealthy": { + SchemaProps: spec.SchemaProps{ + Description: "current number of healthy pods", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "desiredHealthy": { + SchemaProps: spec.SchemaProps{ + Description: "minimum desired number of healthy pods", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "expectedPods": { + SchemaProps: spec.SchemaProps{ + Description: "total number of pods counted by this disruption budget", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"disruptedPods", "disruptionsAllowed", "currentHealthy", "desiredHealthy", "expectedPods"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/api/rbac/v1.ClusterRole": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "rules": { + SchemaProps: spec.SchemaProps{ + Description: "Rules holds all the PolicyRules for this ClusterRole", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1.PolicyRule"), + }, + }, + }, + }, + }, + }, + Required: []string{"rules"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1.PolicyRule", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/rbac/v1.ClusterRoleBinding": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "subjects": { + SchemaProps: spec.SchemaProps{ + Description: "Subjects holds references to the objects the role applies to.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1.Subject"), + }, + }, + }, + }, + }, + "roleRef": { + SchemaProps: spec.SchemaProps{ + Description: "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.", + Ref: ref("k8s.io/api/rbac/v1.RoleRef"), + }, + }, + }, + Required: []string{"subjects", "roleRef"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1.RoleRef", "k8s.io/api/rbac/v1.Subject", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/rbac/v1.ClusterRoleBindingList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClusterRoleBindingList is a collection of ClusterRoleBindings", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of ClusterRoleBindings", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1.ClusterRoleBinding"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1.ClusterRoleBinding", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/rbac/v1.ClusterRoleList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClusterRoleList is a collection of ClusterRoles", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of ClusterRoles", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1.ClusterRole"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1.ClusterRole", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/rbac/v1.PolicyRule": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", + Properties: map[string]spec.Schema{ + "verbs": { + SchemaProps: spec.SchemaProps{ + Description: "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "apiGroups": { + SchemaProps: spec.SchemaProps{ + Description: "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "resources": { + SchemaProps: spec.SchemaProps{ + Description: "Resources is a list of resources this rule applies to. ResourceAll represents all resources.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "resourceNames": { + SchemaProps: spec.SchemaProps{ + Description: "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "nonResourceURLs": { + SchemaProps: spec.SchemaProps{ + Description: "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"verbs"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/rbac/v1.Role": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "rules": { + SchemaProps: spec.SchemaProps{ + Description: "Rules holds all the PolicyRules for this Role", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1.PolicyRule"), + }, + }, + }, + }, + }, + }, + Required: []string{"rules"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1.PolicyRule", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/rbac/v1.RoleBinding": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "subjects": { + SchemaProps: spec.SchemaProps{ + Description: "Subjects holds references to the objects the role applies to.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1.Subject"), + }, + }, + }, + }, + }, + "roleRef": { + SchemaProps: spec.SchemaProps{ + Description: "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.", + Ref: ref("k8s.io/api/rbac/v1.RoleRef"), + }, + }, + }, + Required: []string{"subjects", "roleRef"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1.RoleRef", "k8s.io/api/rbac/v1.Subject", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/rbac/v1.RoleBindingList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RoleBindingList is a collection of RoleBindings", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of RoleBindings", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1.RoleBinding"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1.RoleBinding", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/rbac/v1.RoleList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RoleList is a collection of Roles", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of Roles", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1.Role"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1.Role", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/rbac/v1.RoleRef": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RoleRef contains information that points to the role being used", + Properties: map[string]spec.Schema{ + "apiGroup": { + SchemaProps: spec.SchemaProps{ + Description: "APIGroup is the group for the resource being referenced", + Type: []string{"string"}, + Format: "", + }, + }, + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is the type of resource being referenced", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name is the name of resource being referenced", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"apiGroup", "kind", "name"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/rbac/v1.Subject": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", + Type: []string{"string"}, + Format: "", + }, + }, + "apiGroup": { + SchemaProps: spec.SchemaProps{ + Description: "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the object being referenced.", + Type: []string{"string"}, + Format: "", + }, + }, + "namespace": { + SchemaProps: spec.SchemaProps{ + Description: "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"kind", "name"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/rbac/v1alpha1.ClusterRole": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "rules": { + SchemaProps: spec.SchemaProps{ + Description: "Rules holds all the PolicyRules for this ClusterRole", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1alpha1.PolicyRule"), + }, + }, + }, + }, + }, + }, + Required: []string{"rules"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1alpha1.PolicyRule", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/rbac/v1alpha1.ClusterRoleBinding": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "subjects": { + SchemaProps: spec.SchemaProps{ + Description: "Subjects holds references to the objects the role applies to.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1alpha1.Subject"), + }, + }, + }, + }, + }, + "roleRef": { + SchemaProps: spec.SchemaProps{ + Description: "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.", + Ref: ref("k8s.io/api/rbac/v1alpha1.RoleRef"), + }, + }, + }, + Required: []string{"subjects", "roleRef"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1alpha1.RoleRef", "k8s.io/api/rbac/v1alpha1.Subject", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/rbac/v1alpha1.ClusterRoleBindingList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClusterRoleBindingList is a collection of ClusterRoleBindings", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of ClusterRoleBindings", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1alpha1.ClusterRoleBinding"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1alpha1.ClusterRoleBinding", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/rbac/v1alpha1.ClusterRoleList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClusterRoleList is a collection of ClusterRoles", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of ClusterRoles", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1alpha1.ClusterRole"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1alpha1.ClusterRole", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/rbac/v1alpha1.PolicyRule": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", + Properties: map[string]spec.Schema{ + "verbs": { + SchemaProps: spec.SchemaProps{ + Description: "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "apiGroups": { + SchemaProps: spec.SchemaProps{ + Description: "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "resources": { + SchemaProps: spec.SchemaProps{ + Description: "Resources is a list of resources this rule applies to. ResourceAll represents all resources.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "resourceNames": { + SchemaProps: spec.SchemaProps{ + Description: "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "nonResourceURLs": { + SchemaProps: spec.SchemaProps{ + Description: "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path This name is intentionally different than the internal type so that the DefaultConvert works nicely and because the ordering may be different. Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"verbs"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/rbac/v1alpha1.Role": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "rules": { + SchemaProps: spec.SchemaProps{ + Description: "Rules holds all the PolicyRules for this Role", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1alpha1.PolicyRule"), + }, + }, + }, + }, + }, + }, + Required: []string{"rules"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1alpha1.PolicyRule", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/rbac/v1alpha1.RoleBinding": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "subjects": { + SchemaProps: spec.SchemaProps{ + Description: "Subjects holds references to the objects the role applies to.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1alpha1.Subject"), + }, + }, + }, + }, + }, + "roleRef": { + SchemaProps: spec.SchemaProps{ + Description: "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.", + Ref: ref("k8s.io/api/rbac/v1alpha1.RoleRef"), + }, + }, + }, + Required: []string{"subjects", "roleRef"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1alpha1.RoleRef", "k8s.io/api/rbac/v1alpha1.Subject", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/rbac/v1alpha1.RoleBindingList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RoleBindingList is a collection of RoleBindings", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of RoleBindings", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1alpha1.RoleBinding"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1alpha1.RoleBinding", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/rbac/v1alpha1.RoleList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RoleList is a collection of Roles", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of Roles", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1alpha1.Role"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1alpha1.Role", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/rbac/v1alpha1.RoleRef": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RoleRef contains information that points to the role being used", + Properties: map[string]spec.Schema{ + "apiGroup": { + SchemaProps: spec.SchemaProps{ + Description: "APIGroup is the group for the resource being referenced", + Type: []string{"string"}, + Format: "", + }, + }, + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is the type of resource being referenced", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name is the name of resource being referenced", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"apiGroup", "kind", "name"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/rbac/v1alpha1.Subject": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion holds the API group and version of the referenced subject. Defaults to \"v1\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io/v1alpha1\" for User and Group subjects.", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the object being referenced.", + Type: []string{"string"}, + Format: "", + }, + }, + "namespace": { + SchemaProps: spec.SchemaProps{ + Description: "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"kind", "name"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/rbac/v1beta1.ClusterRole": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClusterRole is a cluster level, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding or ClusterRoleBinding.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "rules": { + SchemaProps: spec.SchemaProps{ + Description: "Rules holds all the PolicyRules for this ClusterRole", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1beta1.PolicyRule"), + }, + }, + }, + }, + }, + }, + Required: []string{"rules"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1beta1.PolicyRule", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/rbac/v1beta1.ClusterRoleBinding": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClusterRoleBinding references a ClusterRole, but not contain it. It can reference a ClusterRole in the global namespace, and adds who information via Subject.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "subjects": { + SchemaProps: spec.SchemaProps{ + Description: "Subjects holds references to the objects the role applies to.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1beta1.Subject"), + }, + }, + }, + }, + }, + "roleRef": { + SchemaProps: spec.SchemaProps{ + Description: "RoleRef can only reference a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.", + Ref: ref("k8s.io/api/rbac/v1beta1.RoleRef"), + }, + }, + }, + Required: []string{"subjects", "roleRef"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1beta1.RoleRef", "k8s.io/api/rbac/v1beta1.Subject", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/rbac/v1beta1.ClusterRoleBindingList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClusterRoleBindingList is a collection of ClusterRoleBindings", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of ClusterRoleBindings", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1beta1.ClusterRoleBinding"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1beta1.ClusterRoleBinding", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/rbac/v1beta1.ClusterRoleList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClusterRoleList is a collection of ClusterRoles", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of ClusterRoles", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1beta1.ClusterRole"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1beta1.ClusterRole", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/rbac/v1beta1.PolicyRule": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PolicyRule holds information that describes a policy rule, but does not contain information about who the rule applies to or which namespace the rule applies to.", + Properties: map[string]spec.Schema{ + "verbs": { + SchemaProps: spec.SchemaProps{ + Description: "Verbs is a list of Verbs that apply to ALL the ResourceKinds and AttributeRestrictions contained in this rule. VerbAll represents all kinds.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "apiGroups": { + SchemaProps: spec.SchemaProps{ + Description: "APIGroups is the name of the APIGroup that contains the resources. If multiple API groups are specified, any action requested against one of the enumerated resources in any API group will be allowed.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "resources": { + SchemaProps: spec.SchemaProps{ + Description: "Resources is a list of resources this rule applies to. ResourceAll represents all resources.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "resourceNames": { + SchemaProps: spec.SchemaProps{ + Description: "ResourceNames is an optional white list of names that the rule applies to. An empty set means that everything is allowed.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "nonResourceURLs": { + SchemaProps: spec.SchemaProps{ + Description: "NonResourceURLs is a set of partial urls that a user should have access to. *s are allowed, but only as the full, final step in the path Since non-resource URLs are not namespaced, this field is only applicable for ClusterRoles referenced from a ClusterRoleBinding. Rules can either apply to API resources (such as \"pods\" or \"secrets\") or non-resource URL paths (such as \"/api\"), but not both.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"verbs"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/rbac/v1beta1.Role": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Role is a namespaced, logical grouping of PolicyRules that can be referenced as a unit by a RoleBinding.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "rules": { + SchemaProps: spec.SchemaProps{ + Description: "Rules holds all the PolicyRules for this Role", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1beta1.PolicyRule"), + }, + }, + }, + }, + }, + }, + Required: []string{"rules"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1beta1.PolicyRule", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/rbac/v1beta1.RoleBinding": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RoleBinding references a role, but does not contain it. It can reference a Role in the same namespace or a ClusterRole in the global namespace. It adds who information via Subjects and namespace information by which namespace it exists in. RoleBindings in a given namespace only have effect in that namespace.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "subjects": { + SchemaProps: spec.SchemaProps{ + Description: "Subjects holds references to the objects the role applies to.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1beta1.Subject"), + }, + }, + }, + }, + }, + "roleRef": { + SchemaProps: spec.SchemaProps{ + Description: "RoleRef can reference a Role in the current namespace or a ClusterRole in the global namespace. If the RoleRef cannot be resolved, the Authorizer must return an error.", + Ref: ref("k8s.io/api/rbac/v1beta1.RoleRef"), + }, + }, + }, + Required: []string{"subjects", "roleRef"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1beta1.RoleRef", "k8s.io/api/rbac/v1beta1.Subject", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/rbac/v1beta1.RoleBindingList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RoleBindingList is a collection of RoleBindings", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of RoleBindings", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1beta1.RoleBinding"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1beta1.RoleBinding", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/rbac/v1beta1.RoleList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RoleList is a collection of Roles", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of Roles", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/rbac/v1beta1.Role"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/rbac/v1beta1.Role", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/rbac/v1beta1.RoleRef": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RoleRef contains information that points to the role being used", + Properties: map[string]spec.Schema{ + "apiGroup": { + SchemaProps: spec.SchemaProps{ + Description: "APIGroup is the group for the resource being referenced", + Type: []string{"string"}, + Format: "", + }, + }, + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is the type of resource being referenced", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name is the name of resource being referenced", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"apiGroup", "kind", "name"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/rbac/v1beta1.Subject": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Subject contains a reference to the object or user identities a role binding applies to. This can either hold a direct API object reference, or a value for non-objects such as user and group names.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind of object being referenced. Values defined by this API group are \"User\", \"Group\", and \"ServiceAccount\". If the Authorizer does not recognized the kind value, the Authorizer should report an error.", + Type: []string{"string"}, + Format: "", + }, + }, + "apiGroup": { + SchemaProps: spec.SchemaProps{ + Description: "APIGroup holds the API group of the referenced subject. Defaults to \"\" for ServiceAccount subjects. Defaults to \"rbac.authorization.k8s.io\" for User and Group subjects.", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the object being referenced.", + Type: []string{"string"}, + Format: "", + }, + }, + "namespace": { + SchemaProps: spec.SchemaProps{ + Description: "Namespace of the referenced object. If the object kind is non-namespace, such as \"User\" or \"Group\", and this value is not empty the Authorizer should report an error.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"kind", "name"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/api/scheduling/v1alpha1.PriorityClass": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PriorityClass defines mapping from a priority class name to the priority integer value. The value can be any valid integer.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "value": { + SchemaProps: spec.SchemaProps{ + Description: "The value of this priority class. This is the actual priority that pods receive when they have the name of this class in their pod spec.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "globalDefault": { + SchemaProps: spec.SchemaProps{ + Description: "globalDefault specifies whether this PriorityClass should be considered as the default priority for pods that do not have any priority class.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "description": { + SchemaProps: spec.SchemaProps{ + Description: "description is an arbitrary string that usually provides guidelines on when this priority class should be used.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"value"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/scheduling/v1alpha1.PriorityClassList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PriorityClassList is a collection of priority classes.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata More info: http://releases.k8s.io/HEAD/docs/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "items is the list of PriorityClasses", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/scheduling/v1alpha1.PriorityClass"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/scheduling/v1alpha1.PriorityClass", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/settings/v1alpha1.PodPreset": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodPreset is a policy resource that defines additional runtime requirements for a Pod.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/settings/v1alpha1.PodPresetSpec"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/settings/v1alpha1.PodPresetSpec", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/settings/v1alpha1.PodPresetList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodPresetList is a list of PodPreset objects.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is a list of schema objects.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/settings/v1alpha1.PodPreset"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/settings/v1alpha1.PodPreset", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/settings/v1alpha1.PodPresetSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodPresetSpec is a description of a pod preset.", + Properties: map[string]spec.Schema{ + "selector": { + SchemaProps: spec.SchemaProps{ + Description: "Selector is a label query over a set of resources, in this case pods. Required.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"), + }, + }, + "env": { + SchemaProps: spec.SchemaProps{ + Description: "Env defines the collection of EnvVar to inject into containers.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.EnvVar"), + }, + }, + }, + }, + }, + "envFrom": { + SchemaProps: spec.SchemaProps{ + Description: "EnvFrom defines the collection of EnvFromSource to inject into containers.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.EnvFromSource"), + }, + }, + }, + }, + }, + "volumes": { + SchemaProps: spec.SchemaProps{ + Description: "Volumes defines the collection of Volume to inject into the pod.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.Volume"), + }, + }, + }, + }, + }, + "volumeMounts": { + SchemaProps: spec.SchemaProps{ + Description: "VolumeMounts defines the collection of VolumeMount to inject into containers.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.VolumeMount"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.EnvFromSource", "k8s.io/api/core/v1.EnvVar", "k8s.io/api/core/v1.Volume", "k8s.io/api/core/v1.VolumeMount", "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector"}, + }, + "k8s.io/api/storage/v1.StorageClass": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.\n\nStorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "provisioner": { + SchemaProps: spec.SchemaProps{ + Description: "Provisioner indicates the type of the provisioner.", + Type: []string{"string"}, + Format: "", + }, + }, + "parameters": { + SchemaProps: spec.SchemaProps{ + Description: "Parameters holds the parameters for the provisioner that should create volumes of this storage class.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "reclaimPolicy": { + SchemaProps: spec.SchemaProps{ + Description: "Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.", + Type: []string{"string"}, + Format: "", + }, + }, + "mountOptions": { + SchemaProps: spec.SchemaProps{ + Description: "Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. [\"ro\", \"soft\"]. Not validated - mount of the PVs will simply fail if one is invalid.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "allowVolumeExpansion": { + SchemaProps: spec.SchemaProps{ + Description: "AllowVolumeExpansion shows whether the storage class allow volume expand", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"provisioner"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/storage/v1.StorageClassList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "StorageClassList is a collection of storage classes.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is the list of StorageClasses", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/storage/v1.StorageClass"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/storage/v1.StorageClass", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/api/storage/v1beta1.StorageClass": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "StorageClass describes the parameters for a class of storage for which PersistentVolumes can be dynamically provisioned.\n\nStorageClasses are non-namespaced; the name of the storage class according to etcd is in ObjectMeta.Name.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "provisioner": { + SchemaProps: spec.SchemaProps{ + Description: "Provisioner indicates the type of the provisioner.", + Type: []string{"string"}, + Format: "", + }, + }, + "parameters": { + SchemaProps: spec.SchemaProps{ + Description: "Parameters holds the parameters for the provisioner that should create volumes of this storage class.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "reclaimPolicy": { + SchemaProps: spec.SchemaProps{ + Description: "Dynamically provisioned PersistentVolumes of this storage class are created with this reclaimPolicy. Defaults to Delete.", + Type: []string{"string"}, + Format: "", + }, + }, + "mountOptions": { + SchemaProps: spec.SchemaProps{ + Description: "Dynamically provisioned PersistentVolumes of this storage class are created with these mountOptions, e.g. [\"ro\", \"soft\"]. Not validated - mount of the PVs will simply fail if one is invalid.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "allowVolumeExpansion": { + SchemaProps: spec.SchemaProps{ + Description: "AllowVolumeExpansion shows whether the storage class allow volume expand", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"provisioner"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/api/storage/v1beta1.StorageClassList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "StorageClassList is a collection of storage classes.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items is the list of StorageClasses", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/storage/v1beta1.StorageClass"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/storage/v1beta1.StorageClass", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CustomResourceDefinition represents a resource that should be exposed on the API server. Its name MUST be in the format <.spec.name>.<.spec.group>.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec describes how the user wants the resources to appear", + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinitionSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status indicates the actual state of the CustomResourceDefinition", + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinitionStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinitionSpec", "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinitionStatus", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinitionCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CustomResourceDefinitionCondition contains details for the current condition of this pod.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type is the type of the condition.", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is the status of the condition. Can be True, False, Unknown.", + Type: []string{"string"}, + Format: "", + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time the condition transitioned from one status to another.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "Unique, one-word, CamelCase reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "Human-readable message indicating details about last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinitionList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CustomResourceDefinitionList is a list of CustomResourceDefinition objects.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "Items individual CustomResourceDefinitions", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinition"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinition", "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"}, + }, + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinitionNames": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CustomResourceDefinitionNames indicates the names to serve this CustomResourceDefinition", + Properties: map[string]spec.Schema{ + "plural": { + SchemaProps: spec.SchemaProps{ + Description: "Plural is the plural name of the resource to serve. It must match the name of the CustomResourceDefinition-registration too: plural.group and it must be all lowercase.", + Type: []string{"string"}, + Format: "", + }, + }, + "singular": { + SchemaProps: spec.SchemaProps{ + Description: "Singular is the singular name of the resource. It must be all lowercase Defaults to lowercased ", + Type: []string{"string"}, + Format: "", + }, + }, + "shortNames": { + SchemaProps: spec.SchemaProps{ + Description: "ShortNames are short names for the resource. It must be all lowercase.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is the serialized kind of the resource. It is normally CamelCase and singular.", + Type: []string{"string"}, + Format: "", + }, + }, + "listKind": { + SchemaProps: spec.SchemaProps{ + Description: "ListKind is the serialized kind of the list for this resource. Defaults to List.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"plural", "kind"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinitionSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CustomResourceDefinitionSpec describes how a user wants their resource to appear", + Properties: map[string]spec.Schema{ + "group": { + SchemaProps: spec.SchemaProps{ + Description: "Group is the group this resource belongs in", + Type: []string{"string"}, + Format: "", + }, + }, + "version": { + SchemaProps: spec.SchemaProps{ + Description: "Version is the version this resource belongs in", + Type: []string{"string"}, + Format: "", + }, + }, + "names": { + SchemaProps: spec.SchemaProps{ + Description: "Names are the names used to describe this custom resource", + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinitionNames"), + }, + }, + "scope": { + SchemaProps: spec.SchemaProps{ + Description: "Scope indicates whether this resource is cluster or namespace scoped. Default is namespaced", + Type: []string{"string"}, + Format: "", + }, + }, + "validation": { + SchemaProps: spec.SchemaProps{ + Description: "Validation describes the validation methods for CustomResources This field is alpha-level and should only be sent to servers that enable the CustomResourceValidation feature.", + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceValidation"), + }, + }, + }, + Required: []string{"group", "version", "names", "scope"}, + }, + }, + Dependencies: []string{ + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinitionNames", "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceValidation"}, + }, + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinitionStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CustomResourceDefinitionStatus indicates the state of the CustomResourceDefinition", + Properties: map[string]spec.Schema{ + "conditions": { + SchemaProps: spec.SchemaProps{ + Description: "Conditions indicate state for particular aspects of a CustomResourceDefinition", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinitionCondition"), + }, + }, + }, + }, + }, + "acceptedNames": { + SchemaProps: spec.SchemaProps{ + Description: "AcceptedNames are the names that are actually being used to serve discovery They may be different than the names in spec.", + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinitionNames"), + }, + }, + }, + Required: []string{"conditions", "acceptedNames"}, + }, + }, + Dependencies: []string{ + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinitionCondition", "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceDefinitionNames"}, + }, + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.CustomResourceValidation": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "CustomResourceValidation is a list of validation methods for CustomResources.", + Properties: map[string]spec.Schema{ + "openAPIV3Schema": { + SchemaProps: spec.SchemaProps{ + Description: "OpenAPIV3Schema is the OpenAPI v3 schema to be validated against.", + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps"}, + }, + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.ExternalDocumentation": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ExternalDocumentation allows referencing an external resource for extended documentation.", + Properties: map[string]spec.Schema{ + "description": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "url": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSON": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "JSON represents any valid JSON value. These types are supported: bool, int64, float64, string, []interface{}, map[string]interface{} and nil.", + Properties: map[string]spec.Schema{ + "Raw": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "byte", + }, + }, + }, + Required: []string{"Raw"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "JSONSchemaProps is a JSON-Schema following Specification Draft 4 (http://json-schema.org/).", + Properties: map[string]spec.Schema{ + "id": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "$schema": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "$ref": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "description": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "type": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "format": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "title": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "default": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSON"), + }, + }, + "maximum": { + SchemaProps: spec.SchemaProps{ + Type: []string{"number"}, + Format: "double", + }, + }, + "exclusiveMaximum": { + SchemaProps: spec.SchemaProps{ + Type: []string{"boolean"}, + Format: "", + }, + }, + "minimum": { + SchemaProps: spec.SchemaProps{ + Type: []string{"number"}, + Format: "double", + }, + }, + "exclusiveMinimum": { + SchemaProps: spec.SchemaProps{ + Type: []string{"boolean"}, + Format: "", + }, + }, + "maxLength": { + SchemaProps: spec.SchemaProps{ + Type: []string{"integer"}, + Format: "int64", + }, + }, + "minLength": { + SchemaProps: spec.SchemaProps{ + Type: []string{"integer"}, + Format: "int64", + }, + }, + "pattern": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "maxItems": { + SchemaProps: spec.SchemaProps{ + Type: []string{"integer"}, + Format: "int64", + }, + }, + "minItems": { + SchemaProps: spec.SchemaProps{ + Type: []string{"integer"}, + Format: "int64", + }, + }, + "uniqueItems": { + SchemaProps: spec.SchemaProps{ + Type: []string{"boolean"}, + Format: "", + }, + }, + "multipleOf": { + SchemaProps: spec.SchemaProps{ + Type: []string{"number"}, + Format: "double", + }, + }, + "enum": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSON"), + }, + }, + }, + }, + }, + "maxProperties": { + SchemaProps: spec.SchemaProps{ + Type: []string{"integer"}, + Format: "int64", + }, + }, + "minProperties": { + SchemaProps: spec.SchemaProps{ + Type: []string{"integer"}, + Format: "int64", + }, + }, + "required": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaPropsOrArray"), + }, + }, + "allOf": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps"), + }, + }, + }, + }, + }, + "oneOf": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps"), + }, + }, + }, + }, + }, + "anyOf": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps"), + }, + }, + }, + }, + }, + "not": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps"), + }, + }, + "properties": { + SchemaProps: spec.SchemaProps{ + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps"), + }, + }, + }, + }, + }, + "additionalProperties": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaPropsOrBool"), + }, + }, + "patternProperties": { + SchemaProps: spec.SchemaProps{ + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps"), + }, + }, + }, + }, + }, + "dependencies": { + SchemaProps: spec.SchemaProps{ + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaPropsOrStringArray"), + }, + }, + }, + }, + }, + "additionalItems": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaPropsOrBool"), + }, + }, + "definitions": { + SchemaProps: spec.SchemaProps{ + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps"), + }, + }, + }, + }, + }, + "externalDocs": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.ExternalDocumentation"), + }, + }, + "example": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSON"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.ExternalDocumentation", "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSON", "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps", "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaPropsOrArray", "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaPropsOrBool", "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaPropsOrStringArray"}, + }, + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaPropsOrArray": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "JSONSchemaPropsOrArray represents a value that can either be a JSONSchemaProps or an array of JSONSchemaProps. Mainly here for serialization purposes.", + Properties: map[string]spec.Schema{ + "Schema": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps"), + }, + }, + "JSONSchemas": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps"), + }, + }, + }, + }, + }, + }, + Required: []string{"Schema", "JSONSchemas"}, + }, + }, + Dependencies: []string{ + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps"}, + }, + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaPropsOrBool": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "JSONSchemaPropsOrBool represents JSONSchemaProps or a boolean value. Defaults to true for the boolean property.", + Properties: map[string]spec.Schema{ + "Allows": { + SchemaProps: spec.SchemaProps{ + Type: []string{"boolean"}, + Format: "", + }, + }, + "Schema": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps"), + }, + }, + }, + Required: []string{"Allows", "Schema"}, + }, + }, + Dependencies: []string{ + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps"}, + }, + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaPropsOrStringArray": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "JSONSchemaPropsOrStringArray represents a JSONSchemaProps or a string array.", + Properties: map[string]spec.Schema{ + "Schema": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps"), + }, + }, + "Property": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"Schema", "Property"}, + }, + }, + Dependencies: []string{ + "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1.JSONSchemaProps"}, + }, + "k8s.io/apimachinery/pkg/api/resource.Quantity": resource.Quantity{}.OpenAPIDefinition(), + "k8s.io/apimachinery/pkg/api/resource.int64Amount": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "int64Amount represents a fixed precision numerator and arbitrary scale exponent. It is faster than operations on inf.Dec for values that can be represented as int64.", + Properties: map[string]spec.Schema{ + "value": { + SchemaProps: spec.SchemaProps{ + Type: []string{"integer"}, + Format: "int64", + }, + }, + "scale": { + SchemaProps: spec.SchemaProps{ + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"value", "scale"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.APIGroup": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "APIGroup contains the name, the supported versions, and the preferred version of a group.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "name is the name of the group.", + Type: []string{"string"}, + Format: "", + }, + }, + "versions": { + SchemaProps: spec.SchemaProps{ + Description: "versions are the versions supported in this group.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionForDiscovery"), + }, + }, + }, + }, + }, + "preferredVersion": { + SchemaProps: spec.SchemaProps{ + Description: "preferredVersion is the version preferred by the API server, which probably is the storage version.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionForDiscovery"), + }, + }, + "serverAddressByClientCIDRs": { + SchemaProps: spec.SchemaProps{ + Description: "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ServerAddressByClientCIDR"), + }, + }, + }, + }, + }, + }, + Required: []string{"name", "versions", "serverAddressByClientCIDRs"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionForDiscovery", "k8s.io/apimachinery/pkg/apis/meta/v1.ServerAddressByClientCIDR"}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.APIGroupList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "APIGroupList is a list of APIGroup, to allow clients to discover the API at /apis.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "groups": { + SchemaProps: spec.SchemaProps{ + Description: "groups is a list of APIGroup.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.APIGroup"), + }, + }, + }, + }, + }, + }, + Required: []string{"groups"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.APIGroup"}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.APIResource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "APIResource specifies the name of a resource and whether it is namespaced.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "name is the plural name of the resource.", + Type: []string{"string"}, + Format: "", + }, + }, + "singularName": { + SchemaProps: spec.SchemaProps{ + Description: "singularName is the singular name of the resource. This allows clients to handle plural and singular opaquely. The singularName is more correct for reporting status on a single item and both singular and plural are allowed from the kubectl CLI interface.", + Type: []string{"string"}, + Format: "", + }, + }, + "namespaced": { + SchemaProps: spec.SchemaProps{ + Description: "namespaced indicates if a resource is namespaced or not.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "group": { + SchemaProps: spec.SchemaProps{ + Description: "group is the preferred group of the resource. Empty implies the group of the containing resource list. For subresources, this may have a different value, for example: Scale\".", + Type: []string{"string"}, + Format: "", + }, + }, + "version": { + SchemaProps: spec.SchemaProps{ + Description: "version is the preferred version of the resource. Empty implies the version of the containing resource list For subresources, this may have a different value, for example: v1 (while inside a v1beta1 version of the core resource's group)\".", + Type: []string{"string"}, + Format: "", + }, + }, + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "kind is the kind for the resource (e.g. 'Foo' is the kind for a resource 'foo')", + Type: []string{"string"}, + Format: "", + }, + }, + "verbs": { + SchemaProps: spec.SchemaProps{ + Description: "verbs is a list of supported kube verbs (this includes get, list, watch, create, update, patch, delete, deletecollection, and proxy)", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "shortNames": { + SchemaProps: spec.SchemaProps{ + Description: "shortNames is a list of suggested short names of the resource.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "categories": { + SchemaProps: spec.SchemaProps{ + Description: "categories is a list of the grouped resources this resource belongs to (e.g. 'all')", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"name", "singularName", "namespaced", "kind", "verbs"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.APIResourceList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "APIResourceList is a list of APIResource, it is used to expose the name of the resources supported in a specific group and version, and if the resource is namespaced.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "groupVersion": { + SchemaProps: spec.SchemaProps{ + Description: "groupVersion is the group and version this APIResourceList is for.", + Type: []string{"string"}, + Format: "", + }, + }, + "resources": { + SchemaProps: spec.SchemaProps{ + Description: "resources contains the name of the resources and if they are namespaced.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.APIResource"), + }, + }, + }, + }, + }, + }, + Required: []string{"groupVersion", "resources"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.APIResource"}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.APIVersions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "APIVersions lists the versions that are available, to allow clients to discover the API at /api, which is the root path of the legacy v1 API.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "versions": { + SchemaProps: spec.SchemaProps{ + Description: "versions are the api versions that are available.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "serverAddressByClientCIDRs": { + SchemaProps: spec.SchemaProps{ + Description: "a map of client CIDR to server address that is serving this group. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR. The server returns only those CIDRs that it thinks that the client can match. For example: the master will return an internal IP CIDR only, if the client reaches the server using an internal IP. Server looks at X-Forwarded-For header or X-Real-Ip header or request.RemoteAddr (in that order) to get the client IP.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ServerAddressByClientCIDR"), + }, + }, + }, + }, + }, + }, + Required: []string{"versions", "serverAddressByClientCIDRs"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ServerAddressByClientCIDR"}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.DeleteOptions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "DeleteOptions may be provided when deleting an API object.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "gracePeriodSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "The duration in seconds before the object should be deleted. Value must be non-negative integer. The value zero indicates delete immediately. If this value is nil, the default grace period for the specified type will be used. Defaults to a per object value if not specified. zero means delete immediately.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "preconditions": { + SchemaProps: spec.SchemaProps{ + Description: "Must be fulfilled before a deletion is carried out. If not possible, a 409 Conflict status will be returned.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Preconditions"), + }, + }, + "orphanDependents": { + SchemaProps: spec.SchemaProps{ + Description: "Deprecated: please use the PropagationPolicy, this field will be deprecated in 1.7. Should the dependent objects be orphaned. If true/false, the \"orphan\" finalizer will be added to/removed from the object's finalizers list. Either this field or PropagationPolicy may be set, but not both.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "propagationPolicy": { + SchemaProps: spec.SchemaProps{ + Description: "Whether and how garbage collection will be performed. Either this field or OrphanDependents may be set, but not both. The default policy is decided by the existing finalizer set in the metadata.finalizers and the resource-specific default policy.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Preconditions"}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.Duration": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Duration is a wrapper around time.Duration which supports correct marshaling to YAML and JSON. In particular, it marshals into strings, which can be used as map keys in json.", + Properties: map[string]spec.Schema{ + "Duration": { + SchemaProps: spec.SchemaProps{ + Type: []string{"integer"}, + Format: "int64", + }, + }, + }, + Required: []string{"Duration"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.ExportOptions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ExportOptions is the query options to the standard REST get call.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "export": { + SchemaProps: spec.SchemaProps{ + Description: "Should this value be exported. Export strips fields that a user can not specify.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "exact": { + SchemaProps: spec.SchemaProps{ + Description: "Should the export be exact. Exact export maintains cluster-specific fields like 'Namespace'.", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"export", "exact"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.GetOptions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "GetOptions is the standard query options to the standard REST get call.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "resourceVersion": { + SchemaProps: spec.SchemaProps{ + Description: "When specified: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + Type: []string{"string"}, + Format: "", + }, + }, + "includeUninitialized": { + SchemaProps: spec.SchemaProps{ + Description: "If true, partially initialized resources are included in the response.", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupKind": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "GroupKind specifies a Group and a Kind, but does not force a version. This is useful for identifying concepts during lookup stages without having partially valid types", + Properties: map[string]spec.Schema{ + "group": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "kind": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"group", "kind"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupResource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "GroupResource specifies a Group and a Resource, but does not force a version. This is useful for identifying concepts during lookup stages without having partially valid types", + Properties: map[string]spec.Schema{ + "group": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "resource": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"group", "resource"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersion": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "GroupVersion contains the \"group\" and the \"version\", which uniquely identifies the API.", + Properties: map[string]spec.Schema{ + "group": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "version": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"group", "version"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionForDiscovery": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "GroupVersion contains the \"group/version\" and \"version\" string of a version. It is made a struct to keep extensibility.", + Properties: map[string]spec.Schema{ + "groupVersion": { + SchemaProps: spec.SchemaProps{ + Description: "groupVersion specifies the API group and version in the form \"group/version\"", + Type: []string{"string"}, + Format: "", + }, + }, + "version": { + SchemaProps: spec.SchemaProps{ + Description: "version specifies the version in the form of \"version\". This is to save the clients the trouble of splitting the GroupVersion.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"groupVersion", "version"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionKind": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "GroupVersionKind unambiguously identifies a kind. It doesn't anonymously include GroupVersion to avoid automatic coersion. It doesn't use a GroupVersion to avoid custom marshalling", + Properties: map[string]spec.Schema{ + "group": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "version": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "kind": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"group", "version", "kind"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.GroupVersionResource": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "GroupVersionResource unambiguously identifies a resource. It doesn't anonymously include GroupVersion to avoid automatic coersion. It doesn't use a GroupVersion to avoid custom marshalling", + Properties: map[string]spec.Schema{ + "group": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "version": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "resource": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"group", "version", "resource"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.Initializer": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Initializer is information about an initializer that has not yet completed.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "name of the process that is responsible for initializing this object.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"name"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.Initializers": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Initializers tracks the progress of initialization.", + Properties: map[string]spec.Schema{ + "pending": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "name", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "Pending is a list of initializers that must execute in order before this object is visible. When the last pending initializer is removed, and no failing result is set, the initializers struct will be set to nil and the object is considered as initialized and visible to all clients.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Initializer"), + }, + }, + }, + }, + }, + "result": { + SchemaProps: spec.SchemaProps{ + Description: "If result is set with the Failure field, the object will be persisted to storage and then deleted, ensuring that other clients can observe the deletion.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Status"), + }, + }, + }, + Required: []string{"pending"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Initializer", "k8s.io/apimachinery/pkg/apis/meta/v1.Status"}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.InternalEvent": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "InternalEvent makes watch.Event versioned", + Properties: map[string]spec.Schema{ + "Type": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "Object": { + SchemaProps: spec.SchemaProps{ + Description: "Object is:\n * If Type is Added or Modified: the new state of the object.\n * If Type is Deleted: the state of the object immediately before deletion.\n * If Type is Error: *api.Status is recommended; other types may make sense\n depending on context.", + Ref: ref("k8s.io/apimachinery/pkg/runtime.Object"), + }, + }, + }, + Required: []string{"Type", "Object"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/runtime.Object"}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelector": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "A label selector is a label query over a set of resources. The result of matchLabels and matchExpressions are ANDed. An empty label selector matches all objects. A null label selector matches no objects.", + Properties: map[string]spec.Schema{ + "matchLabels": { + SchemaProps: spec.SchemaProps{ + Description: "matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is \"key\", the operator is \"In\", and the values array contains only \"value\". The requirements are ANDed.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "matchExpressions": { + SchemaProps: spec.SchemaProps{ + Description: "matchExpressions is a list of label selector requirements. The requirements are ANDed.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelectorRequirement"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelectorRequirement"}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.LabelSelectorRequirement": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values.", + Properties: map[string]spec.Schema{ + "key": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "key", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "key is the label key that the selector applies to.", + Type: []string{"string"}, + Format: "", + }, + }, + "operator": { + SchemaProps: spec.SchemaProps{ + Description: "operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist.", + Type: []string{"string"}, + Format: "", + }, + }, + "values": { + SchemaProps: spec.SchemaProps{ + Description: "values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"key", "operator"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.List": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "List holds a list of objects, which may not be known by the server.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of objects", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/runtime.RawExtension"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta", "k8s.io/apimachinery/pkg/runtime.RawExtension"}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ListMeta describes metadata that synthetic resources must have, including lists and various status objects. A resource may have only one of {ObjectMeta, ListMeta}.", + Properties: map[string]spec.Schema{ + "selfLink": { + SchemaProps: spec.SchemaProps{ + Description: "selfLink is a URL representing this object. Populated by the system. Read-only.", + Type: []string{"string"}, + Format: "", + }, + }, + "resourceVersion": { + SchemaProps: spec.SchemaProps{ + Description: "String that identifies the server's internal version of this object that can be used by clients to determine when objects have changed. Value must be treated as opaque by clients and passed unmodified back to the server. Populated by the system. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency", + Type: []string{"string"}, + Format: "", + }, + }, + "continue": { + SchemaProps: spec.SchemaProps{ + Description: "continue may be set if the user set a limit on the number of items returned, and indicates that the server has more data available. The value is opaque and may be used to issue another request to the endpoint that served this list to retrieve the next set of available objects. Continuing a list may not be possible if the server configuration has changed or more than a few minutes have passed. The resourceVersion field returned when using this continue value will be identical to the value in the first response.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.ListOptions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ListOptions is the query options to a standard REST list call.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "labelSelector": { + SchemaProps: spec.SchemaProps{ + Description: "A selector to restrict the list of returned objects by their labels. Defaults to everything.", + Type: []string{"string"}, + Format: "", + }, + }, + "fieldSelector": { + SchemaProps: spec.SchemaProps{ + Description: "A selector to restrict the list of returned objects by their fields. Defaults to everything.", + Type: []string{"string"}, + Format: "", + }, + }, + "includeUninitialized": { + SchemaProps: spec.SchemaProps{ + Description: "If true, partially initialized resources are included in the response.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "watch": { + SchemaProps: spec.SchemaProps{ + Description: "Watch for changes to the described resources and return them as a stream of add, update, and remove notifications. Specify resourceVersion.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "resourceVersion": { + SchemaProps: spec.SchemaProps{ + Description: "When specified with a watch call, shows changes that occur after that particular version of a resource. Defaults to changes from the beginning of history. When specified for list: - if unset, then the result is returned from remote storage based on quorum-read flag; - if it's 0, then we simply return what we currently have in cache, no guarantee; - if set to non zero, then the result is at least as fresh as given rv.", + Type: []string{"string"}, + Format: "", + }, + }, + "timeoutSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "Timeout for the list/watch call.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "limit": { + SchemaProps: spec.SchemaProps{ + Description: "limit is a maximum number of responses to return for a list call. If more items exist, the server will set the `continue` field on the list metadata to a value that can be used with the same initial query to retrieve the next set of results. Setting a limit may return fewer than the requested amount of items (up to zero items) in the event all requested objects are filtered out and clients should only use the presence of the continue field to determine whether more results are available. Servers may choose not to support the limit argument and will return all of the available results. If limit is specified and the continue field is empty, clients may assume that no more results are available. This field is not supported if watch is true.\n\nThe server guarantees that the objects returned when using continue will be identical to issuing a single list call without a limit - that is, no objects created, modified, or deleted after the first request is issued will be included in any subsequent continued requests. This is sometimes referred to as a consistent snapshot, and ensures that a client that is using limit to receive smaller chunks of a very large result can ensure they see all possible objects. If objects are updated during a chunked list the version of the object that was present at the time the first list result was calculated is returned.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "continue": { + SchemaProps: spec.SchemaProps{ + Description: "The continue option should be set when retrieving more results from the server. Since this value is server defined, clients may only use the continue value from a previous query result with identical query parameters (except for the value of continue) and the server may reject a continue value it does not recognize. If the specified continue value is no longer valid whether due to expiration (generally five to fifteen minutes) or a configuration change on the server the server will respond with a 410 ResourceExpired error indicating the client must restart their list without the continue field. This field is not supported when watch is true. Clients may start a watch from the last resourceVersion value returned by the server and not miss any modifications.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.MicroTime": v1.MicroTime{}.OpenAPIDefinition(), + "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ObjectMeta is metadata that all persisted resources must have, which includes all objects users must create.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name must be unique within a namespace. Is required when creating resources, although some resources may allow a client to request the generation of an appropriate name automatically. Name is primarily intended for creation idempotence and configuration definition. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/identifiers#names", + Type: []string{"string"}, + Format: "", + }, + }, + "generateName": { + SchemaProps: spec.SchemaProps{ + Description: "GenerateName is an optional prefix, used by the server, to generate a unique name ONLY IF the Name field has not been provided. If this field is used, the name returned to the client will be different than the name passed. This value will also be combined with a unique suffix. The provided value has the same validation rules as the Name field, and may be truncated by the length of the suffix required to make the value unique on the server.\n\nIf this field is specified and the generated name exists, the server will NOT return a 409 - instead, it will either return 201 Created or 500 with Reason ServerTimeout indicating a unique name could not be found in the time allotted, and the client should retry (optionally after the time indicated in the Retry-After header).\n\nApplied only if Name is not specified. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#idempotency", + Type: []string{"string"}, + Format: "", + }, + }, + "namespace": { + SchemaProps: spec.SchemaProps{ + Description: "Namespace defines the space within each name must be unique. An empty namespace is equivalent to the \"default\" namespace, but \"default\" is the canonical representation. Not all objects are required to be scoped to a namespace - the value of this field for those objects will be empty.\n\nMust be a DNS_LABEL. Cannot be updated. More info: http://kubernetes.io/docs/user-guide/namespaces", + Type: []string{"string"}, + Format: "", + }, + }, + "selfLink": { + SchemaProps: spec.SchemaProps{ + Description: "SelfLink is a URL representing this object. Populated by the system. Read-only.", + Type: []string{"string"}, + Format: "", + }, + }, + "uid": { + SchemaProps: spec.SchemaProps{ + Description: "UID is the unique in time and space value for this object. It is typically generated by the server on successful creation of a resource and is not allowed to change on PUT operations.\n\nPopulated by the system. Read-only. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", + Type: []string{"string"}, + Format: "", + }, + }, + "resourceVersion": { + SchemaProps: spec.SchemaProps{ + Description: "An opaque value that represents the internal version of this object that can be used by clients to determine when objects have changed. May be used for optimistic concurrency, change detection, and the watch operation on a resource or set of resources. Clients must treat these values as opaque and passed unmodified back to the server. They may only be valid for a particular resource or set of resources.\n\nPopulated by the system. Read-only. Value must be treated as opaque by clients and . More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#concurrency-control-and-consistency", + Type: []string{"string"}, + Format: "", + }, + }, + "generation": { + SchemaProps: spec.SchemaProps{ + Description: "A sequence number representing a specific generation of the desired state. Populated by the system. Read-only.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "creationTimestamp": { + SchemaProps: spec.SchemaProps{ + Description: "CreationTimestamp is a timestamp representing the server time when this object was created. It is not guaranteed to be set in happens-before order across separate operations. Clients may not set this value. It is represented in RFC3339 form and is in UTC.\n\nPopulated by the system. Read-only. Null for lists. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "deletionTimestamp": { + SchemaProps: spec.SchemaProps{ + Description: "DeletionTimestamp is RFC 3339 date and time at which this resource will be deleted. This field is set by the server when a graceful deletion is requested by the user, and is not directly settable by a client. The resource is expected to be deleted (no longer visible from resource lists, and not reachable by name) after the time in this field. Once set, this value may not be unset or be set further into the future, although it may be shortened or the resource may be deleted prior to this time. For example, a user may request that a pod is deleted in 30 seconds. The Kubelet will react by sending a graceful termination signal to the containers in the pod. After that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL) to the container and after cleanup, remove the pod from the API. In the presence of network partitions, this object may still exist after this timestamp, until an administrator or automated process can determine the resource is fully terminated. If not set, graceful deletion of the object has not been requested.\n\nPopulated by the system when a graceful deletion is requested. Read-only. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "deletionGracePeriodSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "Number of seconds allowed for this object to gracefully terminate before it will be removed from the system. Only set when deletionTimestamp is also set. May only be shortened. Read-only.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "labels": { + SchemaProps: spec.SchemaProps{ + Description: "Map of string keys and values that can be used to organize and categorize (scope and select) objects. May match selectors of replication controllers and services. More info: http://kubernetes.io/docs/user-guide/labels", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "annotations": { + SchemaProps: spec.SchemaProps{ + Description: "Annotations is an unstructured key value map stored with a resource that may be set by external tools to store and retrieve arbitrary metadata. They are not queryable and should be preserved when modifying objects. More info: http://kubernetes.io/docs/user-guide/annotations", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "ownerReferences": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "uid", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "List of objects depended by this object. If ALL objects in the list have been deleted, this object will be garbage collected. If this object is managed by a controller, then an entry in this list will point to this controller, with the controller field set to true. There cannot be more than one managing controller.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.OwnerReference"), + }, + }, + }, + }, + }, + "initializers": { + SchemaProps: spec.SchemaProps{ + Description: "An initializer is a controller which enforces some system invariant at object creation time. This field is a list of initializers that have not yet acted on this object. If nil or empty, this object has been completely initialized. Otherwise, the object is considered uninitialized and is hidden (in list/watch and get calls) from clients that haven't explicitly asked to observe uninitialized objects.\n\nWhen an object is created, the system will populate this list with the current set of initializers. Only privileged users may set or modify this list. Once it is empty, it may not be modified further by any user.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Initializers"), + }, + }, + "finalizers": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "Must be empty before the object is deleted from the registry. Each entry is an identifier for the responsible component that will remove the entry from the list. If the deletionTimestamp of the object is non-nil, entries in this list can only be removed.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "clusterName": { + SchemaProps: spec.SchemaProps{ + Description: "The name of the cluster which the object belongs to. This is used to distinguish resources with same name and namespace in different clusters. This field is not set anywhere right now and apiserver is going to ignore it if set in create or update request.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Initializers", "k8s.io/apimachinery/pkg/apis/meta/v1.OwnerReference", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.OwnerReference": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "OwnerReference contains enough information to let you identify an owning object. Currently, an owning object must be in the same namespace, so there is no namespace field.", + Properties: map[string]spec.Schema{ + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "API version of the referent.", + Type: []string{"string"}, + Format: "", + }, + }, + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#names", + Type: []string{"string"}, + Format: "", + }, + }, + "uid": { + SchemaProps: spec.SchemaProps{ + Description: "UID of the referent. More info: http://kubernetes.io/docs/user-guide/identifiers#uids", + Type: []string{"string"}, + Format: "", + }, + }, + "controller": { + SchemaProps: spec.SchemaProps{ + Description: "If true, this reference points to the managing controller.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "blockOwnerDeletion": { + SchemaProps: spec.SchemaProps{ + Description: "If true, AND if the owner has the \"foregroundDeletion\" finalizer, then the owner cannot be deleted from the key-value store until this reference is removed. Defaults to false. To set this field, a user needs \"delete\" permission of the owner, otherwise 422 (Unprocessable Entity) will be returned.", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"apiVersion", "kind", "name", "uid"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.Patch": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Patch is provided to give a concrete name and type to the Kubernetes PATCH request body.", + Properties: map[string]spec.Schema{}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.Preconditions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Preconditions must be fulfilled before an operation (update, delete, etc.) is carried out.", + Properties: map[string]spec.Schema{ + "uid": { + SchemaProps: spec.SchemaProps{ + Description: "Specifies the target UID.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.RootPaths": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RootPaths lists the paths available at root. For example: \"/healthz\", \"/apis\".", + Properties: map[string]spec.Schema{ + "paths": { + SchemaProps: spec.SchemaProps{ + Description: "paths are the paths available at root.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"paths"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.ServerAddressByClientCIDR": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.", + Properties: map[string]spec.Schema{ + "clientCIDR": { + SchemaProps: spec.SchemaProps{ + Description: "The CIDR with which clients can match their IP to figure out the server address that they should use.", + Type: []string{"string"}, + Format: "", + }, + }, + "serverAddress": { + SchemaProps: spec.SchemaProps{ + Description: "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"clientCIDR", "serverAddress"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.Status": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Status is a return value for calls that don't return other objects.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status of the operation. One of: \"Success\" or \"Failure\". More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#spec-and-status", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "A human-readable description of the status of this operation.", + Type: []string{"string"}, + Format: "", + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "A machine-readable description of why this operation is in the \"Failure\" status. If this value is empty there is no information available. A Reason clarifies an HTTP status code but does not override it.", + Type: []string{"string"}, + Format: "", + }, + }, + "details": { + SchemaProps: spec.SchemaProps{ + Description: "Extended data associated with the reason. Each reason may define its own extended details. This field is optional and the data returned is not guaranteed to conform to any schema except that defined by the reason type.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.StatusDetails"), + }, + }, + "code": { + SchemaProps: spec.SchemaProps{ + Description: "Suggested HTTP return code for this status, 0 if not set.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta", "k8s.io/apimachinery/pkg/apis/meta/v1.StatusDetails"}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.StatusCause": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "StatusCause provides more information about an api.Status failure, including cases when multiple errors are encountered.", + Properties: map[string]spec.Schema{ + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "A machine-readable description of the cause of the error. If this value is empty there is no information available.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "A human-readable description of the cause of the error. This field may be presented as-is to a reader.", + Type: []string{"string"}, + Format: "", + }, + }, + "field": { + SchemaProps: spec.SchemaProps{ + Description: "The field of the resource that has caused this error, as named by its JSON serialization. May include dot and postfix notation for nested attributes. Arrays are zero-indexed. Fields may appear more than once in an array of causes due to fields having multiple errors. Optional.\n\nExamples:\n \"name\" - the field \"name\" on the current resource\n \"items[0].name\" - the field \"name\" on the first array entry in \"items\"", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.StatusDetails": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "StatusDetails is a set of additional properties that MAY be set by the server to provide additional information about a response. The Reason field of a Status object defines what attributes will be set. Clients must ignore fields that do not match the defined type of each attribute, and should assume that any attribute may be empty, invalid, or under defined.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).", + Type: []string{"string"}, + Format: "", + }, + }, + "group": { + SchemaProps: spec.SchemaProps{ + Description: "The group attribute of the resource associated with the status StatusReason.", + Type: []string{"string"}, + Format: "", + }, + }, + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "The kind attribute of the resource associated with the status StatusReason. On some operations may differ from the requested resource Kind. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "uid": { + SchemaProps: spec.SchemaProps{ + Description: "UID of the resource. (when there is a single resource which can be described). More info: http://kubernetes.io/docs/user-guide/identifiers#uids", + Type: []string{"string"}, + Format: "", + }, + }, + "causes": { + SchemaProps: spec.SchemaProps{ + Description: "The Causes array includes more details associated with the StatusReason failure. Not all StatusReasons may provide detailed causes.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.StatusCause"), + }, + }, + }, + }, + }, + "retryAfterSeconds": { + SchemaProps: spec.SchemaProps{ + Description: "If specified, the time in seconds before the operation should be retried. Some errors may indicate the client must take an alternate action - for those errors this field may indicate how long to wait before taking the alternate action.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.StatusCause"}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.Time": v1.Time{}.OpenAPIDefinition(), + "k8s.io/apimachinery/pkg/apis/meta/v1.Timestamp": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Timestamp is a struct that is equivalent to Time, but intended for protobuf marshalling/unmarshalling. It is generated into a serialization that matches Time. Do not use in Go structs.", + Properties: map[string]spec.Schema{ + "seconds": { + SchemaProps: spec.SchemaProps{ + Description: "Represents seconds of UTC time since Unix epoch 1970-01-01T00:00:00Z. Must be from 0001-01-01T00:00:00Z to 9999-12-31T23:59:59Z inclusive.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "nanos": { + SchemaProps: spec.SchemaProps{ + Description: "Non-negative fractions of a second at nanosecond resolution. Negative second values with fractions must still have non-negative nanos values that count forward in time. Must be from 0 to 999,999,999 inclusive. This field may be limited in precision depending on context.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"seconds", "nanos"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.TypeMeta": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "TypeMeta describes an individual object in an API response or request with strings representing the type of the object and its API schema version. Structures that are versioned or persisted should inline TypeMeta.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1.WatchEvent": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Event represents a single event to a watched resource.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "object": { + SchemaProps: spec.SchemaProps{ + Description: "Object is:\n * If Type is Added or Modified: the new state of the object.\n * If Type is Deleted: the state of the object immediately before deletion.\n * If Type is Error: *Status is recommended; other types may make sense\n depending on context.", + Ref: ref("k8s.io/apimachinery/pkg/runtime.RawExtension"), + }, + }, + }, + Required: []string{"type", "object"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/runtime.RawExtension"}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1alpha1.PartialObjectMetadata": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PartialObjectMetadata is a generic representation of any object with ObjectMeta. It allows clients to get access to a particular ObjectMeta schema without knowing the details of the version.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1alpha1.PartialObjectMetadataList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PartialObjectMetadataList contains a list of objects containing only their metadata", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "items contains each of the included items.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1alpha1.PartialObjectMetadata"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1alpha1.PartialObjectMetadata"}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1alpha1.Table": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Table is a tabular representation of a set of API resources. The server transforms the object into a set of preferred columns for quickly reviewing the objects.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "columnDefinitions": { + SchemaProps: spec.SchemaProps{ + Description: "columnDefinitions describes each column in the returned items array. The number of cells per row will always match the number of column definitions.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1alpha1.TableColumnDefinition"), + }, + }, + }, + }, + }, + "rows": { + SchemaProps: spec.SchemaProps{ + Description: "rows is the list of items in the table.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1alpha1.TableRow"), + }, + }, + }, + }, + }, + }, + Required: []string{"columnDefinitions", "rows"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta", "k8s.io/apimachinery/pkg/apis/meta/v1alpha1.TableColumnDefinition", "k8s.io/apimachinery/pkg/apis/meta/v1alpha1.TableRow"}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1alpha1.TableColumnDefinition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "TableColumnDefinition contains information about a column returned in the Table.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "name is a human readable name for the column.", + Type: []string{"string"}, + Format: "", + }, + }, + "type": { + SchemaProps: spec.SchemaProps{ + Description: "type is an OpenAPI type definition for this column. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more.", + Type: []string{"string"}, + Format: "", + }, + }, + "format": { + SchemaProps: spec.SchemaProps{ + Description: "format is an optional OpenAPI type definition for this column. The 'name' format is applied to the primary identifier column to assist in clients identifying column is the resource name. See https://github.com/OAI/OpenAPI-Specification/blob/master/versions/2.0.md#data-types for more.", + Type: []string{"string"}, + Format: "", + }, + }, + "description": { + SchemaProps: spec.SchemaProps{ + Description: "description is a human readable description of this column.", + Type: []string{"string"}, + Format: "", + }, + }, + "priority": { + SchemaProps: spec.SchemaProps{ + Description: "priority is an integer defining the relative importance of this column compared to others. Lower numbers are considered higher priority. Columns that may be omitted in limited space scenarios should be given a higher priority.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"name", "type", "format", "description", "priority"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1alpha1.TableOptions": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "TableOptions are used when a Table is requested by the caller.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "includeObject": { + SchemaProps: spec.SchemaProps{ + Description: "includeObject decides whether to include each object along with its columnar information. Specifying \"None\" will return no object, specifying \"Object\" will return the full object contents, and specifying \"Metadata\" (the default) will return the object's metadata in the PartialObjectMetadata kind in version v1alpha1 of the meta.k8s.io API group.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1alpha1.TableRow": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "TableRow is an individual row in a table.", + Properties: map[string]spec.Schema{ + "cells": { + SchemaProps: spec.SchemaProps{ + Description: "cells will be as wide as headers and may contain strings, numbers, booleans, simple maps, or lists, or null. See the type field of the column definition for a more detailed description.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"object"}, + Format: "", + }, + }, + }, + }, + }, + "conditions": { + SchemaProps: spec.SchemaProps{ + Description: "conditions describe additional status of a row that are relevant for a human user.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1alpha1.TableRowCondition"), + }, + }, + }, + }, + }, + "object": { + SchemaProps: spec.SchemaProps{ + Description: "This field contains the requested additional information about each object based on the includeObject policy when requesting the Table. If \"None\", this field is empty, if \"Object\" this will be the default serialization of the object for the current API version, and if \"Metadata\" (the default) will contain the object metadata. Check the returned kind and apiVersion of the object before parsing.", + Ref: ref("k8s.io/apimachinery/pkg/runtime.RawExtension"), + }, + }, + }, + Required: []string{"cells"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1alpha1.TableRowCondition", "k8s.io/apimachinery/pkg/runtime.RawExtension"}, + }, + "k8s.io/apimachinery/pkg/apis/meta/v1alpha1.TableRowCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "TableRowCondition allows a row to be marked with additional information.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of row condition.", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status of the condition, one of True, False, Unknown.", + Type: []string{"string"}, + Format: "", + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "(brief) machine readable reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "Human readable message indicating details about last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/runtime.RawExtension": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "RawExtension is used to hold extensions in external versions.\n\nTo use this, make a field which has RawExtension as its type in your external, versioned struct, and Object in your internal struct. You also need to register your various plugin types.\n\n// Internal package: type MyAPIObject struct {\n\truntime.TypeMeta `json:\",inline\"`\n\tMyPlugin runtime.Object `json:\"myPlugin\"`\n} type PluginA struct {\n\tAOption string `json:\"aOption\"`\n}\n\n// External package: type MyAPIObject struct {\n\truntime.TypeMeta `json:\",inline\"`\n\tMyPlugin runtime.RawExtension `json:\"myPlugin\"`\n} type PluginA struct {\n\tAOption string `json:\"aOption\"`\n}\n\n// On the wire, the JSON will look something like this: {\n\t\"kind\":\"MyAPIObject\",\n\t\"apiVersion\":\"v1\",\n\t\"myPlugin\": {\n\t\t\"kind\":\"PluginA\",\n\t\t\"aOption\":\"foo\",\n\t},\n}\n\nSo what happens? Decode first uses json or yaml to unmarshal the serialized data into your external MyAPIObject. That causes the raw JSON to be stored, but not unpacked. The next step is to copy (using pkg/conversion) into the internal struct. The runtime package's DefaultScheme has conversion functions installed which will unpack the JSON stored in RawExtension, turning it into the correct object type, and storing it in the Object. (TODO: In the case where the object is of an unknown type, a runtime.Unknown object will be created and stored.)", + Properties: map[string]spec.Schema{ + "Raw": { + SchemaProps: spec.SchemaProps{ + Description: "Raw is the underlying serialization of this object.", + Type: []string{"string"}, + Format: "byte", + }, + }, + }, + Required: []string{"Raw"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/runtime.TypeMeta": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "TypeMeta is shared by all top level objects. The proper way to use it is to inline it in your type, like this: type MyAwesomeAPIObject struct {\n runtime.TypeMeta `json:\",inline\"`\n ... // other fields\n} func (obj *MyAwesomeAPIObject) SetGroupVersionKind(gvk *metav1.GroupVersionKind) { metav1.UpdateTypeMeta(obj,gvk) }; GroupVersionKind() *GroupVersionKind\n\nTypeMeta is provided here for convenience. You may use it directly from this package or define your own with the same fields.", + Properties: map[string]spec.Schema{ + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "kind": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/runtime.Unknown": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Unknown allows api objects with unknown types to be passed-through. This can be used to deal with the API objects from a plug-in. Unknown objects still have functioning TypeMeta features-- kind, version, etc. metadata and field mutatation.", + Properties: map[string]spec.Schema{ + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "kind": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "Raw": { + SchemaProps: spec.SchemaProps{ + Description: "Raw will hold the complete serialized object which couldn't be matched with a registered type. Most likely, nothing should be done with this except for passing it through the system.", + Type: []string{"string"}, + Format: "byte", + }, + }, + "ContentEncoding": { + SchemaProps: spec.SchemaProps{ + Description: "ContentEncoding is encoding used to encode 'Raw' data. Unspecified means no encoding.", + Type: []string{"string"}, + Format: "", + }, + }, + "ContentType": { + SchemaProps: spec.SchemaProps{ + Description: "ContentType is serialization method used to serialize 'Raw'. Unspecified means ContentTypeJSON.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"Raw", "ContentEncoding", "ContentType"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apimachinery/pkg/util/intstr.IntOrString": intstr.IntOrString{}.OpenAPIDefinition(), + "k8s.io/apimachinery/pkg/version.Info": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Info contains versioning information. how we'll want to distribute that information.", + Properties: map[string]spec.Schema{ + "major": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "minor": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "gitVersion": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "gitCommit": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "gitTreeState": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "buildDate": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "goVersion": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "compiler": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "platform": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"major", "minor", "gitVersion", "gitCommit", "gitTreeState", "buildDate", "goVersion", "compiler", "platform"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apiserver/pkg/apis/audit/v1alpha1.Event": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Event captures all the information that can be included in an API audit log.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "ObjectMeta is included for interoperability with API infrastructure.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "level": { + SchemaProps: spec.SchemaProps{ + Description: "AuditLevel at which event was generated", + Type: []string{"string"}, + Format: "", + }, + }, + "timestamp": { + SchemaProps: spec.SchemaProps{ + Description: "Time the request reached the apiserver.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "auditID": { + SchemaProps: spec.SchemaProps{ + Description: "Unique audit ID, generated for each request.", + Type: []string{"string"}, + Format: "", + }, + }, + "stage": { + SchemaProps: spec.SchemaProps{ + Description: "Stage of the request handling when this event instance was generated.", + Type: []string{"string"}, + Format: "", + }, + }, + "requestURI": { + SchemaProps: spec.SchemaProps{ + Description: "RequestURI is the request URI as sent by the client to a server.", + Type: []string{"string"}, + Format: "", + }, + }, + "verb": { + SchemaProps: spec.SchemaProps{ + Description: "Verb is the kubernetes verb associated with the request. For non-resource requests, this is the lower-cased HTTP method.", + Type: []string{"string"}, + Format: "", + }, + }, + "user": { + SchemaProps: spec.SchemaProps{ + Description: "Authenticated user information.", + Ref: ref("k8s.io/api/authentication/v1.UserInfo"), + }, + }, + "impersonatedUser": { + SchemaProps: spec.SchemaProps{ + Description: "Impersonated user information.", + Ref: ref("k8s.io/api/authentication/v1.UserInfo"), + }, + }, + "sourceIPs": { + SchemaProps: spec.SchemaProps{ + Description: "Source IPs, from where the request originated and intermediate proxies.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "objectRef": { + SchemaProps: spec.SchemaProps{ + Description: "Object reference this request is targeted at. Does not apply for List-type requests, or non-resource requests.", + Ref: ref("k8s.io/apiserver/pkg/apis/audit/v1alpha1.ObjectReference"), + }, + }, + "responseStatus": { + SchemaProps: spec.SchemaProps{ + Description: "The response status, populated even when the ResponseObject is not a Status type. For successful responses, this will only include the Code and StatusSuccess. For non-status type error responses, this will be auto-populated with the error Message.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Status"), + }, + }, + "requestObject": { + SchemaProps: spec.SchemaProps{ + Description: "API object from the request, in JSON format. The RequestObject is recorded as-is in the request (possibly re-encoded as JSON), prior to version conversion, defaulting, admission or merging. It is an external versioned object type, and may not be a valid object on its own. Omitted for non-resource requests. Only logged at Request Level and higher.", + Ref: ref("k8s.io/apimachinery/pkg/runtime.Unknown"), + }, + }, + "responseObject": { + SchemaProps: spec.SchemaProps{ + Description: "API object returned in the response, in JSON. The ResponseObject is recorded after conversion to the external type, and serialized as JSON. Omitted for non-resource requests. Only logged at Response Level.", + Ref: ref("k8s.io/apimachinery/pkg/runtime.Unknown"), + }, + }, + }, + Required: []string{"level", "timestamp", "auditID", "stage", "requestURI", "verb", "user"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/authentication/v1.UserInfo", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta", "k8s.io/apimachinery/pkg/apis/meta/v1.Status", "k8s.io/apimachinery/pkg/apis/meta/v1.Time", "k8s.io/apimachinery/pkg/runtime.Unknown", "k8s.io/apiserver/pkg/apis/audit/v1alpha1.ObjectReference"}, + }, + "k8s.io/apiserver/pkg/apis/audit/v1alpha1.EventList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "EventList is a list of audit Events.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiserver/pkg/apis/audit/v1alpha1.Event"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta", "k8s.io/apiserver/pkg/apis/audit/v1alpha1.Event"}, + }, + "k8s.io/apiserver/pkg/apis/audit/v1alpha1.GroupResources": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "GroupResources represents resource kinds in an API group.", + Properties: map[string]spec.Schema{ + "group": { + SchemaProps: spec.SchemaProps{ + Description: "Group is the name of the API group that contains the resources. The empty string represents the core API group.", + Type: []string{"string"}, + Format: "", + }, + }, + "resources": { + SchemaProps: spec.SchemaProps{ + Description: "Resources is a list of resources within the API group. Subresources are matched using a \"/\" to indicate the subresource. For example, \"pods/logs\" would match request to the logs subresource of pods. The top level resource does not match subresources, \"pods\" doesn't match \"pods/logs\".", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "resourceNames": { + SchemaProps: spec.SchemaProps{ + Description: "ResourceNames is a list of resource instance names that the policy matches. Using this field requires Resources to be specified. An empty list implies that every instance of the resource is matched.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apiserver/pkg/apis/audit/v1alpha1.ObjectReference": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ObjectReference contains enough information to let you inspect or modify the referred object.", + Properties: map[string]spec.Schema{ + "resource": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "namespace": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "uid": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "resourceVersion": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "subresource": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apiserver/pkg/apis/audit/v1alpha1.Policy": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Policy defines the configuration of audit logging, and the rules for how different request categories are logged.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "ObjectMeta is included for interoperability with API infrastructure.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "rules": { + SchemaProps: spec.SchemaProps{ + Description: "Rules specify the audit Level a request should be recorded at. A request may match multiple rules, in which case the FIRST matching rule is used. The default audit level is None, but can be overridden by a catch-all rule at the end of the list. PolicyRules are strictly ordered.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiserver/pkg/apis/audit/v1alpha1.PolicyRule"), + }, + }, + }, + }, + }, + }, + Required: []string{"rules"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta", "k8s.io/apiserver/pkg/apis/audit/v1alpha1.PolicyRule"}, + }, + "k8s.io/apiserver/pkg/apis/audit/v1alpha1.PolicyList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PolicyList is a list of audit Policies.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiserver/pkg/apis/audit/v1alpha1.Policy"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta", "k8s.io/apiserver/pkg/apis/audit/v1alpha1.Policy"}, + }, + "k8s.io/apiserver/pkg/apis/audit/v1alpha1.PolicyRule": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PolicyRule maps requests based off metadata to an audit Level. Requests must match the rules of every field (an intersection of rules).", + Properties: map[string]spec.Schema{ + "level": { + SchemaProps: spec.SchemaProps{ + Description: "The Level that requests matching this rule are recorded at.", + Type: []string{"string"}, + Format: "", + }, + }, + "users": { + SchemaProps: spec.SchemaProps{ + Description: "The users (by authenticated user name) this rule applies to. An empty list implies every user.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "userGroups": { + SchemaProps: spec.SchemaProps{ + Description: "The user groups this rule applies to. A user is considered matching if it is a member of any of the UserGroups. An empty list implies every user group.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "verbs": { + SchemaProps: spec.SchemaProps{ + Description: "The verbs that match this rule. An empty list implies every verb.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "resources": { + SchemaProps: spec.SchemaProps{ + Description: "Resources that this rule matches. An empty list implies all kinds in all API groups.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiserver/pkg/apis/audit/v1alpha1.GroupResources"), + }, + }, + }, + }, + }, + "namespaces": { + SchemaProps: spec.SchemaProps{ + Description: "Namespaces that this rule matches. The empty string \"\" matches non-namespaced resources. An empty list implies every namespace.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "nonResourceURLs": { + SchemaProps: spec.SchemaProps{ + Description: "NonResourceURLs is a set of URL paths that should be audited. *s are allowed, but only as the full, final step in the path. Examples:\n \"/metrics\" - Log requests for apiserver metrics\n \"/healthz*\" - Log all health checks", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "omitStages": { + SchemaProps: spec.SchemaProps{ + Description: "OmitStages specify events generated in which stages will not be emitted to backend. An empty list means no restrictions will apply.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"level"}, + }, + }, + Dependencies: []string{ + "k8s.io/apiserver/pkg/apis/audit/v1alpha1.GroupResources"}, + }, + "k8s.io/apiserver/pkg/apis/audit/v1beta1.Event": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Event captures all the information that can be included in an API audit log.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "ObjectMeta is included for interoperability with API infrastructure.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "level": { + SchemaProps: spec.SchemaProps{ + Description: "AuditLevel at which event was generated", + Type: []string{"string"}, + Format: "", + }, + }, + "timestamp": { + SchemaProps: spec.SchemaProps{ + Description: "Time the request reached the apiserver.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "auditID": { + SchemaProps: spec.SchemaProps{ + Description: "Unique audit ID, generated for each request.", + Type: []string{"string"}, + Format: "", + }, + }, + "stage": { + SchemaProps: spec.SchemaProps{ + Description: "Stage of the request handling when this event instance was generated.", + Type: []string{"string"}, + Format: "", + }, + }, + "requestURI": { + SchemaProps: spec.SchemaProps{ + Description: "RequestURI is the request URI as sent by the client to a server.", + Type: []string{"string"}, + Format: "", + }, + }, + "verb": { + SchemaProps: spec.SchemaProps{ + Description: "Verb is the kubernetes verb associated with the request. For non-resource requests, this is the lower-cased HTTP method.", + Type: []string{"string"}, + Format: "", + }, + }, + "user": { + SchemaProps: spec.SchemaProps{ + Description: "Authenticated user information.", + Ref: ref("k8s.io/api/authentication/v1.UserInfo"), + }, + }, + "impersonatedUser": { + SchemaProps: spec.SchemaProps{ + Description: "Impersonated user information.", + Ref: ref("k8s.io/api/authentication/v1.UserInfo"), + }, + }, + "sourceIPs": { + SchemaProps: spec.SchemaProps{ + Description: "Source IPs, from where the request originated and intermediate proxies.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "objectRef": { + SchemaProps: spec.SchemaProps{ + Description: "Object reference this request is targeted at. Does not apply for List-type requests, or non-resource requests.", + Ref: ref("k8s.io/apiserver/pkg/apis/audit/v1beta1.ObjectReference"), + }, + }, + "responseStatus": { + SchemaProps: spec.SchemaProps{ + Description: "The response status, populated even when the ResponseObject is not a Status type. For successful responses, this will only include the Code and StatusSuccess. For non-status type error responses, this will be auto-populated with the error Message.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Status"), + }, + }, + "requestObject": { + SchemaProps: spec.SchemaProps{ + Description: "API object from the request, in JSON format. The RequestObject is recorded as-is in the request (possibly re-encoded as JSON), prior to version conversion, defaulting, admission or merging. It is an external versioned object type, and may not be a valid object on its own. Omitted for non-resource requests. Only logged at Request Level and higher.", + Ref: ref("k8s.io/apimachinery/pkg/runtime.Unknown"), + }, + }, + "responseObject": { + SchemaProps: spec.SchemaProps{ + Description: "API object returned in the response, in JSON. The ResponseObject is recorded after conversion to the external type, and serialized as JSON. Omitted for non-resource requests. Only logged at Response Level.", + Ref: ref("k8s.io/apimachinery/pkg/runtime.Unknown"), + }, + }, + }, + Required: []string{"level", "timestamp", "auditID", "stage", "requestURI", "verb", "user"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/authentication/v1.UserInfo", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta", "k8s.io/apimachinery/pkg/apis/meta/v1.Status", "k8s.io/apimachinery/pkg/apis/meta/v1.Time", "k8s.io/apimachinery/pkg/runtime.Unknown", "k8s.io/apiserver/pkg/apis/audit/v1beta1.ObjectReference"}, + }, + "k8s.io/apiserver/pkg/apis/audit/v1beta1.EventList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "EventList is a list of audit Events.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiserver/pkg/apis/audit/v1beta1.Event"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta", "k8s.io/apiserver/pkg/apis/audit/v1beta1.Event"}, + }, + "k8s.io/apiserver/pkg/apis/audit/v1beta1.GroupResources": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "GroupResources represents resource kinds in an API group.", + Properties: map[string]spec.Schema{ + "group": { + SchemaProps: spec.SchemaProps{ + Description: "Group is the name of the API group that contains the resources. The empty string represents the core API group.", + Type: []string{"string"}, + Format: "", + }, + }, + "resources": { + SchemaProps: spec.SchemaProps{ + Description: "Resources is a list of resources within the API group. Subresources are matched using a \"/\" to indicate the subresource. For example, \"pods/log\" would match request to the log subresource of pods. The top level resource does not match subresources, \"pods\" doesn't match \"pods/log\".", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "resourceNames": { + SchemaProps: spec.SchemaProps{ + Description: "ResourceNames is a list of resource instance names that the policy matches. Using this field requires Resources to be specified. An empty list implies that every instance of the resource is matched.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apiserver/pkg/apis/audit/v1beta1.ObjectReference": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ObjectReference contains enough information to let you inspect or modify the referred object.", + Properties: map[string]spec.Schema{ + "resource": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "namespace": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "uid": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "apiGroup": { + SchemaProps: spec.SchemaProps{ + Description: "APIGroup is the name of the API group that contains the referred object. The empty string represents the core API group.", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion is the version of the API group that contains the referred object.", + Type: []string{"string"}, + Format: "", + }, + }, + "resourceVersion": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "subresource": { + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/apiserver/pkg/apis/audit/v1beta1.Policy": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Policy defines the configuration of audit logging, and the rules for how different request categories are logged.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "ObjectMeta is included for interoperability with API infrastructure.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "rules": { + SchemaProps: spec.SchemaProps{ + Description: "Rules specify the audit Level a request should be recorded at. A request may match multiple rules, in which case the FIRST matching rule is used. The default audit level is None, but can be overridden by a catch-all rule at the end of the list. PolicyRules are strictly ordered.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiserver/pkg/apis/audit/v1beta1.PolicyRule"), + }, + }, + }, + }, + }, + }, + Required: []string{"rules"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta", "k8s.io/apiserver/pkg/apis/audit/v1beta1.PolicyRule"}, + }, + "k8s.io/apiserver/pkg/apis/audit/v1beta1.PolicyList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PolicyList is a list of audit Policies.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiserver/pkg/apis/audit/v1beta1.Policy"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta", "k8s.io/apiserver/pkg/apis/audit/v1beta1.Policy"}, + }, + "k8s.io/apiserver/pkg/apis/audit/v1beta1.PolicyRule": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PolicyRule maps requests based off metadata to an audit Level. Requests must match the rules of every field (an intersection of rules).", + Properties: map[string]spec.Schema{ + "level": { + SchemaProps: spec.SchemaProps{ + Description: "The Level that requests matching this rule are recorded at.", + Type: []string{"string"}, + Format: "", + }, + }, + "users": { + SchemaProps: spec.SchemaProps{ + Description: "The users (by authenticated user name) this rule applies to. An empty list implies every user.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "userGroups": { + SchemaProps: spec.SchemaProps{ + Description: "The user groups this rule applies to. A user is considered matching if it is a member of any of the UserGroups. An empty list implies every user group.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "verbs": { + SchemaProps: spec.SchemaProps{ + Description: "The verbs that match this rule. An empty list implies every verb.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "resources": { + SchemaProps: spec.SchemaProps{ + Description: "Resources that this rule matches. An empty list implies all kinds in all API groups.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apiserver/pkg/apis/audit/v1beta1.GroupResources"), + }, + }, + }, + }, + }, + "namespaces": { + SchemaProps: spec.SchemaProps{ + Description: "Namespaces that this rule matches. The empty string \"\" matches non-namespaced resources. An empty list implies every namespace.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "nonResourceURLs": { + SchemaProps: spec.SchemaProps{ + Description: "NonResourceURLs is a set of URL paths that should be audited. *s are allowed, but only as the full, final step in the path. Examples:\n \"/metrics\" - Log requests for apiserver metrics\n \"/healthz*\" - Log all health checks", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "omitStages": { + SchemaProps: spec.SchemaProps{ + Description: "OmitStages specify events generated in which stages will not be emitted to backend. An empty list means no restrictions will apply.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"level"}, + }, + }, + Dependencies: []string{ + "k8s.io/apiserver/pkg/apis/audit/v1beta1.GroupResources"}, + }, + "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1.APIService": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "APIService represents a server for a particular GroupVersion. Name must be \"version.group\".", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec contains information for locating and communicating with a server", + Ref: ref("k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1.APIServiceSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status contains derived information about an API server", + Ref: ref("k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1.APIServiceStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta", "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1.APIServiceSpec", "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1.APIServiceStatus"}, + }, + "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1.APIServiceCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type is the type of the condition.", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status is the status of the condition. Can be True, False, Unknown.", + Type: []string{"string"}, + Format: "", + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time the condition transitioned from one status to another.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "Unique, one-word, CamelCase reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "Human-readable message indicating details about last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1.APIServiceList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "APIServiceList is a list of APIService objects.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1.APIService"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta", "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1.APIService"}, + }, + "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1.APIServiceSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "APIServiceSpec contains information for locating and communicating with a server. Only https is supported, though you are able to disable certificate verification.", + Properties: map[string]spec.Schema{ + "service": { + SchemaProps: spec.SchemaProps{ + Description: "Service is a reference to the service for this API server. It must communicate on port 443 If the Service is nil, that means the handling for the API groupversion is handled locally on this server. The call will simply delegate to the normal handler chain to be fulfilled.", + Ref: ref("k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1.ServiceReference"), + }, + }, + "group": { + SchemaProps: spec.SchemaProps{ + Description: "Group is the API group name this server hosts", + Type: []string{"string"}, + Format: "", + }, + }, + "version": { + SchemaProps: spec.SchemaProps{ + Description: "Version is the API version this server hosts. For example, \"v1\"", + Type: []string{"string"}, + Format: "", + }, + }, + "insecureSkipTLSVerify": { + SchemaProps: spec.SchemaProps{ + Description: "InsecureSkipTLSVerify disables TLS certificate verification when communicating with this server. This is strongly discouraged. You should use the CABundle instead.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "caBundle": { + SchemaProps: spec.SchemaProps{ + Description: "CABundle is a PEM encoded CA bundle which will be used to validate an API server's serving certificate.", + Type: []string{"string"}, + Format: "byte", + }, + }, + "groupPriorityMinimum": { + SchemaProps: spec.SchemaProps{ + Description: "GroupPriorityMininum is the priority this group should have at least. Higher priority means that the group is prefered by clients over lower priority ones. Note that other versions of this group might specify even higher GroupPriorityMininum values such that the whole group gets a higher priority. The primary sort is based on GroupPriorityMinimum, ordered highest number to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) We'd recommend something like: *.k8s.io (except extensions) at 18000 and PaaSes (OpenShift, Deis) are recommended to be in the 2000s", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "versionPriority": { + SchemaProps: spec.SchemaProps{ + Description: "VersionPriority controls the ordering of this API version inside of its group. Must be greater than zero. The primary sort is based on VersionPriority, ordered highest to lowest (20 before 10). The secondary sort is based on the alphabetical comparison of the name of the object. (v1.bar before v1.foo) Since it's inside of a group, the number can be small, probably in the 10s.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"service", "caBundle", "groupPriorityMinimum", "versionPriority"}, + }, + }, + Dependencies: []string{ + "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1.ServiceReference"}, + }, + "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1.APIServiceStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "APIServiceStatus contains derived information about an API server", + Properties: map[string]spec.Schema{ + "conditions": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "type", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "Current service state of apiService.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1.APIServiceCondition"), + }, + }, + }, + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1.APIServiceCondition"}, + }, + "k8s.io/kube-aggregator/pkg/apis/apiregistration/v1beta1.ServiceReference": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ServiceReference holds a reference to Service.legacy.k8s.io", + Properties: map[string]spec.Schema{ + "namespace": { + SchemaProps: spec.SchemaProps{ + Description: "Namespace is the namespace of the service", + Type: []string{"string"}, + Format: "", + }, + }, + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Name is the name of the service", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/kubernetes/federation/apis/federation/v1beta1.Cluster": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Information about a registered cluster in a federated kubernetes setup. Clusters are not namespaced and have unique names in the federation.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard object's metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#metadata", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec defines the behavior of the Cluster.", + Ref: ref("k8s.io/kubernetes/federation/apis/federation/v1beta1.ClusterSpec"), + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status describes the current status of a Cluster", + Ref: ref("k8s.io/kubernetes/federation/apis/federation/v1beta1.ClusterStatus"), + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta", "k8s.io/kubernetes/federation/apis/federation/v1beta1.ClusterSpec", "k8s.io/kubernetes/federation/apis/federation/v1beta1.ClusterStatus"}, + }, + "k8s.io/kubernetes/federation/apis/federation/v1beta1.ClusterCondition": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClusterCondition describes current state of a cluster.", + Properties: map[string]spec.Schema{ + "type": { + SchemaProps: spec.SchemaProps{ + Description: "Type of cluster condition, Complete or Failed.", + Type: []string{"string"}, + Format: "", + }, + }, + "status": { + SchemaProps: spec.SchemaProps{ + Description: "Status of the condition, one of True, False, Unknown.", + Type: []string{"string"}, + Format: "", + }, + }, + "lastProbeTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time the condition was checked.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "lastTransitionTime": { + SchemaProps: spec.SchemaProps{ + Description: "Last time the condition transit from one status to another.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "reason": { + SchemaProps: spec.SchemaProps{ + Description: "(brief) reason for the condition's last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + "message": { + SchemaProps: spec.SchemaProps{ + Description: "Human readable message indicating details about last transition.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"type", "status"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/kubernetes/federation/apis/federation/v1beta1.ClusterList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "A list of all the kubernetes clusters registered to the federation", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of Cluster objects.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/kubernetes/federation/apis/federation/v1beta1.Cluster"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta", "k8s.io/kubernetes/federation/apis/federation/v1beta1.Cluster"}, + }, + "k8s.io/kubernetes/federation/apis/federation/v1beta1.ClusterSelectorRequirement": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClusterSelectorRequirement contains values, a key, and an operator that relates the key and values. The zero value of ClusterSelectorRequirement is invalid. ClusterSelectorRequirement implements both set based match and exact match", + Properties: map[string]spec.Schema{ + "key": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "key", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + "operator": { + SchemaProps: spec.SchemaProps{ + Description: "The Operator defines how the Key is matched to the Values. One of \"in\", \"notin\", \"exists\", \"!\", \"=\", \"!=\", \"gt\" or \"lt\".", + Type: []string{"string"}, + Format: "", + }, + }, + "values": { + SchemaProps: spec.SchemaProps{ + Description: "An array of string values. If the operator is \"in\" or \"notin\", the values array must be non-empty. If the operator is \"exists\" or \"!\", the values array must be empty. If the operator is \"gt\" or \"lt\", the values array must have a single element, which will be interpreted as an integer. This array is replaced during a strategic merge patch.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + }, + Required: []string{"key", "operator"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/kubernetes/federation/apis/federation/v1beta1.ClusterSpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClusterSpec describes the attributes of a kubernetes cluster.", + Properties: map[string]spec.Schema{ + "serverAddressByClientCIDRs": { + VendorExtensible: spec.VendorExtensible{ + Extensions: spec.Extensions{ + "x-kubernetes-patch-merge-key": "clientCIDR", + "x-kubernetes-patch-strategy": "merge", + }, + }, + SchemaProps: spec.SchemaProps{ + Description: "A map of client CIDR to server address. This is to help clients reach servers in the most network-efficient way possible. Clients can use the appropriate server address as per the CIDR that they match. In case of multiple matches, clients should use the longest matching CIDR.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/kubernetes/federation/apis/federation/v1beta1.ServerAddressByClientCIDR"), + }, + }, + }, + }, + }, + "secretRef": { + SchemaProps: spec.SchemaProps{ + Description: "Name of the secret containing kubeconfig to access this cluster. The secret is read from the kubernetes cluster that is hosting federation control plane. Admin needs to ensure that the required secret exists. Secret should be in the same namespace where federation control plane is hosted and it should have kubeconfig in its data with key \"kubeconfig\". This will later be changed to a reference to secret in federation control plane when the federation control plane supports secrets. This can be left empty if the cluster allows insecure access.", + Ref: ref("k8s.io/api/core/v1.LocalObjectReference"), + }, + }, + }, + Required: []string{"serverAddressByClientCIDRs"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.LocalObjectReference", "k8s.io/kubernetes/federation/apis/federation/v1beta1.ServerAddressByClientCIDR"}, + }, + "k8s.io/kubernetes/federation/apis/federation/v1beta1.ClusterStatus": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClusterStatus is information about the current status of a cluster updated by cluster controller periodically.", + Properties: map[string]spec.Schema{ + "conditions": { + SchemaProps: spec.SchemaProps{ + Description: "Conditions is an array of current cluster conditions.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/kubernetes/federation/apis/federation/v1beta1.ClusterCondition"), + }, + }, + }, + }, + }, + "zones": { + SchemaProps: spec.SchemaProps{ + Description: "Zones is the list of availability zones in which the nodes of the cluster exist, e.g. 'us-east1-a'. These will always be in the same region.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "region": { + SchemaProps: spec.SchemaProps{ + Description: "Region is the name of the region in which all of the nodes in the cluster exist. e.g. 'us-east1'.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{ + "k8s.io/kubernetes/federation/apis/federation/v1beta1.ClusterCondition"}, + }, + "k8s.io/kubernetes/federation/apis/federation/v1beta1.ServerAddressByClientCIDR": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ServerAddressByClientCIDR helps the client to determine the server address that they should use, depending on the clientCIDR that they match.", + Properties: map[string]spec.Schema{ + "clientCIDR": { + SchemaProps: spec.SchemaProps{ + Description: "The CIDR with which clients can match their IP to figure out the server address that they should use.", + Type: []string{"string"}, + Format: "", + }, + }, + "serverAddress": { + SchemaProps: spec.SchemaProps{ + Description: "Address of this server, suitable for a client that matches the above CIDR. This can be a hostname, hostname:port, IP or IP:port.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"clientCIDR", "serverAddress"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/kubernetes/pkg/apis/abac/v1beta1.Policy": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "Policy contains a single ABAC policy rule", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "spec": { + SchemaProps: spec.SchemaProps{ + Description: "Spec describes the policy rule", + Ref: ref("k8s.io/kubernetes/pkg/apis/abac/v1beta1.PolicySpec"), + }, + }, + }, + Required: []string{"spec"}, + }, + }, + Dependencies: []string{ + "k8s.io/kubernetes/pkg/apis/abac/v1beta1.PolicySpec"}, + }, + "k8s.io/kubernetes/pkg/apis/abac/v1beta1.PolicySpec": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PolicySpec contains the attributes for a policy rule", + Properties: map[string]spec.Schema{ + "user": { + SchemaProps: spec.SchemaProps{ + Description: "User is the username this rule applies to. Either user or group is required to match the request. \"*\" matches all users.", + Type: []string{"string"}, + Format: "", + }, + }, + "group": { + SchemaProps: spec.SchemaProps{ + Description: "Group is the group this rule applies to. Either user or group is required to match the request. \"*\" matches all groups.", + Type: []string{"string"}, + Format: "", + }, + }, + "readonly": { + SchemaProps: spec.SchemaProps{ + Description: "Readonly matches readonly requests when true, and all requests when false", + Type: []string{"boolean"}, + Format: "", + }, + }, + "apiGroup": { + SchemaProps: spec.SchemaProps{ + Description: "APIGroup is the name of an API group. APIGroup, Resource, and Namespace are required to match resource requests. \"*\" matches all API groups", + Type: []string{"string"}, + Format: "", + }, + }, + "resource": { + SchemaProps: spec.SchemaProps{ + Description: "Resource is the name of a resource. APIGroup, Resource, and Namespace are required to match resource requests. \"*\" matches all resources", + Type: []string{"string"}, + Format: "", + }, + }, + "namespace": { + SchemaProps: spec.SchemaProps{ + Description: "Namespace is the name of a namespace. APIGroup, Resource, and Namespace are required to match resource requests. \"*\" matches all namespaces (including unnamespaced requests)", + Type: []string{"string"}, + Format: "", + }, + }, + "nonResourcePath": { + SchemaProps: spec.SchemaProps{ + Description: "NonResourcePath matches non-resource request paths. \"*\" matches all paths \"/foo/*\" matches all subpaths of foo", + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1.ClientConnectionConfiguration": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "ClientConnectionConfiguration contains details for constructing a client.", + Properties: map[string]spec.Schema{ + "kubeconfig": { + SchemaProps: spec.SchemaProps{ + Description: "kubeConfigFile is the path to a kubeconfig file.", + Type: []string{"string"}, + Format: "", + }, + }, + "acceptContentTypes": { + SchemaProps: spec.SchemaProps{ + Description: "acceptContentTypes defines the Accept header sent by clients when connecting to a server, overriding the default value of 'application/json'. This field will control all connections to the server used by a particular client.", + Type: []string{"string"}, + Format: "", + }, + }, + "contentType": { + SchemaProps: spec.SchemaProps{ + Description: "contentType is the content type used when sending data to the server from this client.", + Type: []string{"string"}, + Format: "", + }, + }, + "qps": { + SchemaProps: spec.SchemaProps{ + Description: "cps controls the number of queries per second allowed for this connection.", + Type: []string{"number"}, + Format: "float", + }, + }, + "burst": { + SchemaProps: spec.SchemaProps{ + Description: "burst allows extra queries to accumulate when a client is exceeding its rate.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + }, + Required: []string{"kubeconfig", "acceptContentTypes", "contentType", "qps", "burst"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1.KubeProxyConfiguration": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "KubeProxyConfiguration contains everything necessary to configure the Kubernetes proxy server.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "featureGates": { + SchemaProps: spec.SchemaProps{ + Description: "featureGates is a comma-separated list of key=value pairs that control which alpha/beta features are enabled.\n\ncomponents to use config files because local-up-cluster.sh only supports the --feature-gates flag right now, which is comma-separated key=value pairs.", + Type: []string{"string"}, + Format: "", + }, + }, + "bindAddress": { + SchemaProps: spec.SchemaProps{ + Description: "bindAddress is the IP address for the proxy server to serve on (set to 0.0.0.0 for all interfaces)", + Type: []string{"string"}, + Format: "", + }, + }, + "healthzBindAddress": { + SchemaProps: spec.SchemaProps{ + Description: "healthzBindAddress is the IP address and port for the health check server to serve on, defaulting to 0.0.0.0:10256", + Type: []string{"string"}, + Format: "", + }, + }, + "metricsBindAddress": { + SchemaProps: spec.SchemaProps{ + Description: "metricsBindAddress is the IP address and port for the metrics server to serve on, defaulting to 127.0.0.1:10249 (set to 0.0.0.0 for all interfaces)", + Type: []string{"string"}, + Format: "", + }, + }, + "enableProfiling": { + SchemaProps: spec.SchemaProps{ + Description: "enableProfiling enables profiling via web interface on /debug/pprof handler. Profiling handlers will be handled by metrics server.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "clusterCIDR": { + SchemaProps: spec.SchemaProps{ + Description: "clusterCIDR is the CIDR range of the pods in the cluster. It is used to bridge traffic coming from outside of the cluster. If not provided, no off-cluster bridging will be performed.", + Type: []string{"string"}, + Format: "", + }, + }, + "hostnameOverride": { + SchemaProps: spec.SchemaProps{ + Description: "hostnameOverride, if non-empty, will be used as the identity instead of the actual hostname.", + Type: []string{"string"}, + Format: "", + }, + }, + "clientConnection": { + SchemaProps: spec.SchemaProps{ + Description: "clientConnection specifies the kubeconfig file and client connection settings for the proxy server to use when communicating with the apiserver.", + Ref: ref("k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1.ClientConnectionConfiguration"), + }, + }, + "iptables": { + SchemaProps: spec.SchemaProps{ + Description: "iptables contains iptables-related configuration options.", + Ref: ref("k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1.KubeProxyIPTablesConfiguration"), + }, + }, + "ipvs": { + SchemaProps: spec.SchemaProps{ + Description: "ipvs contains ipvs-related configuration options.", + Ref: ref("k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1.KubeProxyIPVSConfiguration"), + }, + }, + "oomScoreAdj": { + SchemaProps: spec.SchemaProps{ + Description: "oomScoreAdj is the oom-score-adj value for kube-proxy process. Values must be within the range [-1000, 1000]", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "mode": { + SchemaProps: spec.SchemaProps{ + Description: "mode specifies which proxy mode to use.", + Type: []string{"string"}, + Format: "", + }, + }, + "portRange": { + SchemaProps: spec.SchemaProps{ + Description: "portRange is the range of host ports (beginPort-endPort, inclusive) that may be consumed in order to proxy service traffic. If unspecified (0-0) then ports will be randomly chosen.", + Type: []string{"string"}, + Format: "", + }, + }, + "resourceContainer": { + SchemaProps: spec.SchemaProps{ + Description: "resourceContainer is the bsolute name of the resource-only container to create and run the Kube-proxy in (Default: /kube-proxy).", + Type: []string{"string"}, + Format: "", + }, + }, + "udpTimeoutMilliseconds": { + SchemaProps: spec.SchemaProps{ + Description: "udpIdleTimeout is how long an idle UDP connection will be kept open (e.g. '250ms', '2s'). Must be greater than 0. Only applicable for proxyMode=userspace.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "conntrack": { + SchemaProps: spec.SchemaProps{ + Description: "conntrack contains conntrack-related configuration options.", + Ref: ref("k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1.KubeProxyConntrackConfiguration"), + }, + }, + "configSyncPeriod": { + SchemaProps: spec.SchemaProps{ + Description: "configSyncPeriod is how often configuration from the apiserver is refreshed. Must be greater than 0.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + }, + Required: []string{"featureGates", "bindAddress", "healthzBindAddress", "metricsBindAddress", "enableProfiling", "clusterCIDR", "hostnameOverride", "clientConnection", "iptables", "ipvs", "oomScoreAdj", "mode", "portRange", "resourceContainer", "udpTimeoutMilliseconds", "conntrack", "configSyncPeriod"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Duration", "k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1.ClientConnectionConfiguration", "k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1.KubeProxyConntrackConfiguration", "k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1.KubeProxyIPTablesConfiguration", "k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1.KubeProxyIPVSConfiguration"}, + }, + "k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1.KubeProxyConntrackConfiguration": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "KubeProxyConntrackConfiguration contains conntrack settings for the Kubernetes proxy server.", + Properties: map[string]spec.Schema{ + "max": { + SchemaProps: spec.SchemaProps{ + Description: "max is the maximum number of NAT connections to track (0 to leave as-is). This takes precedence over conntrackMaxPerCore and conntrackMin.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "maxPerCore": { + SchemaProps: spec.SchemaProps{ + Description: "maxPerCore is the maximum number of NAT connections to track per CPU core (0 to leave the limit as-is and ignore conntrackMin).", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "min": { + SchemaProps: spec.SchemaProps{ + Description: "min is the minimum value of connect-tracking records to allocate, regardless of conntrackMaxPerCore (set conntrackMaxPerCore=0 to leave the limit as-is).", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "tcpEstablishedTimeout": { + SchemaProps: spec.SchemaProps{ + Description: "tcpEstablishedTimeout is how long an idle TCP connection will be kept open (e.g. '2s'). Must be greater than 0.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "tcpCloseWaitTimeout": { + SchemaProps: spec.SchemaProps{ + Description: "tcpCloseWaitTimeout is how long an idle conntrack entry in CLOSE_WAIT state will remain in the conntrack table. (e.g. '60s'). Must be greater than 0 to set.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + }, + Required: []string{"max", "maxPerCore", "min", "tcpEstablishedTimeout", "tcpCloseWaitTimeout"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Duration"}, + }, + "k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1.KubeProxyIPTablesConfiguration": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "KubeProxyIPTablesConfiguration contains iptables-related configuration details for the Kubernetes proxy server.", + Properties: map[string]spec.Schema{ + "masqueradeBit": { + SchemaProps: spec.SchemaProps{ + Description: "masqueradeBit is the bit of the iptables fwmark space to use for SNAT if using the pure iptables proxy mode. Values must be within the range [0, 31].", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "masqueradeAll": { + SchemaProps: spec.SchemaProps{ + Description: "masqueradeAll tells kube-proxy to SNAT everything if using the pure iptables proxy mode.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "syncPeriod": { + SchemaProps: spec.SchemaProps{ + Description: "syncPeriod is the period that iptables rules are refreshed (e.g. '5s', '1m', '2h22m'). Must be greater than 0.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "minSyncPeriod": { + SchemaProps: spec.SchemaProps{ + Description: "minSyncPeriod is the minimum period that iptables rules are refreshed (e.g. '5s', '1m', '2h22m').", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + }, + Required: []string{"masqueradeBit", "masqueradeAll", "syncPeriod", "minSyncPeriod"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Duration"}, + }, + "k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1.KubeProxyIPVSConfiguration": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "KubeProxyIPVSConfiguration contains ipvs-related configuration details for the Kubernetes proxy server.", + Properties: map[string]spec.Schema{ + "syncPeriod": { + SchemaProps: spec.SchemaProps{ + Description: "syncPeriod is the period that ipvs rules are refreshed (e.g. '5s', '1m', '2h22m'). Must be greater than 0.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "minSyncPeriod": { + SchemaProps: spec.SchemaProps{ + Description: "minSyncPeriod is the minimum period that ipvs rules are refreshed (e.g. '5s', '1m', '2h22m').", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "scheduler": { + SchemaProps: spec.SchemaProps{ + Description: "ipvs scheduler", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"syncPeriod", "minSyncPeriod", "scheduler"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Duration"}, + }, + "k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1.KubeSchedulerConfiguration": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "port": { + SchemaProps: spec.SchemaProps{ + Description: "port is the port that the scheduler's http service runs on.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "address": { + SchemaProps: spec.SchemaProps{ + Description: "address is the IP address to serve on.", + Type: []string{"string"}, + Format: "", + }, + }, + "algorithmProvider": { + SchemaProps: spec.SchemaProps{ + Description: "algorithmProvider is the scheduling algorithm provider to use.", + Type: []string{"string"}, + Format: "", + }, + }, + "policyConfigFile": { + SchemaProps: spec.SchemaProps{ + Description: "policyConfigFile is the filepath to the scheduler policy configuration.", + Type: []string{"string"}, + Format: "", + }, + }, + "enableProfiling": { + SchemaProps: spec.SchemaProps{ + Description: "enableProfiling enables profiling via web interface.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "enableContentionProfiling": { + SchemaProps: spec.SchemaProps{ + Description: "enableContentionProfiling enables lock contention profiling, if enableProfiling is true.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "contentType": { + SchemaProps: spec.SchemaProps{ + Description: "contentType is contentType of requests sent to apiserver.", + Type: []string{"string"}, + Format: "", + }, + }, + "kubeAPIQPS": { + SchemaProps: spec.SchemaProps{ + Description: "kubeAPIQPS is the QPS to use while talking with kubernetes apiserver.", + Type: []string{"number"}, + Format: "float", + }, + }, + "kubeAPIBurst": { + SchemaProps: spec.SchemaProps{ + Description: "kubeAPIBurst is the QPS burst to use while talking with kubernetes apiserver.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "schedulerName": { + SchemaProps: spec.SchemaProps{ + Description: "schedulerName is name of the scheduler, used to select which pods will be processed by this scheduler, based on pod's \"spec.SchedulerName\".", + Type: []string{"string"}, + Format: "", + }, + }, + "hardPodAffinitySymmetricWeight": { + SchemaProps: spec.SchemaProps{ + Description: "RequiredDuringScheduling affinity is not symmetric, but there is an implicit PreferredDuringScheduling affinity rule corresponding to every RequiredDuringScheduling affinity rule. HardPodAffinitySymmetricWeight represents the weight of implicit PreferredDuringScheduling affinity rule, in the range 0-100.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "failureDomains": { + SchemaProps: spec.SchemaProps{ + Description: "Indicate the \"all topologies\" set for empty topologyKey when it's used for PreferredDuringScheduling pod anti-affinity.", + Type: []string{"string"}, + Format: "", + }, + }, + "leaderElection": { + SchemaProps: spec.SchemaProps{ + Description: "leaderElection defines the configuration of leader election client.", + Ref: ref("k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1.LeaderElectionConfiguration"), + }, + }, + "lockObjectNamespace": { + SchemaProps: spec.SchemaProps{ + Description: "LockObjectNamespace defines the namespace of the lock object", + Type: []string{"string"}, + Format: "", + }, + }, + "lockObjectName": { + SchemaProps: spec.SchemaProps{ + Description: "LockObjectName defines the lock object name", + Type: []string{"string"}, + Format: "", + }, + }, + "policyConfigMapName": { + SchemaProps: spec.SchemaProps{ + Description: "PolicyConfigMapName is the name of the ConfigMap object that specifies the scheduler's policy config. If UseLegacyPolicyConfig is true, scheduler uses PolicyConfigFile. If UseLegacyPolicyConfig is false and PolicyConfigMapName is not empty, the ConfigMap object with this name must exist in PolicyConfigMapNamespace before scheduler initialization.", + Type: []string{"string"}, + Format: "", + }, + }, + "policyConfigMapNamespace": { + SchemaProps: spec.SchemaProps{ + Description: "PolicyConfigMapNamespace is the namespace where the above policy config map is located. If none is provided default system namespace (\"kube-system\") will be used.", + Type: []string{"string"}, + Format: "", + }, + }, + "useLegacyPolicyConfig": { + SchemaProps: spec.SchemaProps{ + Description: "UseLegacyPolicyConfig tells the scheduler to ignore Policy ConfigMap and to use PolicyConfigFile if available.", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"port", "address", "algorithmProvider", "policyConfigFile", "enableProfiling", "enableContentionProfiling", "contentType", "kubeAPIQPS", "kubeAPIBurst", "schedulerName", "hardPodAffinitySymmetricWeight", "failureDomains", "leaderElection", "lockObjectNamespace", "lockObjectName", "policyConfigMapName", "policyConfigMapNamespace", "useLegacyPolicyConfig"}, + }, + }, + Dependencies: []string{ + "k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1.LeaderElectionConfiguration"}, + }, + "k8s.io/kubernetes/pkg/apis/componentconfig/v1alpha1.LeaderElectionConfiguration": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "LeaderElectionConfiguration defines the configuration of leader election clients for components that can run with leader election enabled.", + Properties: map[string]spec.Schema{ + "leaderElect": { + SchemaProps: spec.SchemaProps{ + Description: "leaderElect enables a leader election client to gain leadership before executing the main loop. Enable this when running replicated components for high availability.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "leaseDuration": { + SchemaProps: spec.SchemaProps{ + Description: "leaseDuration is the duration that non-leader candidates will wait after observing a leadership renewal until attempting to acquire leadership of a led but unrenewed leader slot. This is effectively the maximum duration that a leader can be stopped before it is replaced by another candidate. This is only applicable if leader election is enabled.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "renewDeadline": { + SchemaProps: spec.SchemaProps{ + Description: "renewDeadline is the interval between attempts by the acting master to renew a leadership slot before it stops leading. This must be less than or equal to the lease duration. This is only applicable if leader election is enabled.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "retryPeriod": { + SchemaProps: spec.SchemaProps{ + Description: "retryPeriod is the duration the clients should wait between attempting acquisition and renewal of a leadership. This is only applicable if leader election is enabled.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "resourceLock": { + SchemaProps: spec.SchemaProps{ + Description: "resourceLock indicates the resource object type that will be used to lock during leader election cycles.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"leaderElect", "leaseDuration", "renewDeadline", "retryPeriod", "resourceLock"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Duration"}, + }, + "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletAnonymousAuthentication": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "enabled": { + SchemaProps: spec.SchemaProps{ + Description: "enabled allows anonymous requests to the kubelet server. Requests that are not rejected by another authentication method are treated as anonymous requests. Anonymous requests have a username of system:anonymous, and a group name of system:unauthenticated.", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"enabled"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletAuthentication": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "x509": { + SchemaProps: spec.SchemaProps{ + Description: "x509 contains settings related to x509 client certificate authentication", + Ref: ref("k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletX509Authentication"), + }, + }, + "webhook": { + SchemaProps: spec.SchemaProps{ + Description: "webhook contains settings related to webhook bearer token authentication", + Ref: ref("k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletWebhookAuthentication"), + }, + }, + "anonymous": { + SchemaProps: spec.SchemaProps{ + Description: "anonymous contains settings related to anonymous authentication", + Ref: ref("k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletAnonymousAuthentication"), + }, + }, + }, + Required: []string{"x509", "webhook", "anonymous"}, + }, + }, + Dependencies: []string{ + "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletAnonymousAuthentication", "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletWebhookAuthentication", "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletX509Authentication"}, + }, + "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletAuthorization": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "mode": { + SchemaProps: spec.SchemaProps{ + Description: "mode is the authorization mode to apply to requests to the kubelet server. Valid values are AlwaysAllow and Webhook. Webhook mode uses the SubjectAccessReview API to determine authorization.", + Type: []string{"string"}, + Format: "", + }, + }, + "webhook": { + SchemaProps: spec.SchemaProps{ + Description: "webhook contains settings related to Webhook authorization.", + Ref: ref("k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletWebhookAuthorization"), + }, + }, + }, + Required: []string{"mode", "webhook"}, + }, + }, + Dependencies: []string{ + "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletWebhookAuthorization"}, + }, + "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletConfiguration": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "A configuration field should go in KubeletFlags instead of KubeletConfiguration if any of these are true: - its value will never, or cannot safely be changed during the lifetime of a node - its value cannot be safely shared between nodes at the same time (e.g. a hostname)\n KubeletConfiguration is intended to be shared between nodes\nIn general, please try to avoid adding flags or configuration fields, we already have a confusingly large amount of them.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "configTrialDuration": { + SchemaProps: spec.SchemaProps{ + Description: "Only used for dynamic configuration. The length of the trial period for this configuration. This configuration will become the last-known-good after this duration.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "podManifestPath": { + SchemaProps: spec.SchemaProps{ + Description: "podManifestPath is the path to the directory containing pod manifests to run, or the path to a single manifest file", + Type: []string{"string"}, + Format: "", + }, + }, + "syncFrequency": { + SchemaProps: spec.SchemaProps{ + Description: "syncFrequency is the max period between synchronizing running containers and config", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "fileCheckFrequency": { + SchemaProps: spec.SchemaProps{ + Description: "fileCheckFrequency is the duration between checking config files for new data", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "httpCheckFrequency": { + SchemaProps: spec.SchemaProps{ + Description: "httpCheckFrequency is the duration between checking http for new data", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "manifestURL": { + SchemaProps: spec.SchemaProps{ + Description: "manifestURL is the URL for accessing the container manifest", + Type: []string{"string"}, + Format: "", + }, + }, + "manifestURLHeader": { + SchemaProps: spec.SchemaProps{ + Description: "manifestURLHeader is the HTTP header to use when accessing the manifest URL, with the key separated from the value with a ':', as in 'key:value'", + Type: []string{"string"}, + Format: "", + }, + }, + "enableServer": { + SchemaProps: spec.SchemaProps{ + Description: "enableServer enables the Kubelet's server", + Type: []string{"boolean"}, + Format: "", + }, + }, + "address": { + SchemaProps: spec.SchemaProps{ + Description: "address is the IP address for the Kubelet to serve on (set to 0.0.0.0 for all interfaces)", + Type: []string{"string"}, + Format: "", + }, + }, + "port": { + SchemaProps: spec.SchemaProps{ + Description: "port is the port for the Kubelet to serve on.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "readOnlyPort": { + SchemaProps: spec.SchemaProps{ + Description: "readOnlyPort is the read-only port for the Kubelet to serve on with no authentication/authorization (set to 0 to disable)", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "tlsCertFile": { + SchemaProps: spec.SchemaProps{ + Description: "tlsCertFile is the file containing x509 Certificate for HTTPS. (CA cert, if any, concatenated after server cert). If tlsCertFile and tlsPrivateKeyFile are not provided, a self-signed certificate and key are generated for the public address and saved to the directory passed to certDir.", + Type: []string{"string"}, + Format: "", + }, + }, + "tlsPrivateKeyFile": { + SchemaProps: spec.SchemaProps{ + Description: "tlsPrivateKeyFile is the ile containing x509 private key matching tlsCertFile.", + Type: []string{"string"}, + Format: "", + }, + }, + "authentication": { + SchemaProps: spec.SchemaProps{ + Description: "authentication specifies how requests to the Kubelet's server are authenticated", + Ref: ref("k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletAuthentication"), + }, + }, + "authorization": { + SchemaProps: spec.SchemaProps{ + Description: "authorization specifies how requests to the Kubelet's server are authorized", + Ref: ref("k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletAuthorization"), + }, + }, + "seccompProfileRoot": { + SchemaProps: spec.SchemaProps{ + Description: "seccompProfileRoot is the directory path for seccomp profiles.", + Type: []string{"string"}, + Format: "", + }, + }, + "allowPrivileged": { + SchemaProps: spec.SchemaProps{ + Description: "allowPrivileged enables containers to request privileged mode. Defaults to false.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "hostNetworkSources": { + SchemaProps: spec.SchemaProps{ + Description: "hostNetworkSources is a comma-separated list of sources from which the Kubelet allows pods to use of host network. Defaults to \"*\". Valid options are \"file\", \"http\", \"api\", and \"*\" (all sources).", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "hostPIDSources": { + SchemaProps: spec.SchemaProps{ + Description: "hostPIDSources is a comma-separated list of sources from which the Kubelet allows pods to use the host pid namespace. Defaults to \"*\".", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "hostIPCSources": { + SchemaProps: spec.SchemaProps{ + Description: "hostIPCSources is a comma-separated list of sources from which the Kubelet allows pods to use the host ipc namespace. Defaults to \"*\".", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "registryPullQPS": { + SchemaProps: spec.SchemaProps{ + Description: "registryPullQPS is the limit of registry pulls per second. If 0, unlimited. Set to 0 for no limit. Defaults to 5.0.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "registryBurst": { + SchemaProps: spec.SchemaProps{ + Description: "registryBurst is the maximum size of a bursty pulls, temporarily allows pulls to burst to this number, while still not exceeding registryQps. Only used if registryQPS > 0.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "eventRecordQPS": { + SchemaProps: spec.SchemaProps{ + Description: "eventRecordQPS is the maximum event creations per second. If 0, there is no limit enforced.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "eventBurst": { + SchemaProps: spec.SchemaProps{ + Description: "eventBurst is the maximum size of a bursty event records, temporarily allows event records to burst to this number, while still not exceeding event-qps. Only used if eventQps > 0", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "enableDebuggingHandlers": { + SchemaProps: spec.SchemaProps{ + Description: "enableDebuggingHandlers enables server endpoints for log collection and local running of containers and commands", + Type: []string{"boolean"}, + Format: "", + }, + }, + "enableContentionProfiling": { + SchemaProps: spec.SchemaProps{ + Description: "enableContentionProfiling enables lock contention profiling, if enableDebuggingHandlers is true.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "minimumGCAge": { + SchemaProps: spec.SchemaProps{ + Description: "minimumGCAge is the minimum age for a finished container before it is garbage collected.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "maxPerPodContainerCount": { + SchemaProps: spec.SchemaProps{ + Description: "maxPerPodContainerCount is the maximum number of old instances to retain per container. Each container takes up some disk space.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "maxContainerCount": { + SchemaProps: spec.SchemaProps{ + Description: "maxContainerCount is the maximum number of old instances of containers to retain globally. Each container takes up some disk space.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "cAdvisorPort": { + SchemaProps: spec.SchemaProps{ + Description: "cAdvisorPort is the port of the localhost cAdvisor endpoint (set to 0 to disable)", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "healthzPort": { + SchemaProps: spec.SchemaProps{ + Description: "healthzPort is the port of the localhost healthz endpoint (set to 0 to disable)", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "healthzBindAddress": { + SchemaProps: spec.SchemaProps{ + Description: "healthzBindAddress is the IP address for the healthz server to serve on.", + Type: []string{"string"}, + Format: "", + }, + }, + "oomScoreAdj": { + SchemaProps: spec.SchemaProps{ + Description: "oomScoreAdj is The oom-score-adj value for kubelet process. Values must be within the range [-1000, 1000].", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "registerNode": { + SchemaProps: spec.SchemaProps{ + Description: "registerNode enables automatic registration with the apiserver.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "clusterDomain": { + SchemaProps: spec.SchemaProps{ + Description: "clusterDomain is the DNS domain for this cluster. If set, kubelet will configure all containers to search this domain in addition to the host's search domains.", + Type: []string{"string"}, + Format: "", + }, + }, + "masterServiceNamespace": { + SchemaProps: spec.SchemaProps{ + Description: "masterServiceNamespace is The namespace from which the kubernetes master services should be injected into pods.", + Type: []string{"string"}, + Format: "", + }, + }, + "clusterDNS": { + SchemaProps: spec.SchemaProps{ + Description: "clusterDNS is a list of IP address for the cluster DNS server. If set, kubelet will configure all containers to use this for DNS resolution instead of the host's DNS servers", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "streamingConnectionIdleTimeout": { + SchemaProps: spec.SchemaProps{ + Description: "streamingConnectionIdleTimeout is the maximum time a streaming connection can be idle before the connection is automatically closed.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "nodeStatusUpdateFrequency": { + SchemaProps: spec.SchemaProps{ + Description: "nodeStatusUpdateFrequency is the frequency that kubelet posts node status to master. Note: be cautious when changing the constant, it must work with nodeMonitorGracePeriod in nodecontroller.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "imageMinimumGCAge": { + SchemaProps: spec.SchemaProps{ + Description: "imageMinimumGCAge is the minimum age for an unused image before it is garbage collected.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "imageGCHighThresholdPercent": { + SchemaProps: spec.SchemaProps{ + Description: "imageGCHighThresholdPercent is the percent of disk usage after which image garbage collection is always run. The percent is calculated as this field value out of 100.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "imageGCLowThresholdPercent": { + SchemaProps: spec.SchemaProps{ + Description: "imageGCLowThresholdPercent is the percent of disk usage before which image garbage collection is never run. Lowest disk usage to garbage collect to. The percent is calculated as this field value out of 100.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "volumeStatsAggPeriod": { + SchemaProps: spec.SchemaProps{ + Description: "How frequently to calculate and cache volume disk usage for all pods", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "volumePluginDir": { + SchemaProps: spec.SchemaProps{ + Description: "volumePluginDir is the full path of the directory in which to search for additional third party volume plugins", + Type: []string{"string"}, + Format: "", + }, + }, + "kubeletCgroups": { + SchemaProps: spec.SchemaProps{ + Description: "kubeletCgroups is the absolute name of cgroups to isolate the kubelet in.", + Type: []string{"string"}, + Format: "", + }, + }, + "runtimeCgroups": { + SchemaProps: spec.SchemaProps{ + Description: "runtimeCgroups are cgroups that container runtime is expected to be isolated in.", + Type: []string{"string"}, + Format: "", + }, + }, + "systemCgroups": { + SchemaProps: spec.SchemaProps{ + Description: "systemCgroups is absolute name of cgroups in which to place all non-kernel processes that are not already in a container. Empty for no container. Rolling back the flag requires a reboot.", + Type: []string{"string"}, + Format: "", + }, + }, + "cgroupRoot": { + SchemaProps: spec.SchemaProps{ + Description: "cgroupRoot is the root cgroup to use for pods. This is handled by the container runtime on a best effort basis.", + Type: []string{"string"}, + Format: "", + }, + }, + "cgroupsPerQOS": { + SchemaProps: spec.SchemaProps{ + Description: "Enable QoS based Cgroup hierarchy: top level cgroups for QoS Classes And all Burstable and BestEffort pods are brought up under their specific top level QoS cgroup.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "cgroupDriver": { + SchemaProps: spec.SchemaProps{ + Description: "driver that the kubelet uses to manipulate cgroups on the host (cgroupfs or systemd)", + Type: []string{"string"}, + Format: "", + }, + }, + "containerRuntime": { + SchemaProps: spec.SchemaProps{ + Description: "containerRuntime is the container runtime to use.", + Type: []string{"string"}, + Format: "", + }, + }, + "remoteRuntimeEndpoint": { + SchemaProps: spec.SchemaProps{ + Description: "remoteRuntimeEndpoint is the endpoint of remote runtime service", + Type: []string{"string"}, + Format: "", + }, + }, + "remoteImageEndpoint": { + SchemaProps: spec.SchemaProps{ + Description: "remoteImageEndpoint is the endpoint of remote image service", + Type: []string{"string"}, + Format: "", + }, + }, + "cpuManagerPolicy": { + SchemaProps: spec.SchemaProps{ + Description: "CPUManagerPolicy is the name of the policy to use.", + Type: []string{"string"}, + Format: "", + }, + }, + "cpuManagerReconcilePeriod": { + SchemaProps: spec.SchemaProps{ + Description: "CPU Manager reconciliation period.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "runtimeRequestTimeout": { + SchemaProps: spec.SchemaProps{ + Description: "runtimeRequestTimeout is the timeout for all runtime requests except long running requests - pull, logs, exec and attach.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "experimentalMounterPath": { + SchemaProps: spec.SchemaProps{ + Description: "experimentalMounterPath is the path to mounter binary. If not set, kubelet will attempt to use mount binary that is available via $PATH,", + Type: []string{"string"}, + Format: "", + }, + }, + "lockFilePath": { + SchemaProps: spec.SchemaProps{ + Description: "lockFilePath is the path that kubelet will use to as a lock file. It uses this file as a lock to synchronize with other kubelet processes that may be running.", + Type: []string{"string"}, + Format: "", + }, + }, + "exitOnLockContention": { + SchemaProps: spec.SchemaProps{ + Description: "ExitOnLockContention is a flag that signifies to the kubelet that it is running in \"bootstrap\" mode. This requires that 'LockFilePath' has been set. This will cause the kubelet to listen to inotify events on the lock file, releasing it and exiting when another process tries to open that file.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "hairpinMode": { + SchemaProps: spec.SchemaProps{ + Description: "How should the kubelet configure the container bridge for hairpin packets. Setting this flag allows endpoints in a Service to loadbalance back to themselves if they should try to access their own Service. Values:\n \"promiscuous-bridge\": make the container bridge promiscuous.\n \"hairpin-veth\": set the hairpin flag on container veth interfaces.\n \"none\": do nothing.\nGenerally, one must set --hairpin-mode=veth-flag to achieve hairpin NAT, because promiscous-bridge assumes the existence of a container bridge named cbr0.", + Type: []string{"string"}, + Format: "", + }, + }, + "maxPods": { + SchemaProps: spec.SchemaProps{ + Description: "maxPods is the number of pods that can run on this Kubelet.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "podCIDR": { + SchemaProps: spec.SchemaProps{ + Description: "The CIDR to use for pod IP addresses, only used in standalone mode. In cluster mode, this is obtained from the master.", + Type: []string{"string"}, + Format: "", + }, + }, + "resolvConf": { + SchemaProps: spec.SchemaProps{ + Description: "ResolverConfig is the resolver configuration file used as the basis for the container DNS resolution configuration.\"), []", + Type: []string{"string"}, + Format: "", + }, + }, + "cpuCFSQuota": { + SchemaProps: spec.SchemaProps{ + Description: "cpuCFSQuota is Enable CPU CFS quota enforcement for containers that specify CPU limits", + Type: []string{"boolean"}, + Format: "", + }, + }, + "containerized": { + SchemaProps: spec.SchemaProps{ + Description: "containerized should be set to true if kubelet is running in a container.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "maxOpenFiles": { + SchemaProps: spec.SchemaProps{ + Description: "maxOpenFiles is Number of files that can be opened by Kubelet process.", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "registerSchedulable": { + SchemaProps: spec.SchemaProps{ + Description: "registerSchedulable tells the kubelet to register the node as schedulable. Won't have any effect if register-node is false. DEPRECATED: use registerWithTaints instead", + Type: []string{"boolean"}, + Format: "", + }, + }, + "registerWithTaints": { + SchemaProps: spec.SchemaProps{ + Description: "registerWithTaints are an array of taints to add to a node object when the kubelet registers itself. This only takes effect when registerNode is true and upon the initial registration of the node.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/api/core/v1.Taint"), + }, + }, + }, + }, + }, + "contentType": { + SchemaProps: spec.SchemaProps{ + Description: "contentType is contentType of requests sent to apiserver.", + Type: []string{"string"}, + Format: "", + }, + }, + "kubeAPIQPS": { + SchemaProps: spec.SchemaProps{ + Description: "kubeAPIQPS is the QPS to use while talking with kubernetes apiserver", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "kubeAPIBurst": { + SchemaProps: spec.SchemaProps{ + Description: "kubeAPIBurst is the burst to allow while talking with kubernetes apiserver", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "serializeImagePulls": { + SchemaProps: spec.SchemaProps{ + Description: "serializeImagePulls when enabled, tells the Kubelet to pull images one at a time. We recommend *not* changing the default value on nodes that run docker daemon with version < 1.9 or an Aufs storage backend. Issue #10959 has more details.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "nodeLabels": { + SchemaProps: spec.SchemaProps{ + Description: "nodeLabels to add when registering the node in the cluster.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "nonMasqueradeCIDR": { + SchemaProps: spec.SchemaProps{ + Description: "nonMasqueradeCIDR configures masquerading: traffic to IPs outside this range will use IP masquerade.", + Type: []string{"string"}, + Format: "", + }, + }, + "enableCustomMetrics": { + SchemaProps: spec.SchemaProps{ + Description: "enable gathering custom metrics.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "evictionHard": { + SchemaProps: spec.SchemaProps{ + Description: "Comma-delimited list of hard eviction expressions. For example, 'memory.available<300Mi'.", + Type: []string{"string"}, + Format: "", + }, + }, + "evictionSoft": { + SchemaProps: spec.SchemaProps{ + Description: "Comma-delimited list of soft eviction expressions. For example, 'memory.available<300Mi'.", + Type: []string{"string"}, + Format: "", + }, + }, + "evictionSoftGracePeriod": { + SchemaProps: spec.SchemaProps{ + Description: "Comma-delimeted list of grace periods for each soft eviction signal. For example, 'memory.available=30s'.", + Type: []string{"string"}, + Format: "", + }, + }, + "evictionPressureTransitionPeriod": { + SchemaProps: spec.SchemaProps{ + Description: "Duration for which the kubelet has to wait before transitioning out of an eviction pressure condition.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "evictionMaxPodGracePeriod": { + SchemaProps: spec.SchemaProps{ + Description: "Maximum allowed grace period (in seconds) to use when terminating pods in response to a soft eviction threshold being met.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "evictionMinimumReclaim": { + SchemaProps: spec.SchemaProps{ + Description: "Comma-delimited list of minimum reclaims (e.g. imagefs.available=2Gi) that describes the minimum amount of resource the kubelet will reclaim when performing a pod eviction if that resource is under pressure.", + Type: []string{"string"}, + Format: "", + }, + }, + "experimentalKernelMemcgNotification": { + SchemaProps: spec.SchemaProps{ + Description: "If enabled, the kubelet will integrate with the kernel memcg notification to determine if memory eviction thresholds are crossed rather than polling.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "podsPerCore": { + SchemaProps: spec.SchemaProps{ + Description: "Maximum number of pods per core. Cannot exceed MaxPods", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "enableControllerAttachDetach": { + SchemaProps: spec.SchemaProps{ + Description: "enableControllerAttachDetach enables the Attach/Detach controller to manage attachment/detachment of volumes scheduled to this node, and disables kubelet from executing any attach/detach operations", + Type: []string{"boolean"}, + Format: "", + }, + }, + "experimentalQOSReserved": { + SchemaProps: spec.SchemaProps{ + Description: "A set of ResourceName=Percentage (e.g. memory=50%) pairs that describe how pod resource requests are reserved at the QoS level. Currently only memory is supported. [default=none]\"", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "protectKernelDefaults": { + SchemaProps: spec.SchemaProps{ + Description: "Default behaviour for kernel tuning", + Type: []string{"boolean"}, + Format: "", + }, + }, + "makeIPTablesUtilChains": { + SchemaProps: spec.SchemaProps{ + Description: "If true, Kubelet ensures a set of iptables rules are present on host. These rules will serve as utility rules for various components, e.g. KubeProxy. The rules will be created based on IPTablesMasqueradeBit and IPTablesDropBit.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "iptablesMasqueradeBit": { + SchemaProps: spec.SchemaProps{ + Description: "iptablesMasqueradeBit is the bit of the iptables fwmark space to mark for SNAT Values must be within the range [0, 31]. Must be different from other mark bits. Warning: Please match the value of corresponding parameter in kube-proxy", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "iptablesDropBit": { + SchemaProps: spec.SchemaProps{ + Description: "iptablesDropBit is the bit of the iptables fwmark space to mark for dropping packets. Values must be within the range [0, 31]. Must be different from other mark bits.", + Type: []string{"integer"}, + Format: "int32", + }, + }, + "allowedUnsafeSysctls": { + SchemaProps: spec.SchemaProps{ + Description: "Whitelist of unsafe sysctls or sysctl patterns (ending in *). Use these at your own risk. Resource isolation might be lacking and pod might influence each other on the same node.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "featureGates": { + SchemaProps: spec.SchemaProps{ + Description: "featureGates is a string of comma-separated key=value pairs that describe feature gates for alpha/experimental features.", + Type: []string{"string"}, + Format: "", + }, + }, + "failSwapOn": { + SchemaProps: spec.SchemaProps{ + Description: "Tells the Kubelet to fail to start if swap is enabled on the node.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "experimentalCheckNodeCapabilitiesBeforeMount": { + SchemaProps: spec.SchemaProps{ + Description: "This flag, if set, enables a check prior to mount operations to verify that the required components (binaries, etc.) to mount the volume are available on the underlying node. If the check is enabled and fails the mount operation fails.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "keepTerminatedPodVolumes": { + SchemaProps: spec.SchemaProps{ + Description: "This flag, if set, instructs the kubelet to keep volumes from terminated pods mounted to the node. This can be useful for debugging volume related issues.", + Type: []string{"boolean"}, + Format: "", + }, + }, + "systemReserved": { + SchemaProps: spec.SchemaProps{ + Description: "A set of ResourceName=ResourceQuantity (e.g. cpu=200m,memory=150G) pairs that describe resources reserved for non-kubernetes components. Currently only cpu and memory are supported. [default=none] See http://kubernetes.io/docs/user-guide/compute-resources for more detail.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "kubeReserved": { + SchemaProps: spec.SchemaProps{ + Description: "A set of ResourceName=ResourceQuantity (e.g. cpu=200m,memory=150G) pairs that describe resources reserved for kubernetes system components. Currently cpu, memory and local storage for root file system are supported. [default=none] See http://kubernetes.io/docs/user-guide/compute-resources for more detail.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "systemReservedCgroup": { + SchemaProps: spec.SchemaProps{ + Description: "This flag helps kubelet identify absolute name of top level cgroup used to enforce `SystemReserved` compute resource reservation for OS system daemons. Refer to [Node Allocatable](https://git.k8s.io/community/contributors/design-proposals/node-allocatable.md) doc for more information.", + Type: []string{"string"}, + Format: "", + }, + }, + "kubeReservedCgroup": { + SchemaProps: spec.SchemaProps{ + Description: "This flag helps kubelet identify absolute name of top level cgroup used to enforce `KubeReserved` compute resource reservation for Kubernetes node system daemons. Refer to [Node Allocatable](https://git.k8s.io/community/contributors/design-proposals/node-allocatable.md) doc for more information.", + Type: []string{"string"}, + Format: "", + }, + }, + "enforceNodeAllocatable": { + SchemaProps: spec.SchemaProps{ + Description: "This flag specifies the various Node Allocatable enforcements that Kubelet needs to perform. This flag accepts a list of options. Acceptible options are `pods`, `system-reserved` & `kube-reserved`. Refer to [Node Allocatable](https://git.k8s.io/community/contributors/design-proposals/node-allocatable.md) doc for more information.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Type: []string{"string"}, + Format: "", + }, + }, + }, + }, + }, + "experimentalNodeAllocatableIgnoreEvictionThreshold": { + SchemaProps: spec.SchemaProps{ + Description: "This flag, if set, will avoid including `EvictionHard` limits while computing Node Allocatable. Refer to [Node Allocatable](https://git.k8s.io/community/contributors/design-proposals/node-allocatable.md) doc for more information.", + Type: []string{"boolean"}, + Format: "", + }, + }, + }, + Required: []string{"configTrialDuration", "podManifestPath", "syncFrequency", "fileCheckFrequency", "httpCheckFrequency", "manifestURL", "manifestURLHeader", "enableServer", "address", "port", "readOnlyPort", "tlsCertFile", "tlsPrivateKeyFile", "authentication", "authorization", "seccompProfileRoot", "allowPrivileged", "hostNetworkSources", "hostPIDSources", "hostIPCSources", "registryPullQPS", "registryBurst", "eventRecordQPS", "eventBurst", "enableDebuggingHandlers", "enableContentionProfiling", "minimumGCAge", "maxPerPodContainerCount", "maxContainerCount", "cAdvisorPort", "healthzPort", "healthzBindAddress", "oomScoreAdj", "registerNode", "clusterDomain", "masterServiceNamespace", "clusterDNS", "streamingConnectionIdleTimeout", "nodeStatusUpdateFrequency", "imageMinimumGCAge", "imageGCHighThresholdPercent", "imageGCLowThresholdPercent", "volumeStatsAggPeriod", "volumePluginDir", "kubeletCgroups", "runtimeCgroups", "systemCgroups", "cgroupRoot", "containerRuntime", "remoteRuntimeEndpoint", "remoteImageEndpoint", "cpuManagerPolicy", "cpuManagerReconcilePeriod", "runtimeRequestTimeout", "lockFilePath", "exitOnLockContention", "hairpinMode", "maxPods", "podCIDR", "resolvConf", "cpuCFSQuota", "containerized", "maxOpenFiles", "registerSchedulable", "registerWithTaints", "contentType", "kubeAPIQPS", "kubeAPIBurst", "serializeImagePulls", "nodeLabels", "nonMasqueradeCIDR", "enableCustomMetrics", "evictionHard", "evictionSoft", "evictionSoftGracePeriod", "evictionPressureTransitionPeriod", "evictionMaxPodGracePeriod", "evictionMinimumReclaim", "experimentalKernelMemcgNotification", "podsPerCore", "enableControllerAttachDetach", "experimentalQOSReserved", "protectKernelDefaults", "makeIPTablesUtilChains", "iptablesMasqueradeBit", "iptablesDropBit", "systemReserved", "kubeReserved", "enforceNodeAllocatable"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.Taint", "k8s.io/apimachinery/pkg/apis/meta/v1.Duration", "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletAuthentication", "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletAuthorization"}, + }, + "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletWebhookAuthentication": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "enabled": { + SchemaProps: spec.SchemaProps{ + Description: "enabled allows bearer token authentication backed by the tokenreviews.authentication.k8s.io API", + Type: []string{"boolean"}, + Format: "", + }, + }, + "cacheTTL": { + SchemaProps: spec.SchemaProps{ + Description: "cacheTTL enables caching of authentication results", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + }, + Required: []string{"enabled", "cacheTTL"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Duration"}, + }, + "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletWebhookAuthorization": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "cacheAuthorizedTTL": { + SchemaProps: spec.SchemaProps{ + Description: "cacheAuthorizedTTL is the duration to cache 'authorized' responses from the webhook authorizer.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "cacheUnauthorizedTTL": { + SchemaProps: spec.SchemaProps{ + Description: "cacheUnauthorizedTTL is the duration to cache 'unauthorized' responses from the webhook authorizer.", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + }, + Required: []string{"cacheAuthorizedTTL", "cacheUnauthorizedTTL"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Duration"}, + }, + "k8s.io/kubernetes/pkg/kubelet/apis/kubeletconfig/v1alpha1.KubeletX509Authentication": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Properties: map[string]spec.Schema{ + "clientCAFile": { + SchemaProps: spec.SchemaProps{ + Description: "clientCAFile is the path to a PEM-encoded certificate bundle. If set, any request presenting a client certificate signed by one of the authorities in the bundle is authenticated with a username corresponding to the CommonName, and groups corresponding to the Organization in the client certificate.", + Type: []string{"string"}, + Format: "", + }, + }, + }, + Required: []string{"clientCAFile"}, + }, + }, + Dependencies: []string{}, + }, + "k8s.io/metrics/pkg/apis/custom_metrics/v1beta1.MetricValue": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "a metric value for some object", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "describedObject": { + SchemaProps: spec.SchemaProps{ + Description: "a reference to the described object", + Ref: ref("k8s.io/api/core/v1.ObjectReference"), + }, + }, + "metricName": { + SchemaProps: spec.SchemaProps{ + Description: "the name of the metric", + Type: []string{"string"}, + Format: "", + }, + }, + "timestamp": { + SchemaProps: spec.SchemaProps{ + Description: "indicates the time at which the metrics were produced", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "window": { + SchemaProps: spec.SchemaProps{ + Description: "indicates the window ([Timestamp-Window, Timestamp]) from which these metrics were calculated, when returning rate metrics calculated from cumulative metrics (or zero for non-calculated instantaneous metrics).", + Type: []string{"integer"}, + Format: "int64", + }, + }, + "value": { + SchemaProps: spec.SchemaProps{ + Description: "the value of the metric for this", + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + Required: []string{"describedObject", "metricName", "timestamp", "value"}, + }, + }, + Dependencies: []string{ + "k8s.io/api/core/v1.ObjectReference", "k8s.io/apimachinery/pkg/api/resource.Quantity", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/metrics/pkg/apis/custom_metrics/v1beta1.MetricValueList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "a list of values for a given metric for some set of objects", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "the value of the metric across the described objects", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/metrics/pkg/apis/custom_metrics/v1beta1.MetricValue"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta", "k8s.io/metrics/pkg/apis/custom_metrics/v1beta1.MetricValue"}, + }, + "k8s.io/metrics/pkg/apis/metrics/v1alpha1.ContainerMetrics": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "resource usage metrics of a container.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Container name corresponding to the one from pod.spec.containers.", + Type: []string{"string"}, + Format: "", + }, + }, + "usage": { + SchemaProps: spec.SchemaProps{ + Description: "The memory usage is the memory working set.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + }, + Required: []string{"name", "usage"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/metrics/pkg/apis/metrics/v1alpha1.NodeMetrics": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "resource usage metrics of a node.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "timestamp": { + SchemaProps: spec.SchemaProps{ + Description: "The following fields define time interval from which metrics were collected from the interval [Timestamp-Window, Timestamp].", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "window": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "usage": { + SchemaProps: spec.SchemaProps{ + Description: "The memory usage is the memory working set.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + }, + Required: []string{"timestamp", "window", "usage"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity", "k8s.io/apimachinery/pkg/apis/meta/v1.Duration", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/metrics/pkg/apis/metrics/v1alpha1.NodeMetricsList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NodeMetricsList is a list of NodeMetrics.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of node metrics.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/metrics/pkg/apis/metrics/v1alpha1.NodeMetrics"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta", "k8s.io/metrics/pkg/apis/metrics/v1alpha1.NodeMetrics"}, + }, + "k8s.io/metrics/pkg/apis/metrics/v1alpha1.PodMetrics": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "resource usage metrics of a pod.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "timestamp": { + SchemaProps: spec.SchemaProps{ + Description: "The following fields define time interval from which metrics were collected from the interval [Timestamp-Window, Timestamp].", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "window": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "containers": { + SchemaProps: spec.SchemaProps{ + Description: "Metrics for all containers are collected within the same time window.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/metrics/pkg/apis/metrics/v1alpha1.ContainerMetrics"), + }, + }, + }, + }, + }, + }, + Required: []string{"timestamp", "window", "containers"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Duration", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta", "k8s.io/apimachinery/pkg/apis/meta/v1.Time", "k8s.io/metrics/pkg/apis/metrics/v1alpha1.ContainerMetrics"}, + }, + "k8s.io/metrics/pkg/apis/metrics/v1alpha1.PodMetricsList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodMetricsList is a list of PodMetrics.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of pod metrics.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/metrics/pkg/apis/metrics/v1alpha1.PodMetrics"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta", "k8s.io/metrics/pkg/apis/metrics/v1alpha1.PodMetrics"}, + }, + "k8s.io/metrics/pkg/apis/metrics/v1beta1.ContainerMetrics": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "resource usage metrics of a container.", + Properties: map[string]spec.Schema{ + "name": { + SchemaProps: spec.SchemaProps{ + Description: "Container name corresponding to the one from pod.spec.containers.", + Type: []string{"string"}, + Format: "", + }, + }, + "usage": { + SchemaProps: spec.SchemaProps{ + Description: "The memory usage is the memory working set.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + }, + Required: []string{"name", "usage"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity"}, + }, + "k8s.io/metrics/pkg/apis/metrics/v1beta1.NodeMetrics": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "resource usage metrics of a node.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "timestamp": { + SchemaProps: spec.SchemaProps{ + Description: "The following fields define time interval from which metrics were collected from the interval [Timestamp-Window, Timestamp].", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "window": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "usage": { + SchemaProps: spec.SchemaProps{ + Description: "The memory usage is the memory working set.", + Type: []string{"object"}, + AdditionalProperties: &spec.SchemaOrBool{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/api/resource.Quantity"), + }, + }, + }, + }, + }, + }, + Required: []string{"timestamp", "window", "usage"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/api/resource.Quantity", "k8s.io/apimachinery/pkg/apis/meta/v1.Duration", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta", "k8s.io/apimachinery/pkg/apis/meta/v1.Time"}, + }, + "k8s.io/metrics/pkg/apis/metrics/v1beta1.NodeMetricsList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "NodeMetricsList is a list of NodeMetrics.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of node metrics.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/metrics/pkg/apis/metrics/v1beta1.NodeMetrics"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta", "k8s.io/metrics/pkg/apis/metrics/v1beta1.NodeMetrics"}, + }, + "k8s.io/metrics/pkg/apis/metrics/v1beta1.PodMetrics": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "resource usage metrics of a pod.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta"), + }, + }, + "timestamp": { + SchemaProps: spec.SchemaProps{ + Description: "The following fields define time interval from which metrics were collected from the interval [Timestamp-Window, Timestamp].", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Time"), + }, + }, + "window": { + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.Duration"), + }, + }, + "containers": { + SchemaProps: spec.SchemaProps{ + Description: "Metrics for all containers are collected within the same time window.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/metrics/pkg/apis/metrics/v1beta1.ContainerMetrics"), + }, + }, + }, + }, + }, + }, + Required: []string{"timestamp", "window", "containers"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.Duration", "k8s.io/apimachinery/pkg/apis/meta/v1.ObjectMeta", "k8s.io/apimachinery/pkg/apis/meta/v1.Time", "k8s.io/metrics/pkg/apis/metrics/v1beta1.ContainerMetrics"}, + }, + "k8s.io/metrics/pkg/apis/metrics/v1beta1.PodMetricsList": { + Schema: spec.Schema{ + SchemaProps: spec.SchemaProps{ + Description: "PodMetricsList is a list of PodMetrics.", + Properties: map[string]spec.Schema{ + "kind": { + SchemaProps: spec.SchemaProps{ + Description: "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Type: []string{"string"}, + Format: "", + }, + }, + "apiVersion": { + SchemaProps: spec.SchemaProps{ + Description: "APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#resources", + Type: []string{"string"}, + Format: "", + }, + }, + "metadata": { + SchemaProps: spec.SchemaProps{ + Description: "Standard list metadata. More info: https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds", + Ref: ref("k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta"), + }, + }, + "items": { + SchemaProps: spec.SchemaProps{ + Description: "List of pod metrics.", + Type: []string{"array"}, + Items: &spec.SchemaOrArray{ + Schema: &spec.Schema{ + SchemaProps: spec.SchemaProps{ + Ref: ref("k8s.io/metrics/pkg/apis/metrics/v1beta1.PodMetrics"), + }, + }, + }, + }, + }, + }, + Required: []string{"items"}, + }, + }, + Dependencies: []string{ + "k8s.io/apimachinery/pkg/apis/meta/v1.ListMeta", "k8s.io/metrics/pkg/apis/metrics/v1beta1.PodMetrics"}, + }, + } +} diff --git a/test/e2e/generated/bindata.go b/test/e2e/generated/bindata.go new file mode 100644 index 0000000000000..699c79dbd9aa4 --- /dev/null +++ b/test/e2e/generated/bindata.go @@ -0,0 +1,16007 @@ +// Code generated by go-bindata. +// sources: +// examples/BUILD +// examples/OWNERS +// examples/cloud-controller-manager/persistent-volume-label-initializer-config.yaml +// examples/cluster-dns/dns-backend-rc.yaml +// examples/cluster-dns/dns-backend-service.yaml +// examples/cluster-dns/dns-frontend-pod.yaml +// examples/cluster-dns/images/backend/Dockerfile +// examples/cluster-dns/images/backend/Makefile +// examples/cluster-dns/images/backend/server.py +// examples/cluster-dns/images/frontend/Dockerfile +// examples/cluster-dns/images/frontend/Makefile +// examples/cluster-dns/images/frontend/client.py +// examples/cluster-dns/namespace-dev.yaml +// examples/cluster-dns/namespace-prod.yaml +// examples/cockroachdb/OWNERS +// examples/cockroachdb/cockroachdb-statefulset.yaml +// examples/cockroachdb/demo.sh +// examples/cockroachdb/minikube.sh +// examples/doc.go +// examples/elasticsearch/es-rc.yaml +// examples/elasticsearch/es-svc.yaml +// examples/elasticsearch/production_cluster/es-client-rc.yaml +// examples/elasticsearch/production_cluster/es-data-rc.yaml +// examples/elasticsearch/production_cluster/es-discovery-svc.yaml +// examples/elasticsearch/production_cluster/es-master-rc.yaml +// examples/elasticsearch/production_cluster/es-svc.yaml +// examples/elasticsearch/production_cluster/service-account.yaml +// examples/elasticsearch/service-account.yaml +// examples/examples_test.go +// examples/explorer/BUILD +// examples/explorer/Dockerfile +// examples/explorer/Makefile +// examples/explorer/explorer.go +// examples/explorer/pod.yaml +// examples/guestbook/all-in-one/frontend.yaml +// examples/guestbook/all-in-one/guestbook-all-in-one.yaml +// examples/guestbook/all-in-one/redis-slave.yaml +// examples/guestbook/frontend-deployment.yaml +// examples/guestbook/frontend-service.yaml +// examples/guestbook/legacy/frontend-controller.yaml +// examples/guestbook/legacy/redis-master-controller.yaml +// examples/guestbook/legacy/redis-slave-controller.yaml +// examples/guestbook/php-redis/Dockerfile +// examples/guestbook/php-redis/controllers.js +// examples/guestbook/php-redis/guestbook.php +// examples/guestbook/php-redis/index.html +// examples/guestbook/redis-master-deployment.yaml +// examples/guestbook/redis-master-service.yaml +// examples/guestbook/redis-slave/Dockerfile +// examples/guestbook/redis-slave/run.sh +// examples/guestbook/redis-slave-deployment.yaml +// examples/guestbook/redis-slave-service.yaml +// examples/guestbook-go/.gitignore +// examples/guestbook-go/BUILD +// examples/guestbook-go/Dockerfile +// examples/guestbook-go/Makefile +// examples/guestbook-go/guestbook-controller.json +// examples/guestbook-go/guestbook-service.json +// examples/guestbook-go/main.go +// examples/guestbook-go/public/index.html +// examples/guestbook-go/public/script.js +// examples/guestbook-go/public/style.css +// examples/guestbook-go/redis-master-controller.json +// examples/guestbook-go/redis-master-service.json +// examples/guestbook-go/redis-slave-controller.json +// examples/guestbook-go/redis-slave-service.json +// examples/https-nginx/BUILD +// examples/https-nginx/Dockerfile +// examples/https-nginx/Makefile +// examples/https-nginx/auto-reload-nginx.sh +// examples/https-nginx/default.conf +// examples/https-nginx/index2.html +// examples/https-nginx/make_secret.go +// examples/https-nginx/nginx-app.yaml +// examples/javaee/mysql-pod.yaml +// examples/javaee/mysql-service.yaml +// examples/javaee/wildfly-rc.yaml +// examples/javaweb-tomcat-sidecar/javaweb-2.yaml +// examples/javaweb-tomcat-sidecar/javaweb.yaml +// examples/kubectl-container/.gitignore +// examples/kubectl-container/Dockerfile +// examples/kubectl-container/Makefile +// examples/kubectl-container/pod.json +// examples/meteor/dockerbase/Dockerfile +// examples/meteor/meteor-controller.json +// examples/meteor/meteor-service.json +// examples/meteor/mongo-pod.json +// examples/meteor/mongo-service.json +// examples/mysql-cinder-pd/mysql-service.yaml +// examples/mysql-cinder-pd/mysql.yaml +// examples/mysql-wordpress-pd/OWNERS +// examples/mysql-wordpress-pd/gce-volumes.yaml +// examples/mysql-wordpress-pd/local-volumes.yaml +// examples/mysql-wordpress-pd/mysql-deployment.yaml +// examples/mysql-wordpress-pd/wordpress-deployment.yaml +// examples/newrelic/config-to-secret.sh +// examples/newrelic/newrelic-config-template.yaml +// examples/newrelic/newrelic-config.yaml +// examples/newrelic/newrelic-daemonset.yaml +// examples/newrelic/nrconfig.env +// examples/newrelic-infrastructure/.gitignore +// examples/newrelic-infrastructure/config-to-secret.sh +// examples/newrelic-infrastructure/newrelic-config-template.yaml +// examples/newrelic-infrastructure/newrelic-infra-daemonset.yaml +// examples/newrelic-infrastructure/nrconfig.env +// examples/nodesjs-mongodb/mongo-controller.yaml +// examples/nodesjs-mongodb/mongo-service.yaml +// examples/nodesjs-mongodb/web-controller-demo.yaml +// examples/nodesjs-mongodb/web-controller.yaml +// examples/nodesjs-mongodb/web-service.yaml +// examples/oms/omsagent-daemonset.yaml +// examples/openshift-origin/.gitignore +// examples/openshift-origin/cleanup.sh +// examples/openshift-origin/create.sh +// examples/openshift-origin/etcd-controller.yaml +// examples/openshift-origin/etcd-discovery-controller.yaml +// examples/openshift-origin/etcd-discovery-service.yaml +// examples/openshift-origin/etcd-service.yaml +// examples/openshift-origin/openshift-controller.yaml +// examples/openshift-origin/openshift-origin-namespace.yaml +// examples/openshift-origin/openshift-service.yaml +// examples/openshift-origin/secret.json +// examples/persistent-volume-provisioning/aws-ebs.yaml +// examples/persistent-volume-provisioning/cinder/cinder-storage-class.yaml +// examples/persistent-volume-provisioning/cinder/example-pod.yaml +// examples/persistent-volume-provisioning/claim1.json +// examples/persistent-volume-provisioning/gce-pd.yaml +// examples/persistent-volume-provisioning/glusterfs/glusterfs-secret.yaml +// examples/persistent-volume-provisioning/glusterfs/glusterfs-storageclass.yaml +// examples/persistent-volume-provisioning/quobyte/example-pod.yaml +// examples/persistent-volume-provisioning/quobyte/quobyte-admin-secret.yaml +// examples/persistent-volume-provisioning/quobyte/quobyte-storage-class.yaml +// examples/persistent-volume-provisioning/rbd/ceph-secret-admin.yaml +// examples/persistent-volume-provisioning/rbd/ceph-secret-user.yaml +// examples/persistent-volume-provisioning/rbd/pod.yaml +// examples/persistent-volume-provisioning/rbd/rbd-storage-class.yaml +// examples/phabricator/phabricator-controller.json +// examples/phabricator/phabricator-service.json +// examples/phabricator/php-phabricator/000-default.conf +// examples/phabricator/php-phabricator/Dockerfile +// examples/phabricator/php-phabricator/run.sh +// examples/phabricator/setup.sh +// examples/phabricator/teardown.sh +// examples/pod +// examples/podsecuritypolicy/rbac/bindings.yaml +// examples/podsecuritypolicy/rbac/pod.yaml +// examples/podsecuritypolicy/rbac/pod_priv.yaml +// examples/podsecuritypolicy/rbac/policies.yaml +// examples/podsecuritypolicy/rbac/roles.yaml +// examples/scheduler-policy-config-with-extender.json +// examples/scheduler-policy-config.json +// examples/selenium/selenium-hub-rc.yaml +// examples/selenium/selenium-hub-svc.yaml +// examples/selenium/selenium-node-chrome-rc.yaml +// examples/selenium/selenium-node-firefox-rc.yaml +// examples/selenium/selenium-test.py +// examples/sharing-clusters/BUILD +// examples/sharing-clusters/make_secret.go +// examples/spark/namespace-spark-cluster.yaml +// examples/spark/spark-gluster/glusterfs-endpoints.yaml +// examples/spark/spark-gluster/spark-master-controller.yaml +// examples/spark/spark-gluster/spark-master-service.yaml +// examples/spark/spark-gluster/spark-worker-controller.yaml +// examples/spark/spark-master-controller.yaml +// examples/spark/spark-master-service.yaml +// examples/spark/spark-ui-proxy-controller.yaml +// examples/spark/spark-ui-proxy-service.yaml +// examples/spark/spark-worker-controller.yaml +// examples/spark/zeppelin-controller.yaml +// examples/spark/zeppelin-service.yaml +// examples/storage/cassandra/cassandra-controller.yaml +// examples/storage/cassandra/cassandra-daemonset.yaml +// examples/storage/cassandra/cassandra-service.yaml +// examples/storage/cassandra/cassandra-statefulset.yaml +// examples/storage/cassandra/image/Dockerfile +// examples/storage/cassandra/image/Makefile +// examples/storage/cassandra/image/files/cassandra.yaml +// examples/storage/cassandra/image/files/jvm.options +// examples/storage/cassandra/image/files/kubernetes-cassandra.jar +// examples/storage/cassandra/image/files/logback.xml +// examples/storage/cassandra/image/files/ready-probe.sh +// examples/storage/cassandra/image/files/run.sh +// examples/storage/cassandra/java/.gitignore +// examples/storage/cassandra/java/pom.xml +// examples/storage/cassandra/java/src/main/java/io/k8s/cassandra/KubernetesSeedProvider.java +// examples/storage/cassandra/java/src/test/java/io/k8s/cassandra/KubernetesSeedProviderTest.java +// examples/storage/cassandra/java/src/test/resources/cassandra.yaml +// examples/storage/cassandra/java/src/test/resources/logback-test.xml +// examples/storage/hazelcast/hazelcast-deployment.yaml +// examples/storage/hazelcast/hazelcast-service.yaml +// examples/storage/minio/minio-distributed-headless-service.yaml +// examples/storage/minio/minio-distributed-service.yaml +// examples/storage/minio/minio-distributed-statefulset.yaml +// examples/storage/minio/minio-standalone-deployment.yaml +// examples/storage/minio/minio-standalone-pvc.yaml +// examples/storage/minio/minio-standalone-service.yaml +// examples/storage/mysql-galera/image/Dockerfile +// examples/storage/mysql-galera/image/cluster.cnf +// examples/storage/mysql-galera/image/docker-entrypoint.sh +// examples/storage/mysql-galera/image/my.cnf +// examples/storage/mysql-galera/pxc-cluster-service.yaml +// examples/storage/mysql-galera/pxc-node1.yaml +// examples/storage/mysql-galera/pxc-node2.yaml +// examples/storage/mysql-galera/pxc-node3.yaml +// examples/storage/redis/image/Dockerfile +// examples/storage/redis/image/redis-master.conf +// examples/storage/redis/image/redis-slave.conf +// examples/storage/redis/image/run.sh +// examples/storage/redis/redis-controller.yaml +// examples/storage/redis/redis-master.yaml +// examples/storage/redis/redis-sentinel-controller.yaml +// examples/storage/redis/redis-sentinel-service.yaml +// examples/storage/rethinkdb/admin-pod.yaml +// examples/storage/rethinkdb/admin-service.yaml +// examples/storage/rethinkdb/driver-service.yaml +// examples/storage/rethinkdb/gen-pod.sh +// examples/storage/rethinkdb/image/Dockerfile +// examples/storage/rethinkdb/image/run.sh +// examples/storage/rethinkdb/rc.yaml +// examples/storage/vitess/configure.sh +// examples/storage/vitess/create_test_table.sql +// examples/storage/vitess/env.sh +// examples/storage/vitess/etcd-controller-template.yaml +// examples/storage/vitess/etcd-down.sh +// examples/storage/vitess/etcd-service-template.yaml +// examples/storage/vitess/etcd-up.sh +// examples/storage/vitess/guestbook-controller.yaml +// examples/storage/vitess/guestbook-down.sh +// examples/storage/vitess/guestbook-service.yaml +// examples/storage/vitess/guestbook-up.sh +// examples/storage/vitess/vitess-down.sh +// examples/storage/vitess/vitess-up.sh +// examples/storage/vitess/vtctld-controller-template.yaml +// examples/storage/vitess/vtctld-down.sh +// examples/storage/vitess/vtctld-service.yaml +// examples/storage/vitess/vtctld-up.sh +// examples/storage/vitess/vtgate-controller-template.yaml +// examples/storage/vitess/vtgate-down.sh +// examples/storage/vitess/vtgate-service.yaml +// examples/storage/vitess/vtgate-up.sh +// examples/storage/vitess/vttablet-down.sh +// examples/storage/vitess/vttablet-pod-template.yaml +// examples/storage/vitess/vttablet-up.sh +// examples/storm/storm-nimbus-service.json +// examples/storm/storm-nimbus.json +// examples/storm/storm-worker-controller.json +// examples/storm/zookeeper-service.json +// examples/storm/zookeeper.json +// examples/sysdig-cloud/sysdig-daemonset.yaml +// examples/sysdig-cloud/sysdig-rc.yaml +// examples/volumes/aws_ebs/aws-ebs-web.yaml +// examples/volumes/azure_disk/azure.yaml +// examples/volumes/azure_file/azure.yaml +// examples/volumes/azure_file/secret/azure-secret.yaml +// examples/volumes/cephfs/cephfs-with-secret.yaml +// examples/volumes/cephfs/cephfs.yaml +// examples/volumes/cephfs/secret/ceph-secret.yaml +// examples/volumes/cinder/cinder-web.yaml +// examples/volumes/fibre_channel/fc.yaml +// examples/volumes/flexvolume/lvm +// examples/volumes/flexvolume/nfs +// examples/volumes/flexvolume/nginx-nfs.yaml +// examples/volumes/flexvolume/nginx.yaml +// examples/volumes/flocker/flocker-pod-with-rc.yml +// examples/volumes/flocker/flocker-pod.yml +// examples/volumes/glusterfs/glusterfs-endpoints.json +// examples/volumes/glusterfs/glusterfs-pod.json +// examples/volumes/glusterfs/glusterfs-service.json +// examples/volumes/iscsi/chap-secret.yaml +// examples/volumes/iscsi/iscsi-chap.yaml +// examples/volumes/iscsi/iscsi.yaml +// examples/volumes/nfs/nfs-busybox-rc.yaml +// examples/volumes/nfs/nfs-data/Dockerfile +// examples/volumes/nfs/nfs-data/index.html +// examples/volumes/nfs/nfs-data/run_nfs.sh +// examples/volumes/nfs/nfs-pv.yaml +// examples/volumes/nfs/nfs-pvc.yaml +// examples/volumes/nfs/nfs-server-rc.yaml +// examples/volumes/nfs/nfs-server-service.yaml +// examples/volumes/nfs/nfs-web-rc.yaml +// examples/volumes/nfs/nfs-web-service.yaml +// examples/volumes/nfs/provisioner/nfs-server-gce-pv.yaml +// examples/volumes/portworx/portworx-volume-pod.yaml +// examples/volumes/portworx/portworx-volume-pv.yaml +// examples/volumes/portworx/portworx-volume-pvc.yaml +// examples/volumes/portworx/portworx-volume-pvcpod.yaml +// examples/volumes/portworx/portworx-volume-pvcsc.yaml +// examples/volumes/portworx/portworx-volume-pvcscpod.yaml +// examples/volumes/portworx/portworx-volume-sc-high.yaml +// examples/volumes/quobyte/quobyte-pod.yaml +// examples/volumes/rbd/rbd-with-secret.json +// examples/volumes/rbd/rbd.json +// examples/volumes/rbd/secret/ceph-secret.yaml +// examples/volumes/scaleio/pod-sc-pvc.yaml +// examples/volumes/scaleio/pod.yaml +// examples/volumes/scaleio/sc-pvc.yaml +// examples/volumes/scaleio/sc.yaml +// examples/volumes/scaleio/secret.yaml +// examples/volumes/storageos/storageos-pod.yaml +// examples/volumes/storageos/storageos-pv.yaml +// examples/volumes/storageos/storageos-pvc.yaml +// examples/volumes/storageos/storageos-pvcpod.yaml +// examples/volumes/storageos/storageos-sc-pvc.yaml +// examples/volumes/storageos/storageos-sc-pvcpod.yaml +// examples/volumes/storageos/storageos-sc.yaml +// examples/volumes/storageos/storageos-secret.yaml +// examples/volumes/vsphere/deployment.yaml +// examples/volumes/vsphere/simple-statefulset.yaml +// examples/volumes/vsphere/simple-storageclass.yaml +// examples/volumes/vsphere/vsphere-volume-pod.yaml +// examples/volumes/vsphere/vsphere-volume-pv.yaml +// examples/volumes/vsphere/vsphere-volume-pvc.yaml +// examples/volumes/vsphere/vsphere-volume-pvcpod.yaml +// examples/volumes/vsphere/vsphere-volume-pvcsc.yaml +// examples/volumes/vsphere/vsphere-volume-pvcscpod.yaml +// examples/volumes/vsphere/vsphere-volume-sc-fast.yaml +// examples/volumes/vsphere/vsphere-volume-sc-vsancapabilities-with-datastore.yaml +// examples/volumes/vsphere/vsphere-volume-sc-vsancapabilities.yaml +// examples/volumes/vsphere/vsphere-volume-sc-with-datastore.yaml +// examples/volumes/vsphere/vsphere-volume-spbm-policy-with-datastore.yaml +// examples/volumes/vsphere/vsphere-volume-spbm-policy.yaml +// test/e2e/testing-manifests/BUILD +// test/e2e/testing-manifests/flexvolume/dummy +// test/e2e/testing-manifests/flexvolume/dummy-attachable +// test/e2e/testing-manifests/guestbook/frontend-deployment.yaml.in +// test/e2e/testing-manifests/guestbook/frontend-service.yaml +// test/e2e/testing-manifests/guestbook/redis-master-deployment.yaml.in +// test/e2e/testing-manifests/guestbook/redis-master-service.yaml +// test/e2e/testing-manifests/guestbook/redis-slave-deployment.yaml.in +// test/e2e/testing-manifests/guestbook/redis-slave-service.yaml +// test/e2e/testing-manifests/ingress/http/ing.yaml +// test/e2e/testing-manifests/ingress/http/rc.yaml +// test/e2e/testing-manifests/ingress/http/svc.yaml +// test/e2e/testing-manifests/ingress/nginx/rc.yaml +// test/e2e/testing-manifests/ingress/static-ip/ing.yaml +// test/e2e/testing-manifests/ingress/static-ip/rc.yaml +// test/e2e/testing-manifests/ingress/static-ip/secret.yaml +// test/e2e/testing-manifests/ingress/static-ip/svc.yaml +// test/e2e/testing-manifests/kubectl/nginx-deployment1.yaml.in +// test/e2e/testing-manifests/kubectl/nginx-deployment2.yaml.in +// test/e2e/testing-manifests/kubectl/nginx-deployment3.yaml.in +// test/e2e/testing-manifests/kubectl/pause-pod.yaml.in +// test/e2e/testing-manifests/kubectl/pod-with-readiness-probe.yaml.in +// test/e2e/testing-manifests/kubectl/redis-master-controller.json.in +// test/e2e/testing-manifests/kubectl/redis-master-service.json +// test/e2e/testing-manifests/serviceloadbalancer/haproxyrc.yaml +// test/e2e/testing-manifests/serviceloadbalancer/netexecrc.yaml +// test/e2e/testing-manifests/serviceloadbalancer/netexecsvc.yaml +// test/e2e/testing-manifests/serviceloadbalancer/nginxrc.yaml +// test/e2e/testing-manifests/serviceloadbalancer/nginxsvc.yaml +// test/e2e/testing-manifests/statefulset/cassandra/pdb.yaml +// test/e2e/testing-manifests/statefulset/cassandra/service.yaml +// test/e2e/testing-manifests/statefulset/cassandra/statefulset.yaml +// test/e2e/testing-manifests/statefulset/cassandra/tester.yaml +// test/e2e/testing-manifests/statefulset/cockroachdb/service.yaml +// test/e2e/testing-manifests/statefulset/cockroachdb/statefulset.yaml +// test/e2e/testing-manifests/statefulset/etcd/pdb.yaml +// test/e2e/testing-manifests/statefulset/etcd/service.yaml +// test/e2e/testing-manifests/statefulset/etcd/statefulset.yaml +// test/e2e/testing-manifests/statefulset/etcd/tester.yaml +// test/e2e/testing-manifests/statefulset/mysql-galera/service.yaml +// test/e2e/testing-manifests/statefulset/mysql-galera/statefulset.yaml +// test/e2e/testing-manifests/statefulset/mysql-upgrade/configmap.yaml +// test/e2e/testing-manifests/statefulset/mysql-upgrade/service.yaml +// test/e2e/testing-manifests/statefulset/mysql-upgrade/statefulset.yaml +// test/e2e/testing-manifests/statefulset/mysql-upgrade/tester.yaml +// test/e2e/testing-manifests/statefulset/redis/service.yaml +// test/e2e/testing-manifests/statefulset/redis/statefulset.yaml +// test/e2e/testing-manifests/statefulset/zookeeper/service.yaml +// test/e2e/testing-manifests/statefulset/zookeeper/statefulset.yaml +// test/images/BUILD +// test/images/Makefile +// test/images/clusterapi-tester/BASEIMAGE +// test/images/clusterapi-tester/BUILD +// test/images/clusterapi-tester/Dockerfile +// test/images/clusterapi-tester/Makefile +// test/images/clusterapi-tester/VERSION +// test/images/clusterapi-tester/clusterapi-tester.go +// test/images/clusterapi-tester/pod.yaml +// test/images/cuda-vector-add/BASEIMAGE +// test/images/cuda-vector-add/Dockerfile +// test/images/cuda-vector-add/VERSION +// test/images/dnsutils/BASEIMAGE +// test/images/dnsutils/Dockerfile +// test/images/dnsutils/VERSION +// test/images/entrypoint-tester/BUILD +// test/images/entrypoint-tester/Dockerfile +// test/images/entrypoint-tester/Makefile +// test/images/entrypoint-tester/VERSION +// test/images/entrypoint-tester/ep.go +// test/images/fakegitserver/BUILD +// test/images/fakegitserver/Dockerfile +// test/images/fakegitserver/Makefile +// test/images/fakegitserver/VERSION +// test/images/fakegitserver/gitserver.go +// test/images/goproxy/.gitignore +// test/images/goproxy/BUILD +// test/images/goproxy/Dockerfile +// test/images/goproxy/Makefile +// test/images/goproxy/VERSION +// test/images/goproxy/goproxy.go +// test/images/goproxy/pod.yaml +// test/images/hostexec/BASEIMAGE +// test/images/hostexec/Dockerfile +// test/images/hostexec/VERSION +// test/images/hostexec/pod.yaml +// test/images/image-util.sh +// test/images/iperf/BASEIMAGE +// test/images/iperf/Dockerfile +// test/images/iperf/VERSION +// test/images/jessie-dnsutils/BASEIMAGE +// test/images/jessie-dnsutils/Dockerfile +// test/images/jessie-dnsutils/VERSION +// test/images/kitten/BASEIMAGE +// test/images/kitten/Dockerfile +// test/images/kitten/VERSION +// test/images/kitten/html/data.json +// test/images/liveness/BUILD +// test/images/liveness/Dockerfile +// test/images/liveness/Makefile +// test/images/liveness/VERSION +// test/images/liveness/server.go +// test/images/logs-generator/BASEIMAGE +// test/images/logs-generator/BUILD +// test/images/logs-generator/Dockerfile +// test/images/logs-generator/Makefile +// test/images/logs-generator/VERSION +// test/images/logs-generator/logs_generator.go +// test/images/mounttest/BUILD +// test/images/mounttest/Dockerfile +// test/images/mounttest/Makefile +// test/images/mounttest/VERSION +// test/images/mounttest/mt.go +// test/images/mounttest-user/BASEIMAGE +// test/images/mounttest-user/Dockerfile +// test/images/mounttest-user/VERSION +// test/images/n-way-http/BASEIMAGE +// test/images/n-way-http/BUILD +// test/images/n-way-http/Dockerfile +// test/images/n-way-http/Makefile +// test/images/n-way-http/VERSION +// test/images/n-way-http/server.go +// test/images/nautilus/BASEIMAGE +// test/images/nautilus/Dockerfile +// test/images/nautilus/VERSION +// test/images/nautilus/html/data.json +// test/images/net/.gitignore +// test/images/net/BASEIMAGE +// test/images/net/BUILD +// test/images/net/Dockerfile +// test/images/net/Makefile +// test/images/net/VERSION +// test/images/net/common/BUILD +// test/images/net/common/common.go +// test/images/net/main.go +// test/images/net/nat/BUILD +// test/images/net/nat/closewait.go +// test/images/netexec/.gitignore +// test/images/netexec/BASEIMAGE +// test/images/netexec/BUILD +// test/images/netexec/Dockerfile +// test/images/netexec/Makefile +// test/images/netexec/VERSION +// test/images/netexec/netexec.go +// test/images/netexec/pod.yaml +// test/images/nettest/BUILD +// test/images/nettest/Dockerfile +// test/images/nettest/Makefile +// test/images/nettest/VERSION +// test/images/nettest/nettest.go +// test/images/nettest/rc.json +// test/images/nettest/service.json +// test/images/nettest/slow-pod.json +// test/images/nettest/slow-rc.json +// test/images/no-snat-test/BASEIMAGE +// test/images/no-snat-test/BUILD +// test/images/no-snat-test/Dockerfile +// test/images/no-snat-test/Makefile +// test/images/no-snat-test/VERSION +// test/images/no-snat-test/main.go +// test/images/no-snat-test-proxy/BASEIMAGE +// test/images/no-snat-test-proxy/BUILD +// test/images/no-snat-test-proxy/Dockerfile +// test/images/no-snat-test-proxy/Makefile +// test/images/no-snat-test-proxy/VERSION +// test/images/no-snat-test-proxy/main.go +// test/images/nonewprivs/.gitignore +// test/images/nonewprivs/BASEIMAGE +// test/images/nonewprivs/BUILD +// test/images/nonewprivs/Dockerfile +// test/images/nonewprivs/Makefile +// test/images/nonewprivs/VERSION +// test/images/nonewprivs/nnp.go +// test/images/pets/peer-finder/BASEIMAGE +// test/images/pets/peer-finder/BUILD +// test/images/pets/peer-finder/Dockerfile +// test/images/pets/peer-finder/Makefile +// test/images/pets/peer-finder/VERSION +// test/images/pets/peer-finder/peer-finder.go +// test/images/pets/redis-installer/BASEIMAGE +// test/images/pets/redis-installer/Dockerfile +// test/images/pets/redis-installer/Makefile +// test/images/pets/redis-installer/VERSION +// test/images/pets/redis-installer/install.sh +// test/images/pets/redis-installer/on-start.sh +// test/images/pets/zookeeper-installer/BASEIMAGE +// test/images/pets/zookeeper-installer/Dockerfile +// test/images/pets/zookeeper-installer/Makefile +// test/images/pets/zookeeper-installer/VERSION +// test/images/pets/zookeeper-installer/install.sh +// test/images/pets/zookeeper-installer/on-start.sh +// test/images/port-forward-tester/.gitignore +// test/images/port-forward-tester/BUILD +// test/images/port-forward-tester/Dockerfile +// test/images/port-forward-tester/Makefile +// test/images/port-forward-tester/VERSION +// test/images/port-forward-tester/portforwardtester.go +// test/images/porter/.gitignore +// test/images/porter/BUILD +// test/images/porter/Dockerfile +// test/images/porter/Makefile +// test/images/porter/VERSION +// test/images/porter/localhost.crt +// test/images/porter/localhost.key +// test/images/porter/pod.json +// test/images/porter/porter.go +// test/images/redis/BASEIMAGE +// test/images/redis/Dockerfile +// test/images/redis/VERSION +// test/images/redis/redis.conf +// test/images/resource-consumer/.gitignore +// test/images/resource-consumer/BASEIMAGE +// test/images/resource-consumer/BUILD +// test/images/resource-consumer/Dockerfile +// test/images/resource-consumer/Makefile +// test/images/resource-consumer/VERSION +// test/images/resource-consumer/common/BUILD +// test/images/resource-consumer/common/common.go +// test/images/resource-consumer/consume-cpu/BUILD +// test/images/resource-consumer/consume-cpu/consume_cpu.go +// test/images/resource-consumer/controller/BASEIMAGE +// test/images/resource-consumer/controller/BUILD +// test/images/resource-consumer/controller/Dockerfile +// test/images/resource-consumer/controller/Makefile +// test/images/resource-consumer/controller/VERSION +// test/images/resource-consumer/controller/controller.go +// test/images/resource-consumer/resource_consumer.go +// test/images/resource-consumer/resource_consumer_handler.go +// test/images/resource-consumer/utils.go +// test/images/serve-hostname/BASEIMAGE +// test/images/serve-hostname/BUILD +// test/images/serve-hostname/Dockerfile +// test/images/serve-hostname/Makefile +// test/images/serve-hostname/VERSION +// test/images/serve-hostname/serve_hostname.go +// test/images/test-webserver/BUILD +// test/images/test-webserver/Dockerfile +// test/images/test-webserver/Makefile +// test/images/test-webserver/VERSION +// test/images/test-webserver/test-webserver.go +// test/images/volumes-tester/ceph/Dockerfile +// test/images/volumes-tester/ceph/Makefile +// test/images/volumes-tester/ceph/index.html +// test/images/volumes-tester/ceph/init.sh +// test/images/volumes-tester/ceph/install.sh +// test/images/volumes-tester/gluster/Dockerfile +// test/images/volumes-tester/gluster/Makefile +// test/images/volumes-tester/gluster/glusterd.vol +// test/images/volumes-tester/gluster/index.html +// test/images/volumes-tester/gluster/run_gluster.sh +// test/images/volumes-tester/iscsi/Dockerfile +// test/images/volumes-tester/iscsi/Makefile +// test/images/volumes-tester/iscsi/block.tar.gz +// test/images/volumes-tester/iscsi/create_block.sh +// test/images/volumes-tester/iscsi/initiatorname.iscsi +// test/images/volumes-tester/iscsi/run_iscsid.sh +// test/images/volumes-tester/iscsi/saveconfig.json +// test/images/volumes-tester/nfs/Dockerfile +// test/images/volumes-tester/nfs/Makefile +// test/images/volumes-tester/nfs/index.html +// test/images/volumes-tester/nfs/run_nfs.sh +// test/images/volumes-tester/rbd/Dockerfile +// test/images/volumes-tester/rbd/Makefile +// test/images/volumes-tester/rbd/block.tar.gz +// test/images/volumes-tester/rbd/bootstrap.sh +// test/images/volumes-tester/rbd/ceph.conf.sh +// test/images/volumes-tester/rbd/create_block.sh +// test/images/volumes-tester/rbd/keyring +// test/images/volumes-tester/rbd/mon.sh +// test/images/volumes-tester/rbd/osd.sh +// test/fixtures/BUILD +// test/fixtures/doc-yaml/admin/daemon.yaml +// test/fixtures/doc-yaml/admin/high-availability/etcd.yaml +// test/fixtures/doc-yaml/admin/high-availability/kube-apiserver.yaml +// test/fixtures/doc-yaml/admin/high-availability/kube-controller-manager.yaml +// test/fixtures/doc-yaml/admin/high-availability/kube-scheduler.yaml +// test/fixtures/doc-yaml/admin/limitrange/invalid-pod.yaml +// test/fixtures/doc-yaml/admin/limitrange/limits.yaml +// test/fixtures/doc-yaml/admin/limitrange/namespace.yaml +// test/fixtures/doc-yaml/admin/limitrange/valid-pod.yaml +// test/fixtures/doc-yaml/admin/namespaces/namespace-dev.json +// test/fixtures/doc-yaml/admin/namespaces/namespace-prod.json +// test/fixtures/doc-yaml/admin/resourcequota/limits.yaml +// test/fixtures/doc-yaml/admin/resourcequota/namespace.yaml +// test/fixtures/doc-yaml/admin/resourcequota/quota.yaml +// test/fixtures/doc-yaml/getting-started-guides/coreos/cloud-configs/master.yaml +// test/fixtures/doc-yaml/getting-started-guides/coreos/cloud-configs/node.yaml +// test/fixtures/doc-yaml/user-guide/configmap/command-pod.yaml +// test/fixtures/doc-yaml/user-guide/configmap/configmap.yaml +// test/fixtures/doc-yaml/user-guide/configmap/env-pod.yaml +// test/fixtures/doc-yaml/user-guide/configmap/redis/redis-pod.yaml +// test/fixtures/doc-yaml/user-guide/configmap/volume-pod.yaml +// test/fixtures/doc-yaml/user-guide/deployment.yaml +// test/fixtures/doc-yaml/user-guide/downward-api/dapi-pod.yaml +// test/fixtures/doc-yaml/user-guide/downward-api/volume/dapi-volume.yaml +// test/fixtures/doc-yaml/user-guide/environment-guide/backend-rc.yaml +// test/fixtures/doc-yaml/user-guide/environment-guide/backend-srv.yaml +// test/fixtures/doc-yaml/user-guide/environment-guide/show-rc.yaml +// test/fixtures/doc-yaml/user-guide/environment-guide/show-srv.yaml +// test/fixtures/doc-yaml/user-guide/horizontal-pod-autoscaling/hpa-php-apache.yaml +// test/fixtures/doc-yaml/user-guide/ingress.yaml +// test/fixtures/doc-yaml/user-guide/job.yaml +// test/fixtures/doc-yaml/user-guide/liveness/exec-liveness.yaml +// test/fixtures/doc-yaml/user-guide/liveness/http-liveness.yaml +// test/fixtures/doc-yaml/user-guide/logging-demo/synthetic_0_25lps.yaml +// test/fixtures/doc-yaml/user-guide/logging-demo/synthetic_10lps.yaml +// test/fixtures/doc-yaml/user-guide/multi-pod.yaml +// test/fixtures/doc-yaml/user-guide/new-nginx-deployment.yaml +// test/fixtures/doc-yaml/user-guide/nginx-deployment.yaml +// test/fixtures/doc-yaml/user-guide/node-selection/pod.yaml +// test/fixtures/doc-yaml/user-guide/persistent-volumes/claims/claim-01.yaml +// test/fixtures/doc-yaml/user-guide/persistent-volumes/claims/claim-02.yaml +// test/fixtures/doc-yaml/user-guide/persistent-volumes/claims/claim-03.json +// test/fixtures/doc-yaml/user-guide/persistent-volumes/simpletest/namespace.json +// test/fixtures/doc-yaml/user-guide/persistent-volumes/simpletest/pod.yaml +// test/fixtures/doc-yaml/user-guide/persistent-volumes/simpletest/service.json +// test/fixtures/doc-yaml/user-guide/persistent-volumes/volumes/gce.yaml +// test/fixtures/doc-yaml/user-guide/persistent-volumes/volumes/local-01.yaml +// test/fixtures/doc-yaml/user-guide/persistent-volumes/volumes/local-02.yaml +// test/fixtures/doc-yaml/user-guide/persistent-volumes/volumes/nfs.yaml +// test/fixtures/doc-yaml/user-guide/pod.yaml +// test/fixtures/doc-yaml/user-guide/replicaset/frontend.yaml +// test/fixtures/doc-yaml/user-guide/replicaset/redis-slave.yaml +// test/fixtures/doc-yaml/user-guide/replication.yaml +// test/fixtures/doc-yaml/user-guide/secrets/secret-env-pod.yaml +// test/fixtures/doc-yaml/user-guide/secrets/secret-pod.yaml +// test/fixtures/doc-yaml/user-guide/secrets/secret.yaml +// test/fixtures/doc-yaml/user-guide/update-demo/images/kitten/html/data.json +// test/fixtures/doc-yaml/user-guide/update-demo/images/nautilus/html/data.json +// test/fixtures/doc-yaml/user-guide/update-demo/kitten-rc.yaml.in +// test/fixtures/doc-yaml/user-guide/update-demo/nautilus-rc.yaml.in +// test/fixtures/doc-yaml/user-guide/walkthrough/pod-nginx-with-label.yaml +// test/fixtures/doc-yaml/user-guide/walkthrough/pod-nginx.yaml +// test/fixtures/doc-yaml/user-guide/walkthrough/pod-redis.yaml +// test/fixtures/doc-yaml/user-guide/walkthrough/pod-with-http-healthcheck.yaml +// test/fixtures/doc-yaml/user-guide/walkthrough/podtemplate.json +// test/fixtures/doc-yaml/user-guide/walkthrough/replication-controller.yaml +// test/fixtures/doc-yaml/user-guide/walkthrough/service.yaml +// test/fixtures/pkg/kubectl/OWNERS +// test/fixtures/pkg/kubectl/builder/kitten-rc.yaml +// test/fixtures/pkg/kubectl/plugins/echo/plugin.yaml +// test/fixtures/pkg/kubectl/plugins/env/env.sh +// test/fixtures/pkg/kubectl/plugins/env/plugin.yaml +// test/fixtures/pkg/kubectl/plugins/error/plugin.yaml +// test/fixtures/pkg/kubectl/plugins/get/plugin.yaml +// test/fixtures/pkg/kubectl/plugins/incomplete/plugin.yaml +// test/fixtures/pkg/kubectl/plugins/tree/plugin.yaml +// test/fixtures/pkg/kubectl/plugins2/hello/hello.sh +// test/fixtures/pkg/kubectl/plugins2/hello/plugin.yaml +// DO NOT EDIT! + +package generated + +import ( + "bytes" + "compress/gzip" + "fmt" + "io" + "io/ioutil" + "os" + "path/filepath" + "strings" + "time" +) + +func bindataRead(data []byte, name string) ([]byte, error) { + gz, err := gzip.NewReader(bytes.NewBuffer(data)) + if err != nil { + return nil, fmt.Errorf("Read %q: %v", name, err) + } + + var buf bytes.Buffer + _, err = io.Copy(&buf, gz) + clErr := gz.Close() + + if err != nil { + return nil, fmt.Errorf("Read %q: %v", name, err) + } + if clErr != nil { + return nil, err + } + + return buf.Bytes(), nil +} + +type asset struct { + bytes []byte + info os.FileInfo +} + +type bindataFileInfo struct { + name string + size int64 + mode os.FileMode + modTime time.Time +} + +func (fi bindataFileInfo) Name() string { + return fi.name +} +func (fi bindataFileInfo) Size() int64 { + return fi.size +} +func (fi bindataFileInfo) Mode() os.FileMode { + return fi.mode +} +func (fi bindataFileInfo) ModTime() time.Time { + return fi.modTime +} +func (fi bindataFileInfo) IsDir() bool { + return false +} +func (fi bindataFileInfo) Sys() interface{} { + return nil +} + +var _examplesBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x95\xdd\x8e\xda\x30\x10\x85\xef\xf3\x14\x56\xae\x16\xba\x60\xf5\xae\x42\x5a\xa9\xef\xb1\x42\xd1\xc4\x19\x9c\x59\x1c\x8f\xe5\x1f\x44\xf6\xe9\xab\x84\xa4\xc0\x0a\x48\xe8\xf6\x76\x7c\xe6\x9b\xc3\xc4\x1c\x3b\x50\x7b\xd0\xf8\x52\xe1\x0e\x92\x89\xc5\x81\x02\x95\x64\x28\xb6\xe2\x4d\xbc\xe7\x52\x9e\x0b\x1b\x97\x4a\x43\x2a\xdf\x2e\xb2\xcc\x30\x54\x2f\x99\x10\x42\xe4\xbf\x89\x8b\x12\x3e\xd1\x14\x3e\x19\x0c\x85\x66\x29\x35\x6f\x2a\xdc\xad\xcb\x4f\x93\xbf\x9e\x54\x9a\x0b\x43\xa5\x07\xdf\x5e\x54\x22\x86\x98\xbf\x66\x8b\x2c\xdb\x91\x41\xed\x39\xb9\x13\xd4\x42\x83\xe2\x4d\xe4\x8a\xed\x8e\xf4\xd0\x11\xbc\x0a\xe2\x4d\x68\xc3\xe5\xcb\x7b\x5f\xe9\x39\xcb\xa5\x5c\xae\x5b\x68\xc6\x51\x17\xc5\x1b\xb5\x8f\xc0\x76\x28\x6e\x17\xe2\x87\xb8\x00\x39\xae\xc6\x93\x47\x9e\x02\x27\xaf\x30\x4c\x9b\xfa\x3b\xa6\xa7\x9d\x17\x70\x8d\xd3\x5c\x8c\xbb\xbf\x5e\xd0\x40\x7e\xcf\x2b\x56\x6b\xcd\xf9\x76\xc4\x74\x5b\xbb\xcb\x38\x0e\x3b\xbd\x22\xe0\x11\x1a\xd7\x7d\x9b\xee\x70\x60\x75\x82\x0a\x5d\x2f\x38\xfb\x96\xd2\xed\xb5\x04\x47\x9b\xbb\xbe\xae\x75\xb2\x43\x3e\xa3\x3f\x80\xa1\x0a\x22\xb1\x9d\xdb\x12\x24\x38\x17\x9e\x53\xff\xd3\x98\x12\xa2\xaa\xe7\xcb\xf1\x18\xd1\x06\x62\xfb\x84\xb7\x73\xcf\xb3\x0e\x15\x38\xe8\xff\x87\x84\xf3\xe6\x79\xd4\x14\xa2\x6f\x4f\x3f\x4b\x7e\x70\x39\xdd\x66\x92\x26\xdb\x77\x07\x55\x63\x95\x0c\xfa\x79\x97\xe1\x4e\xa3\x34\xd0\xdd\x8f\xc9\xfe\x03\xda\x8a\xbd\xd4\x14\xeb\x54\xae\x15\x37\x52\xb3\x01\xab\xa5\x36\xac\xe7\x76\xef\x7f\x85\x35\x71\x37\xb6\x01\x55\x93\x45\xdf\x9e\x17\xdf\x60\x04\x79\xf8\xf9\x5d\x96\x4f\x36\x52\x83\xdf\xc5\xc4\xd6\xcd\xf8\x8a\x13\x90\x14\xc9\x5c\xdc\x22\xb9\x23\x34\xd5\x7f\x81\x76\x69\x7a\x1f\xf4\x30\x1d\x87\xf7\x64\xd5\x65\xcf\xad\x88\xcc\x97\xcb\xbc\x4b\xc4\xee\x20\x82\x3e\xe5\x13\xa4\xc8\x0d\x58\xd0\x58\x8d\xd1\xf4\xf0\x1d\xf2\x74\x80\x88\xf9\x43\x23\x60\xcc\x0d\x13\x17\x51\xb7\xb9\x61\x75\xd8\xd1\x98\x97\x12\x8f\xce\xb0\x47\xbf\xf9\x42\xfb\xaa\xd3\x09\x43\x2c\x99\xf7\x2b\xcd\x53\xda\x3a\x46\x17\x56\x56\x93\x3d\x4e\x49\x43\x0d\x9e\xac\x5e\x29\x93\x42\x44\x1f\xbe\xea\xb7\x8f\xf7\xb8\xc8\xfe\x04\x00\x00\xff\xff\xde\x39\x25\xc9\xde\x07\x00\x00") + +func examplesBuildBytes() ([]byte, error) { + return bindataRead( + _examplesBuild, + "examples/BUILD", + ) +} + +func examplesBuild() (*asset, error) { + bytes, err := examplesBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesOwners = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x4a\x2d\xcb\x4c\x2d\x4f\x2d\x2a\xb6\xe2\x52\x50\xd0\x55\x48\x2a\x4a\xcd\x4b\x49\xcc\x4b\x49\x2a\x2d\xca\x2b\x06\x8b\x94\x64\xe4\x27\x67\x67\xe6\x81\xd9\x55\xb9\xa9\x45\x39\x95\x79\x79\x5c\x89\x05\x05\x45\xf9\x65\x78\x74\xa5\x16\x24\x16\x65\xe2\x31\x00\x10\x00\x00\xff\xff\x64\x5e\x02\x4a\x77\x00\x00\x00") + +func examplesOwnersBytes() ([]byte, error) { + return bindataRead( + _examplesOwners, + "examples/OWNERS", + ) +} + +func examplesOwners() (*asset, error) { + bytes, err := examplesOwnersBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/OWNERS", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesCloudControllerManagerPersistentVolumeLabelInitializerConfigYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xce\xb1\x4e\xc5\x30\x0c\x05\xd0\x3d\x5f\x61\x75\x44\xa2\xa8\x1b\xca\xca\x80\xf8\x01\x76\x97\x9a\x62\x35\x71\x22\xdb\xe9\xc0\xd7\xa3\xf0\xfa\xd4\x4e\x6f\xbb\xba\xf7\x44\xf1\xc6\xb2\x44\xf8\x10\x76\xc6\xc4\xbf\xa4\x6f\x45\xbe\x79\x6d\x8a\xce\x45\x02\x56\xfe\x24\x35\x2e\x12\x01\x97\xcc\xd6\xa3\xd2\xca\xe6\x37\x31\x6e\xaf\x36\x72\x79\xd9\x27\x4c\xf5\x07\xa7\x90\xc9\x71\x41\xc7\x18\x00\x04\x33\x45\xa8\x7b\xc2\x99\xd2\xb8\xb5\x99\x54\xc8\xa9\x3f\x08\x7c\x7e\x69\xdd\x3e\x3f\xd4\x00\x00\xda\x12\xfd\xd3\x8e\xb1\xf2\xbb\x96\x56\x8f\xa2\x57\xc3\x70\xc4\xf3\xe8\xeb\xfa\x74\x9f\x95\xac\x34\xfd\xa2\xcb\x58\x3b\x37\x27\xf1\xbd\xa4\x96\xc9\xc2\x5f\x00\x00\x00\xff\xff\x7e\x00\x3f\xcb\x18\x01\x00\x00") + +func examplesCloudControllerManagerPersistentVolumeLabelInitializerConfigYamlBytes() ([]byte, error) { + return bindataRead( + _examplesCloudControllerManagerPersistentVolumeLabelInitializerConfigYaml, + "examples/cloud-controller-manager/persistent-volume-label-initializer-config.yaml", + ) +} + +func examplesCloudControllerManagerPersistentVolumeLabelInitializerConfigYaml() (*asset, error) { + bytes, err := examplesCloudControllerManagerPersistentVolumeLabelInitializerConfigYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/cloud-controller-manager/persistent-volume-label-initializer-config.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesClusterDnsDnsBackendRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8e\xcd\x4a\x05\x31\x0c\x85\xf7\x7d\x8a\xbc\xc0\x78\x67\x76\xd2\xad\x2f\x20\x2e\xdc\x4a\x6e\x27\x94\x72\xd3\xa4\xa4\x61\xf0\xf1\xa5\x8c\x62\x05\xe7\x6c\xcf\xcf\x77\xb0\x95\x77\xb2\x5e\x54\x22\x1c\x5b\x78\x14\xd9\x23\xbc\x51\xe3\x92\xd0\x8b\xca\x8b\x8a\x9b\x32\x93\x85\x4a\x8e\x3b\x3a\xc6\x00\x20\x58\x29\xc2\x2e\x7d\xb9\x63\x7a\x90\xec\x01\x80\xf1\x4e\xdc\x87\xfb\x9f\xdf\x1b\xa5\xe1\xd9\xb9\xdd\x23\x6c\x01\xa0\x13\x53\x72\xb5\xab\x16\x80\x53\x6d\x8c\x4e\x67\x62\xfe\x30\x34\x33\xaf\x16\x00\x7e\xd8\x43\x49\xc5\xb1\x08\xd9\xd4\x5a\x2e\x7a\xa7\x4a\xc5\x4c\x11\x72\xb2\xa7\xa2\xb7\xac\x9a\x99\x3e\x7e\x67\x6e\xf4\x89\xb5\x31\x2d\x53\x3b\x1e\xdb\x34\xd0\xd4\x7c\xa2\xcd\xc4\xef\xfc\x32\x22\x7f\x02\xd3\xd1\x57\x35\x8f\xf0\xbc\xae\x6b\xf8\x0a\x00\x00\xff\xff\xa3\x3a\xc9\x8d\xae\x01\x00\x00") + +func examplesClusterDnsDnsBackendRcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesClusterDnsDnsBackendRcYaml, + "examples/cluster-dns/dns-backend-rc.yaml", + ) +} + +func examplesClusterDnsDnsBackendRcYaml() (*asset, error) { + bytes, err := examplesClusterDnsDnsBackendRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/cluster-dns/dns-backend-rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesClusterDnsDnsBackendServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\x31\x0a\x03\x31\x0c\x44\xd1\x5e\xa7\x98\x0b\x2c\x38\x5d\xd0\x35\x02\xe9\x15\x7b\x0a\xb3\x59\xd9\x58\x62\xcf\x1f\x36\x29\xd3\xcd\xf0\xe0\xef\xdd\x9b\xe2\xc1\x75\xf6\x4a\xb1\xd9\x9f\x5c\xd1\x87\x2b\xce\x9b\x1c\x4c\x6b\x96\xa6\x02\xb8\x1d\x54\x34\x8f\xed\x65\x75\xa7\x37\x89\xc9\x7a\xc9\x1c\x2b\xe3\x1a\xc0\xf6\x3d\x8a\x7b\x29\x45\x80\xe0\x9b\x35\xc7\xfa\xe1\x7f\xe1\x13\x00\x00\xff\xff\x56\x58\x19\x0e\x7d\x00\x00\x00") + +func examplesClusterDnsDnsBackendServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesClusterDnsDnsBackendServiceYaml, + "examples/cluster-dns/dns-backend-service.yaml", + ) +} + +func examplesClusterDnsDnsBackendServiceYaml() (*asset, error) { + bytes, err := examplesClusterDnsDnsBackendServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/cluster-dns/dns-backend-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesClusterDnsDnsFrontendPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x3d\x6e\xc3\x30\x0c\x85\x77\x9d\x82\x17\xf0\x4f\xb6\x42\x5b\x2f\x50\x78\xea\x5a\x30\x12\xeb\x08\xa1\x48\x41\x62\xdc\xfa\xf6\x85\x00\x17\xf1\x10\x6e\x7c\xef\x7d\x8f\xc4\x92\x3e\xa9\xb6\xa4\xe2\x61\xbb\xb8\x7b\x92\xe8\x61\xd1\xe8\x32\x19\x46\x34\xf4\x0e\x40\x30\x93\x87\x28\x6d\xf8\xae\x2a\x46\x12\x1d\x00\xe3\x95\xb8\x75\xfb\x65\xa0\x15\x0a\xdd\x0c\x2a\x86\x49\xa8\x1e\xd1\xe1\x75\x5b\x9f\x94\x71\x25\x0f\x6b\xa8\x63\xd2\x69\x55\x5d\x99\xbe\x9e\xfc\x44\xbf\x98\x0b\xd3\x70\x46\xfd\x76\x39\xe8\xa0\x39\xa3\x44\x7f\xac\xfd\x52\xd9\xed\xa6\x72\x12\x02\x27\x12\x1b\xcb\x7e\xd2\x6e\x66\xc5\x4f\x53\x2f\xbd\x62\xb8\x93\xc4\x31\xd2\x46\xac\x25\xf7\x6c\xdb\xc2\x18\xf8\xd1\x8c\xea\xc8\x1a\x90\xfd\xdb\x3c\xcf\xe7\x8f\x97\x07\xf3\xa2\x9c\xc2\xee\xe1\x9d\x7f\x70\x6f\x0e\xa0\x52\x33\xac\xf6\xaf\x7f\xd0\x46\xd5\xfd\x05\x00\x00\xff\xff\x1d\x5b\xef\x10\x6d\x01\x00\x00") + +func examplesClusterDnsDnsFrontendPodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesClusterDnsDnsFrontendPodYaml, + "examples/cluster-dns/dns-frontend-pod.yaml", + ) +} + +func examplesClusterDnsDnsFrontendPodYaml() (*asset, error) { + bytes, err := examplesClusterDnsDnsFrontendPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/cluster-dns/dns-frontend-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesClusterDnsImagesBackendDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x8f\x9b\x3e\x14\xc4\xef\xfe\x14\x23\xb8\xfc\xff\x52\x42\xd2\x1c\x5a\x69\x7b\xa2\x49\x56\x45\xd9\x85\x0a\xb2\x8d\xa2\xaa\x07\x03\x2f\xf0\x54\x62\xbb\xb6\x59\x96\x6f\x5f\x91\x64\xa5\x46\xf5\xf1\xcd\x78\xfc\xf3\xbc\x10\x6b\x6d\x46\xcb\x4d\xeb\xb1\x5a\x7e\xf8\x88\x7d\x4b\xd8\xf5\x25\x59\x45\x9e\x1c\xe2\xde\xb7\xda\xba\x48\x84\x22\xc4\x13\x57\xa4\x1c\xd5\xe8\x55\x4d\x16\xbe\x25\xc4\x46\x56\x2d\xbd\x2b\x33\x7c\x27\xeb\x58\x2b\xac\xa2\x25\xfe\x9b\x0c\xc1\x4d\x0a\xfe\xff\x2c\x42\x8c\xba\xc7\x59\x8e\x50\xda\xa3\x77\x04\xdf\xb2\xc3\x89\x3b\x02\xbd\x55\x64\x3c\x58\xa1\xd2\x67\xd3\xb1\x54\x15\x61\x60\xdf\x5e\x9e\xb9\x85\x44\x22\xc4\xf1\x16\xa1\x4b\x2f\x59\x41\xa2\xd2\x66\x84\x3e\xfd\xed\x83\xf4\x17\xe0\xe9\xb4\xde\x9b\x87\xc5\x62\x18\x86\x48\x5e\x60\x23\x6d\x9b\x45\x77\x35\xba\xc5\x53\xb2\xde\xa6\xc5\x76\xbe\x8a\x96\x97\x2b\x2f\xaa\x23\xe7\x60\xe9\x77\xcf\x96\x6a\x94\x23\xa4\x31\x1d\x57\xb2\xec\x08\x9d\x1c\xa0\x2d\x64\x63\x89\x6a\x78\x3d\xf1\x0e\x96\x3d\xab\x66\x06\xa7\x4f\x7e\x90\x96\x44\x88\x9a\x9d\xb7\x5c\xf6\xfe\xae\xac\x77\x3a\x76\x77\x06\xad\x20\x15\x82\xb8\x40\x52\x04\xf8\x12\x17\x49\x31\x13\x21\x0e\xc9\xfe\x6b\xf6\xb2\xc7\x21\xce\xf3\x38\xdd\x27\xdb\x02\x59\x8e\x75\x96\x6e\x92\x7d\x92\xa5\x05\xb2\x47\xc4\xe9\x11\xbb\x24\xdd\xcc\x40\xec\x5b\xb2\xa0\x37\x63\x27\x7e\x6d\xc1\x53\x8d\x54\x4f\x9d\x15\x44\x77\x00\x27\x7d\x05\x72\x86\x2a\x3e\x71\x85\x4e\xaa\xa6\x97\x0d\xa1\xd1\xaf\x64\x15\xab\x06\x86\xec\x99\xdd\xb4\x4c\x07\xa9\x6a\x11\xa2\xe3\x33\x7b\xe9\x2f\x93\x7f\x3e\x15\x09\xf1\x98\x67\xcf\x30\xa3\x6f\xb5\x7a\x58\x45\x9f\xe6\xae\xe3\xb3\x10\xeb\xec\xdb\x11\x11\x16\xb5\x72\xf3\x52\x56\xbf\x48\xd5\xe2\x90\xe5\xbb\x4d\x92\xdf\x0f\xc5\xfa\x79\x83\x1f\xc1\x35\x20\x98\x21\x70\x64\x5f\xc9\x46\x66\x0c\x7e\x8a\x3f\x01\x00\x00\xff\xff\x53\x4d\xec\xfe\xa8\x02\x00\x00") + +func examplesClusterDnsImagesBackendDockerfileBytes() ([]byte, error) { + return bindataRead( + _examplesClusterDnsImagesBackendDockerfile, + "examples/cluster-dns/images/backend/Dockerfile", + ) +} + +func examplesClusterDnsImagesBackendDockerfile() (*asset, error) { + bytes, err := examplesClusterDnsImagesBackendDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/cluster-dns/images/backend/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesClusterDnsImagesBackendMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xc1\x4e\xdb\x40\x10\x86\xcf\xec\x53\xfc\x8a\x39\x24\x52\xec\x00\x87\x1e\x52\x71\x70\x21\x50\x0b\x9a\x54\x71\x28\xe5\x54\x6d\xd6\x13\x7b\xc4\x66\x77\xbb\xbb\xc6\xe4\xed\x2b\x9b\x20\x15\xb5\x3e\x7a\xfe\xf9\xe6\xdb\x99\x04\x57\xd6\x1d\x3c\xd7\x4d\xc4\xc5\xd9\xf9\x27\x6c\x1a\xc2\x5d\xbb\x25\x6f\x28\x52\x40\xde\xc6\xc6\xfa\x90\x89\x44\x24\xb8\x67\x45\x26\x50\x85\xd6\x54\xe4\x11\x1b\x42\xee\xa4\x6a\xe8\xbd\x32\xc5\x0f\xf2\x81\xad\xc1\x45\x76\x86\x71\x1f\x18\x1d\x4b\xa3\xc9\x67\x91\xe0\x60\x5b\xec\xe5\x01\xc6\x46\xb4\x81\x10\x1b\x0e\xd8\xb1\x26\xd0\xab\x22\x17\xc1\x06\xca\xee\x9d\x66\x69\x14\xa1\xe3\xd8\x0c\x63\x8e\x90\x4c\x24\x78\x3a\x22\xec\x36\x4a\x36\x90\x50\xd6\x1d\x60\x77\x7f\xe7\x20\xe3\x20\xdc\x7f\x4d\x8c\x6e\x3e\x9b\x75\x5d\x97\xc9\x41\x36\xb3\xbe\x9e\xe9\xb7\x60\x98\xdd\x17\x57\x8b\x65\xb9\x48\x2f\xb2\xb3\xa1\xe5\xc1\x68\x0a\x01\x9e\x7e\xb7\xec\xa9\xc2\xf6\x00\xe9\x9c\x66\x25\xb7\x9a\xa0\x65\x07\xeb\x21\x6b\x4f\x54\x21\xda\xde\xb7\xf3\x1c\xd9\xd4\x53\x04\xbb\x8b\x9d\xf4\x24\x12\x54\x1c\xa2\xe7\x6d\x1b\x3f\x2c\xeb\xdd\x8e\xc3\x87\x80\x35\x90\x06\xa3\xbc\x44\x51\x8e\xf0\x25\x2f\x8b\x72\x2a\x12\x3c\x16\x9b\xaf\xab\x87\x0d\x1e\xf3\xf5\x3a\x5f\x6e\x8a\x45\x89\xd5\x1a\x57\xab\xe5\x75\xb1\x29\x56\xcb\x12\xab\x1b\xe4\xcb\x27\xdc\x15\xcb\xeb\x29\x88\x63\x43\x1e\xf4\xea\x7c\xef\x6f\x3d\xb8\x5f\x23\x55\xfd\xce\x4a\xa2\x0f\x02\x3b\xfb\x26\x14\x1c\x29\xde\xb1\x82\x96\xa6\x6e\x65\x4d\xa8\xed\x0b\x79\xc3\xa6\x86\x23\xbf\xe7\xd0\x1f\x33\x40\x9a\x4a\x24\xd0\xbc\xe7\x28\xe3\xf0\xe7\x9f\x47\x65\x42\x6c\xf2\x5b\x5c\xe2\xe5\x5c\x7c\x5f\x2f\x6e\x8a\x9f\xb8\x44\xad\x7c\xc6\x76\x56\x5b\x5b\x6b\xfa\xa5\xac\xe9\x4f\x46\x3e\x88\xe2\x5b\x7e\xbb\xc0\x25\xe8\x55\xee\x9d\xa6\xb4\x32\x21\xdd\x4a\xf5\x4c\xa6\x12\x42\x6a\x3d\x87\x6b\x43\x23\x04\xef\x65\x4d\x73\x71\x52\x59\xf5\x4c\x1e\xdb\x96\x75\x85\x34\x75\xad\xd6\x48\x23\x4e\xc7\x6f\xa3\x26\xb3\xd3\xf1\x80\x9c\xcc\x4f\xc7\x9b\xfc\x76\x82\x4c\x88\x9e\x30\xc7\x40\x10\x27\xb5\xd2\xb6\xad\x70\xe4\xa4\xe9\xc0\xff\x4f\xbf\x10\x4a\x93\x34\x73\xf1\x27\x00\x00\xff\xff\xb6\x4b\x90\x26\x19\x03\x00\x00") + +func examplesClusterDnsImagesBackendMakefileBytes() ([]byte, error) { + return bindataRead( + _examplesClusterDnsImagesBackendMakefile, + "examples/cluster-dns/images/backend/Makefile", + ) +} + +func examplesClusterDnsImagesBackendMakefile() (*asset, error) { + bytes, err := examplesClusterDnsImagesBackendMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/cluster-dns/images/backend/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesClusterDnsImagesBackendServerPy = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x54\xc1\x6e\xe3\x36\x10\xbd\xf3\x2b\xde\x5a\x07\xcb\x80\x56\x76\x03\x14\x28\x52\xec\xc1\xf1\xba\x1b\x21\x5b\x7b\x61\x29\x0d\xf6\xd2\x80\x96\x46\x16\x51\x9a\xd4\x92\xa3\x28\xfa\xfb\x82\xb2\x93\x38\xdd\xfa\x62\x69\x38\xf3\xde\x9b\x37\x43\x45\x1f\xe6\x9d\x77\xf3\xbd\x32\x73\x32\x4f\x68\x07\x6e\xac\x11\x22\xc2\xca\xb6\x83\x53\x87\x86\x71\xb5\xf8\xe5\x57\x14\x0d\xe1\xae\xdb\x93\x33\xc4\xe4\xb1\xec\xb8\xb1\xce\xa7\x22\x12\x11\xbe\xaa\x92\x8c\xa7\x0a\x9d\xa9\xc8\x81\x1b\xc2\xb2\x95\x65\x43\x2f\x27\x09\xfe\x22\xe7\x95\x35\xb8\x4a\x17\x88\x43\xc2\xe4\x7c\x34\x99\xfd\x2e\x22\x0c\xb6\xc3\x51\x0e\x30\x96\xd1\x79\x02\x37\xca\xa3\x56\x9a\x40\xcf\x25\xb5\x0c\x65\x50\xda\x63\xab\x95\x34\x25\xa1\x57\xdc\x8c\x34\x67\x90\x54\x44\xf8\x7e\x86\xb0\x7b\x96\xca\x40\xa2\xb4\xed\x00\x5b\x5f\xe6\x41\xf2\x28\x38\xfc\x1a\xe6\xf6\x7a\x3e\xef\xfb\x3e\x95\xa3\xd8\xd4\xba\xc3\x5c\x9f\x12\xfd\xfc\x6b\xb6\x5a\x6f\xf2\xf5\xc7\xab\x74\x31\x96\xdc\x1b\x4d\xde\xc3\xd1\x8f\x4e\x39\xaa\xb0\x1f\x20\xdb\x56\xab\x52\xee\x35\x41\xcb\x1e\xd6\x41\x1e\x1c\x51\x05\xb6\x41\x6f\xef\x14\x2b\x73\x48\xe0\x6d\xcd\xbd\x74\x24\x22\x54\xca\xb3\x53\xfb\x8e\xdf\x99\xf5\xa2\x4e\xf9\x77\x09\xd6\x40\x1a\x4c\x96\x39\xb2\x7c\x82\x9b\x65\x9e\xe5\x89\x88\xf0\x90\x15\xb7\xdb\xfb\x02\x0f\xcb\xdd\x6e\xb9\x29\xb2\x75\x8e\xed\x0e\xab\xed\xe6\x73\x56\x64\xdb\x4d\x8e\xed\x1f\x58\x6e\xbe\xe3\x2e\xdb\x7c\x4e\x40\x8a\x1b\x72\xa0\xe7\xd6\x05\xfd\xd6\x41\x05\x1b\xa9\x0a\x9e\xe5\x44\xef\x04\xd4\xf6\x24\xc8\xb7\x54\xaa\x5a\x95\xd0\xd2\x1c\x3a\x79\x20\x1c\xec\x13\x39\xa3\xcc\x01\x2d\xb9\xa3\xf2\x61\x98\x1e\xd2\x54\x22\x82\x56\x47\xc5\x92\xc7\xc8\x4f\x4d\xa5\x42\xd4\xce\x1e\x71\x23\x3d\xdd\x16\xc5\xb7\x9c\xdc\x13\x8d\x22\xac\xe3\xd7\xe8\x8e\x7e\x74\xe4\xf9\x56\x9a\x4a\x93\x4b\xf0\x96\x29\xc4\xb7\xed\xae\x78\xdc\xdc\xff\x79\xb3\xde\xe1\x13\x7e\x5b\x2c\x16\x61\x3d\x8b\xb0\x21\xa5\x96\xde\xa3\x57\x5a\xa3\x19\x4b\x83\xa4\x01\xca\x94\xf6\x18\xb4\xba\x13\x6c\x2a\x4e\x89\x01\xf5\x4c\x11\xff\x3f\xf3\xec\x5a\x00\x11\xce\x6f\xaf\x7e\x7c\x59\x17\x2f\x58\x5e\x00\x15\xd5\xa8\xec\xe3\x97\x75\x11\x7b\xd2\xf5\x58\x04\x84\xc7\xd4\x93\xa9\x1e\x1d\xf9\xd6\x1a\x4f\xf1\xd5\x62\x31\xfb\xcf\x59\x43\xb2\x22\x17\x4f\x57\xd6\x30\x19\xfe\xc8\x43\x4b\xd3\x64\xca\xf4\xcc\xf3\x86\x8f\x7a\x7a\x51\xf0\x96\xef\xe3\x8b\x70\x1f\x2e\x46\x1a\xd6\x8b\xe2\xc9\x2d\x69\x6d\xf1\x60\x9d\xae\x3e\x4c\x66\x42\xb0\x1b\x4e\x3d\xac\x1c\x49\x26\x48\xf4\xb4\x87\x3f\xb9\x2e\x4d\x15\xc4\x2b\x73\x1a\x7b\x73\x6e\x93\x2d\x8e\xd2\x84\x31\x87\xe8\xcf\xee\xe1\xa5\xfe\xd3\xc5\x60\xe2\x78\x3a\x4d\x70\x31\x9c\x59\x72\x69\x70\xd0\xdb\x3a\x65\x18\xd3\x9c\xa5\x0b\xfb\x1c\x6e\xdc\x19\xc8\x1a\x8c\xf3\x9f\xe2\x1d\xc4\x2b\x53\x3a\xfe\x3d\xd6\xd6\x51\xa0\x9a\x89\xf3\x67\xe0\x8e\x86\xbd\x95\xae\xca\x0c\x93\x73\x5d\xcb\xd7\x6f\x34\x7f\xaf\xe0\xa8\x24\xf5\x44\x55\x02\xdf\x74\x1c\x6e\x1f\x2a\xdb\x9b\xb1\xad\x37\x1b\xa6\x17\x34\xb6\xfc\x87\x38\x2d\xb5\xf5\x14\xcf\xc4\xbf\x01\x00\x00\xff\xff\xb2\x70\x59\x70\x0d\x05\x00\x00") + +func examplesClusterDnsImagesBackendServerPyBytes() ([]byte, error) { + return bindataRead( + _examplesClusterDnsImagesBackendServerPy, + "examples/cluster-dns/images/backend/server.py", + ) +} + +func examplesClusterDnsImagesBackendServerPy() (*asset, error) { + bytes, err := examplesClusterDnsImagesBackendServerPyBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/cluster-dns/images/backend/server.py", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesClusterDnsImagesFrontendDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x6f\xdb\x3a\x10\x84\xef\xfc\x15\x03\xe9\xf2\x1e\xe0\xc8\x79\x3e\xbc\x02\xe9\x49\xb5\x13\x54\x48\x22\x15\x92\xd3\x20\x28\x7a\xa0\xa5\xb5\xb4\x00\x4d\xb2\xe4\xaa\x8a\xfe\x7d\x21\x27\x01\x9a\x96\xc7\x9d\xe1\xf0\xe3\x6c\x8a\xad\xf3\x73\xe0\x7e\x10\x6c\x2e\xff\xfb\x1f\xfb\x81\x70\x3b\x1e\x28\x58\x12\x8a\xc8\x47\x19\x5c\x88\x99\x4a\x55\x8a\x3b\x6e\xc9\x46\xea\x30\xda\x8e\x02\x64\x20\xe4\x5e\xb7\x03\xbd\x29\x2b\x7c\xa5\x10\xd9\x59\x6c\xb2\x4b\xfc\xb3\x18\x92\x57\x29\xf9\xf7\xa3\x4a\x31\xbb\x11\x27\x3d\xc3\x3a\xc1\x18\x09\x32\x70\xc4\x91\x0d\x81\x9e\x5b\xf2\x02\xb6\x68\xdd\xc9\x1b\xd6\xb6\x25\x4c\x2c\xc3\xf9\x99\xd7\x90\x4c\xa5\x78\x7a\x8d\x70\x07\xd1\x6c\xa1\xd1\x3a\x3f\xc3\x1d\x7f\xf7\x41\xcb\x19\x78\x39\x83\x88\xbf\x5a\xaf\xa7\x69\xca\xf4\x19\x36\x73\xa1\x5f\x9b\x17\x63\x5c\xdf\x15\xdb\xeb\xb2\xb9\xbe\xd8\x64\x97\xe7\x2b\x0f\xd6\x50\x8c\x08\xf4\x63\xe4\x40\x1d\x0e\x33\xb4\xf7\x86\x5b\x7d\x30\x04\xa3\x27\xb8\x00\xdd\x07\xa2\x0e\xe2\x16\xde\x29\xb0\xb0\xed\x57\x88\xee\x28\x93\x0e\xa4\x52\x74\x1c\x25\xf0\x61\x94\x77\x65\xbd\xd1\x71\x7c\x67\x70\x16\xda\x22\xc9\x1b\x14\x4d\x82\x4f\x79\x53\x34\x2b\x95\xe2\xb1\xd8\x7f\xae\x1e\xf6\x78\xcc\xeb\x3a\x2f\xf7\xc5\x75\x83\xaa\xc6\xb6\x2a\x77\xc5\xbe\xa8\xca\x06\xd5\x0d\xf2\xf2\x09\xb7\x45\xb9\x5b\x81\x58\x06\x0a\xa0\x67\x1f\x16\x7e\x17\xc0\x4b\x8d\xd4\x2d\x9d\x35\x44\xef\x00\x8e\xee\x05\x28\x7a\x6a\xf9\xc8\x2d\x8c\xb6\xfd\xa8\x7b\x42\xef\x7e\x52\xb0\x6c\x7b\x78\x0a\x27\x8e\xcb\x32\x23\xb4\xed\x54\x0a\xc3\x27\x16\x2d\xe7\xc9\x5f\x9f\xca\x94\xba\xa9\xab\x7b\xf8\x59\x06\x67\xaf\x36\xd9\x87\x8b\x68\xf8\xa4\x54\xfd\x50\xc2\xb3\x07\xdb\x28\xda\x98\x73\xb3\x14\x25\x2a\xb5\xad\xbe\x3c\x21\xc3\xba\xb3\xf1\xe2\x18\x9c\x15\xb2\x9d\x7a\xac\xea\xdb\x5d\x51\xff\x31\x55\xdb\xfb\x1d\xbe\x25\x2f\xe1\xc9\x0a\x49\x6b\x98\xac\x64\x7e\x4e\xbe\xab\x5f\x01\x00\x00\xff\xff\x94\x11\xef\x1a\xc4\x02\x00\x00") + +func examplesClusterDnsImagesFrontendDockerfileBytes() ([]byte, error) { + return bindataRead( + _examplesClusterDnsImagesFrontendDockerfile, + "examples/cluster-dns/images/frontend/Dockerfile", + ) +} + +func examplesClusterDnsImagesFrontendDockerfile() (*asset, error) { + bytes, err := examplesClusterDnsImagesFrontendDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/cluster-dns/images/frontend/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesClusterDnsImagesFrontendMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xc1\x4e\xe3\x48\x10\x86\xcf\xf4\x53\xfc\x8a\x39\x24\x52\xec\x00\x87\x3d\x64\xc5\xc1\x0b\x81\xb5\x60\x93\x55\x6c\x86\xe1\x34\xea\xb4\x2b\x76\x69\x3a\xdd\x3d\xdd\x6d\x4c\xde\x7e\x64\x13\xa4\x41\x33\x3e\xba\xfe\xfa\xea\xeb\xaa\x04\x37\xd6\x1d\x3d\x37\x6d\xc4\xd5\xc5\xe5\x5f\xa8\x5a\xc2\x43\xb7\x23\x6f\x28\x52\x40\xde\xc5\xd6\xfa\x90\x89\x44\x24\x78\x64\x45\x26\x50\x8d\xce\xd4\xe4\x11\x5b\x42\xee\xa4\x6a\xe9\xa3\x32\xc7\x17\xf2\x81\xad\xc1\x55\x76\x81\xe9\x10\x98\x9c\x4a\x93\xd9\xdf\x22\xc1\xd1\x76\x38\xc8\x23\x8c\x8d\xe8\x02\x21\xb6\x1c\xb0\x67\x4d\xa0\x37\x45\x2e\x82\x0d\x94\x3d\x38\xcd\xd2\x28\x42\xcf\xb1\x1d\xc7\x9c\x20\x99\x48\xf0\x72\x42\xd8\x5d\x94\x6c\x20\xa1\xac\x3b\xc2\xee\x7f\xcd\x41\xc6\x51\x78\xf8\xda\x18\xdd\x72\xb1\xe8\xfb\x3e\x93\xa3\x6c\x66\x7d\xb3\xd0\xef\xc1\xb0\x78\x2c\x6e\x56\xeb\x72\x95\x5e\x65\x17\x63\xcb\x93\xd1\x14\x02\x3c\xfd\xe8\xd8\x53\x8d\xdd\x11\xd2\x39\xcd\x4a\xee\x34\x41\xcb\x1e\xd6\x43\x36\x9e\xa8\x46\xb4\x83\x6f\xef\x39\xb2\x69\xe6\x08\x76\x1f\x7b\xe9\x49\x24\xa8\x39\x44\xcf\xbb\x2e\x7e\x5a\xd6\x87\x1d\x87\x4f\x01\x6b\x20\x0d\x26\x79\x89\xa2\x9c\xe0\x9f\xbc\x2c\xca\xb9\x48\xf0\x5c\x54\xff\x6e\x9e\x2a\x3c\xe7\xdb\x6d\xbe\xae\x8a\x55\x89\xcd\x16\x37\x9b\xf5\x6d\x51\x15\x9b\x75\x89\xcd\x1d\xf2\xf5\x0b\x1e\x8a\xf5\xed\x1c\xc4\xb1\x25\x0f\x7a\x73\x7e\xf0\xb7\x1e\x3c\xac\x91\xea\x61\x67\x25\xd1\x27\x81\xbd\x7d\x17\x0a\x8e\x14\xef\x59\x41\x4b\xd3\x74\xb2\x21\x34\xf6\x95\xbc\x61\xd3\xc0\x91\x3f\x70\x18\x8e\x19\x20\x4d\x2d\x12\x68\x3e\x70\x94\x71\xfc\xf3\xdb\xa3\x32\x21\xaa\xfc\x1e\xd7\x78\xbd\x14\xff\x6f\x57\x77\xc5\x57\x5c\xa3\x51\x3e\x63\xbb\x68\xac\x6d\x34\x7d\x53\xd6\x0c\x27\x23\x1f\x44\xf1\x5f\x7e\xbf\xc2\x35\xe8\x4d\x1e\x9c\xa6\xb4\x36\x21\xdd\x7b\x6b\x22\x99\x5a\x08\xa9\xf5\x12\xae\x0b\xad\x10\x7c\x90\x0d\x2d\xc5\x59\x6d\xd5\x77\xf2\xd8\x75\xac\x6b\xa4\xa9\xeb\xb4\x46\x1a\x71\x3e\x7d\x9f\x35\x5b\x9c\x4f\x47\xe6\x6c\x79\x3e\xad\xf2\xfb\x19\x32\x21\x06\xc2\x12\x23\x41\x9c\x35\x4a\xdb\xae\xc6\x89\x93\xa6\x23\xff\x0f\xfd\x42\x28\x4d\xd2\x2c\xc5\xcf\x00\x00\x00\xff\xff\x72\xd8\xc5\x86\x1a\x03\x00\x00") + +func examplesClusterDnsImagesFrontendMakefileBytes() ([]byte, error) { + return bindataRead( + _examplesClusterDnsImagesFrontendMakefile, + "examples/cluster-dns/images/frontend/Makefile", + ) +} + +func examplesClusterDnsImagesFrontendMakefile() (*asset, error) { + bytes, err := examplesClusterDnsImagesFrontendMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/cluster-dns/images/frontend/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesClusterDnsImagesFrontendClientPy = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6f\xdb\x46\x10\x85\xef\xfb\x2b\x5e\xc5\x83\x65\x40\xa5\x5c\x03\xbd\xb8\xd0\x81\x75\xdc\x56\x48\x2a\x15\xa6\xd2\x20\x27\x62\x45\x8e\xc8\x45\xc8\xdd\xed\xec\xd0\x8a\xfe\x7d\xb1\x14\x49\xd8\x49\x78\x21\x76\xdf\x9b\x99\x6f\xde\x26\x3f\xad\xfb\xc0\xeb\xa3\xb1\x6b\xb2\x2f\xf0\x17\x69\x9c\x55\x2a\xc1\xa3\xf3\x17\x36\x75\x23\xb8\xbf\xfb\xe5\x57\x1c\x1a\xc2\xfb\xfe\x48\x6c\x49\x28\x20\xeb\xa5\x71\x1c\x52\x95\xa8\x04\x1f\x4c\x49\x36\x50\x85\xde\x56\xc4\x90\x86\x90\x79\x5d\x36\x34\x29\x2b\xfc\x4b\x1c\x8c\xb3\xb8\x4f\xef\xb0\x8c\x86\xc5\x28\x2d\x6e\x7f\x53\x09\x2e\xae\x47\xa7\x2f\xb0\x4e\xd0\x07\x82\x34\x26\xe0\x64\x5a\x02\x7d\x2d\xc9\x0b\x8c\x45\xe9\x3a\xdf\x1a\x6d\x4b\xc2\xd9\x48\x33\x8c\x19\x9b\xa4\x2a\xc1\xe7\xb1\x85\x3b\x8a\x36\x16\x1a\xa5\xf3\x17\xb8\xd3\x6b\x1f\xb4\x0c\xc0\xf1\x6b\x44\xfc\xc3\x7a\x7d\x3e\x9f\x53\x3d\xc0\xa6\x8e\xeb\x75\x7b\x35\x86\xf5\x87\xed\xe3\xd3\x2e\x7f\xfa\xf9\x3e\xbd\x1b\x4a\x3e\xda\x96\x42\x00\xd3\x7f\xbd\x61\xaa\x70\xbc\x40\x7b\xdf\x9a\x52\x1f\x5b\x42\xab\xcf\x70\x0c\x5d\x33\x51\x05\x71\x91\xf7\xcc\x46\x8c\xad\x57\x08\xee\x24\x67\xcd\xa4\x12\x54\x26\x08\x9b\x63\x2f\x6f\xc2\x9a\xe8\x4c\x78\x63\x70\x16\xda\x62\x91\xe5\xd8\xe6\x0b\xfc\x9e\xe5\xdb\x7c\xa5\x12\x7c\xda\x1e\xfe\xda\x7f\x3c\xe0\x53\xf6\xfc\x9c\xed\x0e\xdb\xa7\x1c\xfb\x67\x3c\xee\x77\xef\xb6\x87\xed\x7e\x97\x63\xff\x07\xb2\xdd\x67\xbc\xdf\xee\xde\xad\x40\x46\x1a\x62\xd0\x57\xcf\x91\xdf\x31\x4c\x8c\x91\xaa\x98\x59\x4e\xf4\x06\xe0\xe4\xae\x40\xc1\x53\x69\x4e\xa6\x44\xab\x6d\xdd\xeb\x9a\x50\xbb\x17\x62\x6b\x6c\x0d\x4f\xdc\x99\x10\x1f\x33\x40\xdb\x4a\x25\x68\x4d\x67\x44\xcb\x70\xf3\xdd\x52\xa9\x52\xa6\xf3\x8e\x05\x9a\x6b\xaf\x39\xd0\x74\x8e\x51\x52\x90\x30\x9d\x83\x2b\xbf\x90\x28\x75\x62\xd7\xa1\xe7\x76\x30\x63\x14\xa7\xb3\x52\xaa\xa2\x13\x1e\x1b\x2a\xbf\xe4\xc4\x2f\xa6\xa4\xac\xaa\xe2\x6a\x4b\x7d\xfd\xdf\x3e\x28\xa0\x71\x41\xac\xee\x08\x9b\xb9\x72\xd6\xd3\x49\x54\x40\xb8\xb6\x28\x46\x0d\x9b\x91\x22\xad\x49\xa2\xed\x78\x89\xc6\xe5\x54\x71\xab\x00\xcf\xc6\xca\xb7\x85\x23\xd6\x9f\x24\x11\x8a\xf8\x99\x82\x77\xf6\xd5\xd0\x87\xb9\xf2\x26\x27\x5b\x4d\xcb\x43\xdc\xc3\xcd\x0a\x53\x17\x80\xc7\x42\x6c\xe6\x7c\x22\xcb\xdc\x67\x6e\x33\x19\xbf\xbb\x48\x4b\x67\x85\xac\x8c\x48\x7f\x6b\x63\x97\xd7\xf1\x31\x05\xc6\x66\x7e\x88\x34\xe3\xba\xef\xc8\xca\x3f\x83\xb2\xbc\x9d\x4d\xa9\xae\xaa\x42\x8f\xea\xf2\x66\x1c\x7e\x13\x0d\x9a\xeb\x18\xd3\xe8\x1b\x7e\xd1\x19\x86\xea\x1f\x3e\x0b\xd7\x21\x7d\x85\xff\x83\x8c\xde\x38\x94\x32\x27\x14\x45\x8c\xbb\x28\xb0\xd9\x60\x51\x14\x9d\x36\xb6\x28\x16\x71\x8b\xeb\x3e\xea\xff\x00\x00\x00\xff\xff\x42\xec\xd5\x8a\xb7\x04\x00\x00") + +func examplesClusterDnsImagesFrontendClientPyBytes() ([]byte, error) { + return bindataRead( + _examplesClusterDnsImagesFrontendClientPy, + "examples/cluster-dns/images/frontend/client.py", + ) +} + +func examplesClusterDnsImagesFrontendClientPy() (*asset, error) { + bytes, err := examplesClusterDnsImagesFrontendClientPyBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/cluster-dns/images/frontend/client.py", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesClusterDnsNamespaceDevYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xca\x31\x0e\x80\x20\x0c\x05\xd0\xbd\xa7\x68\xb8\x81\x6b\x0f\xe1\xe8\xfe\x95\x3f\x10\x69\x21\x42\x38\xbf\x71\x77\x7e\x0f\xbd\x1c\x7c\x46\x69\x61\xba\x36\xb9\x4b\x64\xd3\x1d\xce\xd1\x71\x51\x9c\x13\x19\x13\x26\xaa\x01\xa7\x69\xca\x5c\xac\xad\x3b\x63\x26\x51\xad\x38\x59\xc7\xe7\xff\xe3\x0d\x00\x00\xff\xff\x2a\x00\x9e\xcf\x61\x00\x00\x00") + +func examplesClusterDnsNamespaceDevYamlBytes() ([]byte, error) { + return bindataRead( + _examplesClusterDnsNamespaceDevYaml, + "examples/cluster-dns/namespace-dev.yaml", + ) +} + +func examplesClusterDnsNamespaceDevYaml() (*asset, error) { + bytes, err := examplesClusterDnsNamespaceDevYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/cluster-dns/namespace-dev.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesClusterDnsNamespaceProdYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xca\xb1\x11\xc3\x20\x0c\x05\xd0\x5e\x53\xfc\x63\x83\xb4\x1a\x22\x65\xfa\x1f\x50\xa1\x33\x08\x0e\xb0\xe7\xf7\xb9\x77\xfd\x1e\x87\xff\x6c\x2e\xef\xa1\xb8\x3e\x72\x78\x14\xc5\x97\xcd\xd6\x60\x36\x69\xb6\x59\xb8\xa9\x02\x04\x9b\x29\xd2\x98\xbd\x9c\x79\x7b\x8f\x24\x40\xe5\xdf\xea\x7a\xf8\x35\xdc\x01\x00\x00\xff\xff\x9a\x53\x41\x6a\x5f\x00\x00\x00") + +func examplesClusterDnsNamespaceProdYamlBytes() ([]byte, error) { + return bindataRead( + _examplesClusterDnsNamespaceProdYaml, + "examples/cluster-dns/namespace-prod.yaml", + ) +} + +func examplesClusterDnsNamespaceProdYaml() (*asset, error) { + bytes, err := examplesClusterDnsNamespaceProdYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/cluster-dns/namespace-prod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesCockroachdbOwners = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x4a\x2d\xcb\x4c\x2d\x4f\x2d\x2a\xb6\xe2\x52\x50\xd0\x55\x48\xd4\x2d\xca\x4f\xca\xcc\x2b\xce\xcf\xe3\x4a\x2c\x28\x28\xca\x2f\xc3\x26\x03\x08\x00\x00\xff\xff\x19\xf4\x3b\xc9\x34\x00\x00\x00") + +func examplesCockroachdbOwnersBytes() ([]byte, error) { + return bindataRead( + _examplesCockroachdbOwners, + "examples/cockroachdb/OWNERS", + ) +} + +func examplesCockroachdbOwners() (*asset, error) { + bytes, err := examplesCockroachdbOwnersBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/cockroachdb/OWNERS", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesCockroachdbCockroachdbStatefulsetYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x58\x6d\x93\xdb\xb6\xf1\x7f\x7f\x9f\x62\xff\xfa\xa7\xe3\x73\x7b\x94\xce\xee\xc4\x49\x35\xbd\xce\x38\x67\xd7\x73\x93\xf8\xa2\xfa\xdc\xe4\x45\x9a\x71\x56\xc0\x52\x44\x0f\x04\x18\x60\x29\x59\xad\xfb\xdd\x3b\x0b\x90\x94\xc8\x93\x93\xc6\xf4\x0b\x9f\x48\xe0\xb7\x0f\xd8\x87\xdf\x02\x1b\xf3\x1d\x85\x68\xbc\x5b\xc2\xf6\xc9\xd9\xbd\x71\x7a\x09\x77\x14\xb6\x46\xd1\x59\x4d\x8c\x1a\x19\x97\x67\x00\xff\x0f\x6f\x2b\x13\x21\xe6\x4f\x60\x22\xd4\x84\x8e\x81\x3d\xac\x09\xda\x48\x1a\xd6\x7b\x50\xd6\x90\xe3\x08\xbe\x04\xae\x08\x64\xf3\x1a\x23\xcd\xe1\x86\x81\xde\x37\x3e\x52\x04\x84\x6b\xdb\x46\xa6\x70\xb3\x02\xae\x90\x61\x67\xac\x4d\x12\xb0\x65\x5f\x23\x1b\x85\xd6\xee\xc1\x7a\xd4\xb0\x46\x8b\x4e\x11\x28\xef\x1c\x29\x36\xde\x45\x11\x99\xc0\x4d\x59\x52\x20\xc7\x83\x18\x68\xbc\x8e\xf3\x33\x00\x87\x35\x2d\x41\x79\x75\x1f\x3c\xaa\x4a\xaf\x8b\xa6\x5d\x5b\xa3\xce\x00\x2c\xae\xc9\x46\xb1\x08\x00\x9b\x66\xb4\xea\x2c\x36\xa4\xe4\x53\xe3\x03\xc7\xde\x6a\x82\x1a\x8d\x4b\xef\x2e\x92\xfd\xd9\xd4\xcd\x9b\xd5\x75\xf7\x3b\xc2\xca\x47\xde\x04\x8a\x45\x69\x71\xeb\x03\xdc\xfd\xed\x9b\x0b\x30\x8e\x29\x38\xaf\x29\x01\x71\xc0\xb2\x34\x0a\xd0\xe9\xa4\xbe\xb2\x46\x54\x2d\x12\xf0\x12\x9e\x3e\x7b\xfa\xf9\x17\x49\x2b\xc6\xb0\x21\x5e\x4d\xde\x66\x93\x36\xa1\x51\x83\x5a\x91\x94\x77\x1a\xc3\x3e\x41\xf4\xaa\x08\xf6\xdf\x6f\x00\x23\xec\xc8\x5a\xf9\xbf\x22\xb4\x5c\x25\xc1\x9a\xd6\xed\x06\xc8\xe9\xc6\x1b\xc7\xf1\x58\x81\x2f\x2f\xbf\xbc\x7c\x20\x7f\x78\x99\xc5\x57\xcc\xcd\x19\x40\x24\x4b\x8a\x7d\xf8\x88\x17\x8b\xa2\x38\xfb\xd4\xb8\xf2\xce\xee\x81\xde\x9b\xc8\xe9\x9c\x55\x20\x64\x82\x17\xb7\x77\x40\x8e\x83\xa1\x08\xa5\x0f\x40\xa8\x2a\x39\x6c\x30\x2e\xd9\x1b\x19\x99\xca\x36\x47\x51\x24\x86\xd8\xaa\x2a\x07\x17\x57\xb4\x07\x85\x0e\x02\x45\x6f\xb7\x94\xf7\x7a\xae\x28\x3c\x8a\x70\xb3\x02\xd4\x3a\x50\x8c\x14\x53\x90\x6a\x4f\x11\x9c\xe7\x84\xd4\x49\xc7\x14\x8a\x45\x17\x8a\xfa\x28\x7c\xc5\xa5\xb1\xf2\xad\xd5\xb2\x67\x48\x04\x6d\x02\x29\xb6\xfb\xa3\x8c\x48\x78\xc6\x41\xed\x23\x83\x32\x41\xb5\x75\x64\x81\x3b\x1d\xaf\xbf\x16\xa8\x00\xe8\x9c\x67\x4c\x09\x91\xd7\x74\x8e\x34\x11\x1c\x91\x26\x2d\xee\xab\xf1\x9e\x92\x83\x1a\xa2\x50\x94\xc6\x69\x0a\xb0\xf3\xe1\x1e\x9a\xe0\x1b\x0a\x76\x9f\xc3\xd1\x43\x45\xb6\x01\xdc\x7a\xa3\x3b\x30\xd2\x1b\x02\x85\x92\xb0\xbb\x8a\x02\x81\x71\x59\x61\xb8\x04\xe5\x6b\x8a\xd0\x36\x80\x25\x53\x00\xeb\xa3\x71\x1b\x30\x1c\x53\x26\x26\x48\xd1\x41\x4e\xb0\x43\xd3\xa4\x8c\x26\x41\x12\xc7\x83\xe1\xde\x6d\x83\x8b\x1d\xed\x40\x65\xc7\x82\x0f\xc0\x61\x2f\x6a\xfd\xd3\x1b\x07\xe8\x72\x44\x18\xb7\xe9\xe0\xbc\x93\x92\x52\x0a\x4e\x06\x88\x13\x84\x5d\x45\xee\x48\x4a\x85\x5b\x4a\x58\xa4\x4f\xa3\x5d\xc0\x8e\x1e\x69\x49\x0c\x31\x6b\x67\xb8\x02\xde\x79\x88\xd4\x60\x10\xfd\x3a\xdc\x08\xd6\x44\x26\x27\xe6\xe6\xd8\x82\x88\x35\xf5\xd1\xdb\xbb\xae\x4b\xaf\x0b\xd8\x55\x46\x55\xb0\x4b\x3a\xac\x09\xb6\x14\xf6\xb0\x46\x3d\x4f\x0b\xbb\x4d\x73\xb4\x4d\x85\xf3\xfb\x76\x4d\xc1\x11\x53\x9c\x1b\xbf\x60\x6f\x49\x04\x17\xad\x0b\x84\x7a\x5f\x0c\x29\xbb\x84\x19\x87\x96\x66\x9d\xac\x97\x0e\xd7\x96\x0e\x95\x13\x6a\xef\x0c\xfb\x20\x1a\xfa\x12\xd0\xda\xe1\xe0\x62\xf6\xca\x2a\xf8\x5a\x4e\xa1\x4d\xb1\x12\x5a\x97\xac\xe9\x12\xa9\xb3\x33\x2b\xd8\x0c\x2b\x45\xa5\xa8\x02\x36\x34\x12\x3f\x5e\xd0\x20\x57\x4b\x98\xbd\x93\x64\x6c\xe3\x62\x8b\x21\x9e\x5c\x96\x0a\xcb\x4c\x2a\xcb\xec\x61\xc1\xfd\xa4\x72\xf8\x09\x25\x4c\xf5\x39\xbc\x84\x5b\xef\xe8\xb7\x17\xb5\xc6\x5b\xa3\xf6\x8b\xed\x93\x35\x31\xf6\x05\x6e\xe5\xf5\x0b\x13\x43\xdb\x48\x5e\x7e\xd5\xea\x0d\xf1\xa8\xd8\x3d\xec\x4b\xeb\xbc\xe8\x7f\xec\x4b\x63\x1d\x6b\x64\x55\x7d\x73\xb4\xef\x64\xa1\xa8\x8d\x7b\xbe\x45\x63\x25\x4e\x96\xf0\xec\x8b\xdf\x3d\x30\x05\x9b\x26\x4e\x0c\xb9\xeb\x0a\xea\xdd\xaf\x19\x70\xa4\x5a\x8a\xe6\xdb\xb4\x60\x76\xb4\x42\x62\x20\x50\x63\x8d\xc2\xb8\x84\x3f\x9e\x01\x30\xd5\x8d\x45\xa6\xce\x8a\x23\x78\x79\xec\xc8\xa0\x93\x26\x01\xf4\x52\x73\x12\xdc\x38\x29\x04\xde\x31\x1a\x27\x49\x8a\x81\x24\xb0\x73\x33\xf1\x52\xb3\xba\xf0\xb6\xa6\x24\x36\x35\xa5\xd4\x90\x06\x72\x01\x6b\x2a\x7d\xa0\x01\xca\xf0\xa3\x28\xed\x24\x30\xa5\x52\x20\xdd\x46\x76\x96\x26\x44\x06\xd9\x9b\xda\x44\x85\xa9\x3d\xd1\x7b\x93\x7a\x8d\xa2\x18\xcb\xd6\xda\xfd\x80\x93\x61\x73\xed\xf5\xfa\x51\xcc\x1c\x62\xa2\x23\x5a\xeb\x77\xb9\x52\x27\x91\xf3\x61\x7b\x2a\xe5\x0d\x06\x36\xaa\xb5\x18\xc0\x8c\x2c\xcc\x5d\x0a\x53\x5b\xb4\xde\xdf\x77\x7a\xa6\xa6\x96\x38\x10\x18\x37\x40\xa5\x22\x45\x3c\x14\x79\x4d\x4c\xa1\x36\xee\x50\x8d\x7d\x48\xdd\x0b\x87\xea\x89\x36\x15\x9d\xae\x0f\x1f\xb4\xba\x29\x01\xdd\xfe\x58\x4e\x5a\x71\x31\xae\xc3\xa5\xb1\x83\xc3\x87\x73\x2b\xe4\x88\x07\xa0\xdc\x20\x7d\xae\xf1\x0d\xc6\x98\x7b\xb5\x71\xa5\x0f\x75\x6a\x6a\x80\xd6\xbb\x4d\x4f\xf5\x9a\x60\x6a\xe1\x39\x07\x0f\xc8\xfa\x01\xae\x3b\x8d\xa1\xc9\xa0\xf8\xaa\xae\xd1\xe9\xc2\x8a\xa1\xa5\xc5\x4d\x5a\xd1\x46\xca\x45\x30\xb9\x5b\xea\xde\x75\xaf\xe0\x8b\xaf\x26\xde\x4f\xc1\x53\x23\xa7\xb2\x9f\x36\x61\x77\x94\x8d\x24\x8e\xb4\x01\x86\xad\xb7\x6d\x9d\xd8\x30\xd5\x0d\xef\xa1\x00\x93\xba\x52\x85\xf1\x60\xac\xf4\xc4\x32\xf8\x5a\x00\x02\x6d\x8d\x6f\xc5\x71\xa4\x5a\x31\xf4\x22\x9b\x9e\x16\x09\x11\x06\xb4\x3b\xdc\xc7\x9e\x4b\x0c\x4a\x1d\x1f\xc2\xde\xb7\x01\xbe\x1e\x1a\xc6\x70\x6e\x6d\xa6\xd7\xaa\x8d\xec\xeb\x14\x1d\xda\x4b\xdc\x5d\xc8\x8e\x8c\x2e\x9d\xf0\x10\x1a\x5e\xd8\x8f\x74\x44\xd4\xda\x88\x36\x68\x01\x43\xe7\x76\x89\x40\xaf\x97\x30\x2b\x32\xca\xd5\x9f\x45\x6e\x91\xd1\xbb\x77\x7f\x99\x75\x60\x12\xa0\xd7\x43\x74\xf7\xa9\x59\x74\x05\x63\xed\x3d\x47\x0e\xd8\x0c\x59\x6d\x6a\xdc\x8c\x2b\xc9\xe2\x10\x2b\xf7\x5f\xc6\x42\x00\x97\x97\xf3\xa7\xe3\x1d\xab\xd6\xda\x55\xaa\xbc\x4b\xb8\x29\x6f\x3d\xaf\x02\x45\x72\x7c\xa8\x16\x61\x73\x54\x3b\x0a\x98\x15\xde\x15\xe9\xb4\xaf\x16\xfd\x5f\xf3\x58\xcd\x46\x4b\xba\xda\x75\x35\xa9\x5a\xf9\x21\xb7\x3d\x06\xcc\x06\xad\xbe\x7d\xf1\xee\xf6\xf9\xeb\x97\x77\xab\xe7\xd7\x2f\x87\xaf\x00\x5b\xb4\x2d\xfd\x35\xf8\x7a\x79\xf4\x12\xa0\x34\x64\xf5\x1b\x2a\xc7\x6f\xbb\xf7\xab\xd4\x37\xfb\x32\x38\x17\x01\xb1\x41\x45\xc3\xda\x1c\x64\xaf\x7d\xeb\x38\x3e\x54\x45\x36\x69\x13\x8e\x90\x6b\x59\x99\x51\x67\x07\xaf\x2e\xc6\xb9\xd8\x1b\x28\x43\x89\x33\xbc\x3f\x00\x37\x5e\x3f\x77\x6c\x9e\x3f\xf8\x20\x9d\x9c\x4a\x0a\x81\xf4\x8b\x56\x18\xc6\x9d\xaa\x48\xb7\xd6\xb8\xcd\xcd\xc6\xf9\xe1\xf5\xcb\x3e\xb6\x8f\xb7\x16\xb0\x23\xb3\xa9\x78\x09\x4f\x2e\x2f\x47\x6e\x10\x79\x9d\xac\xb7\x14\xea\xa9\x8f\x52\x3f\xb8\x1b\x35\xbe\xe3\x27\x35\xc1\x97\xef\x1b\xe1\xf0\x07\x32\x7c\xfc\x14\x70\x4f\xfb\xd4\xe5\x1e\x7c\x02\x10\x16\x8c\x02\x0c\x37\xee\xc4\xe7\x74\x9e\x27\x30\x05\x75\xda\x93\x0e\x0f\xfb\xc6\x5b\xbf\xd9\x7f\x2d\x72\xc7\xc4\xae\xf2\x91\xe5\xdc\xba\x1d\xea\xa3\x29\x73\x0a\xfd\x97\x92\x66\xb9\x7d\x32\xbf\x9c\x7f\xfe\x1b\xd3\x65\xe0\x5d\x07\xa3\x3a\x85\xa6\x84\x2b\x3f\x23\xda\xf5\x91\x3d\x03\xe1\x3a\xde\xd2\xd1\xae\xce\xab\x9f\x1e\xd0\x1f\x8d\xe7\x61\x79\x57\xf9\xc7\xb1\x37\x5b\xac\x8d\x5b\xac\xf1\x38\xf3\x73\xee\x93\x7a\x3f\x7e\xf5\x61\x74\x98\x79\xd2\x96\xbe\xe1\x4b\xf8\xb9\x45\x6b\x4a\x43\x1a\x7e\xea\xcf\x11\x8a\xf2\x27\x29\xff\x2a\xb4\xca\xa0\x5d\x4e\x36\x7f\x9b\x5a\xa5\xf3\x9a\x52\xc7\x77\x8f\x18\x12\x5f\x67\x9f\x1a\xb7\x30\x0c\xe9\x6f\xad\x3b\x40\xf7\xc8\xf3\x11\xd4\xf5\x9b\xe7\x6f\x5e\xdd\x5d\x9d\xcf\x52\x05\x9b\xc1\xac\x28\xac\xdf\xb0\x8f\xac\x29\x84\xf4\xdb\xb8\x48\xaa\x0d\x94\x7e\x08\xca\x0c\x66\x9f\x9d\x1f\x29\xfa\x38\x7f\x61\x6e\xfa\xcf\x97\xf3\xf4\x6f\xf6\x78\xa2\xf6\xf7\xdd\x20\xbe\xeb\x6e\x78\x24\x39\x0d\x5a\xf3\xaf\xe9\xa4\x76\xbe\xde\x83\xaf\x0d\xa7\x5e\x2a\x96\xa4\x81\x4d\xfa\xed\x14\xd2\x94\x32\x62\x05\x82\xd8\x26\x5e\x84\xdc\xfd\x3e\xb0\x2b\x71\x13\x9c\x9b\x39\xcd\x41\x26\xd5\xf7\x70\xf9\xb8\xbb\x2d\x41\x9e\xa0\x71\x1a\x49\x7b\x8f\x0e\x9c\x24\x3b\xba\x9f\x69\x30\x53\xa8\xfe\x32\xaa\xd7\xf9\x24\x5c\x9e\x9c\x63\xdb\x34\x3e\x66\x46\xb6\x16\x5b\xfb\xfd\xe7\x79\x92\x33\x4e\x1b\x95\x68\x4e\x32\x60\x60\x4c\x13\xb8\x31\x7f\x4a\x36\xec\xa8\x9f\x45\xd3\x4c\x9e\x9c\x20\xa4\xeb\x70\xc7\x91\x1d\xeb\x1d\x3d\x9e\x4f\xe0\x6e\x84\x93\x96\x42\x64\xd8\x27\x5e\x2b\xf3\xa9\x6f\x19\x8a\x22\xb9\x5b\xd8\x12\x04\x4a\x91\x21\x7e\x9e\x3a\x67\x02\x77\xe4\xaa\xb1\x24\x53\xc2\x0f\xf0\x7f\xc7\x41\xf3\x78\x06\x57\x57\x23\x36\x5f\x5c\xce\xe0\x47\xf8\xf0\x01\xfe\x31\xad\x89\x3f\x40\x41\xbf\xd0\x6f\x16\x9d\xab\xde\x65\xa7\xbc\xab\x31\xdc\x53\x98\xc1\x8f\x23\x1c\xae\x68\x5a\x86\x53\x34\x6a\x2f\xb6\x24\x6b\x8f\x94\x11\x96\xe9\x83\x96\x33\xf5\xf9\xf2\x42\xbc\x28\x51\x24\xb4\xad\x6e\x86\x19\x7f\x74\xd6\xdd\xad\x82\xe1\x48\xb6\xec\x67\x74\xd5\x86\x40\x8e\xed\x3e\x71\x6b\x11\xb6\xf3\xe1\xfe\xc1\xe6\x73\xc9\x9e\xb8\x5c\x2c\x36\x86\xab\x76\x3d\x57\xbe\x5e\x9c\x2c\xc7\x0b\x13\x63\x4b\x71\xf1\xa7\x67\x4f\x3f\x9f\x1c\x68\x9f\xcc\x7f\xb8\x3a\x9f\xe5\x13\x9c\x8d\x5d\x9c\xef\x2a\x27\x49\x59\x9a\xd1\x4f\xe1\x8f\x27\x8b\x21\x7c\xf6\xef\x0c\xff\xc3\xef\x7f\xfc\xcf\xc0\xf4\x6e\xbd\xf4\xee\x22\xb2\x6f\xa0\x92\xc2\x23\xa3\x3f\xfd\xdc\x9a\x40\xfa\x02\x10\xee\x6e\x5e\xbd\x7d\xf9\xe6\x35\x34\xb6\x8d\x10\x7d\x4d\x69\xd4\x91\x55\x68\x6d\x0a\xf6\x47\x07\x42\xdb\xdd\x2f\xc9\xc8\xb1\x09\xa8\x64\x4e\x84\x58\xb5\xac\xfd\xce\xe5\xc9\x4a\xce\xa0\x37\x3a\x4f\x1b\x89\xd4\xbf\x92\xd5\x2b\x0a\xc6\xeb\xbb\x74\x77\x19\x97\xf0\xac\xef\x15\xb9\x29\x3c\xe8\x83\xd3\x6e\x70\x20\xdf\xdf\xa5\x0d\xd7\x16\xcd\x88\x33\x28\x79\x71\x3b\xd9\xbb\x3d\xac\x7d\xdb\x4d\x9f\xdd\x75\xc3\x74\xfc\x3c\x25\xf5\xc1\x5d\xdb\x41\xdf\x93\xb7\x37\x91\x7d\xc0\x0d\x15\xca\x62\x8c\x4b\x49\x41\xae\xfa\x50\x3c\x9e\x5c\x31\x0d\x8e\xaf\x25\x13\x47\x9c\xf5\x0d\xa1\xfe\x3e\x18\xa6\x6f\x9d\xa2\xbe\x3b\x05\x8a\xbe\x0d\xea\x78\xa9\x9c\x20\x45\x1e\xf1\x93\x4e\xf6\x12\x9e\xbc\x32\x67\xff\x0d\x00\x00\xff\xff\xd7\x92\x47\x75\xde\x17\x00\x00") + +func examplesCockroachdbCockroachdbStatefulsetYamlBytes() ([]byte, error) { + return bindataRead( + _examplesCockroachdbCockroachdbStatefulsetYaml, + "examples/cockroachdb/cockroachdb-statefulset.yaml", + ) +} + +func examplesCockroachdbCockroachdbStatefulsetYaml() (*asset, error) { + bytes, err := examplesCockroachdbCockroachdbStatefulsetYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/cockroachdb/cockroachdb-statefulset.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesCockroachdbDemoSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x54\x5f\x6f\xdb\xb6\x17\x7d\xe7\xa7\x38\x95\x8b\x9f\x6d\xc0\x96\x93\xfc\x86\x3d\x34\xc5\x06\xc5\x51\x36\x21\xa9\x55\x58\x4a\xbb\x00\x7b\xa1\xa8\x6b\x8b\xb3\x4c\xaa\x24\x15\xd5\xeb\xfa\xdd\x07\xd2\x49\x9a\xac\xf5\x93\x7c\xff\x1e\x9e\x7b\xee\x1d\xbd\x5a\xf4\xd6\x2c\x2a\xa9\x16\xa4\xee\x51\x71\xdb\x30\x36\xc2\x52\x77\x07\x23\xb7\x8d\xc3\xd9\xc9\xe9\xcf\x28\x1b\xc2\x75\x5f\x91\x51\xe4\xc8\x22\xe9\x5d\xa3\x8d\x8d\xd9\x88\x8d\x70\x23\x05\x29\x4b\x35\x7a\x55\x93\x81\x6b\x08\x49\xc7\x45\x43\x8f\x9e\x19\x3e\x90\xb1\x52\x2b\x9c\xc5\x27\x98\xf8\x80\xe8\xc1\x15\x4d\xcf\xd9\x08\x07\xdd\x63\xcf\x0f\x50\xda\xa1\xb7\x04\xd7\x48\x8b\x8d\x6c\x09\xf4\x59\x50\xe7\x20\x15\x84\xde\x77\xad\xe4\x4a\x10\x06\xe9\x9a\xd0\xe6\xa1\x48\xcc\x46\xb8\x7b\x28\xa1\x2b\xc7\xa5\x02\x87\xd0\xdd\x01\x7a\xf3\x3c\x0e\xdc\x05\xc0\xfe\xd7\x38\xd7\xbd\x59\x2c\x86\x61\x88\x79\x00\x1b\x6b\xb3\x5d\xb4\xc7\x40\xbb\xb8\xc9\x96\xe9\xaa\x48\xe7\x67\xf1\x49\x48\xb9\x55\x2d\x59\x0b\x43\x9f\x7a\x69\xa8\x46\x75\x00\xef\xba\x56\x0a\x5e\xb5\x84\x96\x0f\xd0\x06\x7c\x6b\x88\x6a\x38\xed\xf1\x0e\x46\x3a\xa9\xb6\x33\x58\xbd\x71\x03\x37\xc4\x46\xa8\xa5\x75\x46\x56\xbd\x7b\x41\xd6\x23\x3a\x69\x5f\x04\x68\x05\xae\x10\x25\x05\xb2\x22\xc2\x45\x52\x64\xc5\x8c\x8d\xf0\x31\x2b\x7f\xcf\x6f\x4b\x7c\x4c\xd6\xeb\x64\x55\x66\x69\x81\x7c\x8d\x65\xbe\xba\xcc\xca\x2c\x5f\x15\xc8\xaf\x90\xac\xee\x70\x9d\xad\x2e\x67\x20\xe9\x1a\x32\xa0\xcf\x9d\xf1\xf8\xb5\x81\xf4\x34\x52\xed\x39\x2b\x88\x5e\x00\xd8\xe8\x23\x20\xdb\x91\x90\x1b\x29\xd0\x72\xb5\xed\xf9\x96\xb0\xd5\xf7\x64\x94\x54\x5b\x74\x64\xf6\xd2\xfa\x61\x5a\x70\x55\xb3\x11\x5a\xb9\x97\x8e\xbb\x60\xf9\xee\x51\x31\x63\x96\x1c\xe6\xd4\x6b\x74\xb2\xa3\x0d\x97\x2d\x63\x9b\x5e\x09\x9f\x00\xfb\xa9\x9d\x4c\xf1\x85\x01\x23\x94\xf9\x65\x3e\xd9\xa9\xbf\xa7\x6f\xf0\xb1\x39\xa0\xd6\x64\x43\xa5\xbd\x36\x04\x59\x4b\xbd\xe7\x4e\x0a\x18\xe2\x35\x36\x46\xef\x61\x5d\x2d\x55\xd0\x4c\x67\x74\xdd\x0b\x02\x57\x87\x50\x4a\xf7\xae\xeb\xdd\xaf\x0c\xd8\xf5\x15\x09\xd7\x82\x3e\x93\x40\x24\xb4\xd8\x19\xcd\x45\x53\x57\xf3\xd7\x5f\x4e\xbf\x46\x98\xcf\xb1\x78\xb2\x7e\xfb\xf2\xc0\xf0\x27\x0b\x4a\xc1\x7c\xde\x68\xeb\xbe\xcf\x8e\x9f\x19\xa2\x67\xd1\x52\x59\x12\xbd\xa1\x6f\x26\x42\xf4\x7a\x22\xb8\xc3\xa2\xa6\xfb\x45\xc0\x3d\x8d\xd8\xd7\x67\x44\xec\x64\xfb\xc8\xc4\xab\x97\xa0\xe7\x3f\xe8\x7c\xc4\xed\x57\xd6\xaf\x2b\xe6\x02\xd1\xd0\xf8\x75\x71\xa6\xa7\x73\xd4\x3a\xd4\xc3\xa9\xff\x54\x14\xe1\x7f\xbf\x1c\x3b\xab\xbe\x6d\x7d\xdb\x11\x96\x86\xb8\x23\xd4\xdc\xf1\x8a\x5b\xf2\x62\xb3\x24\xb4\xaa\xa1\x74\x4d\x98\xc8\x9a\xf6\x9d\x76\xa4\x5c\x7b\x08\xba\x10\x5a\xdd\x93\x92\xa4\x04\x4d\x63\xe6\xdf\xf2\xf6\x6d\x9a\x5f\xe1\x9f\x40\xd5\x29\x5b\xae\xd3\xa4\x4c\x71\x99\x94\xc9\x45\x52\xa4\xc8\xae\xb0\xca\x4b\xa4\x7f\x64\x45\x59\x60\xa3\xf5\xf9\x63\x48\x99\x5c\xdc\xfc\xc0\x1f\x57\xdc\x60\xb2\x43\x51\xae\xb3\xd5\x6f\x78\xbf\xce\xde\x25\xeb\x3b\x5c\xa7\x77\x33\xdc\x3f\x58\xa7\xe7\x60\xb7\xef\x8b\x74\x5d\x22\x5b\x95\xf9\x53\xda\x87\xe4\xe6\x36\x2d\x30\x19\x87\x13\x35\x9e\x61\x1c\xce\xd4\x78\x3a\xc3\x64\xbc\x7c\x24\xcf\xdb\x2f\x2f\xc6\xd3\x73\x96\xe6\x57\x9e\x84\x6b\x4f\x92\x97\x58\x78\xf3\x40\xf8\xab\xb7\x0e\x22\x50\x53\x07\x87\x0b\xeb\xad\x55\xcc\x8e\x84\xfa\xac\xb5\x17\xa0\x77\x7a\xf2\x8e\x4a\xe4\x6d\x0b\x1d\x16\xcd\x57\xb2\x98\x0c\x04\xa1\xfb\xb6\x06\x6f\xad\x7e\x26\x59\x9f\xa6\xd5\x53\x2f\x36\x0a\x83\xa2\x7a\x86\xaa\x77\x90\x6e\x6c\xc1\x87\xdd\xc0\x4d\xb8\x22\x03\x97\x2e\x90\x2f\x9d\xff\x6b\xc8\x76\x7c\x50\xd3\x98\x05\x9b\x3f\x32\x27\x38\xc3\xff\xf1\x93\x9f\x33\x03\xfe\x3b\x95\xe8\xf5\x17\xf9\x35\x62\x45\x7a\x93\x2e\x4b\x7f\x22\x96\x49\x39\xd9\xcd\x70\x3f\xc5\xd5\x3a\x7f\xf7\x48\xdf\x91\x0f\xaf\x14\xf6\x6f\x00\x00\x00\xff\xff\xa7\xbb\x1e\xe2\x0d\x06\x00\x00") + +func examplesCockroachdbDemoShBytes() ([]byte, error) { + return bindataRead( + _examplesCockroachdbDemoSh, + "examples/cockroachdb/demo.sh", + ) +} + +func examplesCockroachdbDemoSh() (*asset, error) { + bytes, err := examplesCockroachdbDemoShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/cockroachdb/demo.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesCockroachdbMinikubeSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x55\x41\x6f\x1b\x37\x13\xbd\xef\xaf\x78\x9f\x15\x18\x09\x3e\xed\xae\xec\xa4\x41\xa2\xa4\x07\xc7\xb1\x5b\x21\x89\x14\x58\x4e\xdc\x00\xbd\x50\xe4\x68\x97\x30\x97\x64\xc8\xa1\x64\xa1\xed\x7f\x2f\xb8\x92\x6d\x39\x69\xd1\xa2\xba\x48\x3b\x33\x3b\xf3\xe6\xcd\x9b\xd1\xe0\x7f\x75\x8a\xa1\x5e\x68\x5b\x93\x5d\x61\x21\x62\x5b\x14\x03\x9c\x3a\xbf\x09\xba\x69\x19\xc7\xa3\xa3\xe7\xb8\x6c\x09\xef\xd2\x82\x82\x25\xa6\x88\x93\xc4\xad\x0b\xb1\x2a\x06\xc5\x00\xef\xb5\x24\x1b\x49\x21\x59\x45\x01\xdc\x12\x4e\xbc\x90\x2d\xdd\x7a\x86\xf8\x4c\x21\x6a\x67\x71\x5c\x8d\xf0\x38\x07\x1c\xec\x5c\x07\x4f\x5e\x15\x03\x6c\x5c\x42\x27\x36\xb0\x8e\x91\x22\x81\x5b\x1d\xb1\xd4\x86\x40\x37\x92\x3c\x43\x5b\x48\xd7\x79\xa3\x85\x95\x84\xb5\xe6\xb6\x2f\xb3\x4b\x52\x15\x03\x7c\xd9\xa5\x70\x0b\x16\xda\x42\x40\x3a\xbf\x81\x5b\xee\xc7\x41\x70\x0f\x38\x7f\x5a\x66\x3f\xae\xeb\xf5\x7a\x5d\x89\x1e\x6c\xe5\x42\x53\x9b\x6d\x60\xac\xdf\x4f\x4e\xcf\xa6\xf3\xb3\xf2\xb8\x1a\xf5\xaf\x7c\xb2\x86\x62\x44\xa0\xaf\x49\x07\x52\x58\x6c\x20\xbc\x37\x5a\x8a\x85\x21\x18\xb1\x86\x0b\x10\x4d\x20\x52\x60\x97\xf1\xae\x83\x66\x6d\x9b\x21\xa2\x5b\xf2\x5a\x04\x2a\x06\x50\x3a\x72\xd0\x8b\xc4\x0f\xc8\xba\x45\xa7\xe3\x83\x00\x67\x21\x2c\x0e\x4e\xe6\x98\xcc\x0f\xf0\xe6\x64\x3e\x99\x0f\x8b\x01\xae\x26\x97\x3f\xcf\x3e\x5d\xe2\xea\xe4\xe2\xe2\x64\x7a\x39\x39\x9b\x63\x76\x81\xd3\xd9\xf4\xed\xe4\x72\x32\x9b\xce\x31\x3b\xc7\xc9\xf4\x0b\xde\x4d\xa6\x6f\x87\x20\xcd\x2d\x05\xd0\x8d\x0f\x19\xbf\x0b\xd0\x99\x46\x52\x99\xb3\x39\xd1\x03\x00\x4b\xb7\x05\x14\x3d\x49\xbd\xd4\x12\x46\xd8\x26\x89\x86\xd0\xb8\x15\x05\xab\x6d\x03\x4f\xa1\xd3\x31\x0f\x33\x42\x58\x55\x0c\x60\x74\xa7\x59\x70\x6f\xf9\xae\xa9\x2a\x6b\xe9\x22\xd9\xde\x76\xea\xe4\x75\x70\x42\xb6\x6f\xdf\x60\xce\x82\x69\x99\xcc\x9c\x18\x74\x23\x3a\x6f\xa8\xef\x18\x9d\xb6\xfa\x3a\x2d\x08\xda\x46\xce\xe3\xde\x8a\xec\x3c\xf3\x8b\x65\xa0\xd8\x22\xb2\x08\x3c\x44\xd8\xa5\x5d\x3a\x63\xdc\x3a\x83\x5b\xea\x10\x79\xdc\x4f\xf8\x2e\x8d\x22\x43\x4c\x0f\x6d\x7d\x82\x3e\xed\xa5\x43\xf2\x4d\x10\x8a\xee\xbd\x87\xc8\x5f\x92\x4d\x06\x34\x9b\xff\x32\xfc\xa6\x4a\x6c\x5d\x32\x0a\x31\x2d\x97\x5a\xd2\xb6\xdc\x22\xd0\x1a\x81\x7a\xcc\xc6\xf4\x09\xb6\xab\x52\x4a\xa3\x51\x96\x8a\x56\x64\xfa\xc8\x14\x0c\xca\xf7\xee\xbe\xdc\xaf\x7b\x8a\x8c\xe3\xba\x8e\xec\x82\x68\xa8\x6a\x9c\x6b\x0c\x09\xaf\x63\x25\x5d\x57\xdf\xc6\xd7\x81\x0c\x89\xac\xd1\xd5\xa8\x7a\x56\x8d\xee\x1c\xa5\x12\x61\xad\x6d\x29\x3a\xf5\xfc\x19\x0e\x0f\x77\x89\x65\xdb\x39\x85\xff\xdf\xec\xf5\x77\x88\x98\x94\x43\xb7\xba\xb7\xf5\x37\xc0\x38\x29\x4c\x7f\x09\x8a\x22\x12\xa3\xa4\x9b\xe4\xe0\xb5\xa7\xa5\xd0\xa6\xbf\x0a\x86\x84\x45\xf2\x10\x76\xc3\x6d\x4f\x79\x70\x1d\x04\x7c\xd0\x2e\xe4\x89\x8c\x8b\x5b\xf2\xb6\xc4\x67\xae\xfb\x41\x47\xe2\x38\xf4\xf9\x0e\x44\x26\xcb\x2b\x67\x52\x47\xdf\x5b\xa4\x11\xba\x8b\xc3\x48\x61\xa5\x65\xf6\x3b\xa5\x74\x0c\xc9\x67\x81\x2d\x92\x6a\x32\x2e\x93\x97\xef\x47\x79\x2b\x27\xb5\xc8\xd8\x3e\x88\x6b\xc2\x7d\x3a\xec\x2a\x64\x95\xe2\xb1\x74\x21\x64\x54\x1b\x58\xd1\x91\x7a\x82\x6d\x9d\x0a\x57\x84\x2e\x45\x86\x0c\x24\xb8\x5f\x87\x62\xb0\x73\xa2\xa5\x40\xe8\x84\x4d\xc2\x98\x0d\x68\x45\x59\x6f\x2e\x35\xf9\xf8\x08\x46\x74\xc9\xaa\x08\xe9\x92\x65\x0a\xa5\xb6\x9c\x34\xeb\x15\x55\xbd\x58\x15\xb1\xd0\x26\x16\x03\x44\xa2\xbb\xe1\x36\x9a\xdb\xb4\xe8\x07\x7a\xaf\x91\x5a\x3a\x9b\xd7\xbe\xf6\xc9\x98\xfa\xe8\xf8\xe5\x0f\x03\x1d\x63\x22\xe9\xba\x8e\x2c\x97\xc7\x4f\x47\x47\x2f\x46\x2f\x5e\x3e\xcb\x4b\x3b\x75\x3d\x4c\xc1\x58\x67\x70\xd7\x94\xaf\x04\xdd\x70\x10\xbb\x8e\xb7\xb0\xa3\xeb\xaf\xaa\x14\xf6\xbe\x03\xa6\xc8\x88\x52\x18\x2a\x93\xaf\x8a\xbc\xee\x3a\x9f\xaa\x47\x8f\x23\x7d\xc5\x08\x4f\x9f\xbc\x82\x72\x05\x20\x05\xe3\xf5\xeb\xb3\xd9\x39\x7e\xbf\xdb\x85\x1d\x41\xe5\x12\x65\x71\xad\xad\x1a\xe3\xe3\x1d\xd7\x9f\xfb\xc2\x85\xf0\x7a\x77\xe8\xc7\x58\x1d\x15\x1d\xb1\x50\x82\xc5\xb8\x40\xcf\xfa\x18\x7e\xf5\xe8\x37\xfd\x47\x01\x18\xb1\x20\x13\xb3\x03\xe0\x8d\xa7\x31\x7a\xed\xf5\xcf\xc2\xfb\x31\xf6\x67\x9b\xcf\xd1\xb8\x47\xe5\x85\xd4\xbc\xd9\xbe\xb6\x5b\x93\x31\x8e\x7e\xd2\x05\x20\xa4\xa4\x18\x3f\x38\x45\xbb\xb4\x25\x2e\x48\xa8\xab\xa0\x99\x66\x56\x52\x01\xb4\x2e\xf2\x47\xc1\xed\xd6\xef\xf3\x2f\x1c\xd4\xdc\xf9\x3a\xa3\x3a\x28\xce\x66\xe7\xc5\x7f\x6e\xfe\x34\x4b\xe6\x9f\x19\xc8\x4f\x4a\x87\x72\xaf\xbf\xf2\x2f\x38\xf9\x5b\x0e\xfe\x45\x9b\x81\xa2\x4b\x41\xde\x06\xe4\xbf\x2c\x8a\xbc\x7b\xfa\x86\xb7\xdc\xb2\x72\x96\x5e\x15\xc5\xf7\xad\xee\x63\xdc\xdb\xe2\x6a\x23\x3a\x53\xfc\x19\x00\x00\xff\xff\x5f\x42\x06\xa9\x37\x08\x00\x00") + +func examplesCockroachdbMinikubeShBytes() ([]byte, error) { + return bindataRead( + _examplesCockroachdbMinikubeSh, + "examples/cockroachdb/minikube.sh", + ) +} + +func examplesCockroachdbMinikubeSh() (*asset, error) { + bytes, err := examplesCockroachdbMinikubeShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/cockroachdb/minikube.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesDocGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x52\xc1\x8e\xd3\x30\x14\xbc\xfb\x2b\x46\x39\xc1\xaa\xc4\xcb\x8a\x03\x82\x53\xe8\x16\x11\xed\x2a\x95\x9a\x2e\xab\x3d\xba\xce\x6b\xf2\xd4\xd4\x36\xb6\x43\x9a\xbf\x47\x4e\x5b\xd8\x15\x47\xfb\x8d\x67\xe6\xcd\x58\xde\x88\xa5\x75\x93\xe7\xb6\x8b\xb8\xbb\xfd\xf8\x09\xdb\x8e\xf0\x30\xec\xc8\x1b\x8a\x14\x50\x0c\xb1\xb3\x3e\xe4\x42\x3c\xb2\x26\x13\xa8\xc1\x60\x1a\xf2\x88\x1d\xa1\x70\x4a\x77\x84\xcb\x64\x81\x9f\xe4\x03\x5b\x83\xbb\xfc\x16\xef\x12\x20\xbb\x8c\xb2\xf7\x5f\xc5\x64\x07\x1c\xd5\x04\x63\x23\x86\x40\x88\x1d\x07\xec\xb9\x27\xd0\x49\x93\x8b\x60\x03\x6d\x8f\xae\x67\x65\x34\x61\xe4\xd8\xcd\x22\x17\x8a\x5c\xbc\x5c\x08\xec\x2e\x2a\x36\x50\xd0\xd6\x4d\xb0\xfb\xd7\x28\xa8\x28\x04\x00\x74\x31\xba\x2f\x52\x8e\xe3\x98\xab\xd9\x65\x6e\x7d\x2b\xfb\x33\x2a\xc8\xc7\x72\xb9\xaa\xea\xd5\x87\xbb\xfc\x56\x88\x27\xd3\x53\x08\xf0\xf4\x6b\x60\x4f\x0d\x76\x13\x94\x73\x3d\x6b\xb5\xeb\x09\xbd\x1a\x61\x3d\x54\xeb\x89\x1a\x44\x9b\x7c\x8e\x9e\x23\x9b\x76\x81\x60\xf7\x71\x54\x9e\x44\xc3\x21\x7a\xde\x0d\xf1\x4d\x40\x57\x57\x1c\xf0\x1a\x60\x0d\x94\x41\x56\xd4\x28\xeb\x0c\xdf\x8a\xba\xac\x17\xe2\xb9\xdc\xfe\x58\x3f\x6d\xf1\x5c\x6c\x36\x45\xb5\x2d\x57\x35\xd6\x1b\x2c\xd7\xd5\x7d\xb9\x2d\xd7\x55\x8d\xf5\x77\x14\xd5\x0b\x1e\xca\xea\x7e\x01\xe2\xd8\x91\x07\x9d\x9c\x4f\xde\xad\x07\xa7\xe8\xa8\xc9\x45\x4d\xf4\x46\x7c\x6f\xcf\x66\x82\x23\xcd\x7b\xd6\xe8\x95\x69\x07\xd5\x12\x5a\xfb\x9b\xbc\x61\xd3\xc2\x91\x3f\x72\x48\xe5\x05\x28\xd3\x88\x9e\x8f\x1c\x55\x9c\xcf\xff\xad\x93\x8b\x1b\x29\x84\x94\x58\x9d\xd4\xd1\xf5\x14\xa0\xad\x49\x9d\x04\x84\xf9\xe2\x1a\xdf\xf9\xfd\xac\xef\xa7\x24\x63\x87\x38\x13\x69\x6b\x52\xe5\x21\x65\xf9\xef\xb3\xe5\xc2\x29\x7d\x48\xc6\xe8\x4a\x2c\x65\xda\xcb\xfa\x88\xec\xf0\x39\xe4\x6c\xe5\xe1\x2f\x5c\x5e\x51\x99\xf8\x13\x00\x00\xff\xff\x92\x0d\xac\x9f\xc7\x02\x00\x00") + +func examplesDocGoBytes() ([]byte, error) { + return bindataRead( + _examplesDocGo, + "examples/doc.go", + ) +} + +func examplesDocGo() (*asset, error) { + bytes, err := examplesDocGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/doc.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesElasticsearchEsRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x93\xd1\x6f\xda\x30\x10\xc6\xdf\xf3\x57\x9c\x78\x87\x94\x6d\xd2\x34\xbf\xa5\x21\xd5\x50\x5b\x8a\x42\x5a\x69\x4f\xd1\xe1\x5c\x5b\xab\x8e\xed\xd9\x17\x34\x34\xed\x7f\x9f\x5c\x06\x84\x86\x75\xe3\x09\x9d\xfd\xfd\xbe\xcf\x77\x17\x74\xea\x81\x7c\x50\xd6\x08\xd8\x4c\x93\x17\x65\x1a\x01\x25\x39\xad\x24\xb2\xb2\x26\xb7\x86\xbd\xd5\x9a\x7c\xd2\x12\x63\x83\x8c\x22\x01\x30\xd8\x92\x00\x0a\x09\x80\xc6\x35\xe9\x10\x8b\x00\xd2\xb6\xce\x1a\x32\x2c\x80\x34\x06\x56\x32\x10\x7a\xf9\x9c\x04\x47\x32\x5e\xf1\x3b\x72\x10\x30\x4d\x00\x98\x5a\xa7\x91\x69\x27\xee\xf3\xe3\xaf\x0f\x7e\x17\x1e\x0f\xf7\x06\xaf\xff\xc9\x6f\x94\xa4\x4c\x4a\xdb\x9d\xbf\x1d\x61\x86\x51\x19\xf2\x07\x83\x71\xff\x51\x7b\x90\xec\xbc\xe2\x6d\x6c\x02\xfd\xe0\x63\x14\x00\x89\x0e\xd7\x4a\x2b\x56\x14\xfa\x75\x00\x6c\x9a\xd3\x42\x44\xcf\x97\x79\x7d\x73\x97\x5f\x1f\x0e\x54\x8b\x4f\x24\xe0\x7b\x87\xdb\x89\xb2\xa9\x53\x9e\x42\xda\x58\xf9\x42\x7e\x7c\x92\x77\xfc\xd2\xad\xc9\x1b\x62\x0a\x62\x3a\xf9\x3c\x99\x8e\x3f\x1d\x20\x64\x36\x47\xab\x7d\xfe\xeb\xfb\xcb\xa2\x5c\x14\x55\xb1\xaa\xf3\xac\xce\x8b\xb2\x9a\x5f\xcd\xf3\xac\x2a\xea\xab\xf9\x4d\xd1\x4b\xb6\x41\xdd\x91\x80\x74\x83\x3e\xf5\x9d\x49\x03\x49\x4f\x1c\xd2\xa3\x61\x4c\xf6\xa7\x99\xb8\x6b\x66\x2a\x71\x22\x3d\x0f\x4c\x17\xd9\x6d\xb1\x5a\x66\xf9\x80\x7f\xe5\x6d\x7b\xda\x8e\x47\x45\xba\x29\xe9\xf1\x6d\x93\x5e\xeb\x4b\xe4\x67\x71\xd8\x84\x49\x84\x07\x87\x92\x06\x86\xa3\xfc\xe6\x7e\x55\x15\x65\x1d\x9d\x47\xc3\x57\x8d\xda\x2d\x85\x66\x3d\x1a\x0a\x67\xf3\x55\x7e\xf7\x50\x94\xdf\xea\x55\x51\x3e\xcc\xf3\xb3\xea\x93\x11\x0c\x21\x8b\xbb\x59\x51\xdf\x66\x31\xc0\x19\x31\xfb\x8e\xfe\xa2\x99\x65\x55\xf6\xdf\x8a\xaf\x55\xb5\xac\x8b\x45\x76\x79\x6e\x6c\x6f\x34\xce\x7a\x0e\xfd\x65\x38\x2c\xf8\xd2\x7a\x16\xf0\xe5\xc3\xc5\x45\x0f\xb2\x33\x78\x66\x76\xbd\xa2\xf3\x96\xad\xb4\x5a\x40\x95\x2f\xdf\x41\x7d\x3c\x83\x62\x8f\x26\xc4\x10\xff\xe4\x6d\xac\xee\x5a\xba\x8d\xdb\x74\x12\xb8\x8d\x95\xdd\xfc\xd3\x38\xfc\x81\x45\x60\xeb\xf1\x69\xbf\x0a\x3b\xcc\xe0\xeb\x3d\xbd\x04\x40\xad\xe3\xed\x4c\x79\x01\x3f\x7f\x25\xbf\x03\x00\x00\xff\xff\x0f\x4f\x81\x88\xed\x04\x00\x00") + +func examplesElasticsearchEsRcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesElasticsearchEsRcYaml, + "examples/elasticsearch/es-rc.yaml", + ) +} + +func examplesElasticsearchEsRcYaml() (*asset, error) { + bytes, err := examplesElasticsearchEsRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/elasticsearch/es-rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesElasticsearchEsSvcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8e\xb1\x8a\x02\x41\x0c\x86\xfb\x79\x8a\xff\x05\x0e\xf6\xee\xaa\x9b\xf2\x6c\x2d\x04\xc5\x3e\x66\x03\x3b\x38\x3b\x19\x32\x61\xc1\xb7\x97\x59\x2d\x16\x11\x2c\xc3\xf7\x7d\x49\xa8\xa6\xb3\x58\x4b\x5a\x22\x96\xef\x70\x4d\x65\x8c\x38\x8a\x2d\x89\x25\xcc\xe2\x34\x92\x53\x0c\x40\xa1\x59\x22\x24\x53\xf3\xc4\x4d\xc8\x78\x0a\x40\xa6\x8b\xe4\xd6\x39\xc0\x3a\x57\x2d\x52\xfc\x55\x6b\x55\xb8\x2b\x7e\xab\x12\xb1\x57\x1a\xff\x29\x53\x61\xb1\x00\x34\xc9\xc2\xae\xf6\x61\x07\x50\xd5\x7c\xbd\xf4\xf5\xfc\x65\x72\xaf\x6b\xd4\x49\xc4\xdf\xcf\x30\x3c\x46\x53\x57\xd6\x1c\x71\xda\x1d\x36\xbe\x1b\x95\xd6\xdd\x6d\xf4\xfb\x36\xba\x07\x00\x00\xff\xff\x1f\xfa\x72\xc0\x16\x01\x00\x00") + +func examplesElasticsearchEsSvcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesElasticsearchEsSvcYaml, + "examples/elasticsearch/es-svc.yaml", + ) +} + +func examplesElasticsearchEsSvcYaml() (*asset, error) { + bytes, err := examplesElasticsearchEsSvcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/elasticsearch/es-svc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesElasticsearchProduction_clusterEsClientRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x93\xdf\x6e\x1a\x3d\x10\xc5\xef\x79\x8a\x11\xf7\xb0\xe1\xfb\x2a\x55\xf5\xdd\x66\xb3\x51\x51\xfe\x21\xb2\xe9\xed\x6a\xf0\x4e\x12\x2b\x5e\xdb\x1d\xcf\xa2\xa2\xaa\xef\x5e\x39\x04\x58\xba\xa4\x29\x57\x68\xcc\x39\xbf\xe3\x33\x06\x83\xf9\x46\x1c\x8d\x77\x0a\xd6\xb3\xd1\x8b\x71\x8d\x82\x25\x05\x6b\x34\x8a\xf1\xae\xf0\x4e\xd8\x5b\x4b\x3c\x6a\x49\xb0\x41\x41\x35\x02\x70\xd8\x92\x02\x8a\x13\x6d\x0d\x39\x19\x01\x58\x5c\x91\x8d\xe9\x0c\x40\xfb\x36\x78\x47\x4e\x14\x90\xc5\x28\x46\x47\x42\xd6\xcf\xaf\x87\xec\x2d\x29\x78\xd3\xc5\x40\x3a\x69\x78\x4b\x8c\x0a\x66\x23\x00\xa1\x36\x58\x14\xda\xba\xf5\xb9\xe9\xd3\x27\x7d\x48\x1b\x10\xd3\x60\x47\x7d\xfd\x4e\xbc\x36\x9a\x72\xad\x7d\xf7\x9e\x85\xf6\x4e\xd0\x38\xe2\x3d\x75\x72\xa2\x81\x9d\x9f\xee\xd8\xc8\x26\x15\x47\x3f\xe4\x10\x13\x40\x63\xc0\x95\xb1\x46\x0c\xc5\xfe\x1c\x00\x9b\xe6\x78\x90\x08\xf3\x45\x51\x5f\xdf\x15\x57\xfb\x03\xd3\xe2\x13\x29\xf8\xde\xe1\x66\x6a\x7c\x16\x0c\x53\xcc\x1a\xaf\x5f\x88\x27\x47\xb1\x27\x2f\xdd\x8a\xd8\x91\x50\x54\xb3\xe9\xe7\xe9\x6c\xf2\x69\x6f\x42\x6e\x7d\x40\xed\xae\x71\xf5\x70\x5e\x2e\x6f\xcb\xaa\xbc\xaf\x8b\xbc\x2e\xca\x65\x35\xbf\x9c\x17\x79\x55\xd6\x97\xf3\xeb\xb2\x97\x6c\x8d\xb6\x23\x05\xd9\x1a\x39\xe3\xce\x65\x91\x34\x93\xc4\xec\x00\x4c\xc9\xde\x3a\xc5\x6d\xa7\x99\xc6\xa9\x66\x19\x40\x6f\xf3\x9b\xf2\x7e\x91\x17\x03\xff\x4b\xf6\xed\x71\x1d\x8f\x86\x6c\xb3\xa4\xc7\x3f\x4b\x7a\x9d\x2f\x50\x9e\xd5\xfe\x95\x4c\x93\x79\x0c\xa8\x69\x00\x1c\x17\xd7\x0f\xf7\x55\xb9\xac\x13\x79\x3c\xbc\xd5\xb8\xdd\x50\x6c\x56\xe3\x61\xd2\xbb\x8b\xb2\xbe\xc9\x93\xf6\x84\xea\x11\x6d\xa4\x77\x44\x17\x79\x95\xff\xbb\xe4\x6b\x55\x2d\xea\xf2\x36\x3f\x3f\xd5\xf9\x58\xb8\xeb\x69\x82\x67\x89\xfd\x4d\xee\x1f\xe9\xc2\xb3\x28\xf8\xf2\xdf\xd9\x59\xcf\x64\x0b\x78\x16\x09\xbd\x61\x60\x2f\x5e\x7b\xab\xa0\x2a\x16\x7f\xb1\xfa\xff\x84\x95\x30\xba\x98\x42\x7c\xe8\xb7\xf6\xb6\x6b\xe9\x26\x3d\x85\xa3\xc0\x6d\x9a\x6c\x97\x97\xa5\xcd\x0d\x10\x51\x3c\xe3\xd3\x6e\x8f\x5b\x9b\xc1\x3f\xf0\xf8\x47\x00\xd4\x06\xd9\x5c\x18\x56\xf0\xf3\xd7\xe8\x77\x00\x00\x00\xff\xff\xd6\x18\x1b\xa8\xde\x04\x00\x00") + +func examplesElasticsearchProduction_clusterEsClientRcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesElasticsearchProduction_clusterEsClientRcYaml, + "examples/elasticsearch/production_cluster/es-client-rc.yaml", + ) +} + +func examplesElasticsearchProduction_clusterEsClientRcYaml() (*asset, error) { + bytes, err := examplesElasticsearchProduction_clusterEsClientRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/elasticsearch/production_cluster/es-client-rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesElasticsearchProduction_clusterEsDataRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x4f\x6f\x9b\x40\x10\xc5\xef\x7c\x8a\x91\xef\x36\xb1\x5a\xa9\xea\xde\x08\x21\xaa\x95\x7f\xc8\x21\xbd\xa2\xf1\x32\x49\x56\x5e\x76\xe9\xec\x82\x6a\x55\xfd\xee\xd5\x9a\x1a\x83\x49\x55\x9f\xcc\x0c\xef\xfd\x66\xdf\x0e\xd8\xa8\xef\xc4\x4e\x59\x23\xa0\x5b\x47\x7b\x65\x2a\x01\x5b\x6a\xb4\x92\xe8\x95\x35\xa9\x35\x9e\xad\xd6\xc4\x51\x4d\x1e\x2b\xf4\x28\x22\x00\x83\x35\x09\x20\xb7\x0c\x85\x08\x40\xe3\x8e\xb4\x0b\x1d\x00\x69\xeb\xc6\x1a\x32\x5e\x00\x69\x74\x5e\x49\x47\xc8\xf2\xfd\xd8\x64\xab\x49\xc0\x51\xe5\x1a\x92\x41\xc1\x3d\xcd\x09\x58\x47\x00\x9e\xea\x46\xa3\xa7\xde\x6b\xcc\x0c\xbf\x31\xe7\xbf\xac\x0b\x5e\x78\x3c\x31\x8f\xff\x89\x3b\x25\x29\x91\xd2\xb6\xff\x32\x90\xd6\x78\x54\x86\x78\x60\x2e\x67\x67\x3f\xb9\xc9\x96\x95\x3f\x84\xc0\xe8\xa7\x3f\x8f\x08\x20\xb1\xc1\x9d\xd2\xca\x2b\x72\xe3\x3a\x00\x56\xd5\xb4\x10\xfc\x37\x79\x5a\xde\x3f\xa5\x77\x43\x43\xd5\xf8\x46\x02\x7e\xb4\x78\x58\x29\x1b\x37\x8a\xc9\xc5\x95\x95\x7b\xe2\xe5\x64\xe8\xe5\xbe\xdd\x11\x1b\xf2\xe4\xc4\x7a\xf5\x65\xb5\x5e\x7e\x1e\x4c\xc8\x74\x67\xd4\xe9\x10\x77\x2f\xd7\xd9\xf6\x31\x2b\xb2\xe7\x32\x4d\xca\x34\xdb\x16\x9b\xdb\x4d\x9a\x14\x59\x79\xbb\xb9\xcf\x46\x93\x75\xa8\x5b\x12\x10\x77\xc8\x31\xb7\x26\x76\x24\x99\xbc\x8b\xcf\xc0\x30\xd9\xdf\x44\xb1\x4f\x34\x96\xb8\x92\xec\x67\xd0\xc7\xe4\x21\x7b\xce\x93\x74\xe6\x7f\xcb\xb6\x9e\xc6\xf1\xaa\x48\x57\x5b\x7a\xbd\x0c\xe9\x58\xcf\xd1\xbf\x8b\x61\x43\x56\xc1\xdc\x35\x28\x69\x06\x5c\xa4\xf7\x2f\xcf\x45\xb6\x2d\x03\x79\x31\x3f\xd5\xa2\x3e\x90\xab\x76\x8b\xf9\xa4\x4f\x37\x59\xf9\x90\x04\xed\x07\xaa\x57\xd4\x8e\xe6\xa2\x6f\x45\x91\x97\xd9\x63\x72\xfd\x51\x80\x97\xa2\xc6\xb2\x77\xe3\x7b\x19\x16\x2e\xb7\xec\x05\x7c\xfd\x74\x75\x35\x72\xe9\x09\x9e\xd1\xb8\xa0\x1c\x75\x1a\xb6\xde\x4a\xab\x05\x14\x69\x3e\xd4\x3b\xab\xdb\x9a\x1e\xc2\x6d\x4c\x28\x75\xa8\xf4\xf9\xc5\x93\x2d\x3e\x21\x9c\xb7\x8c\x6f\xa7\x28\x7b\x9b\xd9\x27\x30\x7d\x09\x80\xea\xc6\x1f\x6e\x14\x0b\xf8\xf5\x3b\xfa\x13\x00\x00\xff\xff\x8f\x04\x65\xc8\x59\x04\x00\x00") + +func examplesElasticsearchProduction_clusterEsDataRcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesElasticsearchProduction_clusterEsDataRcYaml, + "examples/elasticsearch/production_cluster/es-data-rc.yaml", + ) +} + +func examplesElasticsearchProduction_clusterEsDataRcYaml() (*asset, error) { + bytes, err := examplesElasticsearchProduction_clusterEsDataRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/elasticsearch/production_cluster/es-data-rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesElasticsearchProduction_clusterEsDiscoverySvcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8e\x3d\x8a\x03\x31\x0c\x85\x7b\x9f\x42\x17\x18\x98\x65\xab\x75\xbb\x17\x58\xd8\x90\x5e\xd1\x3c\x88\x89\x6d\x19\x49\x0c\xe4\xf6\xc1\x93\x54\xe9\xd2\xe9\xe7\xfb\x78\x8f\x47\x39\xc3\xbc\x68\xcf\xb4\x7f\xa5\x5b\xe9\x5b\xa6\x7f\xd8\x5e\x04\xa9\x21\x78\xe3\xe0\x9c\x88\x3a\x37\x64\x42\x65\x8f\x22\x0e\x36\xb9\x2e\x5b\x71\xd1\x1d\x76\x4f\x44\x95\x2f\xa8\x3e\x49\x22\xd1\x36\xb4\xa3\xc7\x9b\x70\x3c\x4d\x2b\x32\x35\xf6\x80\x25\x1f\x90\xe9\x38\x2a\x24\xd4\x3e\xf5\x89\x86\x5a\x1c\xb1\xcb\xab\x62\x18\x77\x9f\xd7\x83\x9e\x43\xa6\x9f\xef\x75\x7d\xae\xa6\xa1\xa2\x35\xd3\xe9\xf7\x2f\x3d\x02\x00\x00\xff\xff\x06\x0a\x11\xc7\xfd\x00\x00\x00") + +func examplesElasticsearchProduction_clusterEsDiscoverySvcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesElasticsearchProduction_clusterEsDiscoverySvcYaml, + "examples/elasticsearch/production_cluster/es-discovery-svc.yaml", + ) +} + +func examplesElasticsearchProduction_clusterEsDiscoverySvcYaml() (*asset, error) { + bytes, err := examplesElasticsearchProduction_clusterEsDiscoverySvcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/elasticsearch/production_cluster/es-discovery-svc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesElasticsearchProduction_clusterEsMasterRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\xcd\x6e\xdb\x30\x10\x84\xef\x7e\x8a\x85\xef\xb6\x62\xb4\x40\x51\xde\x14\x45\x41\x8d\xfc\x19\x8e\xd2\xab\xb0\xa6\x36\x09\x11\x8a\x54\x97\x2b\xa1\x46\xd1\x77\x2f\x18\xc5\x8a\x1c\x39\xa8\x4f\xc6\xac\x67\xbe\xe5\x90\xc6\xc6\xfc\x24\x0e\xc6\x3b\x05\xdd\x6a\xf6\x62\x5c\xa5\x60\x4b\x8d\x35\x1a\xc5\x78\x97\x79\x27\xec\xad\x25\x9e\xd5\x24\x58\xa1\xa0\x9a\x01\x38\xac\x49\x01\x85\x45\x8d\x41\x88\x67\x00\x16\x77\x64\x43\x9c\x01\x68\x5f\x37\xde\x91\x13\x05\x64\x31\x88\xd1\x81\x90\xf5\xf3\xeb\x90\xbd\x25\x05\x6f\xbe\xd0\x90\x8e\x1e\xee\x89\x41\xc1\x6a\x06\x20\x54\x37\x16\x85\xfa\xb4\x31\x37\x7e\xc6\xa4\xff\xd2\x26\xc4\x28\x1c\xa8\xaf\xdf\x89\x3b\xa3\x29\xd5\xda\xb7\x9f\x45\x68\xef\x04\x8d\x23\x1e\xa8\x8b\x13\x0d\x1c\xf2\x74\xcb\x46\xf6\xb1\x38\xfa\x2d\xef\x6b\x02\x68\x6c\x70\x67\xac\x11\x43\x61\xac\x03\x60\x55\x1d\x0b\x91\xb0\xde\x64\xe5\xf5\x5d\x76\x35\x0c\x4c\x8d\x4f\xa4\xe0\x57\x8b\xfb\xa5\xf1\x49\x63\x98\x42\x52\x79\xfd\x42\xbc\x38\x5a\x7b\xf1\xd2\xee\x88\x1d\x09\x05\xb5\x5a\x7e\x5b\xae\x16\x5f\x87\x10\x72\xdd\x3b\xea\x70\x8c\xab\x87\xf3\x7c\x7b\x9b\x17\xf9\x7d\x99\xa5\x65\x96\x6f\x8b\xf5\xe5\x3a\x4b\x8b\xbc\xbc\x5c\x5f\xe7\xa3\xcd\x3a\xb4\x2d\x29\x48\x3a\xe4\x84\x5b\x97\x04\xd2\x4c\x12\x92\x77\x60\xdc\xec\xad\x53\xec\x3b\x4d\x34\x2e\x35\xcb\x04\x7a\x9b\xde\xe4\xf7\x9b\x34\x9b\xe4\x5f\xb2\xaf\x8f\xeb\x78\x34\x64\xab\x2d\x3d\x7e\x2c\xe9\x55\xdf\xa0\x3c\xab\xe1\x95\x2c\x63\x78\x68\x50\xd3\x04\x38\xcf\xae\x1f\xee\x8b\x7c\x5b\x46\xf2\x7c\x7a\xaa\x79\xbd\xa7\x50\xed\xe6\xd3\x4d\xef\x2e\xf2\xf2\x26\x8d\xde\x13\x2e\xe1\x96\x3e\xf1\x5c\xa4\x45\x7a\xc2\xf1\x88\x36\x9c\xb0\xfc\x28\x8a\x4d\x99\xdf\xa6\xe7\xa7\x2a\xff\x68\x6a\x3c\x4b\x18\xdf\xe4\xf0\x48\x37\x9e\x45\xc1\xf7\x2f\x67\x67\xa3\x94\x9e\x20\x8c\x2e\x44\xe7\x68\xd2\xb0\x17\xaf\xbd\x55\x50\x64\x9b\x41\xef\xbc\x6d\x6b\xba\x89\xf7\x77\x44\xa9\xa3\xd2\x37\x9e\xc4\xba\x27\x88\x20\x9e\xf1\xe9\x50\x7e\x1f\x33\xf9\xdb\x1c\xff\x08\x80\xea\x46\xf6\x17\x86\x15\xfc\xf9\x3b\xfb\x17\x00\x00\xff\xff\x60\x19\x6e\x2a\x93\x04\x00\x00") + +func examplesElasticsearchProduction_clusterEsMasterRcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesElasticsearchProduction_clusterEsMasterRcYaml, + "examples/elasticsearch/production_cluster/es-master-rc.yaml", + ) +} + +func examplesElasticsearchProduction_clusterEsMasterRcYaml() (*asset, error) { + bytes, err := examplesElasticsearchProduction_clusterEsMasterRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/elasticsearch/production_cluster/es-master-rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesElasticsearchProduction_clusterEsSvcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8e\xb1\x4a\x44\x41\x0c\x45\xfb\xf9\x8a\xfb\x03\xc2\x6a\x67\x4a\x6d\x2d\x04\xc5\x3e\xe6\x5d\xd8\xc1\xbc\xc9\x90\x09\x0b\xfe\xbd\xbc\xd5\xce\x6a\xcb\x70\x4e\x2e\x47\x67\xff\x60\xae\x1e\x43\x70\xb9\x6f\x5f\x7d\x6c\x82\x37\xe6\xa5\x1b\xdb\xce\xd2\x4d\x4b\xa5\x01\x43\x77\x0a\xe8\xba\xaa\xdb\xa2\xa6\x9d\x1b\xe0\xfa\x49\x5f\x07\x07\x2c\xf6\x19\x83\xa3\xfe\x6b\x40\x86\x53\x60\xde\x39\xaa\xad\x49\x3b\x7e\xea\x7b\x52\xf0\x12\xba\x3d\xa9\xeb\x30\x66\x03\x16\x9d\x56\x91\xb7\x8e\x02\x33\xb2\xae\x2d\x77\x7f\xb5\xe7\xaa\x79\x15\x0f\x22\x78\x7c\x38\x9d\x7e\xcf\x8c\x0a\x0b\x17\xbc\x3f\xbf\xb6\x9f\x00\x00\x00\xff\xff\xdb\x38\x88\x7e\x03\x01\x00\x00") + +func examplesElasticsearchProduction_clusterEsSvcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesElasticsearchProduction_clusterEsSvcYaml, + "examples/elasticsearch/production_cluster/es-svc.yaml", + ) +} + +func examplesElasticsearchProduction_clusterEsSvcYaml() (*asset, error) { + bytes, err := examplesElasticsearchProduction_clusterEsSvcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/elasticsearch/production_cluster/es-svc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesElasticsearchProduction_clusterServiceAccountYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\xb1\x0d\xc4\x30\x08\x05\xd0\x9e\x29\x58\xe1\x5a\xba\x9b\xe1\xa4\xeb\xbf\xf0\x97\x82\x12\xe3\xc8\x26\x9e\x3f\x0f\x77\xfc\x39\x57\x8c\x34\xdd\x1f\x39\x23\x9b\xe9\x8f\x73\x87\xf3\xeb\x3e\x9e\x2c\xe9\x2c\x34\x14\x4c\x54\x13\x9d\xa6\xbc\xb0\x2a\x7c\x11\xd3\x0f\x79\x03\x00\x00\xff\xff\xac\xf3\xf5\xdc\x44\x00\x00\x00") + +func examplesElasticsearchProduction_clusterServiceAccountYamlBytes() ([]byte, error) { + return bindataRead( + _examplesElasticsearchProduction_clusterServiceAccountYaml, + "examples/elasticsearch/production_cluster/service-account.yaml", + ) +} + +func examplesElasticsearchProduction_clusterServiceAccountYaml() (*asset, error) { + bytes, err := examplesElasticsearchProduction_clusterServiceAccountYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/elasticsearch/production_cluster/service-account.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesElasticsearchServiceAccountYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\xb1\x0d\xc4\x30\x08\x05\xd0\x9e\x29\x58\xe1\x5a\xba\x9b\xe1\xa4\xeb\xbf\xf0\x97\x82\x12\xe3\xc8\x26\x9e\x3f\x0f\x77\xfc\x39\x57\x8c\x34\xdd\x1f\x39\x23\x9b\xe9\x8f\x73\x87\xf3\xeb\x3e\x9e\x2c\xe9\x2c\x34\x14\x4c\x54\x13\x9d\xa6\xbc\xb0\x2a\x7c\x11\xd3\x0f\x79\x03\x00\x00\xff\xff\xac\xf3\xf5\xdc\x44\x00\x00\x00") + +func examplesElasticsearchServiceAccountYamlBytes() ([]byte, error) { + return bindataRead( + _examplesElasticsearchServiceAccountYaml, + "examples/elasticsearch/service-account.yaml", + ) +} + +func examplesElasticsearchServiceAccountYaml() (*asset, error) { + bytes, err := examplesElasticsearchServiceAccountYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/elasticsearch/service-account.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesExamples_testGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5b\x7b\x77\xdb\x36\x96\xff\x5b\xfc\x14\xb7\xec\x49\x8e\xd8\x4a\x64\x92\x49\xb7\x5d\x75\xdc\x1c\x37\x76\x66\xdd\x49\x93\x6c\xe4\xb6\x67\x4e\x9c\x4d\x40\xf2\x92\x42\x4c\x02\x1c\x00\x94\xac\xba\xfe\xee\x7b\x00\xf0\x29\x51\x96\xdc\x4e\x3d\x93\x3f\x1c\x09\xbc\x8f\xdf\x7d\xe0\xe2\x82\x80\x82\x2f\x9c\xe7\xbc\x58\x0b\x9a\x2e\x14\x3c\x79\xf4\xf8\x29\x9c\x2f\x10\xfe\x5e\x86\x28\x18\x2a\x94\x70\x5c\xaa\x05\x17\xd2\x77\x9c\x97\x34\x42\x26\x31\x86\x92\xc5\x28\x40\x2d\x10\x8e\x0b\x12\x2d\x10\xaa\x27\x13\xf8\x19\x85\xa4\x9c\xc1\x13\xff\x11\x8c\x35\x81\x5b\x3d\x72\xbd\x6f\x9d\x35\x2f\x21\x27\x6b\x60\x5c\x41\x29\x11\xd4\x82\x4a\x48\x68\x86\x80\x57\x11\x16\x0a\x28\x83\x88\xe7\x45\x46\x09\x8b\x10\x56\x54\x2d\x8c\x92\x4a\x84\xef\xfc\xa3\x12\xc0\x43\x45\x28\x03\x02\x11\x2f\xd6\xc0\x93\x2e\x15\x10\xe5\x38\x00\x00\x0b\xa5\x8a\x59\x10\xac\x56\x2b\x9f\x18\x94\x3e\x17\x69\x90\x59\x2a\x19\xbc\x3c\x7b\x7e\xfa\x6a\x7e\x3a\x7d\xe2\x3f\x72\x9c\x9f\x58\x86\x52\x82\xc0\x7f\x96\x54\x60\x0c\xe1\x1a\x48\x51\x64\x34\x22\x61\x86\x90\x91\x15\x70\x01\x24\x15\x88\x31\x28\xae\x71\xae\x04\x55\x94\xa5\x13\x90\x3c\x51\x2b\x22\xd0\x89\xa9\x54\x82\x86\xa5\xea\x39\xa8\x46\x45\x25\x74\x09\x38\x03\xc2\xc0\x3d\x9e\xc3\xd9\xdc\x85\xef\x8f\xe7\x67\xf3\x89\xf3\xcb\xd9\xf9\xff\xbc\xfe\xe9\x1c\x7e\x39\x7e\xfb\xf6\xf8\xd5\xf9\xd9\xe9\x1c\x5e\xbf\x85\xe7\xaf\x5f\x9d\x9c\x9d\x9f\xbd\x7e\x35\x87\xd7\x2f\xe0\xf8\xd5\x3f\xe0\xef\x67\xaf\x4e\x26\x80\x54\x2d\x50\x00\x5e\x15\x42\x63\xe7\x02\xa8\x76\x1d\xc6\xbe\x33\x47\xec\x29\x4f\xb8\x05\x23\x0b\x8c\x68\x42\x23\xc8\x08\x4b\x4b\x92\x22\xa4\x7c\x89\x82\x51\x96\x42\x81\x22\xa7\x52\x07\x4f\x02\x61\xb1\x93\xd1\x9c\x2a\xa2\xcc\xf7\x2d\x73\x7c\xe7\x8b\xc0\x71\x0a\x12\x5d\x6a\x21\x78\x45\xf2\x22\x43\xf9\x41\xa1\x54\x8e\x43\xf3\x82\x0b\x05\x63\x67\xe4\x26\xb9\x72\x9d\x91\x4b\x79\x40\x79\xa9\x68\xa6\xbf\x70\xa9\xff\x16\x44\x2d\x02\x1d\x7b\xfd\x41\x0f\x08\x4c\xf1\xaa\xd0\x9f\xb4\x97\x58\x6a\xa8\xb4\x40\xca\x52\xd7\x71\x46\x6e\x4a\xd5\xa2\x0c\xfd\x88\xe7\x41\xca\xb5\x01\x41\x9a\x71\xf3\x28\x47\x45\x96\x8f\xc1\xbd\xfc\x46\xfa\x94\x07\xa4\xa0\x39\x89\x16\x94\xa1\x58\x07\xc5\x65\xaa\x07\x64\xa0\x89\x82\xe5\x63\x2d\x75\x17\x9d\x28\x99\xa2\x39\xde\x46\xa2\xd6\x05\xca\xdb\x08\xb4\x95\xc1\x92\x64\x34\x36\xbe\x0b\x12\x8a\x59\xbc\x97\x61\x4d\xf2\xac\x43\x74\xd9\xcc\xbe\x1a\xff\xad\x0f\x03\xed\xa6\xbd\x44\x2d\xa8\x5b\xe9\x64\x40\x8a\x42\x9b\xa8\xff\x6b\x79\x60\x1f\xc7\xe1\xf2\x43\xa2\xa2\xc5\x1e\x1a\xbc\x52\xc8\x4c\x32\xba\xce\x08\xaf\x8a\x03\x81\xb4\x6c\x07\xc1\x89\x48\x41\x42\x9a\x51\x45\x7b\x41\xdd\xa0\x12\x98\xea\x99\xbb\xb6\xc0\x83\x4f\x3c\x74\x9d\x91\x8c\x16\x18\x97\x19\x0a\x52\xd0\x41\x48\x59\x99\x52\x66\xf8\x1b\xd2\x2a\x90\x5d\xd6\x8c\xe8\xd8\xdd\x45\x40\x60\x59\x5c\xc7\x73\x9c\xa4\x64\x11\x54\x86\xe2\xeb\xf0\x13\x46\x6a\xcc\xc3\x4f\x50\x25\xb2\x6f\x87\x3c\x18\xa3\x10\x5c\xe8\x5a\x8b\x59\xec\x9f\xea\x2f\x2f\xa9\x54\x1e\x5c\x3b\x23\xb9\xa2\x2a\x5a\x80\x82\xd9\x11\xf0\xf0\x93\x3f\xd6\x29\x6e\x9e\x44\x44\x22\x7c\x41\x0a\xea\xbf\x45\x53\x0b\xb5\x33\x9f\x73\xa6\x04\xcf\x32\x14\x33\x67\x34\xa2\x09\x28\xff\x15\xc9\x51\x16\x24\x42\x38\x3a\x02\xd7\xd5\xac\xa3\x51\x6f\x18\xec\x0c\x6d\x87\x4e\x30\x21\x65\xa6\x9c\xd1\xe8\xc6\x19\x8d\x2a\x74\x47\xd0\xc6\xcc\xff\xb9\xb2\x6a\x50\xf5\x58\x79\x7b\xe1\x69\x03\x35\x44\x5d\xfb\xa8\x36\x4e\x10\x96\x22\x28\xff\x4c\x61\x2e\x2d\xc8\x46\x31\x29\x0a\x64\x71\xe5\xa6\xc9\xa6\x4b\x1f\x56\x4c\xef\xe8\x7b\xcf\xf7\x7d\xcf\xc2\x6e\xf5\xcf\x51\x2c\x69\x84\xf7\xe3\x90\x4a\xd9\x86\x0b\xaa\xd1\x7b\x34\xfa\x0d\x8f\xef\xc7\xe0\x37\x3c\xde\x30\xf6\x0d\x8f\xef\xd3\x50\xdd\xd2\x48\x85\x4c\xfd\xcc\xb3\x32\x37\x61\xbe\x15\xef\x06\xfd\x26\xf8\x8d\xc7\xcf\x33\x42\xf3\x7b\xf2\xe4\x90\xea\x6d\xdf\x9e\x63\x5e\xe8\x22\x73\x6f\xe1\xad\x15\x6e\x40\x39\x65\x71\xc1\x29\x53\xf2\x7e\x80\x34\xea\x36\x60\x34\xa2\xf6\x05\xbe\x21\xdc\x9a\x9b\x91\x40\x75\x5f\xd5\x41\xeb\xda\x00\xf0\x52\xb7\x72\x6f\xf5\x04\xb9\x1f\x10\xad\xbe\xad\x42\x2d\x79\x29\x22\xfc\xdf\x92\x2b\x72\x5f\xeb\x47\x47\x65\x07\x4e\xdb\x29\xf8\x27\x58\x64\x7c\x9d\x23\xfb\x33\x62\xd4\xeb\x5d\x1a\x54\xad\xca\x0e\x24\xd3\x5e\xf8\x3f\xf0\xf0\x5f\x07\x23\x08\xe0\x07\x1e\x02\x43\x8c\x25\xa4\xc8\x50\x98\x1c\xc9\x30\x52\x5c\x40\x44\xb2\x4c\x6f\x76\x30\xe1\x02\x3b\xce\x9b\xe8\x0d\x00\x7c\xe2\x61\x83\x17\x62\x8e\xd2\xec\xd7\x7c\x2b\x75\x8e\x38\x33\x3b\x2c\x39\x0b\x82\x4e\x67\xde\x69\x60\x3a\x1f\xa9\x94\x25\xca\xe0\xc9\xa3\xff\xfe\xea\xf1\xe7\xe6\x4b\xc4\x73\x6d\xfd\xf4\xf1\x37\x5f\x7f\xfd\xcd\xd7\x8f\x9e\x3e\x72\xb4\x61\xb6\x22\xff\x88\x8a\xf8\x3f\x9d\x9d\xc0\x11\x98\x76\x5b\x7f\x1e\xbb\x09\xb9\xc4\x92\xc6\xae\xd7\xf5\xae\xc6\x38\x57\xda\xa8\x74\xdd\x80\x1d\x33\x9a\x4d\x60\x30\xd4\x67\x2c\xd5\x9b\xa5\x7b\x8b\x73\xa5\x6f\x47\xde\x11\xcc\x39\x9b\xff\x29\xa5\x61\x47\xda\xd5\x1a\x7b\xf3\xb2\x90\xfe\x5c\x11\x85\x49\x99\xfd\x39\x60\xfa\x3b\x89\xb6\x56\xb5\x4a\x0d\x9e\xd8\x72\xf7\xca\xec\x46\xc7\x7a\xbd\x29\xb7\xbb\xae\x5b\xda\x33\xa6\x50\x30\x92\x19\x9e\xb1\x1d\x7b\x85\xab\x37\x44\x2d\xc6\xae\xeb\x4d\x20\xc9\x95\x15\x98\x8c\x5d\xc6\x3b\x69\x0f\x31\x26\x94\x61\x6c\xb6\xcb\x0f\x3e\x5f\xba\x13\xdd\x10\x7b\x9e\xe7\x68\x73\x04\xaa\x52\x30\xb0\xca\x9c\x9b\xaa\xf9\x5e\x91\xec\xf2\x87\xf9\xeb\x57\x2f\x68\x86\x72\x4c\xd9\x09\x15\x60\xf7\xaf\x13\x48\x18\x68\x9a\x31\x23\x39\x4e\x40\xef\x73\x9b\x47\x31\x51\x04\xde\xbd\x0f\xd7\x0a\x3d\xcf\xca\xd4\xfe\xad\x74\xd4\xdb\x62\xff\x17\x92\x5d\x5a\xa1\x13\x2b\xaa\x27\x84\xb2\x84\x03\x97\xbe\xd6\x7d\xc6\x12\x3e\xd1\x82\xac\xb0\x8e\x4c\x1d\x4c\x3d\xfe\xd9\x11\x30\x9a\xd9\x28\xb6\xb6\x98\x50\x59\x22\x2d\xce\x3f\x93\x27\x54\x8c\x3d\x78\xf8\xd0\x02\xfe\xec\x08\xac\x51\x5d\xbe\x06\xdf\xfc\x92\x16\x27\xb4\x11\x62\x5e\xe5\xcc\x8e\xda\xe7\xdf\x13\x89\x06\xb3\x57\xe1\xb8\x52\xbd\xe7\xa7\x57\x6a\xac\xbf\x78\xdf\x9a\x47\x3a\xcf\xfc\x4f\x92\x33\x17\x7e\xfb\xad\x1d\x31\x9b\x63\x0b\x40\xef\xf8\x7d\x6d\x6b\x32\x76\xcf\xed\xbb\x01\x78\x20\x5d\xeb\x5d\xad\x64\xa4\x3d\x6b\x1d\x31\x3b\x02\xfb\xd2\xc1\x7f\x8b\x24\xd6\x4e\x6a\xa0\x0c\xf9\xa4\xef\x14\x93\xc0\x23\x1d\x39\x2d\xa7\x7a\x23\xe1\x9f\x0b\x9a\xcf\xcb\x24\xa1\x57\x06\xf6\x44\x63\xf4\x9c\x5a\xe0\x00\xde\x11\x2f\x55\x83\x46\x8f\xfb\xe7\x5c\xa7\xcb\x58\xc3\x34\x48\x06\xa1\x34\x8e\xee\xa4\xea\x03\x39\x83\x07\xcb\xca\x54\x23\xd3\xf2\x1b\xa0\xc6\x6c\x38\x02\x5e\x2a\x0b\x5e\xff\x4d\x58\x27\xf5\x6c\xce\x55\xcd\x6d\x2d\x9f\xd1\xcc\x19\xdd\x78\x4d\x36\x6b\x97\x9e\xda\x97\x39\xb6\x14\xcf\xa3\x05\xe6\x44\x8e\x15\x7c\x51\xbd\x8a\xf1\xcf\x9b\xbd\xa1\xd4\x46\xe5\xa4\x78\x67\xdd\xf3\xbe\xf3\xb1\xbf\x01\xd5\x46\xb9\xbe\x1f\xd4\xef\x89\x82\xb4\x44\xa9\x42\xce\x2f\xdd\x99\xb5\xd8\x4d\x04\x67\x0a\x59\x3c\x8d\x9b\x95\xd1\x9d\x81\xfe\xf7\x70\x70\xa5\xbe\xbe\x99\x18\x3e\x81\x31\x95\x53\x99\x91\x25\x6e\xb0\x1e\xc2\x97\x13\xa9\x50\xf4\x19\x6f\xe7\x6b\x70\x4a\xbb\xe1\xaa\x40\x6a\x9c\x9d\x6d\xd8\xa0\x96\x1e\xc7\x6e\x6a\x6b\x4b\x5f\xfc\x36\xb5\xf9\x33\xec\xd3\x20\xc3\x94\x44\xeb\x6d\xd7\x46\xcd\xde\xb8\x2b\x76\x70\xf3\x3c\x04\xa9\xcf\x7e\x28\x6f\x65\x7c\x8f\x79\x1f\xef\x2d\xc6\x4d\x53\xde\x18\xd6\x0e\x6e\x5a\xf6\x9f\x6a\x58\x17\xf3\x66\x02\xfd\xbb\xf3\x67\x69\xb6\x84\xba\x57\x8b\x24\x6d\x7c\x1c\x2d\x48\x31\x95\x66\x53\x51\xdb\x67\xb7\x18\xb5\xd2\x9a\xbc\x63\xc4\x1b\x1e\xf7\x9e\x4e\xb5\x90\xc6\xb5\xcd\xd3\xdd\x10\xd2\xac\xd4\x16\x27\xb2\x0d\x75\x3d\x32\x2d\x78\xbc\x53\x5b\x4b\x85\xf5\x5e\xae\x06\xdd\x6c\xee\xb6\x69\xbb\xae\x3a\xc0\x51\x0d\xa6\xe6\xad\xdc\xb4\xe0\x19\x8d\xd6\x3a\x15\x12\x9a\xb6\x15\xa1\x46\xd9\x7d\xdf\xe7\xbf\x31\xb4\x35\x8a\x1d\x32\xa6\x2b\xaa\x16\x53\x53\x88\x62\x9b\x58\x3b\x65\xec\xf6\xa2\x08\xe3\xa0\x89\x5c\x15\x4d\x2c\x16\xb7\x44\xf3\x56\x59\x8d\x10\xfb\xb9\x67\xe1\x46\x1c\x44\x18\x5b\x0b\xfa\xaa\x6e\x89\xbc\x54\x5c\x90\x14\x83\x88\x48\x49\x58\x2c\x48\x0b\xb9\x1e\x99\xc6\xa6\x79\x95\x68\x17\x86\x87\x43\x8d\x74\x0d\xa0\x65\xba\xeb\xdc\x6e\x39\xf7\xcd\xa0\x1e\x6d\xd5\xc9\xca\xda\xd8\x7e\x4b\xbd\xcb\xea\xc8\xe6\xe0\x34\x66\x6d\x56\xc5\x4c\x4e\x43\x12\x5d\xea\x82\x2d\xa2\xda\xd1\xfb\x81\x77\xf9\x5a\xe8\x43\xb0\x35\x65\xb3\x26\x34\xd3\x69\x33\x86\xac\xee\xe9\xa7\x31\x2e\xfb\x33\xae\x69\xf7\xb7\x69\x0b\xd1\x4e\xcf\x21\xda\x6d\x1f\x60\x46\xa4\xa2\x91\x44\x22\xa2\x45\xe3\x05\x94\x1d\xe3\x0f\xf4\x00\xca\xa9\x5c\xf6\x98\x86\xac\xaf\x7c\x33\x25\x51\xc4\x4b\xb3\xe0\xeb\xdd\xe2\x30\xb4\xab\x22\xe3\xc2\x64\x8e\x45\x65\x9d\x75\x68\x2e\x2f\xc8\xaf\x98\x45\x44\xb6\xd3\xaf\x19\xb9\x4b\xc7\xd1\x32\xed\x59\x00\xb6\x91\xe4\xa8\x90\xb7\xf0\xed\xd7\xbb\xae\x58\x15\xd7\xde\xd5\x27\xe7\x2c\xe5\xbd\xf2\xbc\x9d\x54\x96\xe6\xee\x6b\x53\xbe\x96\xff\xcc\xa6\x2b\x2e\x62\x73\xd6\x39\x2d\xda\x6a\x94\x46\x38\xad\xaa\xd4\x56\xe8\x37\xdf\x77\xd6\x30\x32\x1e\x91\x6c\x9b\xeb\x56\x1e\x0b\x61\xbb\x3b\x1d\xf0\x44\x8b\xb3\x1f\xe6\x3b\x2c\xc2\xac\xb3\xf6\xb1\x44\x4e\xc3\x52\xae\x43\x7e\xd5\x4e\x8a\xfd\x71\x63\xd5\xd2\x86\xe2\x4e\x75\xa4\xc3\x76\x7b\x19\xd1\x84\xc5\x72\x70\x25\xd8\xe1\x42\xcb\xd1\x9f\xd6\xc3\x1c\xe6\xc5\x74\x97\x6d\x85\x61\xbf\x20\x1c\x66\x88\x66\xbb\xf3\xac\xe1\x05\x32\xb9\xa0\x89\x9a\x72\x41\x53\xca\x9a\x40\x6c\x3e\x98\x36\x75\xaf\x76\xd1\x56\x65\x6c\x59\xb6\x9a\xef\x7d\x3b\x94\x96\x75\x6b\xab\x31\x9c\x76\xa8\xa2\x81\x1e\xff\x20\x5d\x86\x75\x40\xcd\xed\xba\x62\x2a\x23\xbe\x44\xb1\xde\x5c\x65\xf7\xeb\x6a\x59\xf7\x2f\xb3\x4d\x13\x31\xf4\x6f\x67\xf1\x2e\x16\x24\x14\x3a\x39\x3a\x05\xb0\x33\x76\xd7\x2a\xd8\x65\xbd\x73\x46\xd5\x2b\x82\x69\xd0\xdb\x3e\xca\xb4\xeb\xc3\x01\xbb\xdb\x26\x64\xd3\x37\x5b\xfd\x98\xdd\x18\x20\x53\x94\x61\x76\x57\xd3\x37\xb8\xff\x80\xf5\x6a\x41\xd9\x65\x1c\x36\x1e\x20\x71\x4e\x59\x77\xc9\xd8\x04\x6e\x09\x3a\x1a\x07\xfb\x19\x41\xf7\x57\xab\x8d\x6e\x62\xbf\x87\x07\xec\x28\x88\x68\x5f\x58\xb4\x3d\x8f\x19\x9f\x56\xbd\x5c\xbb\x8b\xd8\xaa\x05\x96\x6e\x68\xdb\x78\x48\xbc\x7b\xdc\x1b\x53\x75\x70\xd6\x18\xfa\x92\xea\x96\xec\x6a\x7d\xd7\x98\x6f\x70\xef\x5d\xfc\x2d\xfd\x8a\x8b\xcb\xdf\x63\xdb\xaf\x58\x14\x98\x51\x36\x58\x24\x0f\xe7\x3e\xa8\x4e\xee\x88\xab\xfd\x3b\x4d\x9b\x28\x5e\xef\xf1\xfa\x6e\x2f\xfc\xbe\x17\x03\xbb\x3d\x78\xc0\x4b\x85\xc1\x7d\x6f\x83\x72\x63\xef\x3b\x3c\x43\xf3\xd6\x66\xfd\x6d\xca\x68\x1e\x96\xf2\x00\x9b\x3b\xd4\x43\x2b\x7b\x3b\x99\x2d\xe5\xef\xb3\xf0\x57\xce\x2f\x11\x8b\xed\xd4\x1f\xc4\xd4\x50\x0f\xaf\x65\x07\xbc\x81\xd0\x1b\xe5\x44\x06\xbd\x8d\x73\x22\xf7\x6c\x7b\x2d\xd1\x1d\x77\xbe\xb5\xc6\x84\x86\x02\x3f\x44\x0b\xc2\x18\x66\xed\xbb\xbb\xe8\x00\x11\x9f\xc8\x92\xe8\x4e\x47\xf1\x3c\x22\x6a\x2a\x69\x8c\x11\x69\x73\xb8\x7a\xdc\xce\xc5\x0e\xe4\x9a\xf5\xc9\x1d\x90\x92\x5f\x4b\x81\x1f\x12\x9a\x61\x5b\xc8\xf5\xd0\x9d\x45\xc4\x54\x5e\x1e\x20\xe2\xc6\x71\x46\xdd\x8b\x5a\xfe\x1c\xd5\x0b\x2e\xce\x51\x2a\x39\xee\x3d\x78\xde\xf9\xa2\xa5\x1e\x67\x19\x5f\xbd\x11\x74\x49\x33\x4c\x31\x9e\x81\x12\x25\x4e\xcc\x1b\x6f\xc7\xdc\x1c\xa9\x5e\xa5\x5f\x15\x18\x29\x8c\xdb\x6b\x24\xf6\xed\xb6\x16\xa1\x50\x56\x4f\x1e\xd9\x93\x27\xfd\xb1\x7f\xe8\x63\x85\x1c\x72\xd2\x53\x5d\x4b\xa9\xd4\x9d\xaf\x0b\x9c\x40\xc2\x4b\x66\xe4\xd7\xc3\xef\xb4\x90\xf7\xd5\x99\xc2\x67\xf6\xb1\x3d\x15\xd8\x38\x0b\x90\xf6\x50\x96\x71\x05\x0b\xb2\x44\x20\x60\xae\x92\x99\x53\xbd\xea\x24\xab\x39\x2d\xd0\x32\xbd\xce\x29\x47\x73\xc2\x61\xed\xfb\xf2\xcb\xe6\x0c\xa3\xc5\x06\x47\xdd\x23\x09\xe5\xbf\xe4\x69\x32\x76\xe5\x25\x2d\x0a\xca\x52\xd0\x08\x82\x07\xf2\x82\xed\x57\x42\x93\xe6\x04\x45\x4f\x6d\x42\x99\xac\x5c\xb5\xf3\x25\x5a\xe5\xab\xfa\x74\x44\x47\xa6\x3a\x52\x38\xc1\x88\xc7\x78\xc6\x14\x1f\x6f\x5f\xa4\xf3\x9f\xf3\x18\x23\xeb\xf5\x49\xcf\x1a\xef\xdb\x81\x63\x96\xae\x47\x21\xa6\xb1\x71\x66\x6c\x14\x40\xc4\x85\xc0\x48\x65\xeb\x19\x3c\x58\x5e\xb0\xe6\x94\xc9\x1c\xbd\x4c\x2a\x83\xec\x39\x8e\xd7\x3d\xb4\xe9\x1c\xca\x04\xc1\xf9\xeb\x93\xd7\x33\x38\x8e\xe3\xe6\xd2\x11\xe4\xa8\x16\xdc\x9e\x31\x0e\xbd\xd5\x33\x4e\x03\xcc\x24\x56\x20\x23\x6b\x51\xe5\x85\xea\xa6\xa7\xff\x37\x54\xc6\xd4\x17\x5c\x54\xd7\x98\x7a\xc6\xee\x3e\x59\x6a\x4d\x7e\xce\xcb\xcc\x5a\x9c\xa2\x02\xa3\xc6\x9e\x7c\x9a\xe4\x72\xfb\xee\xdb\x3a\x70\xba\x35\x30\xd1\x7f\x52\x14\x2c\x52\x2e\xcc\x71\xd5\xc6\xdd\xaf\x0d\x6c\x19\xb2\xea\x34\xd9\x83\xef\xe0\xd1\xad\x00\x9b\x80\xf6\x20\x76\xe1\x69\x31\x2d\x0e\xfd\xe7\xc6\x1b\x3e\x8f\x6d\x15\x9c\xd6\xb5\x88\x71\x2b\x62\x02\x7f\xe3\xca\x0a\xae\x22\x70\x53\x1d\xd0\xdb\xca\xf4\xd9\x91\x45\x5d\xf1\x79\x9b\x02\x4f\xa8\x30\x97\x3d\xd6\xf0\x60\x39\x83\x46\xfc\x83\xb8\xb9\xb5\x5d\x69\x68\x8b\x45\x4f\xde\xa4\x52\x54\x69\xbe\x71\x6e\x1c\x27\x08\xe0\x7c\x41\x25\x98\x2b\xdb\x40\x25\x28\x41\xa3\xcb\xf5\x04\xc2\x52\x01\x55\xa0\xd7\x78\xe9\x03\xbc\xe0\x02\x92\x52\x95\x42\x67\xfd\x04\x16\x28\xcc\x3d\x78\xb5\xc0\x2a\xbc\x33\x27\x08\xb4\xb4\x17\x19\x49\xe5\x0c\xc6\xcf\x72\xe9\xc1\x11\xe4\x65\xa6\x68\x46\x19\x42\x4e\x54\xb4\x98\x00\xd1\x85\x1c\x7c\x50\xdc\x8e\xc0\x05\xd3\x6c\x8f\x3d\x78\xc9\xf9\xa5\xc9\x5a\x02\x86\x41\x2d\x88\x02\xa9\x88\x50\xd2\xfe\x7e\xe0\xe3\xc7\x8f\x30\x26\x90\x13\x71\x19\xf3\x15\x33\x79\x0e\x61\xc6\xa3\x4b\x4f\x8b\x78\xe2\xc1\xf8\xd9\x0c\x7c\xdf\x07\xad\x99\x71\x36\x8d\x48\xa1\x4a\x9d\x56\x90\x0a\x5e\x16\x9a\xea\x2f\x1e\x8c\xdf\xfc\x55\x97\xac\xef\x34\x95\xa5\x40\xfb\x1c\x88\x04\xb3\x1b\x70\x35\xe5\xd3\x0e\xa4\xcf\x1f\x43\xc2\x35\x72\xfb\x83\x02\x7b\x5f\x7f\x66\xa8\x88\xa7\x1b\x08\xd7\x9e\x14\x77\x89\x08\x5b\x6b\xf7\xc5\xd3\x68\x41\x04\x89\x14\x0a\xd9\x7f\x0e\x0c\x57\xc6\xd2\x31\xfa\xa9\xaf\xcd\xd3\x42\x12\xce\x2f\x98\x31\xe8\x69\x68\x45\xff\x0e\x41\x9f\x24\x67\x95\x94\xaf\x3a\x66\x74\x70\x7f\x65\x71\x7f\xfe\x94\xf4\x64\x71\x86\xc0\x05\xe4\x5c\x20\x74\xd4\x8d\xb5\x37\xcd\x6f\x26\xd6\x56\x68\x58\x71\x87\x3d\xee\xeb\xbb\xca\xea\xd1\xdf\x68\xc9\xff\xd5\xf5\xfa\x57\x3b\xec\xec\x8e\x9a\xac\x40\x16\xd7\xbf\x1d\xe9\x67\x45\x93\xe0\x91\x29\x91\x85\xe0\x21\x09\xb3\x35\x84\x08\xd2\xfc\xc6\x22\xa1\x18\x57\xd9\x2e\x81\x64\x02\x49\xbc\x06\xc5\x39\xc4\x68\x7a\x58\xf4\x01\xbe\xb7\xb7\xaa\x08\x5b\x6b\x71\x02\x49\xa6\xed\x61\xa9\x9e\x70\x2b\x04\xb9\x30\xb2\x3b\x2b\xb7\x34\x2b\xb7\x49\xe0\x4f\xa5\x54\x76\xcc\xfe\x46\xc6\x4c\x34\xdf\x59\x12\x01\xd2\x4c\xda\xb7\xe6\xc7\x12\x70\x64\x9f\x14\xfe\x8f\xa5\x54\xcf\x79\x5e\xd0\x0c\xc7\xae\x99\x46\xff\xf7\xf1\xe3\xc7\xf1\xb3\xd9\xf8\xd9\x9b\xbf\xaa\x75\x81\xdf\xe9\x2c\xf1\x2e\x2e\x56\x5f\x5c\x5c\x30\x3d\x18\x99\x03\x00\xf5\x9d\xff\xe5\x33\xef\xb7\x81\xf1\x8b\x8b\x6b\xff\xcb\x67\x17\x17\x37\x9e\x77\x71\xc1\xb4\x34\xd7\xb3\x00\xca\x50\xa2\xda\x0f\xe0\xe2\xc2\xbf\xfe\xcb\x8d\xeb\x75\xae\x16\xbc\x45\x12\xe7\xb8\x7d\x99\x40\x97\x1d\x53\x9d\xdf\xbd\x97\x4a\x94\x91\x32\x45\xcc\xdc\x26\xa9\xff\xd9\x42\xef\xf4\xbb\x27\x78\xb7\x71\xd1\xc0\x19\xdd\x68\xce\x6b\xdd\x74\xbe\x3d\x3d\x3e\xf9\xf1\xd4\xcf\x75\x5d\xdb\xa4\xbb\x6e\xbb\xcc\x1b\xd3\x67\x5e\xef\x3e\x0a\x3d\x40\x50\x7d\x86\x76\x53\xb7\xab\x3a\x0f\x3f\x54\x8d\x60\xd3\x54\x5a\x2b\x35\xbe\xbd\x77\x54\x7c\x73\x29\x66\xdf\x5a\xf1\x13\x33\xbf\x4e\x52\x5c\x67\x57\x6c\x7f\x48\xb5\xe3\x96\x88\x8e\x2a\x65\x25\xd6\x37\x75\x4c\x15\xb5\x17\x38\xba\x09\xe5\xbf\xa0\x2c\x3e\xce\xb2\xb9\xf1\xf6\xbc\x0c\x0d\xdd\xb8\xbb\xca\x4e\x60\xfa\xb8\x42\x56\x0b\xe9\xf6\x89\x3d\x45\xa3\x11\xbd\xaa\x5b\xe7\xca\x25\xb6\x7c\x37\x3e\xa9\x45\x18\x5e\x9d\x5d\x55\xfa\x4d\x74\x9a\xe9\xbc\x6d\x03\x6f\xaf\x7a\xdb\x2e\xb3\x15\xd0\x43\x3f\x2f\x43\xbc\x2a\xcc\x8b\x97\x71\xa7\x81\x34\x1c\x47\x47\xe0\x6a\x81\xf5\xc5\x9c\x51\xad\xe0\xc8\x82\x78\x47\xdf\xf7\x7b\x86\x86\xab\x82\xe4\xc2\xc3\x87\x0d\xa9\x8e\x88\xdb\x88\xaa\x28\x06\x45\x35\x0d\x70\xad\xee\xa8\x2e\xfb\x0f\x1f\xf6\xe6\x92\xf1\xbd\x75\xfc\xb8\x12\xe8\xf5\xd4\x6c\x75\xe0\xe3\x07\xd2\x9b\x41\xd5\x14\x55\xf2\x27\xb5\x07\x3d\x67\xd4\x0f\x47\x75\x29\x48\x3b\xb9\x37\x87\x36\x67\x90\x41\xab\x5b\x00\x93\x88\xbd\x06\x49\x83\x7f\x5c\xa1\xe9\xef\x14\x60\x8b\xf8\xdd\xa3\xf7\x5b\xad\xec\x5e\x1e\x7a\x65\x3d\x47\xaf\xec\x8e\xc4\x38\x4f\x2f\x4b\x83\x77\xa8\xec\xae\xaa\x71\xd6\xce\x8b\x5d\xbd\xf6\x2d\x6a\xba\xde\x50\x97\x7d\xb6\x44\xa1\xec\x8f\xfa\xb4\xcc\x5b\xbb\xcc\x9e\xa2\x1b\x67\x5f\x13\x5c\xb7\xea\xd5\xa5\x48\xbb\x35\x19\x7b\x13\xa8\x0c\xda\xd3\x16\xff\xf1\xae\xb8\x87\x77\x23\x15\xfe\x15\x7d\xf1\x1f\x6c\x8b\x0d\x88\x0f\x36\xb2\xad\x03\x4f\x99\xb6\x70\xb7\xf3\xb6\xb6\x39\xb7\x47\xbc\xdd\xe4\xa0\x11\x0c\xdc\x18\x38\xeb\x75\xd4\xdb\xce\xa9\x3a\xdd\xff\x0f\x00\x00\xff\xff\x77\x20\xc0\x8f\x1c\x3b\x00\x00") + +func examplesExamples_testGoBytes() ([]byte, error) { + return bindataRead( + _examplesExamples_testGo, + "examples/examples_test.go", + ) +} + +func examplesExamples_testGo() (*asset, error) { + bytes, err := examplesExamples_testGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/examples_test.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesExplorerBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\xcd\x6a\xc3\x30\x10\x84\xef\x7e\x0a\xa1\x53\x1c\x9a\xe8\x6e\x08\xf4\x3d\x82\x31\x2b\x6b\xb3\x11\xdd\x78\x8d\x7e\xd2\x26\x4f\x5f\x1c\xd9\x6d\x5d\x42\x2e\x06\xcf\xcc\x8e\x3e\x69\x47\xe8\x3f\x80\x70\xe3\xf0\x04\x99\x53\x77\xf5\xd1\x5b\xcf\x3e\xdd\xd4\x41\x1d\xb5\x31\xbf\x42\x33\x66\xcb\xbe\xd7\x6d\x5d\x55\x2c\xe0\x36\x95\x52\x4a\xe9\x77\x2f\x9d\x85\x3b\x72\x17\x32\x63\xec\x48\x8c\x21\x69\x1c\x9e\xf6\xf6\xce\xfa\xad\xa4\x48\x3a\xeb\x07\x08\xb7\x3f\x02\x7b\x1b\x8a\x52\x57\xd5\x4f\xa0\xd4\x0e\x70\x41\x75\x50\x1a\xbf\x46\x96\x80\x61\x1e\x9b\x47\x26\xa7\x21\xe9\x16\xea\xff\x4d\xf3\xff\xba\xea\x69\x7e\x0a\xc4\xd0\xc7\xc7\x6d\x97\xc3\xf6\x24\xba\x2d\x9e\xc3\x31\x2e\x2f\x81\x83\x93\x60\xc8\xa7\x73\xb6\xfb\x5e\x2e\xc6\xc1\x15\x7b\x3a\x1b\x92\x5d\x1c\xf1\xd3\x4c\x9f\x67\x58\xed\x83\xeb\xe4\x19\x29\x48\x1e\xd7\x58\xf3\x06\x76\x13\xc5\x1a\x88\x58\xec\xe6\xa8\xb7\x5b\xdd\xd6\xc5\x48\x40\x85\x06\x72\x92\x0b\x0c\x40\xe8\x16\xd2\x97\x9b\x0b\xfe\x0a\x09\x5f\x83\x00\xf3\x13\x88\xa3\x6e\x56\x84\xed\x6b\x92\xba\xfa\x0e\x00\x00\xff\xff\x40\x55\x67\x06\x52\x02\x00\x00") + +func examplesExplorerBuildBytes() ([]byte, error) { + return bindataRead( + _examplesExplorerBuild, + "examples/explorer/BUILD", + ) +} + +func examplesExplorerBuild() (*asset, error) { + bytes, err := examplesExplorerBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/explorer/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesExplorerDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x8f\x9b\x3e\x10\xc5\xef\xfe\x14\x4f\x70\xf9\xff\xa5\x94\xa4\x39\x54\xab\xf6\x44\x13\x56\x45\xbb\x0b\x2b\x60\xbb\x8d\xaa\x1e\x1c\x98\xc0\x48\xc4\x76\x6d\x53\x36\xdf\xbe\x82\x24\x6a\xa3\xfa\x34\x9a\x79\xf3\xfc\xf3\x73\x88\x8d\x36\x27\xcb\x6d\xe7\xb1\x5e\xbd\xff\x80\xaa\x23\x3c\x0c\x7b\xb2\x8a\x3c\x39\xc4\x83\xef\xb4\x75\x91\x08\x45\x88\x47\xae\x49\x39\x6a\x30\xa8\x86\x2c\x7c\x47\x88\x8d\xac\x3b\xba\x4e\x16\xf8\x4a\xd6\xb1\x56\x58\x47\x2b\xfc\x37\x09\x82\xcb\x28\xf8\xff\x93\x08\x71\xd2\x03\x8e\xf2\x04\xa5\x3d\x06\x47\xf0\x1d\x3b\x1c\xb8\x27\xd0\x5b\x4d\xc6\x83\x15\x6a\x7d\x34\x3d\x4b\x55\x13\x46\xf6\xdd\x7c\xcd\xc5\x24\x12\x21\x76\x17\x0b\xbd\xf7\x92\x15\x24\x6a\x6d\x4e\xd0\x87\xbf\x75\x90\x7e\x06\x9e\x4e\xe7\xbd\xf9\xb8\x5c\x8e\xe3\x18\xc9\x19\x36\xd2\xb6\x5d\xf6\x67\xa1\x5b\x3e\xa6\x9b\x24\x2b\x93\x77\xeb\x68\x35\xaf\xbc\xa8\x9e\x9c\x83\xa5\x9f\x03\x5b\x6a\xb0\x3f\x41\x1a\xd3\x73\x2d\xf7\x3d\xa1\x97\x23\xb4\x85\x6c\x2d\x51\x03\xaf\x27\xde\xd1\xb2\x67\xd5\x2e\xe0\xf4\xc1\x8f\xd2\x92\x08\xd1\xb0\xf3\x96\xf7\x83\xbf\x09\xeb\x4a\xc7\xee\x46\xa0\x15\xa4\x42\x10\x97\x48\xcb\x00\x9f\xe3\x32\x2d\x17\x22\xc4\x6b\x5a\x7d\xc9\x5f\x2a\xbc\xc6\x45\x11\x67\x55\x9a\x94\xc8\x0b\x6c\xf2\x6c\x9b\x56\x69\x9e\x95\xc8\xef\x11\x67\x3b\x3c\xa4\xd9\x76\x01\x62\xdf\x91\x05\xbd\x19\x3b\xf1\x6b\x0b\x9e\x62\xa4\x66\xca\xac\x24\xba\x01\x38\xe8\x33\x90\x33\x54\xf3\x81\x6b\xf4\x52\xb5\x83\x6c\x09\xad\xfe\x45\x56\xb1\x6a\x61\xc8\x1e\xd9\x4d\x9f\xe9\x20\x55\x23\x42\xf4\x7c\x64\x2f\xfd\xdc\xf9\xe7\x51\x91\x10\xf7\x45\xfe\x04\x57\x5b\xe9\xeb\x4e\xc4\xdb\xed\x04\xd3\x6b\x7b\xa6\x9a\x8b\xb9\x5b\x24\xf1\xf6\x29\x89\x8e\xcd\x9f\x4a\x24\xdf\x9e\xf3\x32\xc1\xdd\xea\x6e\x25\x92\xac\x2a\x76\xcf\x79\x9a\x55\xf8\x1e\x2c\xaf\xab\xc1\x0f\xf1\x3b\x00\x00\xff\xff\x24\x50\x34\x7c\xac\x02\x00\x00") + +func examplesExplorerDockerfileBytes() ([]byte, error) { + return bindataRead( + _examplesExplorerDockerfile, + "examples/explorer/Dockerfile", + ) +} + +func examplesExplorerDockerfile() (*asset, error) { + bytes, err := examplesExplorerDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/explorer/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesExplorerMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6f\xe3\x36\x10\x85\xcf\xe6\xaf\x78\xb0\x0a\xec\x2e\x60\xc9\x4e\x0e\x3d\xb8\xc8\x41\xeb\xb8\xae\x90\xc0\x02\x22\x6f\x17\x39\x05\x14\x35\xa2\x88\xd2\x24\x4b\x52\x91\xfd\xef\x0b\x29\x76\x9a\xa0\x97\xea\x24\x68\xde\x7c\xf3\xf4\x66\x12\x6c\xac\x3b\x7b\x25\xbb\x88\xdb\xd5\xcd\xaf\x38\x74\x84\x87\xbe\x26\x6f\x28\x52\x40\xde\xc7\xce\xfa\x90\xb1\x84\x25\x78\x54\x82\x4c\xa0\x06\xbd\x69\xc8\x23\x76\x84\xdc\x71\xd1\xd1\xb5\xb2\xc0\x9f\xe4\x83\xb2\x06\xb7\xd9\x0a\x5f\x47\xc1\xfc\x52\x9a\x7f\xfb\x8d\x25\x38\xdb\x1e\x47\x7e\x86\xb1\x11\x7d\x20\xc4\x4e\x05\xb4\x4a\x13\xe8\x24\xc8\x45\x28\x03\x61\x8f\x4e\x2b\x6e\x04\x61\x50\xb1\x9b\xc6\x5c\x20\x19\x4b\xf0\x7c\x41\xd8\x3a\x72\x65\xc0\x21\xac\x3b\xc3\xb6\x1f\x75\xe0\x71\x32\x3c\x3e\x5d\x8c\x6e\xbd\x5c\x0e\xc3\x90\xf1\xc9\x6c\x66\xbd\x5c\xea\x37\x61\x58\x3e\x16\x9b\xed\xbe\xda\xa6\xb7\xd9\x6a\x6a\xf9\x61\x34\x85\x00\x4f\x7f\xf7\xca\x53\x83\xfa\x0c\xee\x9c\x56\x82\xd7\x9a\xa0\xf9\x00\xeb\xc1\xa5\x27\x6a\x10\xed\xe8\x77\xf0\x2a\x2a\x23\x17\x08\xb6\x8d\x03\xf7\xc4\x12\x34\x2a\x44\xaf\xea\x3e\x7e\x0a\xeb\xea\x4e\x85\x4f\x02\x6b\xc0\x0d\xe6\x79\x85\xa2\x9a\xe3\x7b\x5e\x15\xd5\x82\x25\xf8\x59\x1c\xfe\x28\x7f\x1c\xf0\x33\x7f\x7a\xca\xf7\x87\x62\x5b\xa1\x7c\xc2\xa6\xdc\xdf\x17\x87\xa2\xdc\x57\x28\x7f\x47\xbe\x7f\xc6\x43\xb1\xbf\x5f\x80\x54\xec\xc8\x83\x4e\xce\x8f\xfe\xad\x87\x1a\x63\xa4\x66\xcc\xac\x22\xfa\x64\xa0\xb5\x6f\x86\x82\x23\xa1\x5a\x25\xa0\xb9\x91\x3d\x97\x04\x69\x5f\xc9\x1b\x65\x24\x1c\xf9\xa3\x0a\xe3\x32\x03\xb8\x69\x58\x02\xad\x8e\x2a\xf2\x38\x7d\xf9\xcf\x4f\x65\x8c\x71\xad\xd7\x70\x7d\xe8\x18\x4b\xf0\x40\xe4\xde\xd6\x6b\x0d\xe1\xf5\x72\x16\xbc\x23\xde\x8c\x49\xc1\xd8\xa9\xc0\x85\x50\x0d\x99\xc8\xb5\x3e\xa3\xd6\x76\x08\xe0\x03\x3f\x4f\x64\xcd\x23\x85\x08\xd7\xd7\x5a\x85\x8e\x9a\x2b\x25\x63\x87\x7c\x87\x3b\xdc\x64\x37\x8c\xd1\xc9\x69\xeb\xc9\xaf\x71\x7d\xcb\xa4\x65\xb3\xcd\xae\x7c\xd9\xee\xf3\xef\x8f\xdb\xfb\xbb\x15\x76\x65\x59\xdd\x69\x65\xfa\x13\xa4\x45\xdd\x2b\xdd\x20\xe5\x48\x95\x09\xe3\xe4\xd0\xb7\xad\x3a\x41\x48\x8b\x54\x37\xad\xe6\x32\xe0\x4b\x3a\x7c\x41\xb6\xfc\x08\x65\xc2\x9a\xf1\xe6\x3e\x0e\x63\xb3\xc6\x8a\xbf\xc8\x5f\xa1\xa9\xeb\xb5\x46\x1a\x21\x85\xcf\x94\x5d\x4a\x6b\xa5\xa6\x97\xf7\xce\xf0\x4e\x5c\xff\xf2\xf5\x90\xef\xbe\x21\x63\x6c\xcc\x6c\x8d\x77\x0d\x9b\x49\xa1\x6d\xdf\xe0\x82\x4e\xd3\x29\xd5\xff\x8d\x64\x4c\x68\xe2\x66\xcd\x66\xfe\x88\xb4\xfd\xd7\xeb\x3f\x01\x00\x00\xff\xff\xcd\x98\x07\xdd\xed\x03\x00\x00") + +func examplesExplorerMakefileBytes() ([]byte, error) { + return bindataRead( + _examplesExplorerMakefile, + "examples/explorer/Makefile", + ) +} + +func examplesExplorerMakefile() (*asset, error) { + bytes, err := examplesExplorerMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/explorer/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesExplorerExplorerGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x7f\x6f\xe3\xb8\x11\xfd\xdb\xfc\x14\x53\x16\x41\xa5\x40\x27\xa5\x0b\x14\x38\xa4\xb6\x0b\x37\x3f\xba\xc6\xe6\x9c\x34\xf6\xde\xee\xa1\x29\x1a\x4a\x1a\xc9\x6c\x24\x52\x26\x29\x39\xc6\xc1\xdf\xbd\x18\xca\xce\x8f\x4b\x2e\x77\xbb\x5d\x04\xb0\x22\x71\xf8\xde\xe3\xbc\x19\x4e\x72\xc8\x4e\x74\xb3\x31\xb2\x5c\x3a\x78\x77\xf4\xe7\xbf\xc0\x62\x89\xf0\xa1\x4d\xd1\x28\x74\x68\x61\xd2\xba\xa5\x36\x36\x66\xec\x42\x66\xa8\x2c\xe6\xd0\xaa\x1c\x0d\xb8\x25\xc2\xa4\x11\xd9\x12\x61\xb7\x12\xc1\x8f\x68\xac\xd4\x0a\xde\xc5\x47\x10\x50\x00\xdf\x2d\xf1\xf0\xaf\x6c\xa3\x5b\xa8\xc5\x06\x94\x76\xd0\x5a\x04\xb7\x94\x16\x0a\x59\x21\xe0\x7d\x86\x8d\x03\xa9\x20\xd3\x75\x53\x49\xa1\x32\x84\xb5\x74\x4b\x4f\xb2\x83\x88\xd9\x4f\x3b\x00\x9d\x3a\x21\x15\x08\xc8\x74\xb3\x01\x5d\x3c\x8d\x02\xe1\x18\x03\x00\x58\x3a\xd7\x1c\x27\xc9\x7a\xbd\x8e\x85\x57\x19\x6b\x53\x26\x55\x1f\x65\x93\x8b\xe9\xc9\xd9\x6c\x7e\xf6\xdd\xbb\xf8\x88\xb1\x8f\xaa\x42\x6b\xc1\xe0\xaa\x95\x06\x73\x48\x37\x20\x9a\xa6\x92\x99\x48\x2b\x84\x4a\xac\x41\x1b\x10\xa5\x41\xcc\xc1\x69\xd2\xb9\x36\xd2\x49\x55\x46\x60\x75\xe1\xd6\xc2\x20\xcb\xa5\x75\x46\xa6\xad\x7b\x96\xa0\xbd\x2a\x69\xe1\x69\x80\x56\x20\x14\xf0\xc9\x1c\xa6\x73\x0e\x7f\x9f\xcc\xa7\xf3\x88\x7d\x9a\x2e\xde\x5f\x7e\x5c\xc0\xa7\xc9\xf5\xf5\x64\xb6\x98\x9e\xcd\xe1\xf2\x1a\x4e\x2e\x67\xa7\xd3\xc5\xf4\x72\x36\x87\xcb\x73\x98\xcc\x7e\x82\x0f\xd3\xd9\x69\x04\x28\xdd\x12\x0d\xe0\x7d\x63\x48\xbb\x36\x20\x29\x75\x98\xc7\x6c\x8e\xf8\x8c\xbc\xd0\xbd\x18\xdb\x60\x26\x0b\x99\x41\x25\x54\xd9\x8a\x12\xa1\xd4\x1d\x1a\x25\x55\x09\x0d\x9a\x5a\x5a\x32\xcf\x82\x50\x39\xab\x64\x2d\x9d\x70\xfe\xfd\xc5\x71\x62\x76\x98\x30\x96\x24\x30\x01\x27\xd5\x06\xd6\x98\x82\x45\xd3\xa1\xf1\x5c\x9d\xc4\x35\x61\xd2\x0e\x54\x9d\x34\x5a\xd5\xa8\x1c\xdc\x3d\x56\x55\x66\x50\xd0\x93\xc2\x37\xba\x35\x04\x96\x69\x45\xbe\xa2\xb1\x31\x4c\x1d\x9d\x4c\x5b\xb4\x1e\x85\xaa\xc4\x6e\xac\xc3\x9a\xc4\x3d\x03\xed\x84\x91\x64\x93\x85\x4e\x0a\xef\x3a\x61\xf5\x6a\x62\xd6\x88\xec\x8e\x0e\x5a\x0b\xa9\x18\x93\x75\xa3\x8d\x83\x80\x0d\x78\x51\x89\x92\xd3\xb3\x76\xf4\xa8\xb4\x7f\x53\xe8\x76\x8f\x84\x90\xe8\x7f\x6d\x39\x63\x03\x5e\x4a\xb7\x6c\xd3\x38\xd3\x75\x92\x8b\x0e\xb3\x72\x99\x94\xfa\x3b\xdb\xe0\x3a\xa1\x1f\xce\x42\xc6\x3a\x61\x08\xdb\x73\x8c\x80\x18\xe2\xa9\x72\x01\xa7\x0f\x3c\x82\xef\x8f\xbe\x3f\x8a\x80\x5f\xd1\xb2\x6a\xeb\x94\x72\xaa\x7b\xa5\x20\x5c\xcc\x43\xc2\x28\x5a\x95\x79\xb5\x41\x08\x3f\xb3\x81\x07\xb9\x12\xc6\x62\x10\xb2\xc1\x52\x5b\xa7\x44\x8d\x11\xa0\x31\x70\x3c\x02\x6d\xe3\xf7\xbb\x6f\xb4\x2e\x0b\xbf\xf0\x87\x11\x28\x59\xd1\xf6\x41\xa5\xcb\xf8\x5c\x38\x51\x15\x01\x3f\x33\x46\x1b\x28\xd1\x51\xe5\xc2\x1e\xeb\x18\x0e\x3a\xee\x01\x43\x36\xd8\x32\x36\xa8\xa4\xba\xb3\x04\xfe\xaf\x7f\x5b\x67\xda\xcc\xf5\x40\x52\xdd\x45\x90\xa3\xcd\x80\xca\x58\x95\x6c\xb0\xa5\xef\x3f\xf3\xa4\xb0\x09\x8f\x80\x9f\x50\xeb\xa2\xeb\xcd\x82\xbd\x5b\x16\x2c\xa2\xa2\x8e\xf2\xed\xfe\xe0\x71\xcc\xb7\x51\xbf\xbd\x13\xa6\x07\x38\x7b\xd5\xd5\xdf\x81\xb0\x3f\x8a\x47\xd9\xe7\xe3\xf7\x6c\xcc\x95\xfd\xdb\x6a\x54\x6a\x5d\x56\x48\xd6\x7a\x15\xf7\x4d\xa5\x0d\xc2\xe9\x6c\x0e\x06\x33\x6d\xf2\xdf\xc6\x59\xb5\xd2\xf9\x14\x88\x87\x7b\xed\x21\x8a\x3c\xc6\x7b\xe9\xfa\x68\x4a\x30\x55\x56\xfc\x5e\xa8\xbc\xc2\xf3\x56\x65\x01\x27\xdd\xe4\x7b\xb0\xf6\xf5\x1b\x5f\xa3\x6d\xb4\xb2\xf8\xc9\x48\x87\x26\x02\x03\x87\xbb\xef\xab\x16\xad\xf3\x85\x31\x28\x6a\x17\x9f\x37\x46\x2a\x57\x04\xeb\x08\xf8\x30\x1d\x3f\xbd\xb6\x9f\xb6\x08\xf6\x47\x32\x30\x4c\xd2\xf1\x30\x35\x49\xff\xc3\x43\x82\xd1\x06\xfe\x13\x41\x47\x86\x1b\xa1\x4a\x84\xde\x7f\xa2\xf8\x25\xc7\xed\x50\xc0\xd2\x60\x31\xe2\x07\x1d\x1f\x1f\x74\x54\x3a\xc3\x44\xf4\x68\xb7\x11\x74\x71\x5f\x25\x8f\x4f\xaa\x17\x62\xd9\xb2\xc1\x36\x7c\x7e\xf4\x60\x5f\x38\xfe\xdb\xdc\x19\xd9\x5c\x19\x2c\xe4\xfd\xf3\x85\x73\x59\xe1\xdc\x37\x73\xe0\xdf\x4f\xa5\xa1\x84\x85\x61\x18\xbe\x96\xc9\x7d\x31\x7d\x79\x3a\x5f\xe4\x41\xdb\x78\x57\x91\x7d\x2b\xbe\x4c\xf9\x41\x77\xa3\x78\x04\xdd\xe3\x09\x5f\x51\xf4\xb4\x38\xff\x5f\x93\xf7\x58\xe1\xaf\x91\xed\x0a\xf1\x8b\x79\xe8\xac\xf7\xd2\x05\x47\xbf\x8a\x9c\x2b\xcb\x23\xc8\x95\x25\x1b\x4b\x0d\x0f\x17\x4b\x6f\xcb\x85\xb4\x0e\xd5\x44\xe5\xde\xab\x80\x74\xcf\x77\xba\xf9\x51\xec\xff\x8e\x0f\x72\x1e\xc1\x21\x5d\x86\x61\x44\x17\x54\x48\x50\x16\x2b\xa4\x2b\x66\xcb\xb6\xbb\xcb\x2f\x57\xf6\x4b\xb4\xaf\xbc\x63\xf1\xc7\xeb\x8b\xf8\x9f\x2d\x9a\x4d\x10\xc6\xff\x40\x17\xf0\x15\x95\x77\x92\xc0\x4c\x3b\x6a\x49\xe1\xfc\x20\x49\xb1\xd2\x6b\x9a\xc6\xb3\xcb\x05\x58\x51\x20\x14\x46\xd7\x20\x55\xd3\x3a\x10\xce\x89\xec\xce\x46\x90\xb6\xce\x6f\xf9\x93\x85\xcb\x0f\x1e\x25\xc5\xec\xb1\xb7\xa5\x85\xff\xb6\xd6\xf9\xe1\x95\x63\xda\x96\xa5\x54\x65\xcc\x5e\xb6\xcb\xd2\xd5\xd5\x78\x98\xea\x7c\x33\x66\xc3\x42\x9b\x1a\x44\x46\x23\x75\xd4\xe7\x73\xcc\x86\x3d\x31\x79\x3a\xe2\x2b\x0e\x6e\xd3\xe0\x88\x3b\xbc\x77\x1c\x3a\x51\xb5\xd8\xb7\xda\x30\xf1\x71\x63\x36\x4c\x5b\xe7\xb4\xda\xc5\xd9\x36\xad\xa5\xe3\xe3\x0b\xad\xef\xda\x66\x98\xf4\x8b\x63\x36\x4c\x88\x8b\xa2\xf7\xad\x3e\x6c\x0c\x52\x87\xae\x42\x36\x20\xbf\x0d\xda\x87\x19\xa2\xd0\xc5\x3d\xc2\x6c\x1e\x50\xc0\x80\x06\xda\xb3\x42\x7f\x58\x3e\xe8\xc2\xe3\x1b\x75\x8d\xb6\xad\xdc\x31\x1c\xfc\xb1\xbb\x51\x7e\xaa\xd0\x4d\x70\xa3\x7c\x37\xac\x22\xd8\xa3\xfb\x81\xf2\x06\xdf\xe2\xf3\xe2\x4d\x42\x5a\xff\x5a\xc6\xac\x9f\x93\xaf\x13\xcf\xaf\x7f\x0c\x38\x5d\xd8\xbc\x4f\xc9\x0b\x01\xb7\x2f\xe3\x48\x08\xcb\xf6\x13\x93\x3d\x51\xc4\x1e\x04\x31\x76\xeb\xe5\xfc\x82\xfc\xb7\xf2\x40\x23\xeb\xcd\x44\xf8\x80\x6f\x9b\xfb\xe9\xd5\x9b\x8c\xd3\xab\x6f\xcc\xf7\xc3\xe7\x37\xf9\x7e\xf8\xfc\x55\x7c\x2f\x3a\x2e\xa1\x42\x67\xc3\x64\xd7\x73\x89\xef\xc0\xdb\x90\x6d\xd9\xff\x02\x00\x00\xff\xff\xed\xfb\x72\x0f\xe9\x0c\x00\x00") + +func examplesExplorerExplorerGoBytes() ([]byte, error) { + return bindataRead( + _examplesExplorerExplorerGo, + "examples/explorer/explorer.go", + ) +} + +func examplesExplorerExplorerGo() (*asset, error) { + bytes, err := examplesExplorerExplorerGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/explorer/explorer.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesExplorerPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x3f\x6b\xc4\x30\x0c\xc5\x77\x7f\x0a\x91\x3d\x97\xdc\x76\x08\x3a\xb5\x6b\x21\x43\xe9\x52\x4a\x11\x89\x70\x4d\x63\xcb\xc8\xba\xa3\xa5\xf4\xbb\x17\x5f\x72\x7f\xb5\xe9\xbd\x9f\xde\xc3\xa6\x1c\x5e\x59\x4b\x90\x84\x70\xd8\xba\xaf\x90\x26\x84\x41\x26\x17\xd9\x68\x22\x23\x74\x00\x89\x22\x23\xf0\x77\x9e\x45\x59\x5d\xc9\x3c\x56\x79\x94\x64\x14\x12\x6b\xa9\x1b\x40\x7b\x0f\xc2\x71\x42\x24\xcf\x08\x7e\xd4\x4d\x90\xce\x8b\xf8\x99\x3f\x2e\xb7\xdd\x09\xc7\xed\xa6\x5f\x4f\x48\x7d\x41\x78\x6b\xda\x2c\x6a\x0f\xbb\x7e\xd7\x37\xef\xab\x55\x95\xb5\x6f\xe9\x3c\x27\x0d\xa2\x86\x50\xe1\xb3\x0b\x90\x55\x4c\x46\x99\x11\x5e\x1e\x87\x55\x3f\xc8\xbc\x8f\xfc\x2c\xfb\x74\x9b\x14\xab\x32\x90\x7d\x22\x34\xdd\x71\xe9\x8c\x8b\xb5\x0b\xdf\x5c\xa5\x2e\xef\xbc\x32\xdd\x29\xf5\xee\x2b\x6e\x91\x3a\x1c\xb3\xfd\x3c\x05\x45\xf8\xfd\x73\xff\x01\x00\x00\xff\xff\x71\x42\xc4\x1f\x7e\x01\x00\x00") + +func examplesExplorerPodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesExplorerPodYaml, + "examples/explorer/pod.yaml", + ) +} + +func examplesExplorerPodYaml() (*asset, error) { + bytes, err := examplesExplorerPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/explorer/pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookAllInOneFrontendYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x93\x4d\x4f\xdd\x3c\x10\x85\xf7\xf9\x15\x47\x62\xc1\xe6\x86\x0f\xbd\xef\xa2\xf2\xb2\xea\x17\x52\x11\xa8\xa0\x6e\xd1\xc4\x99\x04\x0b\xc7\xe3\xda\x93\xd0\xfb\xef\x2b\xe7\x92\x90\x8b\xda\xaa\x59\x59\xc7\x9e\xe3\xc7\x93\x33\x14\xdd\x77\x4e\xd9\x49\x30\x98\x2e\xab\x27\x17\x5a\x83\x3b\x4e\x93\xb3\x5c\x0d\xac\xd4\x92\x92\xa9\x80\x40\x03\x1b\x74\x49\x82\x72\x68\x2b\xc0\x53\xc3\x3e\x97\x2d\x80\x62\x34\xe8\x47\xce\xda\x88\x3c\xcd\x92\x3a\x4e\x9b\xf3\x39\xb2\x2d\x67\x4f\xe0\x3a\xec\x65\x4c\xb0\x7e\xcc\xca\x09\x79\x8c\x51\x92\x66\x38\xdd\x61\x0c\x56\x86\x81\x83\x42\x1f\x19\x9d\x78\x2f\xcf\x2e\xf4\x50\x01\x8d\x2a\x03\xa9\xb3\xe4\xfd\x1e\x36\x31\x29\xcf\x86\x14\xc0\x3f\x95\x53\x20\x0f\x2f\xd4\xd6\x0d\x79\x0a\x96\x5b\x5c\xdd\xa2\x93\x74\xb0\x7a\x01\x41\x3e\xbc\xed\x6c\x2e\xd5\x7d\x64\x83\xaf\x42\xed\xfb\x43\x4d\xaa\x80\x99\xa6\xb0\xd6\xf3\xd2\xe0\xdd\x45\x05\x64\xf6\x6c\x55\xd2\xbf\x3e\xb8\xae\xeb\x6a\xdb\xdc\x82\x18\xca\x32\x9f\x4f\x97\x0d\x2b\x2d\xcd\xfe\xc0\xd1\xcb\xbe\xbc\xf9\x6f\xfd\x5e\xfa\x97\x38\x7a\x67\x29\x1b\xfc\x57\x01\xca\x43\xf4\xa4\x7c\x80\xda\x96\x97\x6f\xfb\x87\xfe\x00\xfd\x1b\xf0\x22\x2d\xb7\x95\xcf\x4a\x50\x72\x81\xd3\xea\x54\xbf\xc0\xc5\xc7\x58\x27\x6e\x5d\x5e\xad\xdc\x40\x3d\x1b\xf4\x36\x9d\x39\x39\xef\x45\x7a\xcf\x75\xa6\x21\x7a\xce\xe7\x7d\x53\x2f\x97\x98\xe9\xff\xb5\x26\x71\x96\x31\x59\xde\x80\x16\xf1\x47\xe1\x3c\xd2\x00\x1b\x47\x83\xcb\x8b\x8b\xe1\x48\x1d\x78\x90\xb4\x9f\x37\xae\xdd\xba\xc3\x61\x7a\x2d\x5e\x88\x3f\x7f\xbc\x7f\xf8\x72\x73\x77\x7f\xf7\xf0\xe9\xdb\xcd\xf5\xc6\x65\x22\x3f\xb2\x41\x1b\xf2\x46\x3c\xc1\xd5\x9b\xac\x5a\x09\x9d\xeb\xd1\x0a\x67\x04\x51\xb8\x60\xfd\xd8\x32\xa8\x54\x2e\xd1\xda\x95\xc0\x05\xa8\x1c\x59\xb9\x90\x95\xa9\x05\x59\xcb\x39\x17\x3c\x97\x24\xcc\x51\x9f\x28\x39\x6a\x3c\xe7\x12\xf3\xce\xbd\x86\x14\x8f\x92\xf5\x8d\x4b\x27\x3b\x2c\x33\x22\xe3\x61\x4e\x4e\x5f\xf1\x4f\xe1\x5d\x60\x50\x23\x13\xef\x40\xa1\x3d\x1e\xa9\x23\xb3\xf9\x64\xc3\x5e\x9e\xcd\x91\xfe\xe2\xc6\x61\x5a\xe5\x75\x26\x96\x7e\xae\xa9\xb8\x5d\x46\xe4\x57\x00\x00\x00\xff\xff\xec\xac\x06\xee\x4a\x04\x00\x00") + +func examplesGuestbookAllInOneFrontendYamlBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookAllInOneFrontendYaml, + "examples/guestbook/all-in-one/frontend.yaml", + ) +} + +func examplesGuestbookAllInOneFrontendYaml() (*asset, error) { + bytes, err := examplesGuestbookAllInOneFrontendYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/all-in-one/frontend.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookAllInOneGuestbookAllInOneYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x54\x4d\x53\xdb\x30\x10\xbd\xe7\x57\xec\x0c\x07\x2e\x31\x49\xa0\xd3\x52\x1d\x3b\xfd\x62\xa6\x0c\x4c\x61\x7a\x65\xd6\xf2\xc6\xa8\xc8\x5a\x57\x92\x0d\xf9\xf7\x1d\xc9\x76\x62\x27\x9e\x42\xd3\x70\x6a\x4e\xce\x4a\xef\xe9\xad\xf4\xf6\x61\xa9\x7e\x90\x75\x8a\x8d\x80\x7a\x31\x79\x50\x26\x13\x70\x43\xb6\x56\x92\x26\x05\x79\xcc\xd0\xa3\x98\x00\x18\x2c\x48\x80\xa5\x4c\xb9\xa4\x40\xe7\xc9\x4e\x00\x34\xa6\xa4\x5d\x58\x06\xc0\xb2\x6c\xd7\xe3\x5f\xaf\xc8\x0a\x48\x51\x3e\x90\xc9\x62\xc5\xb2\x26\x01\x2d\xd6\x95\x24\x03\xae\x64\xeb\x23\x41\x12\x3f\x05\xbc\x3d\x7b\xf7\xbe\x21\x40\x9b\x93\xbf\xee\x17\x1d\x69\x92\x9e\xed\x3e\x07\x26\x49\x32\xe9\x37\x4b\x4f\x9e\x4c\xf8\x74\xb3\x7a\x91\x92\xc7\xae\xf9\x8f\x54\x6a\x5e\x15\x64\xfc\x73\xfd\x77\x3d\x58\x2a\xb5\x92\xe8\x04\x2c\x26\x00\x9e\x8a\x52\xa3\xa7\x46\x64\x9f\x22\xfc\xfa\x37\x36\xd2\xc4\x8e\xec\xae\xb8\xdb\x5d\x77\x7a\xf8\x49\x36\x1e\x95\x21\xbb\x66\x4e\x5a\xc1\x5b\x34\xaa\xc0\x9c\x04\xe4\xd2\x9e\x28\x9e\xe5\xcc\xb9\xa6\xbb\x0d\x7a\x16\x95\x08\x3a\x25\x80\x23\x60\x0b\x3f\x2b\xe7\x3b\xd0\x96\x4a\x72\x5c\x59\x49\xbd\x5e\x42\xf1\x57\x45\xce\x0f\x6a\x00\xb2\xac\x04\x2c\xe6\xf3\x62\x50\x2d\xa8\x60\xbb\x8a\x0b\x97\x6a\xbd\xb2\xf6\x43\xd7\xc6\x5a\x5c\xcf\x09\xdb\x6f\xf9\x62\xe3\x3a\x8d\x35\xed\xe7\xdb\x06\xfa\x9c\x6d\xf7\x72\x68\x43\x7d\x48\x83\x0e\xc5\x6e\xfc\x79\x7a\x38\x7f\x76\x57\xf9\x6f\xf6\x1c\xb2\x8c\xba\xd3\x61\x51\x6a\x72\xb3\x3c\x4d\xa2\x8e\x08\x11\xf5\xe2\xb5\x9d\x48\xa6\xee\xfb\xb0\xd1\xfb\xe5\xd3\xed\xdd\xd7\xab\x9b\xdb\x9b\xbb\xcf\xdf\xaf\x2e\x7b\x2c\x35\xea\x8a\x04\x64\xc6\xf5\x8a\x47\x70\xb1\x84\x15\x57\x16\xa4\xae\xc2\x1c\x86\x9b\x58\xaa\x1c\x32\x26\x07\x86\x3d\x28\x23\x75\x95\x11\x60\x40\x82\x6b\xec\x3b\x05\x7f\x4f\x06\x3c\x0f\xa8\x94\x71\x9e\x30\x03\x94\x92\x9c\x03\x34\x41\xa1\xb2\x6c\x82\x13\xa0\x46\xab\x30\xd5\x04\x9e\x61\xa9\x4c\x16\x28\xb6\x87\x3f\xb0\xb4\x47\x1c\x3b\xb8\x67\xe7\xa7\x20\xb9\x88\x78\xae\x7c\x84\x1c\x6f\x1a\x39\x06\xad\x0c\x01\xa6\x5c\xd3\x14\xb0\x7d\xd7\x8e\xa8\x32\x1d\x34\xc0\xe2\xce\x94\x34\x3f\x8a\xc1\xae\x96\x8d\x4c\xfd\xea\x13\xbe\xb4\x6c\x7c\xe3\xbe\x9d\xf1\xce\x83\x17\x52\xe6\x87\xde\x1c\xae\xf7\x77\x4e\x3d\x02\xb5\xf5\x5a\xae\x2a\xa3\x5a\x50\x7e\xba\xd5\xf0\x92\xb5\xe6\x47\x65\xf2\x70\xe1\x58\x79\x2e\xd0\x2b\x89\x5a\xaf\x40\x5a\x42\x4f\x91\x30\x3c\xd2\x93\x27\x6b\x50\x83\x66\xcc\x92\x14\x35\x1a\x49\x19\x5c\x5c\xc3\x92\x6d\x43\xd5\x0a\xe9\xde\xe6\x24\x42\xfd\xaa\x24\x01\xdf\x18\xb3\x0f\x0d\xc6\x8e\xc5\xce\xf9\x7c\x3c\x74\xfe\xd8\xf0\x61\x92\x66\xe7\xfe\x36\x31\x73\xb6\x5f\xcc\x0c\x45\x8f\x08\x7f\x79\xae\x94\xf7\x65\x32\x4c\xad\xb1\x6c\x49\x7a\xd9\xd2\x1d\x22\xea\x37\xff\x79\xb2\x8c\xc5\x8a\x5b\xe7\x4a\xcb\x14\xe3\x63\x8b\x65\xc9\x7f\x97\x27\xc3\x91\x1a\x90\x1d\x30\x4f\xce\xe7\x93\xdf\x01\x00\x00\xff\xff\x73\x62\xe2\xc3\xe5\x0a\x00\x00") + +func examplesGuestbookAllInOneGuestbookAllInOneYamlBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookAllInOneGuestbookAllInOneYaml, + "examples/guestbook/all-in-one/guestbook-all-in-one.yaml", + ) +} + +func examplesGuestbookAllInOneGuestbookAllInOneYaml() (*asset, error) { + bytes, err := examplesGuestbookAllInOneGuestbookAllInOneYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/all-in-one/guestbook-all-in-one.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookAllInOneRedisSlaveYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x53\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\x06\xf8\x0e\xb9\x58\x9f\xe3\x16\x68\x51\x9e\xfb\x7b\x08\x52\xd4\x41\xaf\xc6\x8a\x1a\x2b\x44\xf8\xa3\x92\x94\x5a\xbf\x7d\x41\xc5\xb2\x25\x34\x40\x81\xf2\x44\xcd\x72\x86\x33\xab\xa5\xf4\xe6\x3b\x63\x32\xc1\x2b\x8c\xbb\xea\xc9\xf8\x56\x61\xcf\x38\x1a\xcd\xca\x31\x4b\x2b\x59\x54\x05\x78\x71\x54\x88\x6c\x4d\xaa\x93\x95\x91\x15\x60\xa5\xa1\x4d\xa5\x0a\x48\xdf\x9f\xcb\xd3\x67\x0c\x96\x0a\xf3\x41\x20\x1b\x46\x85\x46\xf4\x13\x7d\x5b\xa5\x9e\xba\xd0\xfa\x10\xf3\xc4\xaf\xa7\xad\xc2\x9b\xd7\x6f\xdf\x55\x40\xa2\xa5\xce\x21\xfe\x83\x74\x5d\xd7\xd5\x32\x14\x7f\x65\xfa\xb2\x4d\xdb\x71\xd7\x30\xcb\x1c\xf2\x3d\x7b\x1b\x4e\x8e\x3e\xff\x25\xe7\x6c\x36\xb2\xb7\x46\x4b\x52\x78\x55\x01\x99\xae\xb7\x92\xf9\x6c\x71\xa9\x50\xd6\xb2\x33\x2f\x44\x78\x29\xc6\x9f\x51\x0a\x32\x5f\x5e\x96\x0e\x3e\x8b\xf1\x8c\x17\xe1\xfa\x6c\x77\xad\x62\x9c\x74\x54\xe8\x74\xfc\xdf\x84\x6d\x17\x42\x67\x79\x48\xe2\x7a\xcb\xb4\xed\x9a\x7a\xf2\x31\x51\xd4\xb8\xbb\xfa\x61\x0a\x43\xd4\x5c\xb8\x2e\xe0\x8f\x81\x29\xaf\x30\x40\xf7\x83\xc2\xee\xf6\xd6\xad\x50\x47\x17\xe2\x69\x2a\xdc\x99\x4b\x85\x7e\xbc\x92\x67\xbf\x9f\x3e\x3c\x1c\x3e\xdf\xef\x1f\xf6\x87\x8f\xdf\xee\xef\x16\x2a\xa3\xd8\x81\x0a\xad\x4f\x0b\xf0\x3f\x7c\x39\xe2\x14\x86\x08\x6d\x87\x94\x19\x4b\x27\x8e\xa6\x43\x1b\x98\xe0\x43\x86\xf1\xda\x0e\x2d\x21\x85\x89\xf4\x3c\xbe\x1b\xe4\x47\x7a\xe4\xb0\x92\x32\x3e\x65\x4a\x0b\xd1\x9a\x29\x41\x7c\x71\x68\x62\xf0\x65\x12\x30\x4a\x34\xd2\x58\x22\x07\x1c\x8d\x6f\x8b\x04\x9c\x94\x4b\x57\x2a\xe7\x2b\x6e\x12\x1e\x43\xca\x1b\xe8\xe0\x26\x7e\x18\xf2\x44\xb9\xb9\x06\xb9\x81\x35\x9e\x90\x26\x8c\xdc\x40\xce\xff\x75\x16\x1a\xfc\x4c\x2d\xb4\xe9\x64\x43\x1b\x7e\xaa\xd5\xa9\xb3\x1a\xfd\x78\x81\x2f\x4f\x67\xee\xec\x65\x3a\xbe\x5e\x5f\xd2\xef\x00\x00\x00\xff\xff\x7d\x1b\xa5\xbd\xde\x03\x00\x00") + +func examplesGuestbookAllInOneRedisSlaveYamlBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookAllInOneRedisSlaveYaml, + "examples/guestbook/all-in-one/redis-slave.yaml", + ) +} + +func examplesGuestbookAllInOneRedisSlaveYaml() (*asset, error) { + bytes, err := examplesGuestbookAllInOneRedisSlaveYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/all-in-one/redis-slave.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookFrontendDeploymentYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x92\x3d\x6f\xdb\x30\x10\x86\x77\xfd\x8a\x03\x3a\x64\xb1\x6b\x1b\xed\x50\x70\xee\xe7\x10\xa4\x68\x82\xae\xc1\x89\x7a\x2d\x13\xa1\xee\x58\xf2\xa4\xd6\xff\xbe\xa0\x11\xc9\x72\x38\x49\xcf\xf1\xfd\x80\x4e\x9c\xc2\x6f\xe4\x12\x54\x1c\xe1\x9f\x41\xea\x63\xd9\x4d\x87\x16\xc6\x87\xe6\x25\x48\xe7\xe8\x33\x52\xd4\xf3\x00\xb1\x66\x80\x71\xc7\xc6\xae\x21\x12\x1e\xe0\xe8\x98\x55\x0c\xd2\x35\x25\xc1\x57\x9c\x91\x62\xf0\x5c\x1c\x7d\x68\x88\x0c\x43\x8a\x6c\xa8\x13\xa2\xb5\xbc\x9e\xc8\x2d\x62\x99\xdf\x88\x38\x25\x47\xfd\x88\x62\xad\xea\xcb\x82\x2d\x20\xaf\x92\x2a\x9a\xd3\xea\xf1\x2a\xc6\x41\x90\x17\xa7\xed\x6b\xb9\x74\x4a\xdb\x8c\x2e\x94\xc5\x2a\x0c\xdc\xc3\x51\xef\xf3\xfb\xa0\xbb\x5e\xb5\x8f\xd8\x16\x1e\x52\x44\xd9\xf5\xed\x76\x0e\x71\xd3\xc7\x45\x93\x51\x74\xcc\x1e\xab\xa2\x15\xfe\xa9\x3d\x6f\x18\x91\x4f\xa3\xa3\xc3\x7e\x3f\xdc\xd0\x01\x83\xe6\xf3\x65\x70\x1f\x96\x09\x64\xba\x8a\xe7\xc6\xdf\xbe\x3c\x3d\x7f\x7f\x78\x7c\x7a\x7c\xfe\xfa\xeb\xe1\x7e\xe5\x32\x71\x1c\xe1\xa8\x93\xb2\x82\xef\xe8\xc7\x91\xce\x3a\x66\xf2\x71\x2c\x86\x5c\xbf\xc5\x31\xf4\xd4\x29\x0a\x89\x1a\x05\xf1\x71\xec\x40\x5c\x95\x54\x90\xa7\xe0\xb1\x21\x3b\x41\xc8\xf4\xc6\x2a\x48\x31\x70\x47\xec\x3d\x4a\xa9\xf5\x42\x56\xa9\x6b\xa7\x89\x73\xe0\x36\xa2\x90\x29\x1d\x83\x74\xb3\x13\x9d\xb4\xd8\x1b\x97\xa3\x6e\xc8\xeb\x70\x11\xea\x68\x35\x8b\xee\xae\xf5\xef\x28\x06\x01\x71\xab\x13\x36\xc4\xd2\xd1\x28\xf3\x75\x3b\xe1\xc6\xec\x72\xb3\x45\xd4\xbf\xee\x86\xbf\xba\x41\xa6\x05\x27\xcd\xeb\x65\x6c\xaf\x7f\xc5\x4f\xcd\xe6\xe8\xd3\xbe\xf9\x1f\x00\x00\xff\xff\x1f\xfb\xe2\x93\xed\x02\x00\x00") + +func examplesGuestbookFrontendDeploymentYamlBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookFrontendDeploymentYaml, + "examples/guestbook/frontend-deployment.yaml", + ) +} + +func examplesGuestbookFrontendDeploymentYaml() (*asset, error) { + bytes, err := examplesGuestbookFrontendDeploymentYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/frontend-deployment.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookFrontendServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8f\x3f\x4b\x04\x31\x10\xc5\xfb\x7c\x8a\x07\xb6\x9e\x68\x27\x29\xed\x04\x0b\x41\xb0\x9f\x4d\x66\xcf\x70\xd9\x99\x30\x99\x9c\xee\xb7\x97\xdd\xb5\xb0\xbc\x6e\x98\xf7\x87\xdf\xa3\x56\x3e\xd9\x7a\x51\x89\xb8\x3e\x85\x4b\x91\x1c\xf1\xc1\x76\x2d\x89\xc3\xc2\x4e\x99\x9c\x62\x00\x84\x16\x8e\x98\x4d\xc5\x59\x72\x00\x2a\x4d\x5c\xfb\x26\x01\xd4\x5a\xc4\x79\x70\xf7\x49\xf5\xb2\xbf\xbc\xb0\xfd\xf3\xf7\xc6\x69\xf3\xde\xa1\xcc\x58\x75\x18\x52\x1d\xdd\xd9\xd0\x47\x6b\x6a\xde\x51\xfc\x1e\x43\x92\x2e\x0b\x8b\xc3\xbf\x18\xb3\xd6\xaa\xdf\x45\xce\x70\x05\x0d\xd7\x85\xbc\x24\xaa\x75\x45\x32\x26\xe7\xbd\x90\x04\xfc\xe3\x6c\x42\x15\x55\x29\x9f\x26\xaa\x24\x89\x33\x5e\xdf\x31\xab\x1d\x55\x7f\x20\xe8\xc7\xb6\x87\x3d\xea\x6b\xe3\x88\x37\xa5\xfc\x72\x64\x2c\x00\x3b\xcd\xc6\x7a\xda\xcf\x88\xe7\xc7\x00\x74\xae\x9c\x5c\xed\xd6\xc1\xbf\x01\x00\x00\xff\xff\xc5\xce\xd2\xc0\x59\x01\x00\x00") + +func examplesGuestbookFrontendServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookFrontendServiceYaml, + "examples/guestbook/frontend-service.yaml", + ) +} + +func examplesGuestbookFrontendServiceYaml() (*asset, error) { + bytes, err := examplesGuestbookFrontendServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/frontend-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookLegacyFrontendControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x92\x3f\x6f\xdb\x30\x10\xc5\x77\x7d\x8a\x07\x74\xc8\x62\x37\x0e\xda\xa1\xe0\x5a\xf4\xdf\x10\xa4\x48\x82\xae\xc6\x89\x3a\xcb\x44\xa8\x3b\x96\x3c\xa9\xc8\xb7\x2f\xe8\x46\xb2\x54\x6e\xfa\x1d\xdf\xef\x1e\x24\x51\x0a\xbf\x38\x97\xa0\xe2\x30\xdd\x35\x2f\x41\x3a\x87\x47\x4e\x31\x78\xb2\xa0\xf2\x59\xc5\xb2\xc6\xc8\xb9\x19\xd8\xa8\x23\x23\xd7\x00\x42\x03\x3b\x9c\xb2\x8a\xb1\x74\x4d\x49\xec\x2b\xce\xff\x82\xc5\xe1\x43\x03\x18\x0f\x29\x92\x71\x9d\x00\xeb\x78\x3d\x91\x5a\x8e\x65\x7e\x02\x28\x25\x87\x7e\xe4\x62\xad\xea\xcb\x82\x2d\x70\x5e\x6d\xaa\x68\xde\x56\x8f\x57\x31\x0a\xc2\x79\x31\xed\xdf\xca\xa5\x73\xda\x67\xee\x42\x59\x54\x61\xa0\x9e\x1d\x7a\x9f\xdf\x07\xbd\xed\x55\xfb\xc8\xc7\x42\x43\x8a\x5c\x6e\xfb\x76\x3f\x2f\x71\xd3\xc7\x25\x93\xb9\xe8\x98\x3d\xaf\x8a\x56\xf8\xbb\xf6\xdc\x30\xc0\xa7\xd1\xe1\xee\x70\x18\x36\x74\xe0\x41\xf3\xeb\x65\x70\x1f\x96\x09\xcb\x74\x0d\xcf\x8d\xbf\x7d\x79\x3e\x7e\x7f\x78\x7a\x7e\x3a\x7e\x7d\x7c\xb8\x5f\x59\x26\x8a\x23\x3b\x74\x52\x56\xf0\x1d\x7e\x9c\xf0\xaa\x63\x86\x8f\x63\x31\xce\xf5\x5d\x9c\x42\x8f\x4e\xb9\x40\xd4\x10\xc4\xc7\xb1\x63\x50\x4d\xa2\x70\x9e\x82\xe7\x1d\xec\xcc\x02\xd3\x8d\x2a\x48\x31\xa6\x0e\xe4\x3d\x97\x52\xeb\x85\xac\x32\xb0\x18\x26\xca\x81\xda\xc8\x05\xa6\x38\x05\xe9\x66\x13\xce\x5a\xec\x3f\xcb\x49\x77\xf0\x3a\x5c\x82\x3a\x5a\xdd\x85\x9b\x6b\xfd\x1b\xc4\x20\x0c\x6a\x75\xe2\x1d\x48\x3a\x8c\x32\x5f\xb7\x33\x6f\x64\x97\x9b\x2d\x47\xfd\xe3\x36\xfc\xcd\xc6\x32\x2d\x38\x69\x5e\x7f\x8c\xfd\xf5\xaf\xf8\xa9\xd9\x1c\x3e\x1d\x9a\xbf\x01\x00\x00\xff\xff\x1c\xa9\xd8\xd7\xe8\x02\x00\x00") + +func examplesGuestbookLegacyFrontendControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookLegacyFrontendControllerYaml, + "examples/guestbook/legacy/frontend-controller.yaml", + ) +} + +func examplesGuestbookLegacyFrontendControllerYaml() (*asset, error) { + bytes, err := examplesGuestbookLegacyFrontendControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/legacy/frontend-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookLegacyRedisMasterControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcf\x4e\x33\x31\x0c\xc4\xef\x79\x8a\x91\xbe\x73\xbf\xb6\x20\x81\xc8\x95\x33\x12\xe2\xc0\x15\xb9\x59\x6b\x15\x9a\xc4\xc1\xf1\x22\xf1\xf6\x28\xfd\xbb\x2d\xf5\x2d\x33\x19\xff\x3c\x54\xe3\x3b\x6b\x8b\x52\x3c\xbe\xd7\x6e\x1b\xcb\xe0\xf1\xc6\x35\xc5\x40\x16\xa5\x3c\x4b\x31\x95\x94\x58\x5d\x66\xa3\x81\x8c\xbc\x03\x0a\x65\xf6\x50\x1e\x62\x5b\x64\x6a\xc6\xea\x80\x44\x1b\x4e\xad\xdb\x00\xd5\x7a\xf0\x77\x4f\x95\xc4\x1e\xa7\x9f\x80\x45\x56\x8f\x0d\x85\x2d\x97\xc1\xb5\xca\xa1\xe7\x74\x0f\x6e\x1e\x6b\x07\x18\xe7\x9a\xc8\x78\xbf\x71\x8e\xef\x33\xa7\xdd\x20\xde\xa4\xfe\x25\x77\xe5\x48\xef\x13\xa4\x18\xc5\xc2\x7a\xda\xbc\x38\x94\xbd\x5a\x13\x33\x8d\xec\x31\x06\xfd\x1f\x65\x39\x8a\x8c\x89\x3f\xce\xe9\xe5\xee\x12\xcf\x77\x0c\xfc\x83\x28\x3e\xa7\x66\xc7\xd0\xd5\x95\xdc\x64\xd2\xc0\xb3\x2e\x5d\xfc\x9a\xb8\xd9\x85\x06\x84\x3a\x79\xac\x57\xab\x7c\xa1\x66\xce\xa2\x3f\x3b\xe3\x25\x9e\x9c\x2a\x3a\x8f\x2f\xce\xd5\x5e\x45\xcd\xe3\xe1\xfe\xf1\xc9\xfd\x06\x00\x00\xff\xff\x40\x65\xdf\xf8\xff\x01\x00\x00") + +func examplesGuestbookLegacyRedisMasterControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookLegacyRedisMasterControllerYaml, + "examples/guestbook/legacy/redis-master-controller.yaml", + ) +} + +func examplesGuestbookLegacyRedisMasterControllerYaml() (*asset, error) { + bytes, err := examplesGuestbookLegacyRedisMasterControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/legacy/redis-master-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookLegacyRedisSlaveControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x92\xcd\x6e\xdb\x30\x10\x84\xef\x7a\x8a\x01\x7a\xf0\xc5\x6e\xe2\x16\x68\x51\x5e\x8b\xfe\x1d\x82\x14\x49\xd0\xab\xb1\xa2\xd6\x0a\x11\x72\x57\x25\x29\x16\x79\xfb\x82\x8a\x65\x4b\x48\x78\xf3\xec\xce\x7c\x43\x53\x34\xb8\x3f\x1c\x93\x53\x31\x28\xfb\xe6\xc9\x49\x67\x70\xc7\x83\x77\x96\xb2\x53\xf9\xaa\x92\xa3\x7a\xcf\xb1\x09\x9c\xa9\xa3\x4c\xa6\x01\x84\x02\x1b\x44\xee\x5c\xda\x25\x4f\x85\x1b\xc0\x53\xcb\x3e\xd5\x29\x40\xc3\x70\x1a\x4f\x3f\xa3\x7a\x36\x98\x17\x81\xec\x38\x1a\xb4\x64\x9f\x58\xba\x26\x0d\x6c\xab\x2d\xbe\x60\x93\xc1\x87\x06\xc8\x1c\x06\x4f\x99\x5f\x02\x97\xf0\x7a\x96\xb0\x37\x80\x6f\x41\x5f\x83\xab\x32\xc3\xeb\xb1\x2a\x99\x9c\x70\x3c\x07\xef\x4e\x37\x5d\xa7\xb8\x40\x3d\x1b\xf4\x36\xbe\x77\x7a\xd5\xab\xf6\x9e\x0f\x89\xc2\xe0\x39\x5d\xf5\xed\x6e\xea\x31\x59\x4c\xd9\x5f\xfa\x70\xd2\x31\x5a\x5e\xb4\xae\xe2\xdf\x91\x53\x5e\x69\x80\x1d\x46\x83\xfd\xf5\x75\x58\xa9\x81\x83\xc6\xe7\x69\x70\xe3\xce\x13\x96\x72\x31\xcf\x7d\x7f\x7c\x7b\x38\xfc\xbc\xbd\x7f\xb8\x3f\x7c\xbf\xbb\xbd\x59\xa4\x14\xf2\x23\x1b\x74\x92\x16\xe2\x3b\xfc\x3a\xe2\x59\xc7\x08\xeb\xc7\x94\x39\xd6\x7f\xe2\xe8\x7a\x74\xca\x09\xa2\x19\x4e\xac\x1f\x3b\x06\x55\x27\x12\xc7\xe2\x2c\x6f\x91\x1f\x59\x90\x75\x15\xe5\x24\x65\xa6\x0e\x64\x2d\xa7\x04\x92\xda\xd0\x45\x95\xc0\x92\x51\x28\x3a\x6a\x3d\x23\x2b\x8e\x4e\xba\x1a\x81\x40\x15\xba\x4a\x39\x21\x36\x09\x8f\x9a\xf2\x16\x56\xc3\xe4\xd7\x31\x4f\x96\xcd\xe5\x22\x1b\x78\x27\x0c\x6a\xb5\xf0\x16\x74\x7a\xd7\x39\x68\x94\xd9\x5a\x6d\xd3\x66\xcb\x5e\xff\x99\xd5\xd6\x29\x8d\xa5\x9c\xe5\x41\xe3\xf2\x59\x76\x97\xaf\xe3\xb7\xc6\x6c\xf0\xe9\xe3\xe7\x2f\xcd\xff\x00\x00\x00\xff\xff\x37\xc9\x2e\xe9\x3f\x03\x00\x00") + +func examplesGuestbookLegacyRedisSlaveControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookLegacyRedisSlaveControllerYaml, + "examples/guestbook/legacy/redis-slave-controller.yaml", + ) +} + +func examplesGuestbookLegacyRedisSlaveControllerYaml() (*asset, error) { + bytes, err := examplesGuestbookLegacyRedisSlaveControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/legacy/redis-slave-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookPhpRedisDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x53\x5f\x6f\x1b\xb7\x13\x7c\xbf\x4f\x31\xb8\xfb\xe1\xe7\x04\x90\xee\x6c\x01\xed\x43\x0a\x14\x50\x6d\x07\x15\xe2\x4a\x85\xfe\x34\x08\xd0\x17\x8a\x5c\xdd\x6d\x4c\x91\x2c\xb9\x17\x59\x68\xfa\xdd\x0b\x9e\x2c\x38\x72\x80\xea\x45\x87\x9d\xe1\xec\x70\xb8\x5b\xe1\xd6\x87\x63\xe4\xb6\x13\x4c\xae\x6f\x7e\xc4\xba\x23\x7c\xe8\xb7\x14\x1d\x09\x25\x4c\x7b\xe9\x7c\x4c\x75\x51\x15\x15\x1e\x58\x93\x4b\x64\xd0\x3b\x43\x11\xd2\x11\xa6\x41\xe9\x8e\xce\xc8\x08\x7f\x50\x4c\xec\x1d\x26\xf5\x35\xde\x64\x42\xf9\x0c\x95\x6f\x7f\x2a\x2a\x1c\x7d\x8f\xbd\x3a\xc2\x79\x41\x9f\x08\xd2\x71\xc2\x8e\x2d\x81\x9e\x34\x05\x01\x3b\x68\xbf\x0f\x96\x95\xd3\x84\x03\x4b\x37\xb4\x79\x16\xa9\x8b\x0a\x9f\x9e\x25\xfc\x56\x14\x3b\x28\x68\x1f\x8e\xf0\xbb\x6f\x79\x50\x32\x18\xce\xbf\x4e\x24\xbc\x6b\x9a\xc3\xe1\x50\xab\xc1\x6c\xed\x63\xdb\xd8\x13\x31\x35\x0f\xb3\xdb\xfb\xf9\xea\x7e\x3c\xa9\xaf\x87\x23\x1b\x67\x29\x25\x44\xfa\xab\xe7\x48\x06\xdb\x23\x54\x08\x96\xb5\xda\x5a\x82\x55\x07\xf8\x08\xd5\x46\x22\x03\xf1\xd9\xef\x21\xb2\xb0\x6b\x47\x48\x7e\x27\x07\x15\xa9\xa8\x60\x38\x49\xe4\x6d\x2f\x17\x61\x9d\xdd\x71\xba\x20\x78\x07\xe5\x50\x4e\x57\x98\xad\x4a\xfc\x32\x5d\xcd\x56\xa3\xa2\xc2\xc7\xd9\xfa\xd7\xc5\x66\x8d\x8f\xd3\xe5\x72\x3a\x5f\xcf\xee\x57\x58\x2c\x71\xbb\x98\xdf\xcd\xd6\xb3\xc5\x7c\x85\xc5\x7b\x4c\xe7\x9f\xf0\x61\x36\xbf\x1b\x81\x58\x3a\x8a\xa0\xa7\x10\xb3\x7f\x1f\xc1\x39\x46\x32\x39\xb3\x15\xd1\x85\x81\x9d\x3f\x19\x4a\x81\x34\xef\x58\xc3\x2a\xd7\xf6\xaa\x25\xb4\xfe\x0b\x45\xc7\xae\x45\xa0\xb8\xe7\x94\x1f\x33\x41\x39\x53\x54\xb0\xbc\x67\x51\x32\x54\xbe\xbb\x54\x5d\x14\xef\x97\x8b\xdf\x10\xba\xf0\xee\x87\xf1\x29\xe9\xa2\x58\x6e\xe6\x50\x41\xc6\x2d\x09\xfa\x60\x94\xd0\x45\x89\x5d\x12\x65\x2d\xc6\xc7\x7c\x6e\x1c\x48\xc5\x01\xcf\x1f\xd0\x9d\x72\x8e\xec\xd8\x70\xd2\xd9\xd5\x50\xad\x5d\x7c\xac\xd9\xbf\xb0\xce\x12\x2e\x3e\x36\xbf\x47\x32\x9c\x8a\xa2\xc2\xec\x34\x0e\xda\xbb\x3c\x24\x14\xaf\x12\x92\x18\xf6\x39\x7a\xed\x9d\x23\x2d\xa7\xf7\x4b\xc7\x24\xb4\x37\xe3\xcf\xbe\x8f\x4e\x59\x93\x83\x6f\x42\xf4\xba\x49\x64\x77\xcd\xce\x34\x7f\xdf\x8c\x26\xff\x40\x45\xc2\xc6\xf1\x13\x92\xd7\x8f\x24\x43\x24\x38\xdd\x12\x07\xce\xfd\xbd\x60\x4b\x18\xa6\x44\x3c\x7c\x20\xf7\xe6\x6d\x51\x65\x1b\xfb\x1a\x9b\x44\x28\xb5\x92\x32\x63\x79\x60\x08\x86\x23\x69\xb1\xc7\x5c\xc9\x5e\x95\x8d\xa4\xcc\x71\x38\x49\x06\x3b\x93\x86\xf1\xf7\xbd\x0c\x25\x76\xed\xb3\x1a\x54\xab\xd8\xd5\x43\x04\x79\x19\xc7\x8c\xab\x54\xdd\xc7\xe8\xe3\x83\x6f\x5f\xb9\x9f\xbc\x00\xe5\xd7\xff\x35\x5b\x76\x8d\x56\x82\x9b\x9f\xff\xfc\xff\xa4\xac\xae\xd0\x90\xe8\xe6\x74\x8f\xc9\xf9\xbf\xd6\xde\xed\x5e\xc9\xdf\xf6\x49\xfc\xfe\x7b\xfd\x9b\xbc\xae\x5b\x76\x64\xbe\xa1\x94\x5f\xcf\x8d\xca\x17\xf8\xbf\x7a\x15\xd3\xbb\x3b\xb4\x3d\x25\xd9\x7a\xff\x58\x87\x2e\xa0\xf9\xa2\x62\x5e\xda\xa6\x93\xbd\x6d\x2e\xb0\x81\x9d\x9f\x36\x7a\x6b\x29\xa6\xfa\x73\x7a\x45\xbf\x04\x07\x3e\x3b\x43\x4f\x75\x46\x5f\x71\x5f\x80\xe2\xdf\x00\x00\x00\xff\xff\x9c\xb5\x76\x51\x0d\x05\x00\x00") + +func examplesGuestbookPhpRedisDockerfileBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookPhpRedisDockerfile, + "examples/guestbook/php-redis/Dockerfile", + ) +} + +func examplesGuestbookPhpRedisDockerfile() (*asset, error) { + bytes, err := examplesGuestbookPhpRedisDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/php-redis/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookPhpRedisControllersJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xf1\x6a\xdb\x30\x10\xc6\xff\xd7\x53\x1c\x26\xd4\x76\x66\xd4\x07\x30\x62\x8c\xbe\x41\x61\x7f\x8d\x51\x14\x5b\x73\xbc\x2a\x3a\xa1\x3b\x75\x94\x91\x77\x1f\x92\x23\xe2\x25\x4d\x23\xb0\xb1\x7d\xdf\x7d\x77\x9f\x7f\x6f\x3a\x40\x30\xe3\x4c\xdf\xbc\x07\x05\xda\x4d\xd1\xea\x20\x0f\x38\x46\x6b\x9a\x3a\x97\xea\x0e\x7e\xd4\x71\x96\x3b\x44\x26\x0e\xda\xd7\x3f\xdb\x5e\x88\xc7\xed\x56\xc0\x16\x9e\xd0\x11\x87\x38\x30\x06\x01\xdb\x47\xf1\x2b\xba\x81\x67\x74\xf0\x9c\x7a\x9f\xd0\x71\x40\x6b\x4d\x68\x5a\xf8\x7b\x14\xe2\xe2\xab\xf4\x01\x19\xf9\xdd\x1b\x89\x2e\xd7\x40\x41\xb1\x48\x2d\x02\x00\x80\xf7\x33\x49\x1a\xd0\x9b\x17\x79\x30\x44\x7a\x32\x24\x7d\xa4\x7d\xf3\x5f\x85\xa6\xb6\xbf\xd6\xd3\x04\x0a\xaa\x6a\xa9\xa4\xbc\x6f\xda\x46\x03\xea\x63\xd7\xdf\x38\xbb\x66\x6d\xb3\x67\xf6\x2f\x72\x32\xdc\x54\x53\x34\xc4\x3b\xc4\x57\xe9\xf7\xfe\xeb\x70\x18\x15\x19\x7e\x78\x35\xef\xaa\xb4\x3f\x64\x6f\x55\xc1\x97\x65\x4a\x9b\x7d\xca\x91\x14\x87\xc1\x10\x35\xe5\x37\xef\x66\x37\xe6\x08\xdd\x39\xf3\xa8\x59\x97\xdc\xeb\xb3\xde\x36\x63\x79\x36\xe4\xd1\x51\x4a\x52\x7d\xf7\xa3\x66\x33\xca\x53\xca\x72\x8e\x6d\xdb\x8b\x63\x2f\x44\x41\x2c\x87\x33\x8f\x7a\x41\xc1\xc1\xd6\xe7\xf1\xd0\x6c\xf2\x8c\x0e\x36\x29\x78\x07\x1b\x8b\x83\x4e\x95\xf5\x4e\x8b\x66\x65\x06\x0a\x9c\xf9\x73\x8d\xbc\xbf\xdd\x72\xca\x02\xea\x54\xfa\x4c\x5a\x76\xc8\xea\xf2\xf2\x59\x43\x86\x96\xc4\xe9\xa1\x17\xf7\x94\xb7\xf0\x4e\x17\x78\xab\x1b\x3c\xef\xc2\x1b\xd0\x11\x5a\x23\x2d\x4e\x8b\xa6\xbf\x92\x9c\x56\x2b\xa3\x40\x41\x12\xca\x7c\x23\x6f\x67\x6e\xaa\xae\x6a\x2f\xf9\xf6\x22\x5d\xff\x02\x00\x00\xff\xff\x02\xe8\x25\xd0\xc6\x03\x00\x00") + +func examplesGuestbookPhpRedisControllersJsBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookPhpRedisControllersJs, + "examples/guestbook/php-redis/controllers.js", + ) +} + +func examplesGuestbookPhpRedisControllersJs() (*asset, error) { + bytes, err := examplesGuestbookPhpRedisControllersJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/php-redis/controllers.js", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookPhpRedisGuestbookPhp = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x93\x41\x6b\xdb\x4e\x10\xc5\xef\xfb\x29\x06\x13\x18\x09\x6c\x87\x3f\x7f\x68\xa9\x5d\x39\x18\x57\x4d\x03\x0e\x29\x96\x9a\x4b\x6a\xc4\x22\x4d\xa4\x6d\xe5\xdd\xed\xee\xda\xc5\x04\x7f\xf7\xb2\x2b\x39\x36\xa6\x3d\xf4\xd4\xa3\xf6\xcd\xbc\x99\xf9\x3d\xf4\xfe\x46\x37\x9a\x31\x32\x46\x99\xc2\x90\x56\xc6\x09\x59\x47\x69\x31\x5f\x2e\xe3\x29\x13\x52\x14\x96\x5c\x84\x95\xb0\xba\xe5\xfb\x22\x14\x5a\x1c\xc2\x7f\xf1\x94\x31\x43\x3f\xb6\xc2\x10\xe0\x67\x43\x95\xb0\xd7\xf3\xad\x53\xad\xe2\x15\x99\xb1\x6e\x34\x4e\x19\xeb\x84\xaf\x27\x61\x32\x31\x54\x0b\xeb\xc8\x44\xde\x41\x3c\x43\x24\xac\x1f\x71\x55\xdc\xa6\xf9\x13\x96\x9b\x0a\xd7\x31\x24\x49\x02\xce\x6c\x29\x86\x17\x06\x70\xd5\x28\xeb\x20\x01\x0c\x6e\xa3\x0d\xf7\xfd\x38\x65\x00\xbe\xbf\x26\x47\x72\x17\xe1\x6d\x9a\x17\x9f\x1e\xb2\x3c\x2b\x3e\xae\x1e\xee\xd1\x9b\x00\x92\xdc\x61\x67\x72\xb2\x39\x36\xac\xd2\x0f\x77\x59\x71\x3f\xcf\xf2\x74\x55\x64\xe9\xea\xf1\x6e\x91\x06\x07\x8c\xbd\xf7\x81\x01\x34\xe4\x97\x8e\x70\xa1\xa4\x23\xe9\x46\xf9\x5e\xd3\x04\xb8\xd6\xad\x28\xb9\x13\x4a\x5e\x7f\xb3\x4a\x76\xf5\x7e\x97\xf3\x2b\xc2\x7c\x4b\xee\x34\xbf\x6c\x05\x49\xbf\x81\xa4\x9f\xd0\xa3\x59\x84\xb7\xe8\x29\x54\x00\xa0\x2d\x1b\xda\x10\x42\x32\x03\x74\xa5\xc6\xe1\x51\xf0\xcb\x23\x80\x17\xc2\x21\xaf\x82\x0f\xad\x17\xde\xfc\xff\xf6\x5d\xf7\xbe\xf6\x74\xcf\x86\x8e\x66\x67\x90\xbf\xd3\x1e\xd7\x43\xe8\xbf\x76\xbc\xdd\x12\xae\xc3\x0d\x00\xda\x08\xe9\x22\x7c\x19\x6c\xc8\x5a\x5e\xd3\x60\x02\x83\x2f\xba\xe2\x8e\xaa\xc1\xa1\x07\x03\xd4\x5a\xba\x80\xda\x67\x63\x5b\xbe\x23\xec\xac\xfe\x2a\x9c\x3f\xc5\x93\x2d\xe7\x8f\xe9\x6f\xd2\xe9\xf2\xf9\x57\x50\x03\x33\x48\x4e\x74\xeb\x0b\xba\x97\x34\x2b\xee\xb8\x47\x89\x30\x3e\x76\x8f\x01\x5f\x89\xb2\x33\xa6\xba\xd1\x42\x3e\x2b\xff\x7f\x1c\xe0\x66\xc6\x7e\x05\x00\x00\xff\xff\x2d\xe8\x6b\x87\xa4\x03\x00\x00") + +func examplesGuestbookPhpRedisGuestbookPhpBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookPhpRedisGuestbookPhp, + "examples/guestbook/php-redis/guestbook.php", + ) +} + +func examplesGuestbookPhpRedisGuestbookPhp() (*asset, error) { + bytes, err := examplesGuestbookPhpRedisGuestbookPhpBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/php-redis/guestbook.php", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookPhpRedisIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\xcd\x8e\xd3\x30\x10\xbe\xef\x53\x8c\x2c\x90\xe0\x10\xbb\xed\x8a\xcb\x92\xe4\xc2\x81\x13\x17\x78\x02\xc7\x9e\x26\x6e\xfd\x27\xcf\x64\xd9\x6a\xb5\xef\x8e\x9c\x36\x6d\x05\x2b\x71\x9b\x7c\x19\x7d\xf3\xfd\xc8\xed\xc4\xc1\x43\x1c\x1b\x9d\x73\x27\x0a\x5a\x47\xa2\x7f\x00\x68\x27\xd4\xb6\x0e\x00\x2d\x3b\xf6\xd8\x7f\x9f\x91\x78\x48\xe9\xd8\xaa\x33\x70\xfe\xe9\x5d\x3c\x42\x41\xdf\x09\xe2\x93\x47\x9a\x10\x59\xc0\x54\x70\xdf\x09\xa5\x22\xb2\x8d\x5a\x0e\x29\x31\x71\xd1\xd9\xd8\x28\x4d\x0a\xea\x0a\xa8\x47\xb9\x95\x5b\x65\x88\x6e\x98\x0c\x2e\x4a\x43\x67\x21\x00\x2d\x99\xe2\x32\x03\x15\xd3\x89\x89\x39\xd3\x93\x52\xfa\xa0\x5f\xe4\x98\xd2\xe8\x51\x67\x47\x0b\x69\xc5\x94\x77\x03\x29\x1d\xc7\xd9\xeb\x72\x20\xb5\x95\x3b\xb9\xdd\xad\xc0\xc2\x7c\x20\xd1\xb7\xea\x4c\xfa\xce\x05\x93\x22\x97\xe4\x3d\x16\xfa\xdf\xea\x2a\xc6\xd8\x78\x20\x69\x7c\x9a\xed\xde\xeb\x82\xef\xab\x69\x66\xd7\xdc\x7c\x6f\xe4\xf6\x51\x6e\xd4\x3d\xd6\x70\xf6\xff\xde\x6c\xd5\x5a\x45\x3b\x24\x7b\xaa\x5d\xdd\x24\x76\xe2\x67\xad\xec\x1b\x17\xbf\xa6\x65\xdd\x33\x2c\x55\x74\xe2\xb7\xb3\x3c\x3d\xc1\x97\xcd\xc7\xaf\x10\x74\x19\x5d\x6c\x3c\xee\xf9\x09\x76\x9b\xfc\x72\xd9\xaf\x55\xef\xee\xcb\x9d\x76\x17\xa2\x7d\x2a\x61\x1d\x1d\x7a\x4b\xb8\x66\xe0\x62\x9e\xb9\x0a\x09\xc9\xd6\xe6\x03\x8d\x02\xb2\xd7\x06\xa7\xe4\x6d\x55\xf5\x03\x89\xf4\x88\x24\xc0\x78\x4d\xd4\x89\x4a\xb6\xea\x16\xc0\xa7\x8c\x9d\x60\x7c\x61\x01\x51\x07\xec\xc4\x42\x29\xfa\x76\x28\x97\x1b\xc3\xcc\x9c\xe2\x65\xf3\xfc\x71\x25\x1b\x38\xc2\xc0\xb1\xc9\xc5\x05\x5d\x4e\x62\xc9\xc4\x3b\x73\xbc\x6f\x4f\xa6\xb8\x64\xf3\xe9\xb3\xe8\x7f\xcd\x43\x70\xdc\xaa\x33\xcf\xe5\x82\xfa\xcb\x95\xba\x33\x6c\xdd\xf3\x35\x9e\x1a\x68\x1c\x9b\x82\x19\x35\x2f\x66\xc1\x45\x08\x17\x87\xc0\x45\x9b\x23\x0c\x27\xf8\xe0\xa2\xc5\x5b\xac\x00\xaf\xaf\x81\xc6\xb7\xb7\x95\x47\x5d\x49\xdf\x1b\x5b\x55\xdb\xed\x1f\x5a\x55\x5f\x64\xff\xf0\x27\x00\x00\xff\xff\x53\x94\xa4\x55\x99\x03\x00\x00") + +func examplesGuestbookPhpRedisIndexHtmlBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookPhpRedisIndexHtml, + "examples/guestbook/php-redis/index.html", + ) +} + +func examplesGuestbookPhpRedisIndexHtml() (*asset, error) { + bytes, err := examplesGuestbookPhpRedisIndexHtmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/php-redis/index.html", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookRedisMasterDeploymentYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\xc1\x4e\x33\x31\x0c\x84\xef\x79\x0a\x4b\xff\xb9\x7f\xbb\x20\x81\xc8\x99\x2b\x12\x27\xae\xc8\xcd\x8e\x56\xa1\x49\x1c\x1c\x2f\xa2\x6f\x8f\x52\x75\xdb\x6d\x7d\x4a\xbe\xd1\x8c\xc7\x5c\xe3\x07\xb4\x45\x29\x9e\xf0\x6b\x28\xfd\xd9\xb6\x3f\xc3\x1e\xc6\x83\x3b\xc4\x32\x7a\x7a\x45\x4d\x72\xcc\x28\xe6\x32\x8c\x47\x36\xf6\x8e\xa8\x70\x86\x27\xc5\x18\xdb\x26\x73\x33\xa8\x6b\x15\xa1\x4b\x8a\x9a\x62\xe0\xe6\x69\x70\x44\x86\x5c\x13\x1b\xba\x42\xb4\x8e\xe8\x93\x78\x8f\xd4\x96\x1f\x11\xd7\x7a\x4e\xbd\x20\x95\x04\x4f\xe7\x1d\x0b\xb4\x08\xf5\xb4\xe7\x70\x40\x19\x4f\x74\xd9\xde\x27\x48\x31\x8e\x05\x7a\x49\xde\x9c\x0b\xdf\xc5\xc4\xcc\x13\x3c\x4d\x41\xff\x47\xd9\x4e\x22\x53\xc2\xe7\xd5\xbd\x3d\x35\xf1\x78\x00\xd1\x3f\x12\xa5\xaf\xb9\xd9\x62\xba\x6b\x89\x26\xb3\x06\xac\x6e\xe9\xf0\x7b\x46\xb3\x1b\x46\x14\xea\xec\x69\xd8\xed\xf2\x0d\xcd\xc8\xa2\xc7\x93\xf0\x16\x2f\x4a\x15\x5d\xdb\x37\xd7\xd3\xde\x45\xcd\xd3\xd3\xe3\xf3\x8b\xfb\x0b\x00\x00\xff\xff\xe3\x33\x9a\x9e\xc8\x01\x00\x00") + +func examplesGuestbookRedisMasterDeploymentYamlBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookRedisMasterDeploymentYaml, + "examples/guestbook/redis-master-deployment.yaml", + ) +} + +func examplesGuestbookRedisMasterDeploymentYaml() (*asset, error) { + bytes, err := examplesGuestbookRedisMasterDeploymentYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/redis-master-deployment.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookRedisMasterServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x8d\x41\xaa\xc3\x30\x0c\x44\xf7\x3e\xc5\x5c\x20\x8b\xcf\x87\x96\xea\x14\x85\x42\xf7\x8a\x3d\x14\x13\xc7\x36\xb2\xc8\xf9\x4b\xd2\x52\xba\xee\x4e\xd2\x7b\x9a\xd1\x9e\xef\xb4\x91\x5b\x15\x6c\x7f\x61\xc9\x35\x09\x6e\xb4\x2d\x47\x86\x95\xae\x49\x5d\x25\x00\x55\x57\x0a\x8c\x29\x8f\x69\xd5\xe1\xb4\x00\x14\x9d\x59\xc6\x8e\x01\xed\xfd\xcd\x8f\xd5\x5a\xa1\xe0\x63\x02\x9e\x69\x82\x59\xe3\xc2\x9a\xc2\xe8\x8c\xfb\x5f\x6f\xe6\x47\xc0\x74\x8c\x82\xd3\xff\xf9\xf2\xf2\xd5\x1e\xf4\xeb\xf7\x71\xb0\x30\x7a\xb3\x5f\x0a\x9f\x01\x00\x00\xff\xff\x35\x30\xd5\x6a\xe9\x00\x00\x00") + +func examplesGuestbookRedisMasterServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookRedisMasterServiceYaml, + "examples/guestbook/redis-master-service.yaml", + ) +} + +func examplesGuestbookRedisMasterServiceYaml() (*asset, error) { + bytes, err := examplesGuestbookRedisMasterServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/redis-master-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookRedisSlaveDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x8f\xda\x30\x10\x85\xef\xfe\x15\x4f\xe4\xd2\xaa\x34\x50\x0e\x3d\xb4\xa7\x14\x58\x35\xda\xdd\x44\x22\xd0\xd5\x1e\x4d\x32\xc4\x23\x05\xdb\xb5\x27\x0d\xfc\xfb\x2a\xc0\xb6\x45\xf5\xc5\xf2\xcc\xf3\xf3\xe7\x37\x09\x96\xce\x9f\x03\xb7\x46\xb0\x98\x7f\xfa\x8c\xad\x21\x3c\xf6\x7b\x0a\x96\x84\x22\xb2\x5e\x8c\x0b\x31\x55\x89\x4a\xf0\xc4\x35\xd9\x48\x0d\x7a\xdb\x50\x80\x18\x42\xe6\x75\x6d\xe8\xad\x33\xc5\x0f\x0a\x91\x9d\xc5\x22\x9d\xe3\xdd\x28\x98\xdc\x5a\x93\xf7\x5f\x55\x82\xb3\xeb\x71\xd4\x67\x58\x27\xe8\x23\x41\x0c\x47\x1c\xb8\x23\xd0\xa9\x26\x2f\x60\x8b\xda\x1d\x7d\xc7\xda\xd6\x84\x81\xc5\x5c\x9e\xb9\x99\xa4\x2a\xc1\xeb\xcd\xc2\xed\x45\xb3\x85\x46\xed\xfc\x19\xee\xf0\xaf\x0e\x5a\x2e\xc0\xe3\x32\x22\xfe\xcb\x6c\x36\x0c\x43\xaa\x2f\xb0\xa9\x0b\xed\xac\xbb\x0a\xe3\xec\x29\x5f\xae\x8b\x6a\xfd\x71\x91\xce\x2f\x57\x76\xb6\xa3\x18\x11\xe8\x67\xcf\x81\x1a\xec\xcf\xd0\xde\x77\x5c\xeb\x7d\x47\xe8\xf4\x00\x17\xa0\xdb\x40\xd4\x40\xdc\xc8\x3b\x04\x16\xb6\xed\x14\xd1\x1d\x64\xd0\x81\x54\x82\x86\xa3\x04\xde\xf7\x72\x17\xd6\x1b\x1d\xc7\x3b\x81\xb3\xd0\x16\x93\xac\x42\x5e\x4d\xf0\x2d\xab\xf2\x6a\xaa\x12\xbc\xe4\xdb\xef\xe5\x6e\x8b\x97\x6c\xb3\xc9\x8a\x6d\xbe\xae\x50\x6e\xb0\x2c\x8b\x55\xbe\xcd\xcb\xa2\x42\xf9\x80\xac\x78\xc5\x63\x5e\xac\xa6\x20\x16\x43\x01\x74\xf2\x61\xe4\x77\x01\x3c\xc6\x48\xcd\x98\x59\x45\x74\x07\x70\x70\x57\xa0\xe8\xa9\xe6\x03\xd7\xe8\xb4\x6d\x7b\xdd\x12\x5a\xf7\x8b\x82\x65\xdb\xc2\x53\x38\x72\x1c\x87\x19\xa1\x6d\xa3\x12\x74\x7c\x64\xd1\x72\xa9\xfc\xf7\xa9\x54\xa9\x87\x4d\xf9\x8c\x40\x0d\x47\xa5\xb2\xd5\x0a\xa1\xb7\x69\x34\x98\x5d\x77\xa5\x36\xbb\x02\xb5\x39\xba\x06\xfa\xc3\xe9\x6f\x79\xf9\xbc\xfa\x73\xf8\x1d\x00\x00\xff\xff\xca\x9d\xbf\xda\x8f\x02\x00\x00") + +func examplesGuestbookRedisSlaveDockerfileBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookRedisSlaveDockerfile, + "examples/guestbook/redis-slave/Dockerfile", + ) +} + +func examplesGuestbookRedisSlaveDockerfile() (*asset, error) { + bytes, err := examplesGuestbookRedisSlaveDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/redis-slave/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookRedisSlaveRunSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x51\x4f\xdb\x30\x14\x85\xdf\xfd\x2b\xce\x1a\x1e\x36\xa9\x4d\x19\x9b\x36\x0d\xc4\x43\x56\xc2\x88\x80\x46\x4a\x02\x08\x21\x54\x39\xc9\x4d\x72\xa5\xd4\xce\x6c\xa7\xa1\x42\xfc\xf7\x29\x2d\x48\x43\xd3\xfc\x78\xef\x39\xc7\x9f\x8f\xbd\x0f\xf3\x9c\xd5\x3c\x97\xb6\x11\xc2\xc3\x42\x77\x5b\xc3\x75\xe3\x70\x74\xf8\xf9\x2b\xb2\x86\x70\xd9\xe7\x64\x14\x39\xb2\x08\x7a\xd7\x68\x63\x7d\xe1\x09\x0f\x57\x5c\x90\xb2\x54\xa2\x57\x25\x19\xb8\x86\x10\x74\xb2\x68\xe8\x6d\x33\xc5\x2d\x19\xcb\x5a\xe1\xc8\x3f\xc4\xc7\x51\x30\x79\x5d\x4d\x3e\x9d\x08\x0f\x5b\xdd\x63\x2d\xb7\x50\xda\xa1\xb7\x04\xd7\xb0\x45\xc5\x2d\x81\x9e\x0a\xea\x1c\x58\xa1\xd0\xeb\xae\x65\xa9\x0a\xc2\xc0\xae\xd9\x5d\xf3\x1a\xe2\x0b\x0f\xf7\xaf\x11\x3a\x77\x92\x15\x24\x0a\xdd\x6d\xa1\xab\xbf\x75\x90\x6e\x07\x3c\x9e\xc6\xb9\xee\x78\x3e\x1f\x86\xc1\x97\x3b\x58\x5f\x9b\x7a\xde\xee\x85\x76\x7e\x15\x2d\xc2\x65\x1a\xce\x8e\xfc\xc3\x9d\xe5\x46\xb5\x64\x2d\x0c\xfd\xee\xd9\x50\x89\x7c\x0b\xd9\x75\x2d\x17\x32\x6f\x09\xad\x1c\xa0\x0d\x64\x6d\x88\x4a\x38\x3d\xf2\x0e\x86\x1d\xab\x7a\x0a\xab\x2b\x37\x48\x43\xc2\x43\xc9\xd6\x19\xce\x7b\xf7\xae\xac\x37\x3a\xb6\xef\x04\x5a\x41\x2a\x4c\x82\x14\x51\x3a\xc1\xcf\x20\x8d\xd2\xa9\xf0\x70\x17\x65\x17\xf1\x4d\x86\xbb\x20\x49\x82\x65\x16\x85\x29\xe2\x04\x8b\x78\x79\x16\x65\x51\xbc\x4c\x11\x9f\x23\x58\xde\xe3\x32\x5a\x9e\x4d\x41\xec\x1a\x32\xa0\xa7\xce\x8c\xfc\xda\x80\xc7\x1a\xa9\x1c\x3b\x4b\x89\xde\x01\x54\x7a\x0f\x64\x3b\x2a\xb8\xe2\x02\xad\x54\x75\x2f\x6b\x42\xad\x37\x64\x14\xab\x1a\x1d\x99\x35\xdb\xf1\x33\x2d\xa4\x2a\x85\x87\x96\xd7\xec\xa4\xdb\x4d\xfe\x79\x94\x2f\x04\x57\x78\x78\xc0\xc1\xf3\xaf\x30\x5b\x5d\xc4\x69\x96\xae\xce\x93\xf8\xfa\x78\x56\x2a\xfb\x82\xd3\x53\x4c\x48\x6d\x26\x78\x7c\x3c\x19\x7d\x4a\x00\x86\x4a\xb6\x33\x4b\x66\x43\x06\xb3\x99\x6d\xe5\x86\x74\x85\x83\xe7\x24\x3c\x8b\xd2\xd5\x75\x90\x66\x61\xb2\x4a\xc3\xe4\x36\x5a\x84\xbb\xc8\x17\x7c\xfb\xf2\xfd\x87\xa0\xd6\xd2\xff\xfd\xfb\xf1\x5a\x5a\x47\x66\xaf\xaf\x58\xfc\x09\x00\x00\xff\xff\x36\x40\x6b\x6e\xf6\x02\x00\x00") + +func examplesGuestbookRedisSlaveRunShBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookRedisSlaveRunSh, + "examples/guestbook/redis-slave/run.sh", + ) +} + +func examplesGuestbookRedisSlaveRunSh() (*asset, error) { + bytes, err := examplesGuestbookRedisSlaveRunShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/redis-slave/run.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookRedisSlaveDeploymentYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x92\xcd\x6e\xdb\x3a\x14\x84\xf7\x7a\x8a\x01\xee\x22\x1b\xfb\x3a\x6e\x81\x16\xe5\xba\xbf\x8b\x20\x45\x13\x74\x6b\x1c\x51\x63\x85\x08\xc9\xa3\x92\x94\x5a\xbf\x7d\x41\xd5\xb2\x2d\xae\xa4\x39\x9c\x6f\x46\x22\x65\x70\x3f\x99\xb2\xd3\x68\xc0\x3f\x85\xb1\x3e\xe6\xdd\xb4\x6f\x59\x64\xdf\xbc\xba\xd8\x19\x7c\xe4\xe0\xf5\x14\x18\x4b\x13\x58\xa4\x93\x22\xa6\x01\xa2\x04\x1a\x24\x76\x2e\x6f\xb3\x97\x89\x4d\x1e\x68\xeb\x24\x71\xf0\xce\x4a\x36\x78\xd3\x00\x85\x61\xf0\x52\x58\x27\xc0\x2d\xa1\x2e\x2f\x2d\x7d\x5e\xde\x00\x19\x86\x33\xf4\x22\x25\xf5\x34\xf8\x17\xb1\x68\xc5\x31\x19\xb4\x62\x5f\x19\xbb\x59\x5d\xc2\xeb\xb2\x1a\x8b\xb8\xc8\x74\x01\x6f\xcf\x75\xd7\x14\x17\xa4\xa7\x41\x6f\xd3\xff\x4e\x77\xbd\x6a\xef\x79\xc8\x12\x06\xcf\xbc\xeb\xdb\xed\xdc\x63\xb6\x98\x69\x7f\xed\xc3\xac\x63\xb2\xbc\x69\x5d\xc5\x5f\x23\x73\x59\x69\x80\x1d\x46\x83\xfd\xfd\x7d\x58\xa9\x81\x41\xd3\x69\x1e\x3c\xb8\xcb\x84\x71\xba\x9a\x97\xbe\x5f\x3e\x3d\x1f\xbe\x3e\x3e\x3d\x3f\x1d\x3e\xff\x78\x7c\xb8\xa1\x4c\xe2\x47\x1a\x74\x31\xdf\x88\xff\xe1\xdb\x11\x27\x1d\x13\xac\x1f\x73\x61\xaa\x7f\xe2\xe8\x7a\x74\xca\x8c\xa8\x05\x2e\x5a\x3f\x76\x84\x54\x27\x32\xd3\xe4\x2c\x37\x28\x2f\x8c\x28\xba\x42\xb9\x98\x0b\xa5\x83\x58\xcb\x9c\x21\xb1\x36\x74\x49\x63\xbd\x09\x98\x24\x39\x69\x3d\x51\x14\x47\x17\xbb\x8a\x40\x90\x1a\xba\xa2\x9c\x23\xee\x32\x5e\x34\x97\x0d\xac\x86\xd9\xaf\x63\x99\x2d\x77\xd7\x0f\xb9\x83\x77\x91\x90\x56\x27\x6e\x20\xe7\x73\x5d\x40\x63\x5c\xac\xd5\x36\xef\x6c\xe9\xf5\xb7\x59\xed\x3a\xd3\x18\xa7\x8b\x3c\x68\xba\x3d\x96\xed\xf5\x76\x7c\xd7\x54\x0c\xde\xbd\x7d\xff\xa1\xf9\x1b\x00\x00\xff\xff\xf6\xc0\x84\xe0\x09\x03\x00\x00") + +func examplesGuestbookRedisSlaveDeploymentYamlBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookRedisSlaveDeploymentYaml, + "examples/guestbook/redis-slave-deployment.yaml", + ) +} + +func examplesGuestbookRedisSlaveDeploymentYaml() (*asset, error) { + bytes, err := examplesGuestbookRedisSlaveDeploymentYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/redis-slave-deployment.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookRedisSlaveServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x8c\x41\xaa\xc3\x30\x10\x43\xf7\x3e\x85\x2e\x90\xc5\xe7\x43\x4b\xe7\x1a\x85\xee\x27\xb6\x16\x43\x1c\xdb\xcc\x98\x9c\xbf\x24\xb4\x17\xe8\x4e\xe2\xe9\x49\x87\xbd\xe8\x61\xbd\x09\x8e\xbf\xb4\x59\x2b\x82\x27\xfd\xb0\xcc\xb4\x73\x6a\xd1\xa9\x92\x80\xa6\x3b\x05\xce\x62\xb1\x44\xd5\x83\x09\xa8\xba\xb2\xc6\x49\x01\x1d\xe3\x83\xaf\xea\xbd\x52\xf0\x1d\x02\xd3\xe8\x82\x55\xf3\xc6\x56\x52\x0c\xe6\x53\x1b\xdd\xe7\xe5\x2f\x57\x14\xdc\xfe\xef\x8f\x04\x04\x2b\xf3\xec\xfe\xc3\xf5\x3b\x00\x00\xff\xff\x51\x66\x08\x5a\xd1\x00\x00\x00") + +func examplesGuestbookRedisSlaveServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookRedisSlaveServiceYaml, + "examples/guestbook/redis-slave-service.yaml", + ) +} + +func examplesGuestbookRedisSlaveServiceYaml() (*asset, error) { + bytes, err := examplesGuestbookRedisSlaveServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook/redis-slave-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookGoGitignore = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2f\x4d\x2d\x2e\x49\xca\xcf\xcf\x8e\x4f\xca\xcc\xe3\x02\x04\x00\x00\xff\xff\x1b\x79\xb1\xa4\x0e\x00\x00\x00") + +func examplesGuestbookGoGitignoreBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookGoGitignore, + "examples/guestbook-go/.gitignore", + ) +} + +func examplesGuestbookGoGitignore() (*asset, error) { + bytes, err := examplesGuestbookGoGitignoreBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook-go/.gitignore", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookGoBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xcb\xca\xdb\x30\x10\x85\xf7\x7e\x0a\xa1\x55\xfc\xd3\x44\x7b\x43\xa0\xef\x11\x8c\x19\x59\xca\x74\xc8\x58\x63\x74\x09\x49\x9e\xbe\xf8\x92\xb6\x09\xa9\x17\xff\x52\x67\xce\x1c\x3e\x1d\x66\x84\xfe\x02\xe8\x77\xce\x9f\xa1\x70\xee\xae\x94\xc8\x12\x53\xbe\xab\xa3\x3a\x69\x63\xfe\x0a\xcd\x58\x2c\x53\xaf\xdb\xba\xaa\x58\xc0\xed\x2a\xa5\x94\xd2\x3f\x49\x3a\x0b\x0f\xcf\x5d\x2c\xec\x53\x87\x62\x0c\x4a\xe3\xfc\xf9\x60\x1f\xac\x7f\x2c\x2e\x94\xce\x52\x80\x78\xff\x47\x60\xb2\x71\x51\xea\xaa\xfa\x63\x58\x62\x03\x0c\x5e\x1d\x95\xc6\xe2\x53\xb6\x22\x97\x3d\xca\xba\xba\xae\x4d\xd3\x06\xa5\x7b\x92\xbf\xa7\xad\xef\xb7\xb8\x4f\xfe\xc9\x90\x62\x9f\xe6\x1f\x0f\x40\xe1\x80\xa2\xdb\x45\x77\x7e\x9c\xf5\xf9\x31\x83\x1b\x73\xf5\xc1\x49\x34\x48\xf9\x57\xb1\x87\x5e\x06\xd3\x8b\xf3\x08\x01\x53\x06\x13\x3c\x46\x09\xf4\x19\x6d\x33\x05\x25\x12\x33\x98\xa1\xdc\xbe\xb1\x7d\xbb\x8f\x51\xb2\x98\x44\xc3\xc8\x3e\x7a\x47\xe9\xff\x29\xed\xdc\xd2\x99\x78\x82\x2d\xe3\x6b\x49\xeb\x4d\xec\xa7\x4e\x5e\xeb\x41\x16\xbb\x3b\xe9\xaf\x2f\xdd\xd6\xcb\x20\x03\x2e\xbd\x41\xc9\x32\x40\x00\xf4\xee\xd9\xdd\xe6\x2d\x45\xba\x42\xf6\x7a\x13\x04\x98\x3f\x40\x9c\x74\xf3\x42\xd8\x6e\x93\xd4\xd5\xef\x00\x00\x00\xff\xff\xe1\xa6\x44\xc3\xe4\x02\x00\x00") + +func examplesGuestbookGoBuildBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookGoBuild, + "examples/guestbook-go/BUILD", + ) +} + +func examplesGuestbookGoBuild() (*asset, error) { + bytes, err := examplesGuestbookGoBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook-go/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookGoDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x4f\x6f\x9b\x4a\x14\xc5\xf7\xf3\x29\x8e\xcc\xe6\x3d\xc9\xc1\x24\x2f\x7a\x8b\x74\x45\x6d\x47\x45\x49\x4c\x65\x9c\xa6\x51\x55\x55\x03\x5c\xc3\x6d\xf1\xcc\x74\xfe\x14\xf3\xed\x2b\x1c\xa7\x8d\x13\x96\xe7\xfe\xb8\xf3\x9b\x33\x11\xe6\xda\x0c\x96\x9b\xd6\xe3\x22\x39\xff\x1f\x9b\x96\x70\x13\x4a\xb2\x8a\x3c\x39\xa4\xc1\xb7\xda\xba\x58\x44\x22\xc2\x2d\x57\xa4\x1c\xd5\x08\xaa\x26\x0b\xdf\x12\x52\x23\xab\x96\x9e\x27\x53\x7c\x22\xeb\x58\x2b\x5c\xc4\x09\xfe\x19\x81\xc9\x71\x34\xf9\xf7\x9d\x88\x30\xe8\x80\x9d\x1c\xa0\xb4\x47\x70\x04\xdf\xb2\xc3\x96\x3b\x02\xed\x2b\x32\x1e\xac\x50\xe9\x9d\xe9\x58\xaa\x8a\xd0\xb3\x6f\x0f\xc7\x1c\x97\xc4\x22\xc2\xe3\x71\x85\x2e\xbd\x64\x05\x89\x4a\x9b\x01\x7a\xfb\x92\x83\xf4\x07\xe1\xf1\x6b\xbd\x37\x57\xb3\x59\xdf\xf7\xb1\x3c\xc8\xc6\xda\x36\xb3\xee\x09\x74\xb3\xdb\x6c\xbe\x5c\x15\xcb\xb3\x8b\x38\x39\xfc\x72\xaf\x3a\x72\x0e\x96\x7e\x06\xb6\x54\xa3\x1c\x20\x8d\xe9\xb8\x92\x65\x47\xe8\x64\x0f\x6d\x21\x1b\x4b\x54\xc3\xeb\xd1\xb7\xb7\xec\x59\x35\x53\x38\xbd\xf5\xbd\xb4\x24\x22\xd4\xec\xbc\xe5\x32\xf8\x93\xb2\x9e\xed\xd8\x9d\x00\x5a\x41\x2a\x4c\xd2\x02\x59\x31\xc1\xfb\xb4\xc8\x8a\xa9\x88\xf0\x90\x6d\x3e\xe4\xf7\x1b\x3c\xa4\xeb\x75\xba\xda\x64\xcb\x02\xf9\x1a\xf3\x7c\xb5\xc8\x36\x59\xbe\x2a\x90\x5f\x23\x5d\x3d\xe2\x26\x5b\x2d\xa6\x20\xf6\x2d\x59\xd0\xde\xd8\xd1\x5f\x5b\xf0\x58\x23\xd5\x63\x67\x05\xd1\x89\xc0\x56\x3f\x09\x39\x43\x15\x6f\xb9\x42\x27\x55\x13\x64\x43\x68\xf4\x2f\xb2\x8a\x55\x03\x43\x76\xc7\x6e\x7c\x4c\x07\xa9\x6a\x11\xa1\xe3\x1d\x7b\xe9\x0f\xc9\x9b\x4b\xc5\x42\x5c\xaf\xf3\x3b\x94\xc1\x0d\xa5\xde\x5f\x85\x32\x28\x1f\xce\xce\x2f\xe3\xe4\x52\x88\x74\xb1\x40\x3c\x6b\x02\x39\x5f\x6a\xfd\xe3\x5b\xc9\x0a\x33\x69\xcc\xdf\xe8\x88\x98\x50\x76\x5c\xcd\x58\xd5\xb4\x8f\x5b\xbf\xeb\x9e\xb0\x37\xf1\x29\xee\x2a\xcb\xc6\xc7\xdf\xdd\x09\xfd\x27\x7d\x05\xfb\xa1\xa3\xb8\x72\xaf\xe0\xe7\x54\x88\x87\x7c\x7d\xb3\xc8\xd6\x87\xb1\x98\xdf\x2d\xf0\x65\xf2\xc2\x7d\xf2\x55\x2c\x3f\x7f\xcc\x8b\x25\xfe\x4b\x92\x44\xfc\x0e\x00\x00\xff\xff\xfd\x91\x4e\xf5\x41\x03\x00\x00") + +func examplesGuestbookGoDockerfileBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookGoDockerfile, + "examples/guestbook-go/Dockerfile", + ) +} + +func examplesGuestbookGoDockerfile() (*asset, error) { + bytes, err := examplesGuestbookGoDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook-go/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookGoMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x93\x51\x6f\xdb\x36\x14\x85\x9f\xc3\x5f\x71\x60\xf5\x61\x03\x22\x29\x4b\x81\x3d\x78\xc8\x3a\x37\xf5\x56\xa1\x85\x3d\x58\x4e\x8b\xa0\x28\x0a\x4a\xba\x96\x88\x50\x24\x47\x52\x76\xbc\xa6\xff\x7d\xa0\x24\x6f\x36\xda\x34\xf3\x93\x4d\xde\x73\xee\xe1\x77\xaf\x23\x5c\x6b\xb3\xb7\xa2\x6e\x3c\x2e\x2f\x7e\xfa\x19\xeb\x86\xf0\xa6\x2b\xc8\x2a\xf2\xe4\x30\xeb\x7c\xa3\xad\x4b\x58\xc4\x22\xbc\x15\x25\x29\x47\x15\x3a\x55\x91\x85\x6f\x08\x33\xc3\xcb\x86\x0e\x37\xe7\x78\x47\xd6\x09\xad\x70\x99\x5c\xe0\x87\x50\x30\x19\xaf\x26\x3f\xfe\xc2\x22\xec\x75\x87\x96\xef\xa1\xb4\x47\xe7\x08\xbe\x11\x0e\x1b\x21\x09\x74\x5f\x92\xf1\x10\x0a\xa5\x6e\x8d\x14\x5c\x95\x84\x9d\xf0\x4d\xdf\x66\x34\x49\x58\x84\xdb\xd1\x42\x17\x9e\x0b\x05\x8e\x52\x9b\x3d\xf4\xe6\xb8\x0e\xdc\xf7\x81\xc3\xa7\xf1\xde\x4c\xd3\x74\xb7\xdb\x25\xbc\x0f\x9b\x68\x5b\xa7\x72\x28\x74\xe9\xdb\xec\x7a\xbe\xc8\xe7\xf1\x65\x72\xd1\x4b\x6e\x94\x24\xe7\x60\xe9\xaf\x4e\x58\xaa\x50\xec\xc1\x8d\x91\xa2\xe4\x85\x24\x48\xbe\x83\xb6\xe0\xb5\x25\xaa\xe0\x75\xc8\xbb\xb3\xc2\x0b\x55\x9f\xc3\xe9\x8d\xdf\x71\x4b\x2c\x42\x25\x9c\xb7\xa2\xe8\xfc\x09\xac\x43\x3a\xe1\x4e\x0a\xb4\x02\x57\x98\xcc\x72\x64\xf9\x04\x2f\x67\x79\x96\x9f\xb3\x08\xef\xb3\xf5\xeb\xe5\xcd\x1a\xef\x67\xab\xd5\x6c\xb1\xce\xe6\x39\x96\x2b\x5c\x2f\x17\xaf\xb2\x75\xb6\x5c\xe4\x58\xfe\x8e\xd9\xe2\x16\x6f\xb2\xc5\xab\x73\x90\xf0\x0d\x59\xd0\xbd\xb1\x21\xbf\xb6\x10\x01\x23\x55\x81\x59\x4e\x74\x12\x60\xa3\x87\x40\xce\x50\x29\x36\xa2\x84\xe4\xaa\xee\x78\x4d\xa8\xf5\x96\xac\x12\xaa\x86\x21\xdb\x0a\x17\x86\xe9\xc0\x55\xc5\x22\x48\xd1\x0a\xcf\x7d\x7f\xf2\xd5\xa3\x12\xc6\x22\xbc\xec\x84\xac\xfa\xd3\xba\x23\xe7\x0b\xad\xef\xe2\x5a\x83\xee\x79\x6b\x24\x85\x8a\x1b\xc7\x6b\x9a\xf6\xa3\xf9\xf0\x6e\xbe\xca\xb3\xe5\xe2\x6a\xfb\xfc\x23\x3e\xac\xe6\x7f\x64\xf9\x7a\x75\x7b\x35\xa9\x4b\x9b\x08\x9d\xd6\x5a\xd7\x92\x3e\x95\x5a\x85\x39\x93\x75\x93\x8f\x68\xf9\x1d\xa1\x08\x4d\xd8\x28\x7e\x71\xb5\x7d\xce\x0e\xda\x17\x57\x8f\x69\x19\xb3\x24\x89\x3b\x9a\xa2\x94\xc4\xd5\x60\x02\xd3\xb9\x66\x38\x08\xd9\xfa\x33\x07\x8e\x4a\x97\x77\x14\x00\x06\x22\xbe\xe1\xfe\x70\x15\x5e\xc6\x8d\x09\x3c\x60\x78\x79\xc7\x6b\x72\x10\x61\x6b\xbd\x06\x47\x2b\x94\x68\xb9\x3c\xd1\xb3\x5e\x3a\x65\x67\xbf\x95\x06\x49\x92\x26\x49\x5a\xf0\xbf\x49\xc6\x85\x50\xe9\x08\xc6\xa5\xc7\xb8\x4e\x7e\xfc\x07\xf2\x53\x21\x14\x3b\x1b\xad\x87\xf8\x71\x6c\x3a\x29\x11\xc7\xb6\x45\x1c\x6f\xb4\x2d\xa9\xff\xea\xf1\xec\xf3\x81\xc9\x97\x23\xbb\x5e\x45\x16\xc9\xbf\x3e\xb6\x53\x83\xfc\xfb\x82\x07\x7c\xb3\xaf\xc7\xe4\x9b\xba\xe9\xb3\xcf\xe3\x78\xbe\x4c\x10\x07\xb4\x3d\xe8\x40\x6f\x64\xaa\xc3\xc6\x5b\xaa\xc3\xbf\x60\xcf\xc2\xed\x94\x9d\xd5\xa5\xd4\x5d\x75\x68\x15\xc7\x83\xea\xa9\x0e\xc1\xde\x52\xab\xb7\x04\x63\x69\x2b\x74\xe7\x86\x2e\xfd\xda\xe2\x68\x07\xfa\x41\x4f\xd9\x59\x40\xb4\x79\x04\xec\x70\xf7\x7d\x1a\x97\xbf\x22\xad\x68\x9b\xaa\x00\xe1\xe1\x01\xde\x76\x74\x64\x20\x9e\x76\x78\x44\xf4\x3f\x68\x1e\x94\x2c\xf9\xf3\xf5\x72\x71\x3b\xc5\xb8\xd7\x5f\xad\x35\xfb\x27\x00\x00\xff\xff\x11\xef\x74\x7f\xda\x05\x00\x00") + +func examplesGuestbookGoMakefileBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookGoMakefile, + "examples/guestbook-go/Makefile", + ) +} + +func examplesGuestbookGoMakefile() (*asset, error) { + bytes, err := examplesGuestbookGoMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook-go/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookGoGuestbookControllerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xbd\x6e\x84\x40\x0c\x84\x7b\x9e\x02\xb9\x4e\x72\x44\x74\xdb\xe6\x05\xa2\x14\x69\xa2\x28\xf2\x71\x16\x59\xdd\xb2\x5e\x79\x1d\x9a\x88\x77\x8f\xf8\x09\xc7\x02\x77\xba\x0a\x69\xfc\x79\x66\x8c\xf6\x37\xcb\xf3\x1c\xce\xd6\x9f\xc0\xc0\x1b\x05\x67\x2b\x54\xcb\xfe\x85\xbd\x0a\x3b\x47\x02\x0f\x03\x82\xc1\xbe\x93\x44\xcb\x1e\x0c\xb4\xcf\x93\xda\x90\xe2\x09\x15\xc1\x0c\x46\xbd\xe4\xb1\x21\x30\x50\xff\x50\xd4\x23\xf3\x79\x24\xfb\x89\xc3\x23\xb9\x78\x41\x47\xdb\x90\xc0\xd3\xa8\xeb\xbf\xdd\x98\x11\x03\x55\x0b\x7f\x19\x4b\x46\x30\xe5\xec\x1c\xc9\x51\xa5\x2c\xf7\x79\xcf\x6b\x4a\x4d\x70\xa8\x94\xae\x6d\x6f\xba\xde\xff\x76\xd2\xe2\x96\x55\xf4\xf6\xae\x49\xac\xd8\x2b\x5a\x4f\x12\xc1\x7c\xac\x73\x36\xc1\x37\xff\x77\x42\xd9\x06\xeb\x01\xab\xe4\xc9\xf2\xa1\x66\xae\x1d\x7d\x5d\xd2\x0e\xf3\xbe\x69\xcb\x7d\x8b\xc0\xa2\x7b\xad\xae\x77\x4b\x1b\x7e\xab\x86\xc7\x48\xd2\xfe\xbf\xa9\x7d\x7a\xee\xf4\xca\xa2\x60\xca\xa2\x28\xf6\xe1\x6e\x47\xfe\x5c\x6b\x29\xb4\x18\x77\xc9\x4b\xcb\xba\xec\x2f\x00\x00\xff\xff\x29\x64\x0f\x8d\x0a\x03\x00\x00") + +func examplesGuestbookGoGuestbookControllerJsonBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookGoGuestbookControllerJson, + "examples/guestbook-go/guestbook-controller.json", + ) +} + +func examplesGuestbookGoGuestbookControllerJson() (*asset, error) { + bytes, err := examplesGuestbookGoGuestbookControllerJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook-go/guestbook-controller.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookGoGuestbookServiceJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\x3d\x0b\xc2\x30\x10\x86\xf7\xfe\x8a\x70\x73\x85\x8a\x5b\x46\x67\x07\x41\x70\x11\x87\x6b\x7a\xd4\xd0\x34\x09\xc9\x59\x10\xc9\x7f\x97\xb6\xa1\x1f\x9b\x53\xc2\xfb\x3e\xf7\xdc\x7d\x0b\x21\x04\x74\xda\x36\x20\xe1\x46\x61\xd0\x8a\xa0\x9c\x42\xf4\xfa\x4e\x21\x6a\x67\x41\xc2\x70\xcc\x69\x4f\x8c\x0d\x32\x82\x9c\x46\xc7\xc8\x62\x4f\x20\xa1\x7d\x53\xe4\xda\xb9\x6e\x26\xc7\xc6\x60\x4d\x26\xae\xe8\xac\xf5\x3b\x38\x57\x69\x7c\xd3\xbc\x23\x7a\x52\x1b\xbf\x77\x81\x23\x48\xf1\x58\x2d\x1b\x61\x06\x40\x9e\xaa\xaa\x2a\x77\x39\x63\x68\x89\xaf\x53\x0b\x2f\x66\x7f\x88\x14\x06\x0a\xb0\x52\x29\x7f\x9f\xcb\xcd\x91\x0c\x29\x76\xe1\xbf\xab\x97\x31\xfe\x78\x02\x29\xe0\xe2\xb0\x39\xa3\x41\xab\xf2\x9e\x54\xa4\xe2\x17\x00\x00\xff\xff\xad\xe3\x7d\x55\x66\x01\x00\x00") + +func examplesGuestbookGoGuestbookServiceJsonBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookGoGuestbookServiceJson, + "examples/guestbook-go/guestbook-service.json", + ) +} + +func examplesGuestbookGoGuestbookServiceJson() (*asset, error) { + bytes, err := examplesGuestbookGoGuestbookServiceJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook-go/guestbook-service.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookGoMainGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\xdd\x6e\xdb\x38\x13\xbd\x16\x9f\x62\x3e\x5e\x51\x81\x2b\xb9\xed\x87\x5d\x6c\x16\xb9\xf0\xa6\x6e\xeb\xfe\xd8\x85\xed\xb6\x28\x82\x60\x41\x4b\x63\x89\x6b\x8a\x54\x87\x94\x1d\x23\xc8\xbb\x2f\x28\x39\xb1\x92\x76\xdb\x6e\x81\xbd\xb0\x61\x6b\x66\x0e\xcf\x9c\x39\x1c\xa5\x27\xec\xdc\xd6\x7b\x52\x45\xe9\xe1\xc9\xf0\xf1\xff\x61\x59\x22\xbc\x6e\x56\x48\x06\x3d\x3a\x18\x35\xbe\xb4\xe4\x12\xc6\xde\xa8\x0c\x8d\xc3\x1c\x1a\x93\x23\x81\x2f\x11\x46\xb5\xcc\x4a\x84\x43\x64\x00\x1f\x90\x9c\xb2\x06\x9e\x24\x43\x10\x21\x81\x1f\x42\x3c\xfe\x9d\xed\x6d\x03\x95\xdc\x83\xb1\x1e\x1a\x87\xe0\x4b\xe5\x60\xad\x34\x02\x5e\x65\x58\x7b\x50\x06\x32\x5b\xd5\x5a\x49\x93\x21\xec\x94\x2f\xdb\x43\x0e\x10\x09\xfb\x74\x00\xb0\x2b\x2f\x95\x01\x09\x99\xad\xf7\x60\xd7\xfd\x2c\x90\x9e\x31\x00\x80\xd2\xfb\xfa\x34\x4d\x77\xbb\x5d\x22\x5b\x96\x89\xa5\x22\xd5\x5d\x96\x4b\xdf\x4c\xce\xc7\xd3\xc5\xf8\xd1\x93\x64\xc8\xd8\x7b\xa3\xd1\x39\x20\xfc\xdc\x28\xc2\x1c\x56\x7b\x90\x75\xad\x55\x26\x57\x1a\x41\xcb\x1d\x58\x02\x59\x10\x62\x0e\xde\x06\x9e\x3b\x52\x5e\x99\x62\x00\xce\xae\xfd\x4e\x12\xb2\x5c\x39\x4f\x6a\xd5\xf8\x7b\x02\xdd\xb2\x52\x0e\xfa\x09\xd6\x80\x34\xc0\x47\x0b\x98\x2c\x38\xfc\x31\x5a\x4c\x16\x03\xf6\x71\xb2\x7c\x39\x7b\xbf\x84\x8f\xa3\xf9\x7c\x34\x5d\x4e\xc6\x0b\x98\xcd\xe1\x7c\x36\x7d\x36\x59\x4e\x66\xd3\x05\xcc\x9e\xc3\x68\xfa\x09\x5e\x4f\xa6\xcf\x06\x80\xca\x97\x48\x80\x57\x35\x05\xee\x96\x40\x05\xe9\x30\x4f\xd8\x02\xf1\xde\xe1\x6b\xdb\x91\x71\x35\x66\x6a\xad\x32\xd0\xd2\x14\x8d\x2c\x10\x0a\xbb\x45\x32\xca\x14\x50\x23\x55\xca\x85\xe1\x39\x90\x26\x67\x5a\x55\xca\x4b\xdf\xfe\xff\xa2\x9d\x84\x9d\xa4\x8c\xd5\x32\xdb\x04\x90\x4a\x2a\xc3\x98\xaa\x6a\x4b\x1e\x04\x8b\x38\x9a\xcc\xe6\xca\x14\xe9\x5f\xce\x1a\xce\x22\x6e\xd0\xa7\x61\x1e\xe1\xb7\x75\xe1\x3b\x48\x61\x0a\xc7\x19\x8b\x78\xa1\x7c\xd9\xac\x92\xcc\x56\x69\x66\x73\x2c\xa4\x29\x9c\x97\xa9\xc1\x82\xac\x51\xfc\x7e\x46\x61\x49\x69\x2d\xd3\xaa\xb9\x7a\x10\xb9\xda\xd7\x64\xbd\x4d\x5d\xd0\x01\x09\x73\xe5\x38\x8b\x19\xdb\x4a\x0a\xac\x2a\xe9\x3c\xd2\x3b\x6b\x35\x9c\xf4\x52\x92\x73\x6b\x0c\x66\xa1\xd1\x10\x63\x91\xd3\x72\x8b\x6d\xda\x37\xf3\x62\xc6\xd6\x8d\xc9\xe0\x8d\x72\x7e\x2e\x4d\x81\x2f\xa5\xc9\x35\x92\xa0\x5d\x6b\xbd\x64\x8e\xae\xb6\xc6\xe1\x47\x52\x1e\x69\x10\xcc\x05\x27\x87\xc8\xe7\x06\x9d\x8f\xe1\x9a\x45\x1b\xdc\xc3\xe9\x19\x54\xcd\x55\xf2\x41\x92\x13\x84\x9f\xe3\x0b\xbe\xc1\x3d\xbf\x64\x91\x56\xce\x87\x68\x9f\xc6\x14\x77\xe1\x48\x71\x47\x73\x00\x1b\xdc\xc7\x2c\xaa\xb0\x5a\x21\xb9\x90\xdf\x51\x19\x13\x59\x12\x01\x23\x79\x81\x7e\xa4\xb5\x88\xe3\x44\x5c\x5c\x76\xd2\x1f\x2b\x5e\x2d\x66\xd3\x87\x55\x61\x70\xc9\x5b\x49\xae\x94\x7a\x62\x72\x34\x5e\x1c\xb2\x07\xc0\xf9\x00\x38\x00\xef\xd0\x56\x7b\x8f\x31\x8b\x68\x97\xb4\x8d\x8a\x1e\x68\xcc\x6e\x7a\x22\xbd\x6b\x5c\xf9\x1f\x68\xb4\x95\xba\xc1\xaf\x84\xdb\xe7\xdf\x13\xf1\xe8\x89\x5b\x15\xfb\x22\x18\xa5\x07\xd0\xea\x37\xca\x73\xd1\x02\xc6\x31\x8b\xbe\x32\xf1\x96\xf9\xb1\xdd\x89\x59\xdb\x9f\x6b\x55\x99\xb5\x7d\x38\x8b\x23\xc9\x30\x47\x31\x8c\x93\x67\x56\xf0\xc9\xf4\xf9\xec\x1f\x46\x10\x40\x8e\x64\xc6\x66\xfb\x73\x5c\xd0\x6c\x15\x59\x53\xa1\x69\xf5\xab\xe4\x06\x45\x25\xeb\x8b\xce\x3f\x47\x1b\x85\xed\xf2\xe7\x00\x94\xc7\x2a\xe4\x51\x90\x06\xac\x4b\xc6\x5d\xbd\x68\xc1\x22\x57\x6b\xe5\x5b\x77\x1e\xae\x7e\xb2\x08\x4f\x44\x28\x1b\x00\x3f\xe3\x31\x8b\x6e\x27\xdd\xe5\x5e\x0c\x2f\x59\x14\xe6\xdb\x2f\x7a\x65\x95\x11\x87\xf8\xe3\xd3\xcb\xbb\xca\x1e\xd9\x8b\x0d\xee\x2f\xe1\x0c\xb6\x52\xb3\xe8\x86\xb5\x8d\xfc\xa0\xc7\x7b\x28\xdf\xf3\xf9\x01\xf4\xa8\x73\x1f\x9a\xd0\x35\x3a\xbc\xcf\x3c\xd2\x5a\x66\x78\x7d\x33\x00\x24\x0a\x1f\x4b\x31\x08\xea\x87\xba\xc1\xaf\xdb\x84\xff\x9d\x81\x51\xba\x15\xac\x96\x46\x65\x02\x89\xe2\xd0\x45\x44\xe8\x1b\x32\xd0\x21\xdf\x1d\x1a\x56\x6f\x27\x70\x6f\xbd\x7d\xe1\xf5\xfb\xab\xeb\xa5\x75\x5e\xf0\x36\xf8\xa8\xab\x3a\xfd\xe5\xe9\xaf\xbf\x05\x19\x73\x5c\x23\x41\xcf\x70\xe7\xda\x3a\x14\x71\x7f\x2b\xfe\x0b\xf4\xb6\xe8\x01\xf8\x1d\xd0\x1d\x36\x8b\xe8\xf6\xfe\x4e\x71\x37\xb7\x8d\x47\x0a\x47\x52\xf2\x4e\xfa\x52\xf0\x54\xb7\x96\x4a\xaf\x37\xb8\xbf\xe1\x71\xf2\x16\x7d\x69\x73\x27\xf8\x8b\xf1\x92\xc7\xc9\xc1\xdc\xcf\x1b\x93\x89\x87\x57\xb3\x8f\x42\x75\xe3\xca\x0e\x24\xbd\x6e\x2f\xf3\x0f\x80\xf5\x96\x56\x1f\x2b\xdc\xb0\x6f\x17\xf7\x56\x40\xbf\x10\xcd\xf6\xdb\x75\xc7\xdb\x1a\x84\x31\x41\x98\xc3\x7b\x30\x39\xd7\xd2\x39\x95\x05\x69\x4c\xf2\xde\x1d\xd7\x4f\xfb\x60\xde\x18\xc1\x4f\x9f\x0e\x87\x43\x1e\x3c\xf9\x77\x00\x00\x00\xff\xff\xc8\xd5\x47\x75\xd7\x09\x00\x00") + +func examplesGuestbookGoMainGoBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookGoMainGo, + "examples/guestbook-go/main.go", + ) +} + +func examplesGuestbookGoMainGo() (*asset, error) { + bytes, err := examplesGuestbookGoMainGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook-go/main.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookGoPublicIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x53\x4d\x8f\xd3\x30\x10\xbd\xef\xaf\x30\xc3\x39\xb1\xda\x13\x12\x8e\x2f\x0b\xe2\x08\x12\x2b\x21\x8e\x6e\x3c\xa9\xa7\x9b\xd8\x5e\x7b\x92\xdd\xfc\x7b\xe4\x26\x0d\xdd\x52\x89\xd3\x7c\xbd\xf7\xe6\xc3\x89\xfa\xf0\xe5\xfb\xe3\xd3\xef\x1f\x5f\x85\xe3\xa1\xd7\x0f\xaa\x18\xd1\x1b\x7f\x6c\x00\x3d\xe8\x07\x21\x94\x43\x63\x8b\x23\x84\x1a\x90\x8d\x68\x83\x67\xf4\xdc\x00\xe3\x1b\xcb\x42\xf8\x2c\x5a\x67\x52\x46\x6e\x46\xee\xaa\x4f\x20\x1c\x73\xac\xf0\x65\xa4\xa9\x81\xc7\x05\x5e\x3d\xcd\x11\xe1\x9d\xce\xca\x81\x85\x74\xb7\xc5\x2b\x59\x76\x8d\xc5\x89\x5a\xac\xce\x01\x08\x6f\x06\x6c\x60\x22\x7c\x8d\x21\xf1\x85\xd7\x93\x7f\x16\x2e\x61\xd7\x40\xe6\xb9\xc7\xba\xcd\x19\x44\xc2\x7e\x8d\xb3\x43\xdc\xc0\x4c\xdc\xa3\xfe\x36\x62\xe6\x43\x08\xcf\x4a\x2e\x89\xb2\xad\xbc\xac\xab\x0e\xc1\xce\x2b\xde\xd2\x24\xc8\x36\x50\x6a\x98\x56\x95\x72\x9a\xdd\xb5\x88\xdb\xad\x70\x69\x69\xd2\x0f\xef\xa9\xc7\x0b\xae\x42\xcf\x89\x30\xff\x55\x89\xfa\x97\x21\x26\x7f\x14\x5d\x48\xc2\x1a\x36\x07\x93\xb1\x1c\xc1\x63\xcb\x14\x7c\x5d\xd7\x4a\xc6\xfb\xe2\x9b\x4a\x17\xd2\x70\xd3\xa9\xa4\xb6\x36\x42\x28\xf2\x71\x64\x61\x46\x0e\x6d\x18\x62\x8f\x8c\x0d\x84\xae\x83\x3b\x03\xce\xd5\xfa\x06\x20\x78\x8e\xb8\x3c\xf6\xb5\x96\x59\x8f\xfd\xf1\x96\x9d\xc7\xc3\x40\x0c\xfa\xe7\xd9\x2a\x69\xb6\x09\x65\x99\xe7\x3f\x5b\x44\xad\xdc\xfe\x46\xd1\x85\xcc\x95\xb1\x36\x61\xce\xa0\x95\x74\x7b\xbd\x9d\x63\xa1\x5c\x86\x41\x3f\x81\x96\xe8\xa7\xeb\xb6\x97\x22\xf9\x2e\x80\x96\xc5\x94\xf2\xed\x45\xcf\x6e\x6e\x13\x45\x16\x39\xb5\x0d\x48\x69\x4e\xe6\xad\x3e\x86\x70\xec\xd1\x44\xca\x75\x1b\x86\x73\x4e\xf6\x74\xc8\xf2\xf4\x32\x62\x9a\xe5\xbe\xde\xd5\xbb\x35\xa8\x07\xf2\xf5\xe9\x3c\xe4\xa2\x74\x47\x76\xf1\xff\x41\x29\xb9\x7c\x6f\x4a\x2e\x7f\xe2\x9f\x00\x00\x00\xff\xff\x0a\x64\x7d\x02\x9a\x03\x00\x00") + +func examplesGuestbookGoPublicIndexHtmlBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookGoPublicIndexHtml, + "examples/guestbook-go/public/index.html", + ) +} + +func examplesGuestbookGoPublicIndexHtml() (*asset, error) { + bytes, err := examplesGuestbookGoPublicIndexHtmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook-go/public/index.html", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookGoPublicScriptJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\x6d\x6b\xdb\x30\x10\xc7\xdf\xf7\x53\x1c\x6a\x5f\xc8\xab\xa3\x24\x5d\x0b\x1b\x6d\x0a\xa3\x2b\x83\xb1\x27\xd6\x6e\x6f\xca\x5e\x28\xd6\x39\x36\x51\x24\x23\xc9\x69\xcd\xc8\x77\x1f\x92\xfc\x90\x87\x06\x96\x40\x1c\xa3\xdf\xfd\x75\xf7\xd7\x9d\xce\xa8\xd0\x59\xbd\x42\xe5\x12\x66\x90\x8b\x86\xe6\xb5\xca\x5c\xa9\x15\x4d\xe0\xef\x09\xc0\x9a\x1b\x28\x90\x0b\x34\x8f\xa5\x93\x78\x2f\xd1\xc3\x30\x83\x33\x4a\x4e\xe3\x02\x14\x53\x92\x5c\xb7\x2c\x2a\x67\x4a\xb4\xbb\xdc\xa2\x46\xeb\xe6\x5a\x2f\x47\xed\xf2\xc0\xe7\xda\xac\x8e\xc1\x7e\x6d\x20\x6d\x3d\x5f\x95\xee\x18\x1b\x57\x77\xf3\x68\xee\xb4\x72\xa8\x8e\xc6\x04\x66\x94\x45\x68\x08\x2d\xb4\x75\x1f\x84\x30\x68\x8f\x96\xe1\x91\x11\x8f\x8c\x0f\x6c\x23\x79\x55\xa1\x12\x9f\x3a\xec\x3e\x16\x0b\x33\xe8\x4d\x15\xdc\xf1\x68\x2c\xec\x59\xc5\x70\x55\xb9\x86\x86\x2c\x00\xce\x18\xf2\xac\x08\x78\x3a\x44\x2f\xb1\x49\x61\xcd\x65\xa7\x70\xa0\x11\x13\xa0\xe4\xa6\xba\x25\x70\xee\x51\x38\x07\x72\x33\xae\x6e\x49\x2b\xbc\x09\xcf\x4d\x97\x71\xc1\x95\x90\xf8\xe0\xcd\xb3\xb6\xd4\x6a\x3b\x57\xec\x13\x65\x95\xc1\x35\x2a\xf7\x11\x73\x5e\x4b\xd7\x25\xd9\xfb\xfc\x9b\xcb\x1a\x61\xf6\x9a\xe9\x6c\xcd\x25\x4d\x02\x5e\xe6\x40\x07\x9c\x49\x54\x0b\x57\xc0\x2d\x4c\xfe\xa7\x1c\xc6\xd8\x76\x19\xde\xa1\x05\xba\xcf\x0f\xdf\xbf\x51\x62\xaa\xda\x16\xe3\xfe\x74\xc6\xbe\xf4\x61\xa3\xf4\xc8\xb1\x74\x86\x84\x5f\x83\xae\x36\x0a\x72\x2e\x2d\xf6\x06\x8d\xc7\x90\x69\xa9\x8d\x3f\xc1\xaa\x36\x95\xc4\x14\xe6\x41\xd1\xa0\x48\x61\x61\x10\x55\x0a\x0d\x4a\xa9\x9f\x5b\x3f\x7b\xfe\x89\x9c\x5e\x5d\xbe\x27\x29\x90\xd3\xe9\x3b\x11\x9e\xe2\xed\x34\x3c\x2f\xf8\x65\x7c\x9f\x4f\xc9\x9f\xae\xe9\x0c\x57\x42\xaf\xee\x7c\x38\xcc\x5a\x99\xa7\xaf\xdc\x15\x2c\x97\x5a\x1b\x7a\x05\x6f\x20\xbc\x46\x90\x26\x49\x08\xed\xc7\x15\x2c\x76\x96\xdb\xa0\x42\x83\x46\x67\xed\xe1\x08\xb3\xcc\x5a\x4a\x02\x44\xd2\xb8\x61\xeb\xc8\x6b\xa7\x18\xe0\xb9\x7e\x19\xd9\x82\x0b\xfd\xec\xf3\x2f\x95\x45\x07\x93\xf0\xbd\xa8\x5e\xc0\xbb\xbe\x2d\xb3\x33\xaf\xad\x00\xcf\x96\x0b\xa3\x6b\x25\x46\x87\x1b\x6f\x12\xba\x65\x42\x1c\xaa\x3d\x0d\x59\x66\x4b\xba\xdf\xb2\x21\x78\xeb\x1a\x61\x31\xe8\x75\xee\x70\xb6\xbb\x26\xeb\xee\x41\xf6\xeb\xe7\x97\xb8\xf9\x78\x0c\x3f\xb4\x94\x80\x6b\x34\x0d\x58\xcc\xb4\x12\x6c\xc7\xf3\x1c\x5d\x56\xf4\x7d\x45\x3b\xb3\xb7\x5a\x53\x1a\xae\x16\x38\xf4\x26\x49\x98\xd0\x0a\xe9\x91\x96\x64\x5c\x3e\xf3\xc6\xd2\xb6\xc7\xf7\xee\xe2\xf8\xb1\xe8\x1e\xcb\x15\xea\xda\xd1\xdd\xfd\x53\x98\x4e\x26\x93\x7e\x40\x36\x9d\xab\xc9\xf5\x89\xff\xff\x2f\x00\x00\xff\xff\xd8\x8d\x7c\x21\xeb\x05\x00\x00") + +func examplesGuestbookGoPublicScriptJsBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookGoPublicScriptJs, + "examples/guestbook-go/public/script.js", + ) +} + +func examplesGuestbookGoPublicScriptJs() (*asset, error) { + bytes, err := examplesGuestbookGoPublicScriptJsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook-go/public/script.js", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookGoPublicStyleCss = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x5f\x8e\x9b\x30\x10\xc6\xdf\x39\xc5\x68\xab\xbe\xc1\x0a\x48\xd3\x55\xbc\x6f\x51\x95\x1e\xa0\x27\x98\xe0\x01\x46\x35\xb6\x65\x9b\x84\xb4\xea\xdd\x2b\xdb\x21\xd9\x6c\x55\x69\xc5\x13\xf3\xf7\xfb\x7e\xe3\xa3\x91\x97\x12\x58\xdb\x39\xc0\xef\x02\xa0\x33\xca\x38\x01\x9f\x9a\x76\xf3\x5a\x00\xf4\x46\x87\xaa\xc7\x89\xd5\x45\xc0\xd3\x77\x56\x0a\x7e\xa0\xf6\x4f\x25\x78\xd4\xbe\xf2\xe4\xb8\x7f\x2d\xfe\x14\x85\xe4\x53\xea\x37\x27\x72\xbd\x32\x67\x01\x23\x4b\x49\x3a\x0e\xb1\x28\x25\xeb\x41\x40\x43\x13\xd4\x29\x62\x3c\x07\x36\x5a\x80\x23\x85\x81\x4f\x14\xa3\x81\x96\x50\xa1\xe2\x41\x0b\xe8\x48\x07\x72\x69\xf4\xd8\x94\x30\xb6\x25\xd8\xab\xce\x12\x30\xad\x4a\xda\xce\xc4\xc3\x18\x04\x6c\xea\x34\x78\x42\x37\xb0\x16\x71\x4b\xea\x7c\xf0\xb4\xff\xb6\x7f\xf9\xba\xbf\xd9\xf2\xfc\x8b\x04\x6c\x9e\xb7\x34\xe5\xea\xf6\xa1\x7a\xb7\xdb\xa5\x70\x6f\xdc\x94\x12\xb7\xd9\x80\x73\x30\x79\xdb\x52\x9d\x59\x86\x51\xc0\xb6\x8e\x53\xfe\xeb\xe1\x0e\xf8\x68\x9c\x24\x27\x32\x87\xfc\x53\x39\x94\x3c\x7b\x01\x4d\x5d\xd7\x76\xc9\x89\xa5\xf2\x23\xca\x08\x92\xb5\xa7\x00\x75\xfa\x5a\xbb\xbc\xf5\x21\xd9\x5b\x85\x97\x58\xa3\x58\xd3\x3b\x6b\x4d\xb6\xb6\x2a\xaf\x8e\x26\x04\x33\xa5\x33\xc4\xa8\x99\x43\x6c\x12\xa0\x4d\x6e\xbd\xdd\x29\xf6\xc1\xf6\x73\x8c\xad\xf6\xe2\xdf\x0a\x23\xe3\x3f\x62\xf7\x73\x70\x66\xd6\xf2\x01\xed\xc7\xfc\xad\x90\x0f\x87\xc3\x3f\xa2\xdb\xab\xea\x87\xfb\x7e\xc9\xf7\xbd\x4b\x7c\x89\x1a\xdb\x37\xd0\x25\x75\xc6\x61\x7e\x55\xab\xa3\x94\x08\x0e\xb5\x8f\xc2\x05\xcc\xd6\x92\xeb\xd0\xa7\xe4\x79\xe4\x40\x95\xb7\xd8\x25\x06\x6e\x42\x95\x3c\xda\xfb\xeb\x7a\xc7\x31\xe2\xaa\xc6\xab\xa2\xe6\x79\x1b\xcb\xff\x06\x00\x00\xff\xff\x19\x14\xb7\x04\x41\x03\x00\x00") + +func examplesGuestbookGoPublicStyleCssBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookGoPublicStyleCss, + "examples/guestbook-go/public/style.css", + ) +} + +func examplesGuestbookGoPublicStyleCss() (*asset, error) { + bytes, err := examplesGuestbookGoPublicStyleCssBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook-go/public/style.css", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookGoRedisMasterControllerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x92\xbd\x4e\xc4\x30\x10\x84\xfb\x3c\x45\xb4\x35\x9c\x74\x77\x12\x3f\x6e\x79\x01\x44\x41\x83\x28\x96\x64\x85\x2c\x1c\xdb\xda\x5d\x5d\x83\xfc\xee\xc8\x97\x5c\xc8\x8f\x73\x14\x54\x91\x66\x3f\xcd\xcc\x6e\xfc\x5d\xd5\x75\x0d\x5f\xd6\xb7\x60\xe0\x85\xa2\xb3\x0d\xaa\x0d\xfe\x29\x78\xe5\xe0\x1c\x31\xdc\x9c\x11\x8c\xf6\x95\x58\x6c\xf0\x60\xe0\xb4\x1f\xd4\x8e\x14\x5b\x54\x04\x73\x36\xca\x92\xc7\x8e\xc0\x00\x53\x6b\xe5\xb6\x43\xd1\x8b\x45\x1e\x3a\xfc\x20\x27\xbf\x74\xef\x1c\x2f\xfc\x08\x66\x9d\x83\xcb\x46\x83\xc5\x30\x48\xf9\x9b\xfa\x70\x89\xd4\x4c\x82\xb9\x6f\x2f\x60\xf6\x63\x9e\x90\xa3\x46\x03\xff\x27\x71\x34\x53\xea\xa2\x43\xa5\xb9\xd9\xfa\x04\xdb\xbb\x5e\xcf\xbf\xd6\x62\xb2\xfd\xa2\xd6\xfa\x12\x83\xd8\x04\xaf\x68\x3d\xb1\x80\x79\x5b\xa6\xac\x4a\xfd\xf5\xeb\x66\xa0\xed\xf0\x73\x24\xcd\x61\xf7\xb0\x3b\x1c\xcb\x64\x0c\xac\xa5\xfc\xed\x16\xa5\x2e\x42\x7c\xda\xe8\xb2\x5c\xf6\x39\xb0\x82\xb9\x3b\xde\x3f\x96\xe1\x54\x90\xdf\x97\xda\x1c\x9a\x8c\xd3\xec\x19\x56\xa9\xfa\x09\x00\x00\xff\xff\x25\x68\x8c\xc1\x40\x03\x00\x00") + +func examplesGuestbookGoRedisMasterControllerJsonBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookGoRedisMasterControllerJson, + "examples/guestbook-go/redis-master-controller.json", + ) +} + +func examplesGuestbookGoRedisMasterControllerJson() (*asset, error) { + bytes, err := examplesGuestbookGoRedisMasterControllerJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook-go/redis-master-controller.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookGoRedisMasterServiceJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x8f\xb1\xaa\xc3\x30\x0c\x45\xf7\x7c\x85\xd0\x9c\x37\x3c\x1e\xbc\x52\x7f\x45\xa1\xd0\xa5\x74\x50\x13\x51\x4c\x9d\xd8\x48\x22\x4b\xc9\xbf\x17\xc7\x6e\x92\xbd\x53\xe0\xdc\x9b\x7b\xac\x57\x03\x00\xf8\xf4\x63\x8f\x0e\xcf\x2c\x93\xef\x18\xdb\x05\x52\xf2\x17\x16\xf5\x71\x44\x87\xd3\x6f\xa5\x03\x1b\xf5\x64\x84\x6e\xf9\x35\xa3\x91\x06\x46\x87\xc2\xbd\xd7\x9f\x81\xd4\x58\x4a\x39\x87\x81\xee\x1c\x74\x6b\x97\xe5\xf4\xe9\xaf\xc5\xcc\x25\x86\x3c\x54\x27\x6a\x30\xe7\xef\x5c\xe4\x9a\xb8\xdb\x89\x53\x14\x53\x74\x70\x5d\x37\x76\x96\x12\xa3\xfb\xff\x3b\x1c\xdb\x3d\x36\x92\x07\xdb\x69\x09\xeb\xa3\x95\x65\xda\x8c\xd5\x09\x00\xb7\xf5\x0c\xe5\xc0\x9d\x45\xf9\xfa\x90\x66\x6e\xde\x01\x00\x00\xff\xff\xb3\x89\x96\xff\x74\x01\x00\x00") + +func examplesGuestbookGoRedisMasterServiceJsonBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookGoRedisMasterServiceJson, + "examples/guestbook-go/redis-master-service.json", + ) +} + +func examplesGuestbookGoRedisMasterServiceJson() (*asset, error) { + bytes, err := examplesGuestbookGoRedisMasterServiceJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook-go/redis-master-service.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookGoRedisSlaveControllerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x92\xbd\x4e\xc4\x30\x10\x84\xfb\x3c\x45\xb4\x35\x08\x71\x48\x20\xdc\xf2\x02\x88\x82\x06\x51\xec\x25\x2b\x64\x9d\x63\x5b\xbb\x4b\x1a\x94\x77\x47\x3e\xe7\x42\x7e\x7c\x47\x71\x55\xa4\xf1\xe7\x99\xd9\x78\x7f\xaa\xba\xae\xe1\x60\x7d\x0b\x06\xde\x28\x3a\xdb\xa0\xda\xe0\x5f\x82\x57\x0e\xce\x11\xc3\xcd\x11\xc1\x68\xdf\x89\xc5\x06\x0f\x06\xfa\xfb\x51\xed\x48\xb1\x45\x45\x30\x47\xa3\x24\x79\xec\x08\x0c\x30\xb5\x56\x6e\xc5\x61\x4f\x99\x4d\x67\x0e\xf7\xe4\xe4\x0f\xce\xc6\xf1\x84\x4f\x60\xd2\x39\xb8\xe4\x93\x1d\x46\x7d\x48\xdf\x21\x47\x4b\xa4\x66\x16\xcb\xb9\xbb\x80\xd9\x4d\x71\x42\x8e\x1a\x0d\x7c\x45\xe0\xe4\xa5\xd4\x45\x87\x4a\x4b\xaf\xed\xfc\xe7\x27\xbd\x1c\x7f\xa1\xc4\x6c\xf6\x55\xab\xed\x7f\x18\xc5\x26\x78\x45\xeb\x89\x05\xcc\xc7\x3a\x64\xd3\xe9\x9f\x67\x5b\x70\xb6\xc3\xaf\x04\x1e\xbe\xf7\xc4\x9e\x94\xe4\x6e\x76\xc7\xf4\xbb\xf2\xb5\x18\x58\x4b\x5d\xce\x37\x2a\xf6\x22\xee\x4f\x1b\x59\xc6\xa7\xc1\x5f\x03\x2b\x98\xc7\x87\xa7\xe7\x32\x3c\x14\xe4\xcf\xb5\xb6\x84\x66\xc7\xc3\x62\x21\xab\xa1\xfa\x0d\x00\x00\xff\xff\x50\xa6\x9e\x71\x48\x03\x00\x00") + +func examplesGuestbookGoRedisSlaveControllerJsonBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookGoRedisSlaveControllerJson, + "examples/guestbook-go/redis-slave-controller.json", + ) +} + +func examplesGuestbookGoRedisSlaveControllerJson() (*asset, error) { + bytes, err := examplesGuestbookGoRedisSlaveControllerJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook-go/redis-slave-controller.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesGuestbookGoRedisSlaveServiceJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x8f\xc1\x0a\x02\x21\x10\x86\xef\xfb\x14\x32\xe7\xed\x10\x41\x91\x4f\x11\x04\x5d\xa2\xc3\xb4\x3b\x84\xe4\xae\x32\x23\x5e\xc2\x77\x0f\x57\xd7\xf6\xde\x49\xf9\xe6\xf7\xfb\x9d\x4f\xa7\x94\x82\xb7\x99\x47\xd0\x70\x25\x8e\x66\x20\xe8\x17\x88\xde\xdc\x88\xc5\xb8\x19\x34\xc4\x7d\xa5\x13\x05\x1c\x31\x20\xe8\xe5\x69\x46\x33\x4e\x04\x1a\x98\x46\x23\x3b\xb1\x18\xab\x21\xcf\x2c\x3e\xc9\xca\x2f\x5c\xc4\x7e\x8d\xb7\x60\xe6\xec\x6c\xf6\x14\x43\xe5\x29\x9f\xa9\x54\x8b\xa7\x61\x53\xeb\x1d\x07\x01\xad\xee\x4d\xb1\x29\x29\x63\xd0\xc7\xc3\xe9\xdc\x6f\x71\x40\x7e\x51\xb8\x2c\xc3\xf5\xcb\xc4\x91\x18\x5a\x2a\xd5\xdb\xa3\x6d\x21\x64\x69\x08\x8e\xff\xdd\xa3\x4b\xdd\x37\x00\x00\xff\xff\xdd\x72\x51\xaf\x71\x01\x00\x00") + +func examplesGuestbookGoRedisSlaveServiceJsonBytes() ([]byte, error) { + return bindataRead( + _examplesGuestbookGoRedisSlaveServiceJson, + "examples/guestbook-go/redis-slave-service.json", + ) +} + +func examplesGuestbookGoRedisSlaveServiceJson() (*asset, error) { + bytes, err := examplesGuestbookGoRedisSlaveServiceJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/guestbook-go/redis-slave-service.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesHttpsNginxBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x92\xcd\x6a\xc3\x30\x10\x84\xef\x7e\x0a\xa1\x53\x1c\x9a\x88\xde\x8a\x21\xd0\xf7\x08\xc6\xac\xec\x8d\xb2\x78\x2d\x09\x49\x36\x4d\x9e\xbe\xf8\x27\x6d\xdd\xa6\xe9\xa1\x47\xed\xcc\x0e\x9f\x86\xf5\x50\xb7\x60\x70\xd3\xe0\x09\x7a\x4e\xd5\x40\x91\x34\x31\xa5\x8b\x38\x88\xa3\x54\xea\x73\x50\xf8\x5e\x33\xd5\xb2\xcc\xb3\x8c\x1d\x34\x9b\x4c\x08\x21\xe4\x2b\xb9\x4a\xc3\x15\xb9\x0a\x3d\x63\xac\x8c\x53\xca\xb8\xa2\xc1\xd3\x5e\x5f\x59\x3e\xcd\x2e\xe3\x2a\x4d\x16\xc2\xe5\xcb\x80\x49\x87\x79\x92\x67\xd9\x87\x61\x8e\xb5\xd0\xa1\x38\x08\x79\x4e\xc9\xc7\x9d\x35\x64\xdf\x96\xcd\x65\x6b\x14\x0b\xe3\xaa\x1b\xf8\xf7\xb0\xe5\xbd\x4e\xbb\xeb\x1f\x0d\x31\xd4\x71\xfa\x70\x07\x2d\x56\x11\xeb\x80\x69\x6f\x9c\x2c\x67\xb9\x41\x3f\xc9\xd3\x63\xc2\x57\xca\xb7\x46\x81\xa7\xfb\x0c\x3f\x7d\x8a\x6c\x4c\xc0\xfc\xa7\x7f\x40\xdb\xb8\xa0\xda\x97\xb8\x27\x37\x6e\x76\x50\x9f\xc9\x62\xb8\xdc\xa2\xa2\xea\x30\x81\x1a\x9e\xff\x9b\x15\x7a\x9b\xa8\xc3\xdf\x63\xca\xa9\xcd\x13\x31\x9a\xe0\x7a\xbf\x2e\x73\x39\x9d\xdd\xd8\xdd\xba\x46\xc3\x4e\x6f\x8e\x72\xbb\x95\x65\x3e\x0b\x09\xcc\xdc\x2f\xf4\xc9\x75\x60\xc1\x60\x73\x2b\xf7\xe1\xc9\x05\x1a\x20\xa1\x7c\x08\x02\xcc\x77\x20\x8e\xb2\x58\x11\x96\x8f\x49\xf2\xec\x3d\x00\x00\xff\xff\x75\xaa\x6c\x61\x0b\x03\x00\x00") + +func examplesHttpsNginxBuildBytes() ([]byte, error) { + return bindataRead( + _examplesHttpsNginxBuild, + "examples/https-nginx/BUILD", + ) +} + +func examplesHttpsNginxBuild() (*asset, error) { + bytes, err := examplesHttpsNginxBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/https-nginx/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesHttpsNginxDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xc1\x6e\xd3\x40\x10\x86\xef\xfb\x14\xbf\x62\xa9\x02\x91\xd8\x25\x07\x0e\x70\x0a\x69\x2b\xac\x96\x04\xc5\x29\x55\x8f\x1b\x7b\xe2\x1d\x69\xbd\x6b\x76\xc7\x38\x7e\x7b\x64\xb7\x41\xad\x40\x08\x1f\x67\xbe\x99\xf9\xfc\x6f\x82\xb5\x6f\x87\xc0\xb5\x11\x2c\x2f\xdf\x7f\xc0\xde\x10\x6e\xbb\x03\x05\x47\x42\x11\xab\x4e\x8c\x0f\x31\x55\x89\x4a\x70\xc7\x25\xb9\x48\x15\x3a\x57\x51\x80\x18\xc2\xaa\xd5\xa5\xa1\x73\x67\x8e\xef\x14\x22\x7b\x87\x65\x7a\x89\x37\x23\x30\x7b\x6e\xcd\xde\x7e\x52\x09\x06\xdf\xa1\xd1\x03\x9c\x17\x74\x91\x20\x86\x23\x8e\x6c\x09\x74\x2a\xa9\x15\xb0\x43\xe9\x9b\xd6\xb2\x76\x25\xa1\x67\x31\xd3\x99\xe7\x25\xa9\x4a\xf0\xf8\xbc\xc2\x1f\x44\xb3\x83\x46\xe9\xdb\x01\xfe\xf8\x92\x83\x96\x49\x78\xfc\x8c\x48\xfb\x31\xcb\xfa\xbe\x4f\xf5\x24\x9b\xfa\x50\x67\xf6\x09\x8c\xd9\x5d\xbe\xbe\xde\x14\xd7\x8b\x65\x7a\x39\x8d\xdc\x3b\x4b\x31\x22\xd0\x8f\x8e\x03\x55\x38\x0c\xd0\x6d\x6b\xb9\xd4\x07\x4b\xb0\xba\x87\x0f\xd0\x75\x20\xaa\x20\x7e\xf4\xed\x03\x0b\xbb\x7a\x8e\xe8\x8f\xd2\xeb\x40\x2a\x41\xc5\x51\x02\x1f\x3a\x79\x15\xd6\xd9\x8e\xe3\x2b\xc0\x3b\x68\x87\xd9\xaa\x40\x5e\xcc\xf0\x79\x55\xe4\xc5\x5c\x25\x78\xc8\xf7\x5f\xb6\xf7\x7b\x3c\xac\x76\xbb\xd5\x66\x9f\x5f\x17\xd8\xee\xb0\xde\x6e\xae\xf2\x7d\xbe\xdd\x14\xd8\xde\x60\xb5\x79\xc4\x6d\xbe\xb9\x9a\x83\x58\x0c\x05\xd0\xa9\x0d\xa3\xbf\x0f\xe0\x31\x46\xaa\xc6\xcc\x0a\xa2\x57\x02\x47\xff\x24\x14\x5b\x2a\xf9\xc8\x25\xac\x76\x75\xa7\x6b\x42\xed\x7f\x52\x70\xec\x6a\xb4\x14\x1a\x8e\xe3\x63\x46\x68\x57\xa9\x04\x96\x1b\x16\x2d\x53\xe5\x8f\x9f\x4a\x95\xba\xd9\x6d\xbf\xc2\xd5\xec\x4e\x4a\xa9\xf5\xf6\xdb\x23\xd8\x55\x74\x5a\xa6\x46\x1a\x8b\xac\x8b\x21\x8b\x46\x07\xca\x26\x26\x1b\xab\xd9\x0b\x42\xed\xee\x37\x28\x4d\xe3\x2b\xbc\x0b\xff\x81\x4f\x17\x74\x27\x7e\x11\xc8\x7a\x5d\x2d\x26\x2e\x8d\x06\x99\xf1\x0d\x65\x7f\x6b\xbd\xbc\x71\xfa\x17\xa7\x12\xb0\x8b\xa2\xad\x05\x3b\x2f\x7c\x1c\xa6\x51\xdd\xca\xa2\x26\x41\xd7\x56\x5a\x08\x17\x17\xbf\x2b\x67\x7a\x31\x9c\x07\x16\xe2\xbd\x8d\xea\x57\x00\x00\x00\xff\xff\x93\xd3\x16\x94\x62\x03\x00\x00") + +func examplesHttpsNginxDockerfileBytes() ([]byte, error) { + return bindataRead( + _examplesHttpsNginxDockerfile, + "examples/https-nginx/Dockerfile", + ) +} + +func examplesHttpsNginxDockerfile() (*asset, error) { + bytes, err := examplesHttpsNginxDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/https-nginx/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesHttpsNginxMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x53\x5f\x6f\xdb\x36\x10\x7f\x36\x3f\xc5\x0f\x56\x1e\x62\x20\x92\xdd\x6c\x2d\x36\x0d\x19\xa0\xb9\x6a\x27\xa4\xb0\x07\xcb\x5d\x97\xa7\x81\xa6\xce\x12\x6b\x8a\xe4\x48\x2a\x8e\xbe\xfd\x20\xc9\x35\x1a\x54\x4f\x87\xe3\xdd\xfd\xfe\xdc\x29\xc2\xda\xd8\xde\xc9\xba\x09\xb8\x5f\xbd\x79\x87\x7d\x43\x78\xec\x0e\xe4\x34\x05\xf2\xc8\xba\xd0\x18\xe7\x13\x16\xb1\x08\x9f\xa4\x20\xed\xa9\x42\xa7\x2b\x72\x08\x0d\x21\xb3\x5c\x34\xf4\xed\xe5\x0e\x7f\x93\xf3\xd2\x68\xdc\x27\x2b\xdc\x0e\x05\xf3\xcb\xd3\x7c\xf1\x1b\x8b\xd0\x9b\x0e\x2d\xef\xa1\x4d\x40\xe7\x09\xa1\x91\x1e\x47\xa9\x08\xf4\x22\xc8\x06\x48\x0d\x61\x5a\xab\x24\xd7\x82\x70\x96\xa1\x19\x61\x2e\x43\x12\x16\xe1\xe9\x32\xc2\x1c\x02\x97\x1a\x1c\xc2\xd8\x1e\xe6\xf8\x7d\x1d\x78\x18\x09\x0f\x5f\x13\x82\x4d\x97\xcb\xf3\xf9\x9c\xf0\x91\x6c\x62\x5c\xbd\x54\x53\xa1\x5f\x7e\x2a\xd6\xf9\xa6\xcc\xe3\xfb\x64\x35\xb6\x7c\xd6\x8a\xbc\x87\xa3\xff\x3a\xe9\xa8\xc2\xa1\x07\xb7\x56\x49\xc1\x0f\x8a\xa0\xf8\x19\xc6\x81\xd7\x8e\xa8\x42\x30\x03\xdf\xb3\x93\x41\xea\xfa\x0e\xde\x1c\xc3\x99\x3b\x62\x11\x2a\xe9\x83\x93\x87\x2e\xbc\x32\xeb\x1b\x3b\xe9\x5f\x15\x18\x0d\xae\x31\xcf\x4a\x14\xe5\x1c\x7f\x64\x65\x51\xde\xb1\x08\x5f\x8a\xfd\x9f\xdb\xcf\x7b\x7c\xc9\x76\xbb\x6c\xb3\x2f\xf2\x12\xdb\x1d\xd6\xdb\xcd\xfb\x62\x5f\x6c\x37\x25\xb6\x1f\x90\x6d\x9e\xf0\x58\x6c\xde\xdf\x81\x64\x68\xc8\x81\x5e\xac\x1b\xf8\x1b\x07\x39\xd8\x48\xd5\xe0\x59\x49\xf4\x8a\xc0\xd1\x4c\x84\xbc\x25\x21\x8f\x52\x40\x71\x5d\x77\xbc\x26\xd4\xe6\x99\x9c\x96\xba\x86\x25\xd7\x4a\x3f\x2c\xd3\x83\xeb\x8a\x45\x50\xb2\x95\x81\x87\x31\xf3\x83\xa8\x84\x31\xae\x54\xca\xd8\x3e\xfb\x88\x07\xbc\x49\x56\xec\xaf\x5d\xfe\xa1\xf8\x07\x0f\x38\x58\xc7\x7d\xc3\x75\x68\x96\xba\x96\xfa\x65\x58\x89\x67\x8f\xf9\x13\x1e\xb0\x0c\xad\x9d\xb2\xc9\x89\x7a\xb6\xce\x77\xfb\xd7\x59\xe1\x02\x2b\xf3\xf5\x2e\xbf\xe6\x3d\x09\x47\x21\xf9\xea\x8d\x66\xec\x44\xbd\x4f\xd9\x2c\x1a\x0f\x77\xbd\xe1\x2d\x0d\x87\x55\xa1\x21\x37\x1a\x7d\x95\x18\xcc\x24\x99\xdc\xb3\x14\x57\xe9\x54\x0d\x2b\x1c\x91\x62\x6e\x6d\xd2\xf3\x56\x25\x6c\x66\x2c\x69\xef\xd5\x70\x06\x88\x5f\xde\xae\x7e\x45\xac\x4d\x45\x1e\x71\xc5\x7b\x8f\x9f\xde\xbd\x45\xac\xe9\x7c\xa2\x1e\xce\xf3\xf4\x7e\xf5\xf3\x2f\x88\x4f\xd4\x9b\x2e\xe0\xe6\xf6\x31\x7f\x5a\x20\x9e\xe2\x41\xd0\x02\xb1\xef\x0e\x5f\x31\x5f\xae\x37\x0f\x23\x96\x7f\x16\xcb\xed\x35\x9c\x33\x36\x69\x4a\xd9\xac\x36\x70\x9d\x46\xcb\x4f\xf4\xef\x45\x68\x6d\x10\x0b\xf7\xdd\xb0\x01\xf6\x82\xf2\x3b\x6e\x6e\x27\x77\x16\x8c\x09\xa3\x87\x7f\x82\x5c\xca\x66\x95\x11\x27\x72\x38\x74\x52\x55\x88\x63\xdb\x29\x85\x78\x98\x31\x6d\x65\x91\xde\xdc\xee\xb3\x8f\x0b\x24\x8c\xd9\xce\x37\x29\xae\xcd\xd7\xde\x21\xff\x43\x03\x63\x42\x11\xd7\x29\x9b\xb9\xf6\x42\xe2\x12\x8e\xe4\xd8\xff\x01\x00\x00\xff\xff\xe9\x1c\xd8\xb4\x51\x04\x00\x00") + +func examplesHttpsNginxMakefileBytes() ([]byte, error) { + return bindataRead( + _examplesHttpsNginxMakefile, + "examples/https-nginx/Makefile", + ) +} + +func examplesHttpsNginxMakefile() (*asset, error) { + bytes, err := examplesHttpsNginxMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/https-nginx/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesHttpsNginxAutoReloadNginxSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\x51\x6f\xdb\x36\x14\x85\x9f\xc5\x5f\x71\x2a\xd9\xc8\x06\xd8\x52\x96\x87\x3d\x34\x28\x30\x2f\xcd\x50\xa3\x9d\x0d\xc4\xee\x8a\x62\x1b\x50\x5a\xbc\x92\x2e\x26\x91\x1a\x79\x55\x45\xe8\xfa\xdf\x07\x2a\x71\xb1\x20\x4f\xd3\x8b\x20\xdd\xcb\x73\x3e\x1e\x5e\x66\x2f\x8a\x13\xdb\x22\x34\x4a\x65\xb8\x71\xfd\xe4\xb9\x6e\x04\x57\x97\x3f\xfc\x88\x63\x43\x78\x3b\x9c\xc8\x5b\x12\x0a\xd8\x0c\xd2\x38\x1f\x72\x95\xa9\x0c\xef\xb8\x24\x1b\xc8\x60\xb0\x86\x3c\xa4\x21\x6c\x7a\x5d\x36\x74\xae\xac\xf0\x1b\xf9\xc0\xce\xe2\x2a\xbf\xc4\x77\xb1\x21\x7d\x2c\xa5\xdf\x5f\xab\x0c\x93\x1b\xd0\xe9\x09\xd6\x09\x86\x40\x90\x86\x03\x2a\x6e\x09\x74\x5f\x52\x2f\x60\x8b\xd2\x75\x7d\xcb\xda\x96\x84\x91\xa5\x99\x6d\x1e\x45\x72\x95\xe1\xe3\xa3\x84\x3b\x89\x66\x0b\x8d\xd2\xf5\x13\x5c\xf5\xdf\x3e\x68\x99\x81\xe3\xd3\x88\xf4\x2f\x8b\x62\x1c\xc7\x5c\xcf\xb0\xb9\xf3\x75\xd1\x3e\x34\x86\xe2\xdd\xf6\xe6\x76\x77\xb8\x5d\x5f\xe5\x97\xf3\x92\xf7\xb6\xa5\x10\xe0\xe9\xef\x81\x3d\x19\x9c\x26\xe8\xbe\x6f\xb9\xd4\xa7\x96\xd0\xea\x11\xce\x43\xd7\x9e\xc8\x40\x5c\xe4\x1d\x3d\x0b\xdb\x7a\x85\xe0\x2a\x19\xb5\x27\x95\xc1\x70\x10\xcf\xa7\x41\x9e\x84\x75\xa6\xe3\xf0\xa4\xc1\x59\x68\x8b\x74\x73\xc0\xf6\x90\xe2\xe7\xcd\x61\x7b\x58\xa9\x0c\x1f\xb6\xc7\x37\xfb\xf7\x47\x7c\xd8\xdc\xdd\x6d\x76\xc7\xed\xed\x01\xfb\x3b\xdc\xec\x77\xaf\xb7\xc7\xed\x7e\x77\xc0\xfe\x17\x6c\x76\x1f\xf1\x76\xbb\x7b\xbd\x02\xb1\x34\xe4\x41\xf7\xbd\x8f\xfc\xce\x83\x63\x8c\x64\x62\x66\x07\xa2\x27\x00\x95\x7b\x00\x0a\x3d\x95\x5c\x71\x89\x56\xdb\x7a\xd0\x35\xa1\x76\x9f\xc9\x5b\xb6\x35\x7a\xf2\x1d\x87\x78\x98\x01\xda\x1a\x95\xa1\xe5\x8e\x45\xcb\xfc\xe7\xd9\xa6\x72\xa5\x6c\xcd\xf6\x1e\xe9\xe2\xa7\x54\xb9\xd6\x94\x7f\x85\xa1\x7b\xf5\x69\x7e\xa1\x20\x29\x8b\xb9\x5e\x94\xce\x56\xb9\x29\x0c\x55\x7a\x68\x25\x8f\x9f\x9f\x94\x62\xeb\x84\xab\x69\xd4\x2c\x58\x13\x3a\x67\xb8\x9a\x56\x9d\xfb\x4c\xab\xd2\x93\x16\x5a\x19\x6a\x49\x08\xeb\xce\x63\xbd\x16\xee\xa8\xea\x04\x17\x4b\x53\x2c\xbb\x62\x39\x61\xf9\xe6\xe5\xf2\xd7\x0b\xac\xd7\x95\xf3\x9d\x8e\x95\xe3\x05\xfe\x50\xcf\x8d\xf1\x0f\xc6\x26\x4e\x9c\x27\x6d\x60\xb4\x10\xa2\xda\x35\x8c\x53\x2a\xb1\x34\xfe\x2f\xf0\x84\x2b\xfc\x8e\x74\x71\x5e\x97\xe2\xc5\x2b\xa4\x8b\xf3\xfe\x53\xfc\x79\x1d\x53\xb2\x2a\x49\xa8\x6c\x1c\xd2\x8d\x60\xf1\x25\x1a\x7e\x8d\xe7\xbe\xf8\x12\x01\xbe\xae\x10\xd5\xb8\x7e\xb8\x0a\x43\x3f\x53\x19\x12\x2a\x85\x4c\x9e\xaa\x24\xf9\x16\xe8\x37\x27\x95\x24\x0f\x81\xaf\xe3\xb4\xb6\x4e\x1b\x95\x54\xac\x94\x71\x96\xd4\xbf\x01\x00\x00\xff\xff\x9a\x2c\xd2\xcb\xe2\x03\x00\x00") + +func examplesHttpsNginxAutoReloadNginxShBytes() ([]byte, error) { + return bindataRead( + _examplesHttpsNginxAutoReloadNginxSh, + "examples/https-nginx/auto-reload-nginx.sh", + ) +} + +func examplesHttpsNginxAutoReloadNginxSh() (*asset, error) { + bytes, err := examplesHttpsNginxAutoReloadNginxShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/https-nginx/auto-reload-nginx.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesHttpsNginxDefaultConf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x79\x0a\x1d\x76\xae\x0b\x0b\x63\xa4\xf4\x49\xc6\x30\xc6\x55\x16\x51\xd5\x1a\x92\x52\x6a\x46\xdf\x7d\x30\x77\x4b\xe8\x36\x1d\x84\xe1\xff\x3f\x3e\x2c\x43\x3d\xa3\xc2\x47\x07\xb7\x61\x32\xc7\x02\xcf\x5b\x38\xe0\x98\x66\xf6\xd8\x2a\xbb\xfb\xc6\xcb\x30\xbc\x0e\xbf\x6a\x40\xef\xe7\x27\x29\x5c\xf7\x52\x76\xdd\x3d\xd3\xf7\x8f\x60\xc6\xab\x40\x45\x1c\xc2\x6c\x1a\x6c\x4a\x8a\xa1\xbc\x51\xb9\x84\xc9\x4f\xbc\x08\xa9\x1c\xf0\xd2\xf6\xa6\x25\x3f\x51\x93\xc6\x92\x4e\x08\x2c\x39\xf1\x24\xe6\x0b\x69\xc6\x31\xa3\x3a\x8d\x94\x93\x23\x04\xf4\x7c\x53\x98\x71\x7b\x6d\xb2\xfe\x4f\xc4\x23\xd6\xbf\xa9\x23\xd6\xf5\xff\x24\x27\x27\x29\x10\x56\xa7\xfc\x1e\xd7\x1a\x47\x62\x34\x78\x98\x95\xbe\x56\x80\x7d\xbf\xed\x17\xed\xb5\xbb\x76\x9f\x01\x00\x00\xff\xff\xdb\x11\x2b\x3a\x8b\x01\x00\x00") + +func examplesHttpsNginxDefaultConfBytes() ([]byte, error) { + return bindataRead( + _examplesHttpsNginxDefaultConf, + "examples/https-nginx/default.conf", + ) +} + +func examplesHttpsNginxDefaultConf() (*asset, error) { + bytes, err := examplesHttpsNginxDefaultConfBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/https-nginx/default.conf", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesHttpsNginxIndex2Html = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\x4b\x8b\xd4\x40\x10\xbe\xe7\x57\xd4\xce\x79\x76\xda\x45\xbc\xc4\xb6\x41\x56\x05\x11\xd4\xc3\x20\x78\xac\xa4\x2b\xe9\x62\xfb\x11\xba\x2b\xbb\x06\xf1\xbf\x4b\x1e\x9b\x99\x3d\x78\x33\x97\xfe\x52\xe4\x7b\x54\x55\x5a\xdf\x7c\xf8\x76\x7f\xfe\xf9\xfd\x23\x38\x09\xde\x54\xfa\xf9\x20\xb4\xa6\xd2\xc2\xe2\xc9\x7c\xed\x39\xfe\x82\x4c\x3e\xa1\x25\x7b\xa3\xd5\x5a\xae\x74\x91\x69\x3e\x01\x00\x9a\x64\x27\xf8\xbd\xc0\xf9\x79\x62\x2b\xae\x86\xd7\x6f\x28\xbc\xdd\x8b\x01\x73\xcf\xb1\x86\x57\x80\xa3\xa4\x4b\xbd\x4b\x51\x6e\x3b\x0c\xec\xa7\x1a\xce\xe8\x52\xc0\x23\xfc\xa0\x6c\x31\xe2\x11\xde\x67\x46\x7f\x84\x82\xb1\xdc\x16\xca\xdc\xad\xc4\x3f\x95\x56\x9b\xbf\x56\x5b\xdc\x39\xc4\x1c\xfe\x6e\x8b\xec\xb0\x40\x43\x14\xaf\xb3\xbb\x3b\x53\xe9\xc1\x7c\xee\x60\x4a\x23\x14\x22\x10\xc7\x05\x06\xec\xe9\x08\xe2\x08\xe2\x42\x7d\xa2\x06\x0a\xe5\x47\xca\x17\x95\x39\x75\x40\xe1\xd6\x4f\xbb\xe2\x11\x0a\xc7\x96\x16\x66\x9b\x62\xc7\x3d\x74\xec\xe9\x42\x1a\x07\x8b\x42\x16\xc6\xc2\xb1\x07\x8d\xe0\x32\x75\xef\x0e\x4e\x64\x28\xb5\x52\x3d\x8b\x1b\x9b\x53\x9b\x82\x7a\x18\x1b\xca\x91\x84\xca\x15\x3c\x98\x2f\x3b\xd6\x0a\xcd\x49\xab\xc1\x54\xd5\xdc\xc2\xa7\x94\x21\x45\xcf\x91\xc0\xa6\x76\x0c\x14\x05\x85\x53\x04\x8c\x16\xca\x38\x0c\x29\x0b\x0c\x9e\xb0\x10\x64\xea\x28\x83\xa4\xea\x45\x80\x5a\x5d\x39\x9d\x38\xa9\x83\x79\xf1\xbe\x1a\x36\x59\x99\xd5\xf5\x7f\x99\x2e\x23\x3e\xa5\xdc\xab\x83\xd9\xf1\xc5\xac\xba\x4f\x21\x50\x6e\x19\xfd\x2e\xc9\x05\xf0\x11\xd9\x63\xe3\x09\x50\xfe\x21\x39\x8f\xf1\x59\xb2\x4d\xe1\x6a\x60\x7a\x30\x9a\x82\x39\x3b\x8c\x0f\xcb\xe6\xbb\x94\xb7\x9d\xac\x9f\x6b\x45\x61\x6d\x53\xab\xed\x3f\x52\xeb\x65\xf8\x1b\x00\x00\xff\xff\x88\x29\x8d\x23\x24\x03\x00\x00") + +func examplesHttpsNginxIndex2HtmlBytes() ([]byte, error) { + return bindataRead( + _examplesHttpsNginxIndex2Html, + "examples/https-nginx/index2.html", + ) +} + +func examplesHttpsNginxIndex2Html() (*asset, error) { + bytes, err := examplesHttpsNginxIndex2HtmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/https-nginx/index2.html", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesHttpsNginxMake_secretGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x55\x61\x6f\xdb\x38\x12\xfd\x2c\xfe\x8a\x77\x02\x7a\x67\x05\x0e\xd5\x14\x38\xe0\xe0\x43\x16\xf0\x26\x29\xd6\x48\x6b\x17\x71\xba\x45\x51\x14\xc5\x58\x1a\xc9\xac\x25\x52\x4b\x52\x4e\x85\x6d\xfe\xfb\x82\x94\xd2\xa4\xdd\xed\x87\x44\x26\x39\xf3\x66\xf8\xde\xcc\x30\x3f\x11\x17\xa6\x1b\xac\xaa\xf7\x1e\x2f\x9e\x9f\xfd\x17\xb7\x7b\xc6\x75\xbf\x63\xab\xd9\xb3\xc3\xb2\xf7\x7b\x63\x9d\x14\xe2\x95\x2a\x58\x3b\x2e\xd1\xeb\x92\x2d\xfc\x9e\xb1\xec\xa8\xd8\x33\xa6\x93\x39\x7e\x67\xeb\x94\xd1\x78\x21\x9f\x63\x16\x0c\xd2\xe9\x28\xcd\xfe\x2f\x06\xd3\xa3\xa5\x01\xda\x78\xf4\x8e\xe1\xf7\xca\xa1\x52\x0d\x83\xbf\x14\xdc\x79\x28\x8d\xc2\xb4\x5d\xa3\x48\x17\x8c\x3b\xe5\xf7\x31\xc8\x04\x21\xc5\xfb\x09\xc0\xec\x3c\x29\x0d\x42\x61\xba\x01\xa6\x7a\x6a\x05\xf2\x42\x00\xc0\xde\xfb\x6e\x91\xe7\x77\x77\x77\x92\x62\x96\xd2\xd8\x3a\x6f\x46\x2b\x97\xbf\x5a\x5d\x5c\xad\xb7\x57\xa7\x2f\xe4\x73\x21\xde\xea\x86\x9d\x83\xe5\x3f\x7a\x65\xb9\xc4\x6e\x00\x75\x5d\xa3\x0a\xda\x35\x8c\x86\xee\x60\x2c\xa8\xb6\xcc\x25\xbc\x09\x79\xde\x59\xe5\x95\xae\xe7\x70\xa6\xf2\x77\x64\x59\x94\xca\x79\xab\x76\xbd\xff\x8e\xa0\x87\xac\x94\xc3\x53\x03\xa3\x41\x1a\xe9\x72\x8b\xd5\x36\xc5\xaf\xcb\xed\x6a\x3b\x17\xef\x56\xb7\xbf\x6d\xde\xde\xe2\xdd\xf2\xe6\x66\xb9\xbe\x5d\x5d\x6d\xb1\xb9\xc1\xc5\x66\x7d\xb9\xba\x5d\x6d\xd6\x5b\x6c\x5e\x62\xb9\x7e\x8f\xeb\xd5\xfa\x72\x0e\x56\x7e\xcf\x16\xfc\xa5\xb3\x21\x77\x63\xa1\x02\x75\x5c\x4a\xb1\x65\xfe\x2e\x78\x65\xc6\x64\x5c\xc7\x85\xaa\x54\x81\x86\x74\xdd\x53\xcd\xa8\xcd\x91\xad\x56\xba\x46\xc7\xb6\x55\x2e\x88\xe7\x40\xba\x14\x8d\x6a\x95\x27\x1f\xd7\x7f\xbb\x8e\x14\x27\xb9\x10\x79\x8e\x25\x5c\x4b\x4d\x03\x57\x58\xd5\x79\xf8\x3d\x79\x14\x46\x1f\xd9\x7a\x17\x1d\x6a\x75\x64\x0d\xd3\xb1\x86\x73\x0d\xba\x7e\xd7\xa8\x22\xef\xac\x3a\x92\x67\x1c\x78\x70\xf0\x26\x20\x11\x1c\x17\x96\x27\x0c\xe5\x23\xc3\x1c\x4e\xe1\x7c\x69\x7a\x0f\x72\xf8\xec\x8c\x96\x78\x6d\x5c\x88\xd2\xb6\x46\xc7\x3a\x2a\x68\x24\x78\x04\x2a\x2c\x07\xe8\x6f\x78\x95\x35\x2d\x1c\x37\x15\x9c\xaa\x35\x97\x28\xd8\xfa\xc0\x02\x05\xf8\xde\x8d\x92\x52\xef\xf7\xac\x7d\xdc\x8d\x95\x37\xe6\x54\xf2\xd1\xb1\x3d\xb2\x95\x78\xeb\xa8\xe6\x05\x6a\x03\xdb\x6b\xb4\x74\xe0\x4f\x63\x04\x59\x1b\x9c\x16\xd6\xa3\x20\x19\x3e\xa7\x07\x1e\x10\x6e\x28\xc3\x8f\x5f\xa6\x3c\x64\xc8\x5d\x74\x54\x1c\x02\xef\x2d\x29\x2d\x84\x6a\x3b\x63\x3d\x66\x22\x49\xab\x86\xea\x34\x7c\x5b\x1f\x3e\xca\xe4\xca\xf4\x5e\x35\x61\xd1\x98\x3a\x15\x22\x69\xd9\xd3\xf1\x0c\xe9\xe1\x7f\x4e\x2a\x93\x53\xa7\x5a\x2a\xf6\x4a\xb3\x1d\xf2\xee\x50\x87\x0d\x97\x07\xa3\xfc\x78\x16\xdc\x7e\x66\x67\x7b\xed\x55\xcb\x4f\x4c\x0e\xdf\xba\xfd\x01\x28\xc4\xcb\x73\xdc\x86\x0e\x55\xda\x79\x6a\x9a\x51\xcf\x86\x6b\x2a\x06\x1c\xcf\xb0\x7c\xb3\x12\xc9\x27\xfc\x1c\x23\x9f\x1c\x53\x91\xc5\x5a\xb9\xdd\x5c\x6e\x16\xb1\x68\xca\x12\x84\x53\x83\x70\xe9\x51\xef\x47\xb1\x9f\xd4\x29\x97\x28\xd9\x79\xa5\x63\x19\xc6\x49\x21\x23\x10\x53\x31\x4e\x86\x87\xb2\x33\x0f\xaa\x07\xfe\x49\x97\xa1\xb0\xa0\xaa\x51\x96\xb0\x8e\x9a\x90\x65\xfd\x1f\xff\x88\x2e\xc5\x91\x6c\x60\x3f\x58\x9d\xc7\x6c\xe4\xd6\x5b\xa5\xeb\x59\x5a\x58\x9f\xce\x91\x86\xbf\x8e\xc2\x1c\x32\xd0\xb5\xd2\x5f\xbe\xab\x1e\x99\x66\x22\x09\xc8\x3f\x38\x1f\x78\xf8\x67\xe7\x27\x75\x1f\x7c\x33\x21\xaa\x5e\x17\xb0\x4c\xe5\x2c\x0e\x42\x17\x11\x32\x7c\xf8\xb8\x1b\x3c\xe3\x4f\x91\xec\xe6\x60\x6b\xb1\x38\xc7\x58\x10\xf2\x86\xa9\x7c\xa9\x1a\x8e\x0e\x99\x48\x54\x15\x0d\xfe\x75\x0e\xad\x9a\xe0\x91\x34\xa6\x96\x2f\xc9\x53\x53\xcd\xd2\x0b\xd2\x61\xdc\x86\x08\xe3\xa8\x7d\x76\x9c\xe3\xd9\x31\x9d\xc7\x55\xc4\xce\x44\x72\x2f\x12\xcb\xbe\xb7\x1a\x3b\x71\x3f\x25\x15\x4a\x74\x96\x05\xc0\x78\xb7\x37\x64\x1d\xcf\xc6\x78\x27\x91\xb0\x73\xa4\x29\xbe\x7e\xc5\x49\x64\x20\xae\x7e\x8c\xbe\x9e\x06\xe6\x48\xf9\x30\xea\x31\x6a\x11\x44\xf1\xdc\x76\x0d\x79\x4e\xc7\x14\x22\x47\x17\xd6\x87\xcb\x46\x4a\x42\x9c\x6c\xda\xbf\xe6\xe1\x71\xff\xc0\x43\x26\x92\xa9\xc1\x17\xe7\xf8\x37\x75\x4a\x6e\xe3\x32\xa4\xb0\xd9\x7d\xe6\xc2\xbf\x66\x4f\x0b\x8c\x5d\x23\x1f\xb7\x82\x41\xb2\xa6\x96\x17\x48\x23\xf2\x08\x93\xce\x45\x92\xdc\x87\x7f\x97\x14\xfd\xa8\xfb\x30\xaa\xf1\x71\x14\x23\xfa\x8d\x1e\xa1\xcd\xd3\x05\x1e\xf2\x9d\x3f\x39\x09\xd2\x4f\x27\xd7\x3c\x3c\x60\xde\x8b\xa4\x6a\xbd\x7c\x63\x95\xf6\xd5\x6c\x6a\x40\x79\xa5\x0b\x53\xf2\xc6\x5e\x2a\x9e\x85\x0b\x5c\x98\x92\x0b\x27\x5f\xc5\x16\x8b\x8b\xb8\x7d\xc3\x75\x78\x39\x06\x79\xa5\xc3\x73\x54\x4e\x6f\xac\x9b\x65\x52\xca\x6c\x3e\xcd\x97\x2c\x13\xf7\xe2\xaf\x00\x00\x00\xff\xff\x60\x9d\xd0\x1b\xcd\x07\x00\x00") + +func examplesHttpsNginxMake_secretGoBytes() ([]byte, error) { + return bindataRead( + _examplesHttpsNginxMake_secretGo, + "examples/https-nginx/make_secret.go", + ) +} + +func examplesHttpsNginxMake_secretGo() (*asset, error) { + bytes, err := examplesHttpsNginxMake_secretGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/https-nginx/make_secret.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesHttpsNginxNginxAppYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\x88\xde\x1d\x2f\x68\x07\x0c\xba\x76\xc0\x4e\x2d\x8c\x75\xd8\x65\xd8\x81\x95\xb9\x58\x98\x24\x6a\x12\xe3\xd5\x7f\x3f\xc8\x4a\x1c\x3b\xce\x50\x9d\x6c\xbe\xa7\xc7\x47\x3d\x62\x30\xdf\x29\x26\xc3\x5e\xc1\xb0\xaf\x7e\x1b\xdf\x29\x78\xa1\x38\x18\x4d\x95\x23\xc1\x0e\x05\x55\x05\xe0\xd1\x91\x02\x7f\x30\xfe\x2d\x0d\xba\x02\xb0\xf8\x4a\x36\x65\x08\x00\x43\x38\x61\x55\x0a\xa4\x73\x51\xc6\x40\x0a\x9e\xb9\xa3\x96\xa3\x54\x00\x81\xa3\x4c\xf4\x7a\xfa\x54\xf0\xe9\xc3\x74\x37\x44\x16\xd6\x6c\x15\x7c\x7b\x6c\xa7\x4a\x69\xd5\x8b\x84\x05\xfb\xe1\xe1\xfe\x5d\x7a\xaa\x00\x12\x59\xd2\xc2\x71\x63\xac\xae\xeb\xea\xe6\xb4\x5f\x29\x58\xa3\x51\x0c\xfb\x47\xf6\x12\xd9\x5a\x8a\x37\x66\x77\x63\xbd\x1e\x31\x96\x8b\x49\xc1\x3e\x0f\x4c\x2e\x58\x14\x2a\x8d\x97\xd7\xf3\x59\xbe\xd6\x95\xb1\xfc\x7b\x96\xcc\x67\x60\x7b\x74\x34\x73\xeb\x53\xfb\x44\x3a\x92\xd4\x05\x9d\x75\x4a\xf5\xa2\x7b\xae\x3c\x2f\xe2\x9a\x0a\x57\x6a\x9a\xfd\x2f\x73\x70\x18\xae\x05\x0b\xf0\x84\x61\xa9\xb9\x08\x7f\xbe\x58\xcd\x7c\x41\xe3\x29\x6e\x0c\x4f\xf4\x73\x2c\xe5\x18\x87\x07\x52\x30\xba\x3f\xa3\xfc\x6d\x2e\x04\xb5\xdf\x7d\x5c\x38\x70\x0e\x73\x30\x3f\xee\x9a\x9e\x1d\x35\x78\x14\xae\x23\x59\xc6\xae\x24\xb0\x4b\xfd\xdd\xcf\x99\x3f\x2f\xd6\xb9\xfd\x6c\xa9\x5d\x6d\xce\x4d\xf0\xb4\x84\x53\x44\x66\x20\x4f\x29\xb5\x91\x5f\x69\x39\x7d\xb6\xf8\x65\xfd\xc8\x00\x01\xa5\x57\xd0\x18\xdf\xd1\xdb\xae\x17\x67\xd7\xe8\xb5\x38\x80\xf1\x46\x0c\xda\xcf\x64\x71\x7c\x21\xcd\xbe\x4b\x0a\xee\x97\x0c\x31\x8e\xf8\x28\x33\xb8\x9f\xb1\x92\xd1\x13\x1f\xfd\x7a\x52\x97\x2b\x6d\x71\x42\xa2\xcb\x8b\x36\x29\xd9\x4d\x76\xb7\xb7\xe7\x7f\x0a\x39\xe4\x5d\xb7\x11\xd9\x2c\xcd\xbf\x00\x00\x00\xff\xff\x9a\xfd\xb2\x20\x3e\x04\x00\x00") + +func examplesHttpsNginxNginxAppYamlBytes() ([]byte, error) { + return bindataRead( + _examplesHttpsNginxNginxAppYaml, + "examples/https-nginx/nginx-app.yaml", + ) +} + +func examplesHttpsNginxNginxAppYaml() (*asset, error) { + bytes, err := examplesHttpsNginxNginxAppYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/https-nginx/nginx-app.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesJavaeeMysqlPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x91\x4d\x4b\xc3\x40\x10\x86\xef\xfb\x2b\x86\xdc\x03\x4a\x41\x64\x6f\x91\xf6\xa6\x24\x26\x55\xf1\x24\xd3\xec\x20\x4b\xf6\xcb\x9d\x69\xd0\x7f\x2f\xa9\x8d\x56\xa8\x52\xe8\x69\xe0\x7d\x78\x1f\x86\x19\x4c\xf6\x91\x32\xdb\x18\x34\x8c\x97\x6a\xb0\xc1\x68\x68\xa2\x51\x9e\x04\x0d\x0a\x6a\x05\x10\xd0\x93\x06\xff\xc1\x6f\xae\x4c\xd1\x28\x00\x87\x1b\x72\x3c\xb1\x63\x14\xa0\x8f\x41\xe8\x5d\x34\x98\xd8\x0f\x94\xcb\xe1\x9a\x4b\x87\x1b\xc5\x89\xfa\xa9\x35\x71\xb4\x81\x32\x6b\xd8\x15\xca\xaf\xf1\xcb\xb6\x4f\xac\xc7\xd7\x39\xd2\x0e\x85\x58\xf6\x84\xc2\xa8\xe7\xde\x81\xe2\x47\x53\xdc\x3d\x77\xf7\xb7\x2f\x0f\xdd\xaa\x2d\x0e\xe0\x88\x6e\x3b\xd1\x9d\xb2\x38\x41\xd0\x54\x5d\xf7\x54\xb7\xcb\xb3\x24\xcb\x6a\x5d\xdd\x54\xdd\xea\x98\x84\xd1\x27\x47\xa7\x58\xda\xba\x5e\xff\xbb\x0f\x6f\x13\x65\xa6\x3e\x93\xcc\x38\xc5\x2c\xfc\xd7\xa5\xbe\x5f\xd1\xc4\x2c\x1a\x16\x8b\x8b\x2b\xf5\x19\x00\x00\xff\xff\xb7\xe0\xa8\x1a\x16\x02\x00\x00") + +func examplesJavaeeMysqlPodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesJavaeeMysqlPodYaml, + "examples/javaee/mysql-pod.yaml", + ) +} + +func examplesJavaeeMysqlPodYaml() (*asset, error) { + bytes, err := examplesJavaeeMysqlPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/javaee/mysql-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesJavaeeMysqlServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x8f\xc1\x6a\xc4\x30\x0c\x44\xef\xfe\x8a\x81\x9e\x03\x2d\x0b\xa5\xf8\x37\x0a\xbd\x6b\xed\x09\x31\x71\xac\xd4\x52\x42\xf7\xef\xcb\xba\x7b\xd9\x6b\x2f\x06\x0f\xef\x69\x24\xd9\xcb\x17\xbb\x15\x6d\x11\xe7\x5b\x58\x4b\xcb\x11\x9f\xec\x67\x49\x0c\x1b\x5d\xb2\xb8\x44\x04\xa0\xc9\xc6\x88\xed\x66\xdf\x75\xb2\x07\x00\x54\xb9\xb2\xda\x00\x9e\x91\x5d\xf3\xc8\x92\x36\xe7\x8f\x47\x64\x4d\x2b\xfb\xb4\x7e\xd8\x54\xe5\x1a\x6c\x67\x1a\xda\xae\xdd\x2d\x0e\xf6\x05\xbe\x70\x04\xf0\x45\xee\x4f\x31\x3c\xba\x60\x8b\x1e\x35\x8f\x2f\xa1\x6d\x08\xd3\x80\x23\x2e\x97\xd7\xf7\x70\xf7\xc7\x3a\x58\x79\x33\x48\xcb\x38\xa5\x1e\xb4\xbf\x61\xdb\x61\x8e\x4d\x3c\x2d\x28\x0d\xda\x33\x3b\x5c\xd1\x99\x58\x4e\xc2\xbb\xcc\x73\x49\x98\xb5\x3f\xf5\x06\xc0\x58\x99\x5c\xfb\x3f\xae\xfc\x0d\x00\x00\xff\xff\x2e\x4a\x91\x09\x5f\x01\x00\x00") + +func examplesJavaeeMysqlServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesJavaeeMysqlServiceYaml, + "examples/javaee/mysql-service.yaml", + ) +} + +func examplesJavaeeMysqlServiceYaml() (*asset, error) { + bytes, err := examplesJavaeeMysqlServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/javaee/mysql-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesJavaeeWildflyRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4e\x33\x31\x0c\x85\xf7\x39\x85\x2f\x10\xfd\xed\xea\x1f\x79\xcb\x05\x10\x0b\xf6\x6e\x62\xaa\x30\x4e\x1c\x1c\xb7\xd0\xdb\xa3\xa1\x9a\x61\x04\x64\x99\xe7\xf7\x7d\x8f\x7a\x79\x66\x1b\x45\x1b\xc2\xf5\x18\xe6\xd2\x32\xc2\x13\x77\x29\x89\xbc\x68\x7b\xd0\xe6\xa6\x22\x6c\xa1\xb2\x53\x26\x27\x0c\x00\x8d\x2a\x23\xbc\x17\xc9\x2f\x72\x8b\x96\x02\x80\xd0\x89\x65\x2c\xe1\x8f\xf8\xeb\x27\x69\x73\xfe\x70\x84\xac\x69\x66\x8b\xf3\x34\xa2\xd0\x29\x8c\xce\x69\xe9\xd8\x5d\x39\x10\x8e\x01\xc0\xb9\x76\x21\xe7\x3b\x6d\x2f\x5e\xde\xde\xf4\xb7\x6d\xa5\xae\x66\x2a\x8d\x6d\x6b\xc4\x5f\xf3\x63\xd7\xbc\xe1\x4a\xa5\x33\x23\x90\x5d\xda\xf9\xd2\x9d\xfe\xad\x77\xf5\x36\xde\x24\xbe\xd2\x95\x98\xff\xe3\x3c\x8d\xad\xd2\xd5\x7c\x37\x28\x7e\x4b\x1f\xd5\x1c\x61\x3a\x4c\x87\xcf\x00\x00\x00\xff\xff\x9f\xa2\x95\x97\x6a\x01\x00\x00") + +func examplesJavaeeWildflyRcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesJavaeeWildflyRcYaml, + "examples/javaee/wildfly-rc.yaml", + ) +} + +func examplesJavaeeWildflyRcYaml() (*asset, error) { + bytes, err := examplesJavaeeWildflyRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/javaee/wildfly-rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesJavawebTomcatSidecarJavaweb2Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x4d\x4f\xc3\x30\x0c\xbd\xe7\x57\x58\x39\x2f\x6d\x57\x21\x6d\xca\x99\x2b\xd2\x24\x24\x2e\x88\x83\x97\x1a\x1a\x68\x3e\x94\x78\x2d\x13\xe2\xbf\xa3\xae\x2d\x4c\x30\x10\xb9\xbd\x17\xbf\x67\xbf\x38\x18\xed\x1d\xa5\x6c\x83\xd7\xd0\xaf\xc5\x8b\xf5\x8d\x86\x5d\x68\x84\x23\xc6\x06\x19\xb5\x00\xf0\xe8\x48\xc3\x33\xf6\x38\xd0\x5e\xd5\x22\x47\x32\x23\x6f\x82\x67\xb4\x9e\x52\x1e\x91\x02\xeb\xf0\x89\x34\x24\xca\xe1\x40\xa9\xcc\xe8\x62\x47\xba\xaf\x05\xc0\x62\x32\x60\x3a\xa1\xce\x3e\x92\x39\x9a\x8e\xf4\x09\x02\xc4\x90\xf9\x96\x31\xf1\x42\x00\xd0\xeb\xd4\x66\x39\x26\x38\x87\xbe\x39\xa7\xc6\xae\xd2\x44\xf9\x9d\x9a\x7b\x17\x03\xa6\x9f\x77\x18\x67\x41\x1f\xba\x83\xa3\x9b\x70\xf0\x9c\x27\x57\x05\x6e\x44\x3b\xe4\x56\xc3\x58\x38\x8b\xa7\xe1\x31\x46\x35\x69\x2e\xc5\x75\x47\x0e\xce\x20\xeb\x4d\x51\x9d\x25\x9e\x48\x71\x1e\x00\xee\x65\x6e\xe5\x4a\x2a\x23\x57\xb2\x4c\x21\x70\x89\x11\x4d\x4b\x6a\x2a\x56\x9b\xa2\x2a\xae\x6a\xd5\xd7\xe5\xde\xfa\x32\x8f\xcf\x52\xe4\x56\x3e\xfc\x6b\xea\x3f\xfd\x06\xda\x63\x8c\xf9\xf7\x58\xe3\x26\xd2\x97\xf1\xe7\x8a\x77\x21\xb1\x86\x6d\xb5\xad\x66\x6d\x1b\x32\x2f\x64\xb5\x06\xb1\x0c\x36\xff\x85\x8b\xd6\xe4\x22\x1f\xaf\x6d\xd2\xf0\xf6\x2e\xc4\x47\x00\x00\x00\xff\xff\xe4\xbf\x7e\xb9\x7c\x02\x00\x00") + +func examplesJavawebTomcatSidecarJavaweb2YamlBytes() ([]byte, error) { + return bindataRead( + _examplesJavawebTomcatSidecarJavaweb2Yaml, + "examples/javaweb-tomcat-sidecar/javaweb-2.yaml", + ) +} + +func examplesJavawebTomcatSidecarJavaweb2Yaml() (*asset, error) { + bytes, err := examplesJavawebTomcatSidecarJavaweb2YamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/javaweb-tomcat-sidecar/javaweb-2.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesJavawebTomcatSidecarJavawebYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xb1\x4e\xc3\x30\x10\x86\x77\x3f\xc5\x29\x73\x13\xa7\x15\x52\x2b\xcf\xac\x48\x9d\x58\x10\xc3\xd5\x3d\x11\x43\xed\x3b\xd9\xd7\x54\x15\xe2\xdd\x91\x93\x16\x18\x0a\x62\xfc\x7f\xe5\xfb\x2e\x77\x46\x09\x8f\x94\x4b\xe0\xe4\x60\x5c\x9a\xb7\x90\xf6\x0e\xb6\xbc\x37\x91\x14\xf7\xa8\xe8\x0c\x40\xc2\x48\x0e\x5e\x71\xc4\x13\xed\x4c\x11\xf2\xb5\xf5\x9c\x14\x43\xa2\x5c\x6a\x6a\x21\x44\x7c\x21\x07\x99\x0a\x1f\x29\xdb\x82\x51\x0e\xe4\xc6\xa5\x01\xb8\x2a\x4e\x98\xa7\x34\xf2\xe1\x18\xe9\x81\x8f\x49\x27\xb8\xe2\xb1\xa6\x2d\xea\xe0\xc0\xa2\xc8\xd4\x5e\x39\x14\x69\x67\xe6\xd6\xa4\x78\x56\x8e\x1e\xd5\xad\xbb\xfe\xc7\xb0\xb9\x9c\x0a\xcf\x31\x62\xdd\xec\xa9\x29\x43\xb3\x68\x5a\xdf\x2c\x1a\x9b\x99\xd5\xa2\xa0\x1f\xa8\x9d\x3f\x6e\xd7\x5d\xdf\xdd\xad\xda\x71\x65\x77\x21\xd9\xa2\x98\xb5\x2b\x43\xf3\xfc\xaf\xbf\xfe\xd3\x77\xa2\x1d\x8a\x94\xdf\xd7\x02\x10\xce\xdf\xe2\xaf\xeb\x6e\x39\xab\x83\x4d\xbf\xe9\x2f\xec\xc0\x45\xaf\x65\x5f\xaf\x3b\x2b\x2e\xaf\x70\xd3\x4c\x51\xf4\x7c\x1f\xb2\x83\xf7\x0f\x63\x3e\x03\x00\x00\xff\xff\xe3\x6f\x05\xd0\xf4\x01\x00\x00") + +func examplesJavawebTomcatSidecarJavawebYamlBytes() ([]byte, error) { + return bindataRead( + _examplesJavawebTomcatSidecarJavawebYaml, + "examples/javaweb-tomcat-sidecar/javaweb.yaml", + ) +} + +func examplesJavawebTomcatSidecarJavawebYaml() (*asset, error) { + bytes, err := examplesJavawebTomcatSidecarJavawebYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/javaweb-tomcat-sidecar/javaweb.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesKubectlContainerGitignore = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x2e\x4d\x4a\x4d\x2e\xc9\xe1\xd2\x2b\x49\x4c\xe7\x02\x04\x00\x00\xff\xff\x6d\x01\x78\xdc\x0d\x00\x00\x00") + +func examplesKubectlContainerGitignoreBytes() ([]byte, error) { + return bindataRead( + _examplesKubectlContainerGitignore, + "examples/kubectl-container/.gitignore", + ) +} + +func examplesKubectlContainerGitignore() (*asset, error) { + bytes, err := examplesKubectlContainerGitignoreBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/kubectl-container/.gitignore", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesKubectlContainerDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xc1\x8e\xd3\x30\x10\x86\xef\x7e\x8a\x5f\xc9\x05\xa4\x92\x2e\x3d\x70\x80\x53\x68\xbb\x22\xda\x25\x41\x4d\x96\x55\x85\x38\x38\xce\x34\x19\x91\xda\xc1\x9e\x90\xed\xdb\xa3\x74\x5b\x89\x0a\x5f\x2c\xcd\x7c\x1e\x7f\xfe\x1d\x63\xed\x86\x93\xe7\xb6\x13\xac\xee\xde\x7f\x40\xd5\x11\x1e\xc6\x9a\xbc\x25\xa1\x80\x74\x94\xce\xf9\x90\xa8\x58\xc5\x78\x64\x43\x36\x50\x83\xd1\x36\xe4\x21\x1d\x21\x1d\xb4\xe9\xe8\xda\x59\xe0\x3b\xf9\xc0\xce\x62\x95\xdc\xe1\xcd\x0c\x44\x97\x56\xf4\xf6\x93\x8a\x71\x72\x23\x8e\xfa\x04\xeb\x04\x63\x20\x48\xc7\x01\x07\xee\x09\xf4\x62\x68\x10\xb0\x85\x71\xc7\xa1\x67\x6d\x0d\x61\x62\xe9\xce\xd7\x5c\x86\x24\x2a\xc6\xfe\x32\xc2\xd5\xa2\xd9\x42\xc3\xb8\xe1\x04\x77\xf8\x97\x83\x96\xb3\xf0\xbc\x3a\x91\xe1\xe3\x72\x39\x4d\x53\xa2\xcf\xb2\x89\xf3\xed\xb2\x7f\x05\xc3\xf2\x31\x5b\x6f\xf3\x72\xfb\x6e\x95\xdc\x9d\x8f\x3c\xd9\x9e\x42\x80\xa7\xdf\x23\x7b\x6a\x50\x9f\xa0\x87\xa1\x67\xa3\xeb\x9e\xd0\xeb\x09\xce\x43\xb7\x9e\xa8\x81\xb8\xd9\x77\xf2\x2c\x6c\xdb\x05\x82\x3b\xc8\xa4\x3d\xa9\x18\x0d\x07\xf1\x5c\x8f\x72\x13\xd6\xd5\x8e\xc3\x0d\xe0\x2c\xb4\x45\x94\x96\xc8\xca\x08\x9f\xd3\x32\x2b\x17\x2a\xc6\x73\x56\x7d\x29\x9e\x2a\x3c\xa7\xbb\x5d\x9a\x57\xd9\xb6\x44\xb1\xc3\xba\xc8\x37\x59\x95\x15\x79\x89\xe2\x1e\x69\xbe\xc7\x43\x96\x6f\x16\x20\x96\x8e\x3c\xe8\x65\xf0\xb3\xbf\xf3\xe0\x39\x46\x6a\xe6\xcc\x4a\xa2\x1b\x81\x83\x7b\x15\x0a\x03\x19\x3e\xb0\x41\xaf\x6d\x3b\xea\x96\xd0\xba\x3f\xe4\x2d\xdb\x16\x03\xf9\x23\x87\xf9\x33\x03\xb4\x6d\x54\x8c\x9e\x8f\x2c\x5a\xce\x95\xff\x1e\x95\x28\x75\xbf\x2b\xbe\x22\x18\xaf\xc5\x74\x2a\xdd\x6c\xf0\x6b\xac\xc9\x48\x7f\xdd\xd5\x36\xaf\x76\xfb\x6f\x45\x96\x57\xf8\x11\x2d\x2f\xd5\xe8\xa7\xfa\x1b\x00\x00\xff\xff\x6d\xe8\xe1\xb1\x85\x02\x00\x00") + +func examplesKubectlContainerDockerfileBytes() ([]byte, error) { + return bindataRead( + _examplesKubectlContainerDockerfile, + "examples/kubectl-container/Dockerfile", + ) +} + +func examplesKubectlContainerDockerfile() (*asset, error) { + bytes, err := examplesKubectlContainerDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/kubectl-container/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesKubectlContainerMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x51\x6f\xdb\x36\x10\x7e\x36\x7f\xc5\x07\xd9\x80\xed\xce\x92\xd2\x3c\xec\xc1\x45\xb6\xa9\x8e\x97\x18\x29\x6c\xc0\x72\x1a\x14\x4d\x9b\xd2\xd4\x59\x22\x42\x93\x1a\x49\xc5\x35\xd0\x1f\x3f\x48\x96\x9d\x65\xdd\xb0\x3e\x4c\x2f\xa2\xee\xbe\xbb\xfb\x78\xdf\x9d\xba\x98\x98\x72\x6f\x65\x5e\x78\x9c\x9f\xbd\xfe\x19\xab\x82\x70\x53\xad\xc9\x6a\xf2\xe4\x90\x54\xbe\x30\xd6\x45\xac\xcb\xba\x78\x27\x05\x69\x47\x19\x2a\x9d\x91\x85\x2f\x08\x49\xc9\x45\x41\x47\xcf\x08\xef\xc9\x3a\x69\x34\xce\xa3\x33\x0c\x6a\x40\xd0\xba\x82\xe1\x1b\xd6\xc5\xde\x54\xd8\xf2\x3d\xb4\xf1\xa8\x1c\xc1\x17\xd2\x61\x23\x15\x81\xbe\x0a\x2a\x3d\xa4\x86\x30\xdb\x52\x49\xae\x05\x61\x27\x7d\xd1\x94\x69\x93\x44\xac\x8b\x0f\x6d\x0a\xb3\xf6\x5c\x6a\x70\x08\x53\xee\x61\x36\x7f\xc5\x81\xfb\x86\x70\xfd\x14\xde\x97\xe3\x38\xde\xed\x76\x11\x6f\xc8\x46\xc6\xe6\xb1\x3a\x00\x5d\xfc\x6e\x36\x99\xce\xd3\x69\x78\x1e\x9d\x35\x21\xb7\x5a\x91\x73\xb0\xf4\x47\x25\x2d\x65\x58\xef\xc1\xcb\x52\x49\xc1\xd7\x8a\xa0\xf8\x0e\xc6\x82\xe7\x96\x28\x83\x37\x35\xdf\x9d\x95\x5e\xea\x7c\x04\x67\x36\x7e\xc7\x2d\xb1\x2e\x32\xe9\xbc\x95\xeb\xca\xbf\x68\xd6\x91\x9d\x74\x2f\x00\x46\x83\x6b\x04\x49\x8a\x59\x1a\xe0\x6d\x92\xce\xd2\x11\xeb\xe2\x6e\xb6\xba\x5e\xdc\xae\x70\x97\x2c\x97\xc9\x7c\x35\x9b\xa6\x58\x2c\x31\x59\xcc\x2f\x67\xab\xd9\x62\x9e\x62\xf1\x3b\x92\xf9\x07\xdc\xcc\xe6\x97\x23\x90\xf4\x05\x59\xd0\xd7\xd2\xd6\xfc\x8d\x85\xac\xdb\x48\x59\xdd\xb3\x94\xe8\x05\x81\x8d\x39\x10\x72\x25\x09\xb9\x91\x02\x8a\xeb\xbc\xe2\x39\x21\x37\x4f\x64\xb5\xd4\x39\x4a\xb2\x5b\xe9\x6a\x31\x1d\xb8\xce\x58\x17\x4a\x6e\xa5\xe7\xbe\xb1\x7c\x77\xa9\x88\xd5\xcd\x73\x34\x6e\xba\xf8\x65\xcb\x1f\x09\x8f\xd5\x9a\x84\x57\x5f\xb0\x93\x4a\x61\x5d\x49\x95\x1d\x6d\xd1\x09\xe4\x79\xde\x02\x5c\x95\xe7\xe4\x3c\x78\x6d\x7b\x06\x08\xa3\x6b\xa5\xc9\xbe\xc8\xc3\x9f\xed\x61\x78\x98\xab\xca\x79\xb8\xaa\x2c\xd5\xfe\xef\x29\xca\xca\x15\x6d\x74\x7d\x6c\x78\xff\x40\x38\xbb\x5a\x24\xcb\xc9\xf5\xaf\x17\xbd\x81\x2b\x48\x29\xe4\x06\xa4\x9f\x70\x30\x0f\xd9\xd5\x62\x91\xfe\x83\x73\x91\x0e\x19\x6b\xef\x39\x66\x9d\x86\x41\x38\x41\x14\xc5\x51\x14\xe3\xee\x3a\x59\x5d\x88\x6d\x16\xb7\x08\xdc\xdc\xbe\x9d\x3e\xa4\xab\x64\x35\x9b\x3c\x2c\xde\x4f\x97\xcb\xd9\xe5\x34\xbd\x08\x5a\x77\xf0\x06\xf7\xac\x23\xca\x36\xfc\xc1\x54\xbe\xac\x7c\xac\x8c\xe0\x2a\x5e\x4b\x1d\xf7\x06\x4d\xc5\xe6\xdd\xd0\x3a\x25\x8e\x18\x8b\x3c\xcf\xc7\xc7\x9e\xb3\x4e\x74\xf2\x3d\xb5\x7b\x1a\x86\x42\x49\xd2\x1e\xdf\x90\x5b\x2a\x11\x1a\xf4\xaf\xa4\x6f\xd7\x78\x1c\x7c\xfc\x1c\x7c\x7a\x15\xf4\xf1\x0d\xf5\xde\xf7\x5d\x7c\x30\xdc\x0f\x3e\x7e\x0e\x7e\xfa\xf4\xea\x7e\x18\xbd\x8a\xef\x5f\xc7\x7d\xfc\x82\xba\x16\x63\x4d\xc1\xe6\xd8\xf9\x8d\x44\x61\x10\xa4\xad\xac\x95\xab\xc7\x6a\x95\x5c\x9d\x3a\x26\xb8\x6f\xa0\xc3\xe0\x04\xee\xf5\xf0\x52\xf4\xff\x0a\x30\xf6\xfb\xe0\x46\xe3\x7f\x89\x63\xa7\xcc\x63\xd6\xe9\x0d\xe4\x06\xbd\xc1\x2a\xb9\x1a\x8e\x46\xbd\x01\x59\x6b\x9a\x82\xf5\x86\xd6\xbf\xa8\x8c\x36\x52\x53\x16\xd5\x83\x8d\xfe\x71\x5c\xfb\xf5\xe2\x3b\x22\xf0\xe3\xc8\x4a\xa3\x87\x43\xd6\xc9\x8c\x78\x24\xdb\x0e\x68\x18\x96\x95\x52\x08\x3d\x72\x61\x23\x69\xe2\xdc\x98\x5c\xd1\xc3\xa9\xbe\x3b\x8a\x31\x3e\x30\xa8\xf5\xaa\x99\x8f\x9f\x2f\xff\xbf\x33\xcc\x85\x32\x55\x86\x96\x68\x18\x1e\x5a\xf5\x83\x04\x19\x13\x8a\xb8\x1e\xb3\x8e\xdd\x22\xdc\x3c\x8f\xd5\xe1\xb3\x11\xfd\xcf\x00\x00\x00\xff\xff\xf2\x15\xea\xc6\x50\x06\x00\x00") + +func examplesKubectlContainerMakefileBytes() ([]byte, error) { + return bindataRead( + _examplesKubectlContainerMakefile, + "examples/kubectl-container/Makefile", + ) +} + +func examplesKubectlContainerMakefile() (*asset, error) { + bytes, err := examplesKubectlContainerMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/kubectl-container/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesKubectlContainerPodJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x5d\x6b\xdb\x30\x14\x7d\xf7\xaf\xb8\x88\x3d\xc6\xb6\x1c\x16\x16\xdc\xa7\x7d\x04\x36\xc6\x16\x93\x64\x7d\x29\x23\xc8\xb6\x70\x45\x65\x4b\x48\xb2\x5b\x13\xfc\xdf\x87\x14\x37\x55\x32\x67\x65\x7d\x11\xf6\xd1\x3d\xe7\x9e\x7b\x90\x74\x08\x00\xd0\x03\x6b\x4a\x94\x02\xca\x44\x89\x66\x16\x20\x92\xdd\x52\xa5\x99\x68\x2c\xdc\x25\x47\xb4\xa6\x86\x94\xc4\x10\x94\x82\xa5\x01\xa0\x86\xd4\xd4\x56\x3c\xb4\x39\x2d\x0c\x0f\x0d\xd5\x86\x2a\x14\x00\x0c\x8e\xa1\x25\x2d\x5e\xaa\x0b\xd1\x18\xc2\x1a\xaa\x34\x4a\xe1\xce\x61\x30\xee\x9d\xa9\xe5\xb9\xeb\x37\xa2\xac\x26\x95\x83\xab\x42\x45\x4c\xc4\x95\x10\x15\xa7\xfb\x17\xb1\x38\x6f\x75\x9f\x8b\x27\x9f\x54\x88\xba\x26\x6e\xa8\xbb\x13\x68\xfd\xdc\xa3\x19\xa0\xb0\xb0\xab\xe6\x94\x4a\x58\xdc\xc0\x63\x45\x0d\x84\x6b\x08\xe1\xdd\xe1\xfb\xaf\x4f\xab\xcd\xcf\xd5\x6e\xb5\xdd\x6f\xd6\xfb\xed\x6a\x73\xfb\xed\xf3\x6a\xff\x75\xbd\xdd\x0d\xe9\xb5\xdd\x6c\xbd\xd9\x0d\x31\x91\x2c\xee\x92\x58\x8a\x52\xc7\x37\x70\x14\x4f\x30\xc6\x18\x9d\x0c\xfc\xf6\x0c\x4a\xa1\x8c\xbe\xb0\x77\xf0\xbe\xfd\xb8\x32\xa1\x0c\x4a\x61\x89\x97\xd8\xab\x18\x26\x75\x69\xd3\xfd\x5b\xf5\x39\xe4\xeb\x93\x7a\x39\x3a\x46\x47\x78\xeb\x28\xc9\xfc\x43\x84\x23\x1c\x25\xc8\xb7\x31\x7b\x6b\x2f\x9b\xdb\xd5\x5e\x4b\x8c\xcf\xdb\x4c\x4e\xdb\x09\xde\xd6\xf4\x87\x68\x9b\xd7\xc2\x7c\xb6\x62\x4f\x68\x78\xa4\x5d\xf6\xae\xad\x4c\x46\xcc\xbd\xad\x8b\xdd\x5f\xec\x97\x4f\xbb\x09\x2e\x62\x98\x38\xcf\xe3\xed\xf8\xbf\x43\x3d\x92\xd2\x0e\x47\xc9\x32\xc2\x61\x32\xc7\x61\x45\x68\xfe\x9e\x14\x8b\x05\x29\x93\x79\x9e\x84\x25\x53\xa6\xff\x4b\x36\x6b\x39\xcf\x04\x67\x45\x6f\x1b\x7c\xe4\x8f\xa4\xd7\x7e\x11\x51\xd5\x65\x58\x48\x2a\xf1\xd4\xbb\xbb\x21\xed\x7a\x9e\xfe\x69\xc6\xc0\xcb\x7f\xcc\xfe\x95\xab\x3c\x1d\x37\xa2\xb5\x34\xfd\x17\xa6\xec\xdb\x30\x9c\xab\xdb\xb7\x23\x18\x82\x3f\x01\x00\x00\xff\xff\xd5\xdf\xf4\x40\x98\x04\x00\x00") + +func examplesKubectlContainerPodJsonBytes() ([]byte, error) { + return bindataRead( + _examplesKubectlContainerPodJson, + "examples/kubectl-container/pod.json", + ) +} + +func examplesKubectlContainerPodJson() (*asset, error) { + bytes, err := examplesKubectlContainerPodJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/kubectl-container/pod.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesMeteorDockerbaseDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x92\x71\x6f\xa3\x46\x10\xc5\xff\xe7\x53\x3c\x85\xea\x7a\x27\xc5\xe0\x8b\xaa\x28\x72\x55\x55\x3e\x9b\xeb\xa1\x24\x10\x01\x4e\x1a\xb5\x55\xb4\x2c\x63\x98\x76\xd9\xa5\xbb\xcb\x39\x96\xfa\xe1\x2b\x6c\x5f\xda\xb4\xc7\x9f\x6f\x86\x37\xbf\x79\xb3\x21\x56\x66\xd8\x5b\x6e\x3b\x8f\x8b\xf9\xfb\x4b\x54\x1d\xe1\x7a\xac\xc9\x6a\xf2\xe4\xb0\x1c\x7d\x67\xac\x8b\x82\x30\x08\x71\xc3\x92\xb4\xa3\x06\xa3\x6e\xc8\xc2\x77\x84\xe5\x20\x64\x47\x5f\x2a\xe7\xb8\x27\xeb\xd8\x68\x5c\x44\x73\xbc\x9d\x1a\xce\x4e\xa5\xb3\x77\xdf\x07\x21\xf6\x66\x44\x2f\xf6\xd0\xc6\x63\x74\x04\xdf\xb1\xc3\x96\x15\x81\x9e\x25\x0d\x1e\xac\x21\x4d\x3f\x28\x16\x5a\x12\x76\xec\xbb\xc3\x98\x93\x49\x14\x84\x78\x3c\x59\x98\xda\x0b\xd6\x10\x90\x66\xd8\xc3\x6c\xff\xdd\x07\xe1\x0f\xc0\xd3\xd7\x79\x3f\x2c\xe2\x78\xb7\xdb\x45\xe2\x00\x1b\x19\xdb\xc6\xea\xd8\xe8\xe2\x9b\x74\x95\x64\x65\x32\xbb\x88\xe6\x87\x5f\x36\x5a\x91\x73\xb0\xf4\xe7\xc8\x96\x1a\xd4\x7b\x88\x61\x50\x2c\x45\xad\x08\x4a\xec\x60\x2c\x44\x6b\x89\x1a\x78\x33\xf1\xee\x2c\x7b\xd6\xed\x39\x9c\xd9\xfa\x9d\xb0\x14\x84\x68\xd8\x79\xcb\xf5\xe8\x5f\x85\xf5\x85\x8e\xdd\xab\x06\xa3\x21\x34\xce\x96\x25\xd2\xf2\x0c\x1f\x96\x65\x5a\x9e\x07\x21\x1e\xd2\xea\x53\xbe\xa9\xf0\xb0\x2c\x8a\x65\x56\xa5\x49\x89\xbc\xc0\x2a\xcf\xd6\x69\x95\xe6\x59\x89\xfc\x23\x96\xd9\x23\xae\xd3\x6c\x7d\x0e\x62\xdf\x91\x05\x3d\x0f\x76\xe2\x37\x16\x3c\xc5\x48\xcd\x94\x59\x49\xf4\x0a\x60\x6b\x8e\x40\x6e\x20\xc9\x5b\x96\x50\x42\xb7\xa3\x68\x09\xad\xf9\x4c\x56\xb3\x6e\x31\x90\xed\xd9\x4d\xc7\x74\x10\xba\x09\x42\x28\xee\xd9\x0b\x7f\x50\xfe\xb7\x54\x14\x04\x1f\x8b\xfc\x16\xda\x34\xb4\x98\x47\xef\xe7\x41\x90\x67\x1f\x36\xe9\xcd\x1a\x0f\x79\x71\xbd\x4e\x0b\xc4\x62\x18\x9c\x95\x2f\xfa\x2a\xbf\x7b\x44\xf4\x22\xbf\xe8\xc5\x26\x83\x1c\xad\x3a\x9c\xce\x2d\xe2\x98\xb5\xf3\x42\xa9\xa8\x27\x4f\xc6\x46\xd2\xf4\x31\xfe\x82\xeb\xf0\xe6\x0d\x7e\x0d\xa6\x23\x1f\x2b\xa8\x47\x56\x0d\xa2\x68\xb2\xc4\x6c\xd6\xb0\x25\xe9\x8d\xdd\x63\x36\x13\x56\x76\xec\x49\xfa\xd1\x12\x8c\x8b\x14\xeb\xf1\x39\x7a\xbe\xba\x7c\xba\xfc\xee\x1f\x1f\xdb\x63\x66\xb7\x2f\x48\x21\xaa\x7c\x9d\x4f\xea\x69\x80\x33\x60\x8f\xc6\x90\xd3\xdf\x7a\x78\xf1\xc7\x94\xa1\x90\x34\xbd\x83\x29\x0c\xee\x45\x4b\x3f\x7e\x7d\xf5\xb8\x1e\x75\xa3\xe8\xf5\x9e\x6f\x65\x83\xc1\x9a\xd6\x8a\xde\xc5\x8e\xec\x67\xb2\x13\x8d\x1e\x7a\x9c\xb6\x7e\x17\x24\x3f\xdf\xe5\x65\x82\xab\xf9\xd5\x3c\x58\xdd\xae\xf1\xcb\x6f\x41\x92\xdd\xe3\x2e\x2f\xaa\xa3\x98\x64\x55\xf1\x78\x97\xa7\x59\x85\xdb\x3c\xfb\x29\x7f\xda\x14\x37\x3f\xf4\x46\xb7\xa6\xa9\x17\x71\xfc\xcd\x51\x2c\x93\xe2\x3e\x5d\x25\x4f\x9f\xf2\xb2\x5a\xfc\x47\x3b\x78\xc5\xa3\xb3\xb1\x32\x52\xa8\xb8\x66\x1d\x4f\x97\x44\x2f\x58\x47\xbf\xbb\xe0\xef\x00\x00\x00\xff\xff\x50\x78\x6a\x50\x28\x04\x00\x00") + +func examplesMeteorDockerbaseDockerfileBytes() ([]byte, error) { + return bindataRead( + _examplesMeteorDockerbaseDockerfile, + "examples/meteor/dockerbase/Dockerfile", + ) +} + +func examplesMeteorDockerbaseDockerfile() (*asset, error) { + bytes, err := examplesMeteorDockerbaseDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/meteor/dockerbase/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesMeteorMeteorControllerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xcf\x6a\xf3\x30\x10\xc4\xef\x7e\x8a\x45\x67\x9b\x2f\x5f\x4f\xc1\xd7\xbe\x40\xe9\xa1\x97\xd2\xc3\xd6\x19\x12\x11\xfd\x43\x5a\x42\xa1\xe8\xdd\x8b\x94\xb8\xb1\xec\xf4\x64\xbc\x3b\xf3\x9b\x59\xfb\xbb\x23\x52\x67\xed\x0e\x6a\x24\xf5\x8a\x60\xf4\xc4\xa2\xbd\x7b\xf6\x4e\xa2\x37\x06\x51\xf5\x45\xc2\x41\xbf\x21\x26\xed\x5d\x11\x5e\xfe\x5f\xa7\x16\xc2\x07\x16\x56\x23\x15\x10\x91\x72\x6c\x51\x14\x16\x02\x1f\x87\xa9\xc5\x10\x29\xc3\x9f\x30\xe9\xd7\xb0\xb1\xa8\x3a\xce\x1d\x51\xae\x11\x29\x60\xba\xe3\xe3\xb5\x61\xf1\x3f\xdd\x80\x02\x1b\x0c\x0b\x96\xc8\x4d\xaf\xc7\xd1\x7f\xc6\xcf\x15\xea\xb3\x9f\xa9\x4d\x95\x3a\x29\xe7\xb1\x76\x88\x85\xfa\xbe\xa0\x2e\x13\xb6\x19\x7d\xbb\xd5\x96\x8f\x75\x3d\x9d\x80\xf4\xef\xf6\xe9\x8e\x67\x0c\xf8\x62\x1b\x0c\xc6\x72\x5f\x92\xb5\x2f\xf8\x28\xeb\xe0\x6d\x78\x53\xe0\x24\x12\x86\x84\x78\xc1\xba\x45\x7b\xcf\x8b\x8f\xa2\x46\xda\xef\xf6\xbb\x95\x2a\x37\xef\x1f\xdd\xa3\xcd\x3c\xcd\xf7\x7f\xd9\xe5\xee\x27\x00\x00\xff\xff\x52\x29\xee\x01\x6b\x02\x00\x00") + +func examplesMeteorMeteorControllerJsonBytes() ([]byte, error) { + return bindataRead( + _examplesMeteorMeteorControllerJson, + "examples/meteor/meteor-controller.json", + ) +} + +func examplesMeteorMeteorControllerJson() (*asset, error) { + bytes, err := examplesMeteorMeteorControllerJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/meteor/meteor-controller.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesMeteorMeteorServiceJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x3f\x6b\x03\x31\x0c\xc5\xf7\xfb\x14\x42\x73\x0a\xe9\xd6\x7a\x6b\x33\x15\x3a\x04\x02\x5d\x4a\x07\xe1\xd3\xa5\xa2\x77\xb6\xb1\xd5\x83\x50\xee\xbb\x17\xd9\xf9\x0b\xf1\x62\xfc\xf4\x7b\xf2\x7b\x7f\x1d\x00\xfe\x48\xe8\xd1\x01\xee\x38\xcf\xe2\x19\x57\x26\x52\x92\x0f\xce\x45\x62\xb0\xd1\xfc\xd8\xd4\x89\x95\x7a\x52\x42\x07\x66\x05\xc0\x40\x13\x1b\x31\xb1\x72\xcc\xd8\x01\x2c\x95\x2c\x89\xfd\x85\x4a\x31\x6b\x41\x07\x9f\xf5\x09\x47\xf9\x3c\x42\x07\x4f\xeb\xd5\x45\x53\xca\x7b\xd6\x6d\x9b\xe0\xb7\x6a\x7a\x28\x9c\x67\xae\xfb\xed\x2c\xf5\xfe\x6a\x16\x2c\x3c\xb2\xd7\x98\xcf\xff\xdd\xcd\x75\x4c\x56\xf9\x62\xc5\x5e\x86\x41\x82\xe8\xc1\xb0\xcd\x28\x1c\xf4\x6d\x8b\xf7\x91\x4d\x0c\x83\xec\xaf\xf7\xfb\x93\xc1\x5d\x97\x51\x99\x38\xfe\xea\x8e\x7d\x0c\xbd\x15\x7e\x5e\xdf\x24\x3e\x25\xd0\x43\xaa\xe9\xde\x23\xf5\xaf\x34\x52\xf0\xad\xdb\xd2\x2d\xdd\x7f\x00\x00\x00\xff\xff\xfe\xba\x02\x6d\x94\x01\x00\x00") + +func examplesMeteorMeteorServiceJsonBytes() ([]byte, error) { + return bindataRead( + _examplesMeteorMeteorServiceJson, + "examples/meteor/meteor-service.json", + ) +} + +func examplesMeteorMeteorServiceJson() (*asset, error) { + bytes, err := examplesMeteorMeteorServiceJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/meteor/meteor-service.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesMeteorMongoPodJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x92\x3f\x4f\xc3\x40\x0c\xc5\xf7\x7c\x0a\xcb\x33\xa8\x14\x21\x55\xca\xcc\x0a\xca\x80\x58\x50\x07\x37\x67\xc2\xa9\xc9\x39\xca\xb9\x15\x08\xdd\x77\x47\x4e\x4b\x7a\xe1\x4f\x05\x53\xa2\xe7\xe7\xdf\xf3\x59\x7e\x2f\x00\x70\xeb\x83\xc3\x12\xb0\x12\x87\x17\x26\x50\xef\x1f\x79\x88\x5e\x82\xc9\xfb\xe5\x41\xed\x58\xc9\x91\x12\x96\x60\x6d\x00\x18\xa8\x63\x73\x74\x12\x1a\x19\x4d\x00\xd8\xd2\x86\xdb\x38\x99\x7e\xb1\x01\xe0\x20\x6d\x26\x8f\x6a\x2a\x00\xd2\x18\x16\x7b\xae\x4f\x41\x7b\x69\x77\x1d\x1b\xf4\xe9\xd8\xfd\x09\xff\x8a\xbf\x74\x3e\x6e\xa7\x0c\x00\x6c\x6a\xae\xec\x2d\x51\x39\xe8\xad\x15\xcb\xac\x19\x00\x7b\x77\x7f\x0e\x00\x80\xcf\xf1\xe1\xad\x1f\x1d\xfc\xaa\x37\x38\x95\x52\x91\x7f\xd7\xc7\xf7\xd7\x12\x94\x7c\xe0\xe1\x2f\xe3\xe6\x93\xfa\x8e\x9a\x53\xa5\x6c\x49\x39\x6a\x6e\xe8\x65\xd0\x1c\x3a\x07\x9f\x85\xcf\x27\xab\x64\x50\x2c\xe1\x7a\x75\xb5\x5c\x65\x96\x34\xfd\xaf\xb3\xd4\xc3\xee\xef\x64\x17\xfe\x15\xfe\x7d\x8f\x76\x42\x46\xa9\x48\x5f\xcc\xb6\xb0\x63\x5a\xb8\x0d\xfe\x3c\xc2\x7c\xb9\x76\x18\x45\x2a\x3e\x02\x00\x00\xff\xff\xa8\xd4\xbb\xa1\xb0\x02\x00\x00") + +func examplesMeteorMongoPodJsonBytes() ([]byte, error) { + return bindataRead( + _examplesMeteorMongoPodJson, + "examples/meteor/mongo-pod.json", + ) +} + +func examplesMeteorMongoPodJson() (*asset, error) { + bytes, err := examplesMeteorMongoPodJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/meteor/mongo-pod.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesMeteorMongoServiceJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8e\xbd\x0a\xc2\x30\x14\x85\xf7\x3c\xc5\xe1\xce\x1d\xac\x4b\xa1\x4f\x21\x08\x2e\xe2\x70\x6d\x2f\x25\x98\x26\x25\xb9\x74\x91\xbe\xbb\xa4\x3f\x56\x50\xd7\xf3\xf3\x9d\xf3\x34\x00\x3d\xac\x6f\xa9\x06\x9d\x25\x8e\xb6\x11\x2a\xb2\xc8\x83\xbd\x48\x4c\x36\xf8\x6c\x8d\xe5\xa2\xf6\xa2\xdc\xb2\x32\xd5\xc8\x55\x80\x3c\xf7\x92\x13\x7d\xf0\x5d\x98\x43\x00\x39\xbe\x8b\x4b\xef\xd0\x57\x6c\x56\x27\x03\x4c\x33\x35\x0d\xd2\xec\xc4\x21\x44\xcd\xdd\xeb\xda\xdd\x18\xab\x45\x35\x8e\xd5\xa1\xac\x8a\x5d\x56\x8e\x9d\xe8\x69\x31\x3f\x27\x96\x11\xe0\xb6\xfe\x4a\xe2\xa4\xd1\x10\xff\x3f\xdb\xa8\x14\x83\xfb\x79\xd8\x4c\xe6\x15\x00\x00\xff\xff\xcd\x96\x67\x70\x35\x01\x00\x00") + +func examplesMeteorMongoServiceJsonBytes() ([]byte, error) { + return bindataRead( + _examplesMeteorMongoServiceJson, + "examples/meteor/mongo-service.json", + ) +} + +func examplesMeteorMongoServiceJson() (*asset, error) { + bytes, err := examplesMeteorMongoServiceJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/meteor/mongo-service.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesMysqlCinderPdMysqlServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xcd\x6a\xc4\x30\x0c\x84\xef\x7e\x8a\x81\x9e\x0b\x2d\x0b\x3d\xf8\x35\x0a\xbd\xab\xf6\x84\x98\xf5\x4f\x2a\x29\x81\x7d\xfb\x12\x6f\x2f\xa1\x17\xe3\x11\xdf\xe8\x43\xb2\x95\x2f\xaa\x95\xd1\x23\x8e\xf7\x70\x2f\x3d\x47\x7c\x52\x8f\x92\x18\x1a\x5d\xb2\xb8\xc4\x00\x54\xf9\x66\xb5\xf3\x07\x74\x69\x8c\x68\x0f\xfb\xa9\xe1\x9a\x6c\x63\x3a\x99\x6d\xa8\xff\xc1\x2f\xf0\x95\x73\x00\x5f\xe5\x7c\x8a\xc1\x9e\x06\xd8\x3a\xf6\x9a\x67\x24\x46\x9f\x85\xd7\x09\x47\xdc\x6e\x6f\x1f\xe1\xec\x4f\x35\xee\x7c\x18\xa4\x67\x1c\x52\x77\xda\x73\x59\xdb\xcd\xd1\xc4\xd3\x8a\xd2\x31\x34\x53\xe1\x03\xca\xc4\x72\x10\xae\xb2\x2c\x25\x61\x19\x7a\xf1\x06\xc0\x58\x99\x7c\xe8\xbf\x8b\x7e\x03\x00\x00\xff\xff\xd9\x0f\xdd\x07\x12\x01\x00\x00") + +func examplesMysqlCinderPdMysqlServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesMysqlCinderPdMysqlServiceYaml, + "examples/mysql-cinder-pd/mysql-service.yaml", + ) +} + +func examplesMysqlCinderPdMysqlServiceYaml() (*asset, error) { + bytes, err := examplesMysqlCinderPdMysqlServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/mysql-cinder-pd/mysql-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesMysqlCinderPdMysqlYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x4f\x6f\x9b\x40\x10\xc5\xef\x7c\x8a\x51\x7a\xac\xb6\x26\x89\x9d\x54\x7b\xab\x94\x4b\xa5\x46\x76\xe3\xa8\x55\x4f\xd1\xb0\x3b\xc0\xaa\xfb\x87\xee\x0e\xb8\xfe\xf6\x15\x86\x90\x75\x7d\x09\xc7\x37\x6f\x7e\xef\x0d\x80\x9d\xf9\x41\x31\x99\xe0\x25\x0c\xd7\xc5\x6f\xe3\xb5\x84\x5d\xd0\x85\x23\x46\x8d\x8c\xb2\x00\xf0\xe8\x48\x82\x3b\xa6\x3f\xb6\x00\xb0\x58\x91\x4d\xa3\x7e\x3e\x49\x1d\xa9\x51\x55\xc1\x33\x1a\x4f\x71\xf6\x08\x88\x94\x42\x1f\x15\xcd\xc2\xf8\x58\xe3\x0c\x27\x78\x13\x00\x54\xd7\x4b\x28\x3f\x6d\x66\xc9\x38\x6c\xb2\xd4\xff\xd3\x26\x05\x63\x93\x41\x05\x5c\x09\x61\x1a\x1f\x22\x09\x5d\x09\x6d\xe2\x55\x3e\xb3\x21\xf1\xc7\x3a\xf4\x5e\xbf\xca\xe4\x87\x7c\x7b\xe2\x3f\xfe\xda\x7f\xff\xf6\xf2\xb4\xdd\x3e\xbf\xec\xbe\xec\xf7\x3f\xb7\x4f\x0f\x59\xcb\x0f\xa0\x5a\xf4\x0d\x01\xb7\x26\x65\xfa\x80\xb6\x27\x09\xc7\xd0\xc7\x0e\x53\x3a\x84\xa8\xe7\x69\x17\x22\x9f\x95\x5c\x5e\xd0\x2e\x44\x96\x70\x7b\x5b\xde\x65\xa0\xcb\x23\x87\x60\x7b\x47\x8f\xa1\xf7\x39\x67\xac\x32\x7a\xc1\xf5\x89\xc1\x21\xab\x16\xb8\xa5\xd9\x3d\x8d\x2a\xb2\xe1\x70\x71\xe0\x89\x2d\xba\xf1\xb3\x27\x26\xcf\x22\x71\x88\xd8\xd0\x19\xda\x8d\x71\xd0\x21\xb7\x70\x30\xdc\x1a\x7f\x82\x2f\xd5\x33\xef\xc9\xb9\x43\x6e\x25\xac\x06\x8c\x2b\x6b\xaa\xd5\x6b\xfd\xa9\xcc\xf2\x23\xbc\x2b\x5f\x19\xaf\x29\xbe\x1d\x3a\x31\xbe\x3e\x48\xa8\xf4\xe7\x9b\xfa\x9e\x6e\xc4\x81\x14\x89\xb5\x2a\xaf\x05\x6e\xca\x8d\x58\xa3\xaa\xef\xca\xaa\xbc\xaf\xd7\xb8\xac\xd5\xe9\xf9\xd8\x91\x04\xfa\xcb\xeb\xe2\x5f\x00\x00\x00\xff\xff\xfe\x1b\xd2\x60\xe7\x02\x00\x00") + +func examplesMysqlCinderPdMysqlYamlBytes() ([]byte, error) { + return bindataRead( + _examplesMysqlCinderPdMysqlYaml, + "examples/mysql-cinder-pd/mysql.yaml", + ) +} + +func examplesMysqlCinderPdMysqlYaml() (*asset, error) { + bytes, err := examplesMysqlCinderPdMysqlYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/mysql-cinder-pd/mysql.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesMysqlWordpressPdOwners = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\x41\x4e\x03\x31\x0c\x45\xf7\x39\x45\x2e\x60\x89\xae\x90\xd8\x73\x01\x6e\xe0\x49\x7e\x89\x3b\x89\x1d\x39\x9d\x0c\xf4\xf4\x28\xa8\x6c\xd8\x59\xb6\xde\xb3\x1e\xf7\xee\x36\xe1\xe3\x2d\x50\xbc\xe1\x7a\x6d\xd0\x6c\x0f\x0e\x8e\x29\x38\x9f\x87\x7b\xb1\xb4\x8b\x06\x8a\x95\x27\x57\x6e\x3d\x50\xdc\x1c\x9a\x59\xf3\x76\xb8\x8e\x40\x31\x31\x06\xfb\xd7\x91\x0a\x5b\xa0\xd8\x64\x47\x66\xc5\x40\xa0\x98\x79\x4a\xb6\xbe\xb0\xde\xcc\xe5\x77\x97\x0a\xf4\x72\x79\x79\x5d\x9f\x59\x71\xdf\x8f\xc5\xb9\x6d\xf0\x7b\xd9\x58\x2a\xbe\x03\x45\x74\x76\x59\xfe\x76\x0a\xea\xe7\xb1\xc6\x5b\xb5\x33\xc3\x9b\xd4\xfd\x4f\x4e\x2d\x35\x2e\xa6\xcf\x8c\xc9\x9a\xf0\x2f\x89\xe2\x87\xa4\x22\x78\x1f\x89\x1d\x8f\xf0\x13\x00\x00\xff\xff\xbb\x7d\x21\x60\xfc\x00\x00\x00") + +func examplesMysqlWordpressPdOwnersBytes() ([]byte, error) { + return bindataRead( + _examplesMysqlWordpressPdOwners, + "examples/mysql-wordpress-pd/OWNERS", + ) +} + +func examplesMysqlWordpressPdOwners() (*asset, error) { + bytes, err := examplesMysqlWordpressPdOwnersBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/mysql-wordpress-pd/OWNERS", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesMysqlWordpressPdGceVolumesYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x8f\x4d\x6a\xc3\x30\x10\x46\xf7\x73\x8a\xb9\x80\xa0\x36\x5d\x69\x5d\xe8\xaa\x3f\x94\xe2\xae\x07\xe9\xab\x11\xae\x25\xa1\x99\x3a\xf1\xed\x83\xe3\x45\x20\xd9\x06\xb2\x1b\xbe\x79\xf0\x78\x52\xd3\x80\xa6\xa9\x64\xcf\x4b\x47\x53\xca\xd1\xf3\xe7\xb6\xa8\x21\xdb\x50\xfe\xfe\x67\xd0\x0c\x93\x28\x26\x9e\x98\xb3\xcc\xf0\x7c\x28\x2d\xd6\x06\x55\x57\x17\xd7\x91\x56\x84\xed\x19\xa4\x4a\x48\xb6\x6e\x37\xb3\x5a\x69\x32\xc2\x73\xff\xf4\x9a\x88\x59\x42\x80\xea\x5b\x89\xd0\x1d\x70\xfc\x05\x89\x3f\x2d\x19\x3e\x72\x00\x31\x8f\x01\x17\xfb\x4b\xd2\x69\x07\x6b\x7c\xbf\xd2\x76\xe7\xfd\x57\xbf\xd7\x0a\xcf\x38\xda\x33\x39\xe7\xe8\x2e\x3d\xfd\x03\x7a\xfa\xdb\x9e\x53\x00\x00\x00\xff\xff\xdf\x70\x54\x28\x9c\x01\x00\x00") + +func examplesMysqlWordpressPdGceVolumesYamlBytes() ([]byte, error) { + return bindataRead( + _examplesMysqlWordpressPdGceVolumesYaml, + "examples/mysql-wordpress-pd/gce-volumes.yaml", + ) +} + +func examplesMysqlWordpressPdGceVolumesYaml() (*asset, error) { + bytes, err := examplesMysqlWordpressPdGceVolumesYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/mysql-wordpress-pd/gce-volumes.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesMysqlWordpressPdLocalVolumesYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x8f\x3d\x4e\xc0\x30\x0c\x85\x77\x9f\xe2\x5d\x20\x2a\xed\x98\x0b\x30\x21\x2a\x86\x32\x9b\xc4\xa2\x11\xf9\x53\x6d\x2a\xf5\xf6\x28\x14\x4e\xc0\xc2\x66\xbd\xcf\x7a\x7a\x1f\xf7\xb4\xc9\xa1\xa9\x55\x8f\x73\xa6\x8f\x54\xa3\xc7\x3a\x12\x35\xa9\xb6\xb5\xfc\x59\x84\x8a\x18\x47\x36\xf6\x04\x54\x2e\xe2\x91\x5b\xe0\xec\xfa\xe9\x66\x02\x32\xbf\x49\xd6\x01\x01\xbb\xfa\x2f\x26\xed\x12\x46\x1a\xb8\x73\x48\x76\xdd\x1f\x6a\xed\xe0\x77\xf1\x58\x1e\x1e\x13\x01\x1c\x82\xa8\x3e\xb5\x28\x3f\x15\x0e\x2f\xc2\xf1\xf5\x48\x26\xcf\x35\x08\x01\x7b\x53\x5b\xd9\xf6\x9b\xf7\x71\x61\xb2\xd2\xa7\x31\x6a\xfa\x5e\xe1\x9c\xa3\x3f\xcb\x2c\xff\x42\x66\xa1\xaf\x00\x00\x00\xff\xff\xa6\x2c\xee\xa7\x96\x01\x00\x00") + +func examplesMysqlWordpressPdLocalVolumesYamlBytes() ([]byte, error) { + return bindataRead( + _examplesMysqlWordpressPdLocalVolumesYaml, + "examples/mysql-wordpress-pd/local-volumes.yaml", + ) +} + +func examplesMysqlWordpressPdLocalVolumesYaml() (*asset, error) { + bytes, err := examplesMysqlWordpressPdLocalVolumesYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/mysql-wordpress-pd/local-volumes.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesMysqlWordpressPdMysqlDeploymentYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x53\xcd\x6e\xdb\x3c\x10\xbc\xeb\x29\x16\xf8\xbe\x2b\xe3\xa4\x41\x73\x10\xd0\x43\xd1\xa0\x45\xd1\x26\x76\xed\x22\x41\x4f\xc1\x9a\x9e\x38\x84\xf9\xa3\x90\x2b\x25\x7e\xfb\x82\xb2\xad\xd2\x8d\x5a\xe4\x50\x9e\xa4\xe5\x70\x76\x67\x77\x87\x1b\x73\x83\x98\x4c\xf0\x35\x75\x67\xd5\xc6\xf8\x55\x4d\x0b\xc4\xce\x68\x54\x0e\xc2\x2b\x16\xae\x2b\x22\xcf\x0e\x35\x3d\x85\xb8\x6a\x22\x52\x52\x6e\x9b\x1e\x6d\x45\x64\x79\x09\x9b\x32\x82\x88\x9b\xa6\x80\x54\xa9\x81\xce\x17\x4d\x88\xb2\x47\xa8\xfe\xa7\xa6\xf3\xf3\xd3\x8b\x8a\x28\xc1\x42\x4b\x88\xa3\xcf\x73\x48\x0c\x62\x4d\x87\x5c\xda\xb6\x49\x10\x3f\xcf\x6a\xba\x0e\x1e\x95\x52\xaa\x1a\x15\x30\xcb\x91\x24\xf0\x72\x13\x6c\xeb\xf0\xc1\xb2\x71\x23\x72\x7a\x62\xd5\x74\x4a\xf7\x80\x57\xa9\x61\xad\x91\xd2\x55\x58\x61\xd0\x34\x07\xaf\x6e\xa3\x11\x4c\xbd\x46\x45\x14\x91\x42\x1b\xf5\x01\x10\xf1\xd8\x22\x1d\x5a\x40\x94\x24\x44\x5e\xa3\xa6\x37\xa7\x9f\xcc\x0b\x11\x78\x16\xf8\xfc\x99\x26\xdd\xd9\x12\xc2\x07\x51\x97\x68\x6c\xd8\x3a\x78\xf9\x57\x83\x49\x12\x59\xb0\xde\xee\x40\xb2\x6d\x50\xd3\x1c\x3a\x82\x25\xcb\x10\xb8\xc6\xb2\x60\x77\x5d\xe6\xcc\xa7\xe4\xff\xc3\xf4\x5e\x4e\x90\xe8\x90\x3b\x1f\x1d\xbc\xb0\xf1\x88\x03\x8d\x22\xe3\xfa\xd6\xf4\x0f\xea\xb7\x27\x17\x03\x51\x31\xb1\x21\x06\xdf\xfd\x2a\x80\xe8\x3f\xfa\x9f\x36\xed\x12\x5a\x2c\xed\x54\x50\xca\x72\x84\xd6\xf0\x88\x46\x1f\x06\xce\x29\x91\x52\xf7\x31\x38\x75\x6f\x2c\xde\xe5\x40\x2e\xfd\x44\x9e\xe5\x88\xcf\xf1\x06\x94\xda\x08\x2a\x21\xb4\x0a\x48\xe4\x83\xd0\x03\x77\x20\x26\x89\x6c\xac\xf1\x6b\xf2\x78\xb2\xc6\x63\xe0\x50\xfb\xb2\xaf\x7e\x2c\xbe\x7d\xbd\x9b\x4f\xa7\xdf\xef\x66\xef\x17\x8b\xdb\xe9\xfc\xb2\xc8\xd3\xb1\x6d\xf1\x31\x06\x57\x8a\xa1\x7d\xed\x5f\xb0\x9d\xe3\xfe\xf8\xe6\xb7\xfd\xe5\xa2\xdf\xbb\xb3\xc1\xb6\xa6\x51\x55\x85\x19\x77\x05\x0e\x43\x98\x95\xce\xfc\x5b\xd7\xbb\xde\x53\x57\xa1\xf5\xc7\x4c\x47\x35\x0d\x0e\x54\xfb\x75\x2f\x48\x5d\x7e\x3a\x63\x79\xa8\x69\xd2\x71\x9c\x58\xb3\x9c\x94\x29\x76\x09\x8a\xa5\x78\x25\x73\x33\x66\xfb\xb2\x73\xbd\xcd\xaf\xc7\xac\xff\x33\x00\x00\xff\xff\xc6\xad\xcc\x97\x08\x05\x00\x00") + +func examplesMysqlWordpressPdMysqlDeploymentYamlBytes() ([]byte, error) { + return bindataRead( + _examplesMysqlWordpressPdMysqlDeploymentYaml, + "examples/mysql-wordpress-pd/mysql-deployment.yaml", + ) +} + +func examplesMysqlWordpressPdMysqlDeploymentYaml() (*asset, error) { + bytes, err := examplesMysqlWordpressPdMysqlDeploymentYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/mysql-wordpress-pd/mysql-deployment.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesMysqlWordpressPdWordpressDeploymentYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x53\x4d\x6f\xdb\x30\x0c\xbd\xfb\x57\xf0\x0f\x28\x49\x87\x1d\x0a\xdd\xd6\x65\x1f\xc0\xd6\x25\x88\x87\xf6\x58\xb0\xf2\x6b\x63\xd4\x96\x54\x89\x71\xea\x7f\x3f\xc8\x8e\x5d\xb7\xc9\xbe\x50\x9e\x12\x92\x7e\xe4\x7b\xd4\x63\x5f\x5e\x21\xc4\xd2\x59\x4d\xcd\x59\xf6\x50\xda\x42\x53\x8e\xd0\x94\x06\x59\x0d\xe1\x82\x85\x75\x46\x64\xb9\x86\xa6\xbd\x0b\x85\x0f\x88\x31\x23\xaa\xf8\x16\x55\x4c\x35\x22\xf6\x7e\x5a\x8c\x1e\x26\x15\xbc\x0b\x72\xe8\x50\xdd\x1f\x4d\xe7\x8b\x8c\x28\xa2\x82\x11\x17\x4e\x7e\x9c\x52\x52\x22\x68\xba\x0b\xce\x0a\x6c\x91\x11\x49\xeb\xa1\xe9\xbb\xe3\xe2\x82\x2b\xb6\x06\x21\x53\x4a\x65\x27\xd7\x5f\xa7\x4c\x14\x58\xb9\x72\xd5\xae\xc6\xc7\x8a\xcb\xfa\x14\x19\xaf\x7c\xa3\x4c\x57\xfd\x27\x3a\x6c\x0c\x62\xbc\x74\x05\x46\x52\x1b\x70\x71\x1d\x4a\xc1\xca\x1a\x64\x44\x01\xd1\xed\x82\x19\x1a\x02\x1e\x77\x88\x83\x06\x44\x51\x5c\xe0\x7b\x68\x7a\xb7\xf8\x52\x1e\x31\xc0\x93\xc0\xa6\x9f\x71\xde\x9c\xdd\x42\x78\x60\xb4\x84\xaf\x5c\x5b\xc3\xca\xdb\x6f\x12\x25\xb0\xe0\xbe\xed\x9b\x7a\x5d\x37\x30\x01\x2c\x89\x80\xa0\xf6\x15\x0b\xfa\xf2\x74\x5a\x8a\x29\xfe\x6f\x4e\x77\xf2\x7c\x44\xc3\xf8\x14\xc6\x59\xe1\xd2\x22\x8c\x48\x8a\xca\xba\xd3\x65\xc4\xd2\xef\x67\xe7\xb3\x85\x62\xcf\x66\x8b\x11\xf8\x98\x71\x1f\xb0\xcd\xf3\x52\xea\xd0\x76\xbd\xda\x2c\xd7\x9b\x4f\x79\x7e\xb3\xbc\xb8\xf9\xba\xca\x7f\x8e\x1d\x44\x0d\x57\xbb\x29\x92\xaa\xdb\xf8\x58\xfd\x19\x62\xfd\x21\xcf\x53\xe2\x35\xcc\xe7\xe0\x6a\x3d\x49\xa6\xf7\x6d\x02\xe4\x1b\xda\x0d\xee\x5e\x56\x06\x0a\xdd\x38\xe5\x79\xc2\xa1\x8f\x07\xb4\x9a\x52\x3e\xad\x36\x93\x27\x19\xeb\x13\x33\xf5\x2b\x8e\x32\xae\x9f\x9d\xf5\x37\xa1\x9a\xce\x11\x97\x6e\x67\x5f\x62\xbd\xea\x57\x7e\xf4\x90\x3a\xbc\xd9\x09\x78\x9d\x3e\x5f\xb3\x6c\x35\xcd\x1b\x0e\xf3\xfd\x7e\x3f\xdf\x4a\x3d\xc8\xd7\xcf\x98\xdc\xf6\x3f\xc0\xfd\x29\xef\x4e\x25\xec\xec\xfa\xe3\xc8\xbf\xbf\x02\x00\x00\xff\xff\x4b\x7a\xd6\xc0\xc8\x04\x00\x00") + +func examplesMysqlWordpressPdWordpressDeploymentYamlBytes() ([]byte, error) { + return bindataRead( + _examplesMysqlWordpressPdWordpressDeploymentYaml, + "examples/mysql-wordpress-pd/wordpress-deployment.yaml", + ) +} + +func examplesMysqlWordpressPdWordpressDeploymentYaml() (*asset, error) { + bytes, err := examplesMysqlWordpressPdWordpressDeploymentYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/mysql-wordpress-pd/wordpress-deployment.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesNewrelicConfigToSecretSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x92\x61\x4b\xdc\x4c\x10\xc7\xdf\xe7\x53\xfc\x9f\x8b\xa0\xc2\x5d\xce\x47\xc4\x17\x2d\x2d\xc4\xf3\x4a\x83\x92\x03\x73\x56\x84\x82\x6c\x36\x73\xc9\x40\xb2\x9b\xee\x4e\x2e\x1e\xea\x77\x2f\xc9\x29\xd5\x36\x2f\x67\x7e\x99\xfd\xed\x7f\x27\xfc\x6f\x9e\xb3\x99\xe7\xca\x57\x41\x10\x62\x61\xdb\x9d\xe3\xb2\x12\x9c\x9e\xfc\x7f\x86\x75\x45\xb8\xea\x72\x72\x86\x84\x3c\xe2\x4e\x2a\xeb\x7c\x14\x84\x41\x88\x6b\xd6\x64\x3c\x15\xe8\x4c\x41\x0e\x52\x11\xe2\x56\xe9\x8a\xde\x3a\x53\xfc\x20\xe7\xd9\x1a\x9c\x46\x27\x38\x1a\x80\xc9\x6b\x6b\x72\xfc\x39\x08\xb1\xb3\x1d\x1a\xb5\x83\xb1\x82\xce\x13\xa4\x62\x8f\x0d\xd7\x04\x7a\xd4\xd4\x0a\xd8\x40\xdb\xa6\xad\x59\x19\x4d\xe8\x59\xaa\xf1\x98\xd7\x21\x51\x10\xe2\xfe\x75\x84\xcd\x45\xb1\x81\x82\xb6\xed\x0e\x76\xf3\x9e\x83\x92\x51\x78\xf8\x2a\x91\xf6\xd3\x7c\xde\xf7\x7d\xa4\x46\xd9\xc8\xba\x72\x5e\xef\x41\x3f\xbf\x4e\x16\xcb\x34\x5b\xce\x4e\xa3\x93\xf1\x97\x5b\x53\x93\xf7\x70\xf4\xab\x63\x47\x05\xf2\x1d\x54\xdb\xd6\xac\x55\x5e\x13\x6a\xd5\xc3\x3a\xa8\xd2\x11\x15\x10\x3b\xf8\xf6\x8e\x85\x4d\x39\x85\xb7\x1b\xe9\x95\xa3\x20\x44\xc1\x5e\x1c\xe7\x9d\x7c\x08\xeb\xcd\x8e\xfd\x07\xc0\x1a\x28\x83\x49\x9c\x21\xc9\x26\xb8\x88\xb3\x24\x9b\x06\x21\xee\x92\xf5\xf7\xd5\xed\x1a\x77\xf1\xcd\x4d\x9c\xae\x93\x65\x86\xd5\x0d\x16\xab\xf4\x32\x59\x27\xab\x34\xc3\xea\x1b\xe2\xf4\x1e\x57\x49\x7a\x39\x05\xb1\x54\xe4\x40\x8f\xad\x1b\xfc\xad\x03\x0f\x31\x52\x31\x64\x96\x11\x7d\x10\xd8\xd8\xbd\x90\x6f\x49\xf3\x86\x35\x6a\x65\xca\x4e\x95\x84\xd2\x6e\xc9\x19\x36\x25\x5a\x72\x0d\xfb\xe1\x31\x3d\x94\x29\x82\x10\x35\x37\x2c\x4a\xc6\xca\x3f\x97\x8a\x86\x5d\x5a\x1a\x6d\x0b\xf2\x63\x9d\xcc\x96\x9d\x35\x0d\x19\xc1\x56\x39\x1e\xf2\xf3\x60\x23\x16\xea\xfd\x86\x79\xd2\x8e\x24\x0a\x82\x8b\x38\x5b\x9e\x9f\x3d\x2c\xd3\xc5\x97\x83\x23\xad\x04\xc6\x69\x6b\x36\x5c\x46\x64\xb6\x78\x46\xae\x3c\x9d\x9f\xe1\x19\xe2\x30\x2b\x70\xf8\xd3\x1c\x1e\x07\xc3\x36\xce\x08\x13\x1f\x3e\x3d\xed\xe9\x87\x42\x89\x7a\x79\x09\x0f\x9e\xfe\x0c\x7c\x09\xcb\x09\xa2\xb9\xa1\xde\x51\xcd\x7a\xb6\x27\x67\x42\x4d\x5b\x2b\xa1\x68\xa7\x9a\x1a\x5f\xf1\x57\x7f\x2c\x07\xbf\x03\x00\x00\xff\xff\x03\x36\x3f\xab\x2f\x03\x00\x00") + +func examplesNewrelicConfigToSecretShBytes() ([]byte, error) { + return bindataRead( + _examplesNewrelicConfigToSecretSh, + "examples/newrelic/config-to-secret.sh", + ) +} + +func examplesNewrelicConfigToSecretSh() (*asset, error) { + bytes, err := examplesNewrelicConfigToSecretShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/newrelic/config-to-secret.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesNewrelicNewrelicConfigTemplateYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xca\x31\x0a\x82\x31\x0c\x47\xf1\x3d\xa7\xc8\x05\x1c\x5c\x73\x09\x07\xc1\x55\x42\xfb\x57\x82\x36\xad\x35\x2a\x52\x7a\x77\x91\xf2\x6d\x0f\x7e\x4f\x9b\x9d\xd0\x9f\x56\x5d\xf8\xbd\xa7\x9b\x79\x16\x3e\x22\x75\x04\x15\x84\x66\x0d\x15\x62\x76\x2d\x10\x76\x7c\x3a\xee\x96\x76\xa9\xfa\xc5\xae\x14\xdf\x06\xe1\x43\xd3\xc7\x0b\xb4\xad\xcb\x84\xc7\x58\x75\xfe\xc3\x9c\xf4\x0b\x00\x00\xff\xff\x3d\x28\x16\x29\x6b\x00\x00\x00") + +func examplesNewrelicNewrelicConfigTemplateYamlBytes() ([]byte, error) { + return bindataRead( + _examplesNewrelicNewrelicConfigTemplateYaml, + "examples/newrelic/newrelic-config-template.yaml", + ) +} + +func examplesNewrelicNewrelicConfigTemplateYaml() (*asset, error) { + bytes, err := examplesNewrelicNewrelicConfigTemplateYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/newrelic/newrelic-config-template.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesNewrelicNewrelicConfigYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xce\x31\x4e\xc5\x30\x10\x84\xe1\xde\xa7\x18\xc9\x75\x82\x90\x10\x85\x2f\x41\x01\xa2\x77\xec\x09\x59\xbd\x64\x1d\xbc\x9b\xf7\x94\xdb\x23\x91\x02\xfa\xf9\x34\x7f\xc4\xc7\x22\x86\x59\x56\xc2\x96\x76\xac\x15\x13\xd1\xee\xec\x8f\x2e\xee\x54\x4c\x27\xc6\xa7\xd2\x74\x96\xaf\xc1\xdb\x60\x2c\x9d\x3e\xda\x12\xfe\x53\x31\x88\x62\x5f\x73\x21\xbc\xc1\xb2\x8b\xcd\x27\x7c\x21\x6e\xc7\xc4\xae\x74\x1a\x6a\x2b\xc7\x46\xf5\xec\xd2\x14\x4e\x73\x1b\x43\x88\xc8\xbb\x7c\xb2\x9b\x34\x4d\xb8\x3f\x87\x88\x9b\x68\x4d\x78\xff\xbd\x0a\x11\x1b\x3d\xd7\xec\x39\x85\x08\x40\xf3\xc6\x04\xe5\xa3\x73\x95\x32\x5c\x69\x21\xc2\xcf\x9d\x09\x6f\x7b\xfe\x3e\x18\x22\xfe\xc0\xb5\x48\x98\xb2\xf1\xf5\x05\xd4\xd2\x2a\x6b\xf8\x09\x00\x00\xff\xff\x6e\x18\x35\x86\xfb\x00\x00\x00") + +func examplesNewrelicNewrelicConfigYamlBytes() ([]byte, error) { + return bindataRead( + _examplesNewrelicNewrelicConfigYaml, + "examples/newrelic/newrelic-config.yaml", + ) +} + +func examplesNewrelicNewrelicConfigYaml() (*asset, error) { + bytes, err := examplesNewrelicNewrelicConfigYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/newrelic/newrelic-config.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesNewrelicNewrelicDaemonsetYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4f\x6f\xdb\x3e\x0c\xbd\xfb\x53\x10\xfe\x01\x3d\xfd\x5c\x2f\x87\x5d\x7c\x6d\x56\xa0\x87\xa6\xc1\x02\x0c\x18\x86\x61\x50\x64\xc6\x11\x22\x8b\x1e\x45\xb9\xcd\xb7\x1f\x94\x3f\x8b\xec\x18\xc9\x78\x28\x9a\x27\x3e\xbe\x97\x47\x46\x75\xe6\x1b\xb2\x37\xe4\x2a\xc0\x0f\x41\x17\xff\xf5\x65\x3f\x5b\xa3\xa8\x59\xb6\x33\xae\xae\x60\xae\xb0\x25\xb7\x42\xc9\x5a\x14\x55\x2b\x51\x55\x06\xe0\x54\x8b\x15\x38\x7c\x67\xb4\x46\x17\xaa\x41\x27\x19\x80\x55\x6b\xb4\x3e\x36\x00\x88\x41\xae\xa0\x25\x67\x84\xd8\xb8\xe6\x00\xaa\xae\x9b\xa0\x01\xf4\x67\x1f\xfd\x2c\xf3\x1d\xea\x38\x42\xb0\xed\xac\x12\x3c\x8e\x4b\xd5\x63\xa5\x52\xb1\x86\x8e\x0e\xf0\x79\x50\xac\xff\xe0\xd9\x58\x41\x06\xa1\x03\x6e\x36\x46\x83\xa3\x1a\xfd\xa5\x23\x7e\x5c\xa1\x45\x2d\xc4\x17\x74\xe8\xf9\x04\x6f\xc9\xcb\xf2\x65\x5e\x81\x70\xc0\x04\x7b\x59\x3e\x5d\x61\x0b\x94\x77\xe2\xdd\x00\xd7\xe4\x44\x19\x87\x9c\x7c\x83\x02\x18\x3d\x05\xd6\x98\x80\xb1\x18\x7f\x07\xf4\x32\x42\x01\x74\x17\x2a\xf8\xf4\x38\xfb\x9c\xe0\x1e\x75\x60\x23\xfb\x27\x72\x82\x1f\x32\xa4\x74\x6c\x7a\x63\xb1\xc1\x7a\x60\x26\x16\xba\x7e\xd8\x5b\x9c\x12\x5d\x7c\x5d\x7d\x5f\xbd\xbe\x2d\xe6\xbf\x2c\x35\x1b\x63\x71\x64\xa2\x57\x36\x60\x05\x79\xd9\x2b\x2e\x2d\x35\xa5\x63\xbf\xf7\x2d\xb9\xfa\xd1\x52\x93\x27\xdd\xa6\x55\x4d\xb2\xa2\x4b\x63\xd2\x33\xb1\xc5\x73\x60\x6d\xab\xe2\x3d\xfe\x80\x7c\xad\xfc\x36\xff\x1f\xf2\x42\xc7\xbf\xc7\xc8\xa0\x44\xd1\xe5\x2e\xac\xb1\xf8\x2b\xa0\xc9\x6d\x4c\x03\x0f\x0f\x50\x06\xcf\xa5\x5f\x1b\x77\x11\x85\xe2\x0b\x14\xcf\x39\xfc\x4c\x44\x7a\xb2\xa1\xc5\x57\x0a\x6e\x1c\x76\x31\xbe\xf8\xe3\xec\x51\x16\x6d\x64\x2e\x95\x6c\xab\x09\x3b\xa3\x5e\x46\x55\xbf\x39\xbb\xbf\xda\xc4\x45\xac\xc6\xfe\x86\xc0\xf8\xf5\xcc\xe2\xe0\x6e\xb0\xe2\x96\x38\xb8\xb2\x26\xbd\x43\x7e\xf4\xa4\x77\x93\x53\xfc\xde\xdf\x98\x32\x7e\x3d\xb3\x2c\xdd\x8a\xe4\x74\x21\x59\x1a\xf6\xe0\xfe\xef\x65\xec\x51\x33\x8e\x6e\xfa\x88\x2d\x6e\x32\xa7\x03\x3d\xfc\x86\xa3\xb3\x91\xe5\xee\x3a\xdf\xe9\x6c\xef\x0c\xb8\x17\x35\x80\xec\x3b\xac\x60\x15\xdf\xe5\x4a\x6b\x98\xf1\x1d\xad\xb4\x79\x7a\x19\xff\x60\x36\x12\xfe\x04\x00\x00\xff\xff\x64\x37\x45\x37\x14\x06\x00\x00") + +func examplesNewrelicNewrelicDaemonsetYamlBytes() ([]byte, error) { + return bindataRead( + _examplesNewrelicNewrelicDaemonsetYaml, + "examples/newrelic/newrelic-daemonset.yaml", + ) +} + +func examplesNewrelicNewrelicDaemonsetYaml() (*asset, error) { + bytes, err := examplesNewrelicNewrelicDaemonsetYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/newrelic/newrelic-daemonset.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesNewrelicNrconfigEnv = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xad\x28\xc8\x2f\x2a\x51\xf0\x0b\x0a\x8e\x0c\xf6\xf5\xf7\x73\x89\xcf\xc9\x4f\xcf\x49\x2d\x4b\xcd\xb1\x4d\x49\x4d\x2a\x4d\xe7\xc2\x94\xcf\x4c\x4e\xcd\x2b\x4e\x8d\xcf\x4e\xad\xb4\x0d\x72\x0d\xf0\x71\x74\x76\x8d\xf7\xf1\x74\x76\xf5\x0b\x76\x8d\xf7\x76\x8d\x8c\xf7\x70\x0d\x72\xe5\x02\x04\x00\x00\xff\xff\x47\xcf\xd7\x2d\x56\x00\x00\x00") + +func examplesNewrelicNrconfigEnvBytes() ([]byte, error) { + return bindataRead( + _examplesNewrelicNrconfigEnv, + "examples/newrelic/nrconfig.env", + ) +} + +func examplesNewrelicNrconfigEnv() (*asset, error) { + bytes, err := examplesNewrelicNrconfigEnvBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/newrelic/nrconfig.env", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesNewrelicInfrastructureGitignore = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xd2\xcb\xc9\x4f\x4e\xcc\xe1\x02\x04\x00\x00\xff\xff\xc4\xf8\x59\xbf\x08\x00\x00\x00") + +func examplesNewrelicInfrastructureGitignoreBytes() ([]byte, error) { + return bindataRead( + _examplesNewrelicInfrastructureGitignore, + "examples/newrelic-infrastructure/.gitignore", + ) +} + +func examplesNewrelicInfrastructureGitignore() (*asset, error) { + bytes, err := examplesNewrelicInfrastructureGitignoreBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/newrelic-infrastructure/.gitignore", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesNewrelicInfrastructureConfigToSecretSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x92\x61\x4b\xdc\x4c\x10\xc7\xdf\xe7\x53\xfc\x9f\x8b\xa0\xc2\x5d\xce\x47\xc4\x17\x2d\x2d\xc4\xf3\x4a\x83\x92\x03\x73\x56\x84\x82\x6c\x36\x73\xc9\x40\xb2\x9b\xee\x4e\x2e\x1e\xea\x77\x2f\xc9\x29\xd5\x36\x2f\x67\x7e\x99\xfd\xed\x7f\x27\xfc\x6f\x9e\xb3\x99\xe7\xca\x57\x41\x10\x62\x61\xdb\x9d\xe3\xb2\x12\x9c\x9e\xfc\x7f\x86\x75\x45\xb8\xea\x72\x72\x86\x84\x3c\xe2\x4e\x2a\xeb\x7c\x14\x84\x41\x88\x6b\xd6\x64\x3c\x15\xe8\x4c\x41\x0e\x52\x11\xe2\x56\xe9\x8a\xde\x3a\x53\xfc\x20\xe7\xd9\x1a\x9c\x46\x27\x38\x1a\x80\xc9\x6b\x6b\x72\xfc\x39\x08\xb1\xb3\x1d\x1a\xb5\x83\xb1\x82\xce\x13\xa4\x62\x8f\x0d\xd7\x04\x7a\xd4\xd4\x0a\xd8\x40\xdb\xa6\xad\x59\x19\x4d\xe8\x59\xaa\xf1\x98\xd7\x21\x51\x10\xe2\xfe\x75\x84\xcd\x45\xb1\x81\x82\xb6\xed\x0e\x76\xf3\x9e\x83\x92\x51\x78\xf8\x2a\x91\xf6\xd3\x7c\xde\xf7\x7d\xa4\x46\xd9\xc8\xba\x72\x5e\xef\x41\x3f\xbf\x4e\x16\xcb\x34\x5b\xce\x4e\xa3\x93\xf1\x97\x5b\x53\x93\xf7\x70\xf4\xab\x63\x47\x05\xf2\x1d\x54\xdb\xd6\xac\x55\x5e\x13\x6a\xd5\xc3\x3a\xa8\xd2\x11\x15\x10\x3b\xf8\xf6\x8e\x85\x4d\x39\x85\xb7\x1b\xe9\x95\xa3\x20\x44\xc1\x5e\x1c\xe7\x9d\x7c\x08\xeb\xcd\x8e\xfd\x07\xc0\x1a\x28\x83\x49\x9c\x21\xc9\x26\xb8\x88\xb3\x24\x9b\x06\x21\xee\x92\xf5\xf7\xd5\xed\x1a\x77\xf1\xcd\x4d\x9c\xae\x93\x65\x86\xd5\x0d\x16\xab\xf4\x32\x59\x27\xab\x34\xc3\xea\x1b\xe2\xf4\x1e\x57\x49\x7a\x39\x05\xb1\x54\xe4\x40\x8f\xad\x1b\xfc\xad\x03\x0f\x31\x52\x31\x64\x96\x11\x7d\x10\xd8\xd8\xbd\x90\x6f\x49\xf3\x86\x35\x6a\x65\xca\x4e\x95\x84\xd2\x6e\xc9\x19\x36\x25\x5a\x72\x0d\xfb\xe1\x31\x3d\x94\x29\x82\x10\x35\x37\x2c\x4a\xc6\xca\x3f\x97\x8a\x86\x5d\x5a\x1a\x6d\x0b\xf2\x63\x9d\xcc\x96\x9d\x35\x0d\x19\xc1\x56\x39\x1e\xf2\xf3\x60\x23\x16\xea\xfd\x86\x79\xd2\x8e\x24\x0a\x82\x8b\x38\x5b\x9e\x9f\x3d\x2c\xd3\xc5\x97\x83\x23\xad\x04\xc6\x69\x6b\x36\x5c\x46\x64\xb6\x78\x46\xae\x3c\x9d\x9f\xe1\x19\xe2\x30\x2b\x70\xf8\xd3\x1c\x1e\x07\xc3\x36\xce\x08\x13\x1f\x3e\x3d\xed\xe9\x87\x42\x89\x7a\x79\x09\x0f\x9e\xfe\x0c\x7c\x09\xcb\x09\xa2\xb9\xa1\xde\x51\xcd\x7a\xb6\x27\x67\x42\x4d\x5b\x2b\xa1\x68\xa7\x9a\x1a\x5f\xf1\x57\x7f\x2c\x07\xbf\x03\x00\x00\xff\xff\x03\x36\x3f\xab\x2f\x03\x00\x00") + +func examplesNewrelicInfrastructureConfigToSecretShBytes() ([]byte, error) { + return bindataRead( + _examplesNewrelicInfrastructureConfigToSecretSh, + "examples/newrelic-infrastructure/config-to-secret.sh", + ) +} + +func examplesNewrelicInfrastructureConfigToSecretSh() (*asset, error) { + bytes, err := examplesNewrelicInfrastructureConfigToSecretShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/newrelic-infrastructure/config-to-secret.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesNewrelicInfrastructureNewrelicConfigTemplateYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xca\x31\x0a\x82\x31\x0c\x47\xf1\x3d\xa7\xc8\x05\x1c\x5c\x73\x09\x07\xc1\x55\x42\xfb\x57\x82\x36\xad\x35\x2a\x52\x7a\x77\x91\xf2\x6d\x0f\x7e\x4f\x9b\x9d\xd0\x9f\x56\x5d\xf8\xbd\xa7\x9b\x79\x16\x3e\x22\x75\x04\x15\x84\x66\x0d\x15\x62\x76\x2d\x10\x76\x7c\x3a\xee\x96\x76\xa9\xfa\xc5\xae\x14\xdf\x06\xe1\x43\xd3\xc7\x0b\xb4\xad\xcb\x84\xc7\x58\x75\xfe\xc3\x9c\xf4\x0b\x00\x00\xff\xff\x3d\x28\x16\x29\x6b\x00\x00\x00") + +func examplesNewrelicInfrastructureNewrelicConfigTemplateYamlBytes() ([]byte, error) { + return bindataRead( + _examplesNewrelicInfrastructureNewrelicConfigTemplateYaml, + "examples/newrelic-infrastructure/newrelic-config-template.yaml", + ) +} + +func examplesNewrelicInfrastructureNewrelicConfigTemplateYaml() (*asset, error) { + bytes, err := examplesNewrelicInfrastructureNewrelicConfigTemplateYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/newrelic-infrastructure/newrelic-config-template.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesNewrelicInfrastructureNewrelicInfraDaemonsetYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\x88\x0c\xe8\x69\xae\x97\xc3\x2e\xbe\xb6\x18\xd0\xc3\xba\x00\x05\x76\x19\x76\x50\x64\x26\x11\x62\x91\x1e\x45\xb9\xed\xdf\x0f\x8a\x17\x44\x76\x3c\xa7\x3c\x04\xf1\x33\xdf\xd3\xd3\x23\x6d\x3a\xf7\x13\x25\x38\xa6\x1a\xf0\x4d\x91\xd2\xdf\x50\xf5\xeb\x2d\xaa\x59\x17\x47\x47\x4d\x0d\x8f\x06\x3d\xd3\x0b\x6a\xe1\x51\x4d\x63\xd4\xd4\x05\x00\x19\x8f\x35\x10\xbe\x0a\xb6\xce\x96\x8e\x76\x62\x4a\xb3\x47\xd2\x02\xa0\x35\x5b\x6c\x43\x6a\x03\x50\x87\x52\x83\x67\x72\xca\xe2\x68\x7f\x02\x4d\xd7\xfd\x97\x0c\xd0\x9f\x3d\xf5\xeb\x22\x74\x68\x93\x90\xa2\xef\x5a\xa3\x38\x88\xe6\x4e\x52\xe5\x07\xa6\x1a\xbb\x3b\xc1\x67\xa1\x54\x9f\xe0\x9b\x6b\x15\x05\x94\x4f\xb8\xdb\x39\x0b\xc4\x0d\x86\x4b\x47\x7a\x7c\xc1\x16\xad\xb2\x5c\xd0\xb1\xf3\x7f\xf0\x81\x83\x6e\x9e\x1e\x6b\x50\x89\x98\x61\x4f\x9b\x87\x2b\xec\x19\xf5\x95\xe5\x38\xc2\x2d\x93\x1a\x47\x28\xd9\x0d\x4a\x10\x0c\x1c\xc5\x62\x06\xa6\x12\xfc\x13\x31\xe8\x04\x05\xb0\x5d\xac\xe1\xcb\xfd\xfa\x6b\x86\x07\xb4\x51\x9c\xbe\x3f\x30\x29\xbe\xe9\x98\xd2\x89\xeb\x5d\x8b\x7b\x6c\x46\x66\x52\x39\x6f\xf6\x59\x7e\xd5\x69\x40\x41\x25\x5a\x8d\x92\x37\xce\xe4\x7c\xbe\x92\xf7\x26\x6d\xcf\x2f\x58\x6d\x4d\x38\xac\x3e\xc3\xaa\xb4\xe9\x77\xb8\x14\x54\xa8\xb6\x3a\xc6\x2d\x96\x24\xc3\x02\x54\x96\x69\xe7\xf6\x70\x77\x07\x55\x0c\x52\x6d\x1d\x55\xe3\x15\x59\xc1\xef\xec\x88\x9e\xdb\xe8\xf1\x3b\x47\x9a\x86\x51\x4e\xb7\x73\x50\x9e\x04\xe6\x13\x73\x63\xf4\x50\xcf\x98\x99\xf4\x0a\x9a\xe6\x07\xb5\xef\x57\x49\x5d\x0e\x6b\xb0\x5f\x38\x60\xfa\xf6\xcc\x92\x48\x0b\xac\xde\x48\x25\x91\xaa\x86\xed\x11\xe5\x3e\xb0\x3d\xce\xaa\xb4\xbc\x74\xb9\xa4\x32\xed\x38\x33\xd3\x4a\x96\xc2\xac\x0b\xfc\xd4\xf3\x91\x3c\x86\x81\x8c\x76\xf8\xd6\x1c\x02\x5a\xc1\xc9\x5e\x0e\xd8\xf3\x22\x73\x3e\xf4\xd3\x77\x98\x3c\x4f\xdc\x76\xd7\x33\x98\xcf\xff\x86\xc0\xd2\x38\xe6\x47\xf1\x01\xc1\x9c\xb0\x34\x95\x1b\x52\xc5\xdf\x00\x00\x00\xff\xff\xdb\x85\xa2\xc4\xcc\x05\x00\x00") + +func examplesNewrelicInfrastructureNewrelicInfraDaemonsetYamlBytes() ([]byte, error) { + return bindataRead( + _examplesNewrelicInfrastructureNewrelicInfraDaemonsetYaml, + "examples/newrelic-infrastructure/newrelic-infra-daemonset.yaml", + ) +} + +func examplesNewrelicInfrastructureNewrelicInfraDaemonsetYaml() (*asset, error) { + bytes, err := examplesNewrelicInfrastructureNewrelicInfraDaemonsetYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/newrelic-infrastructure/newrelic-infra-daemonset.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesNewrelicInfrastructureNrconfigEnv = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\xc1\x4e\x84\x30\x18\x04\xe0\x3b\x4f\x31\x09\x57\x2b\xfa\x00\x1c\x10\x7f\x95\x48\x00\x8b\x9a\x78\x22\x85\xfd\xc1\xc6\xa6\xdd\x94\x76\x95\xb7\x37\xe8\x65\xf7\x3a\x93\xcc\x37\xa9\x10\x92\x5e\xde\x2a\x49\xf7\x42\x24\x29\xba\x18\xb0\xb9\xe8\x61\xf4\xc4\x76\x65\x7c\xf1\x06\x6d\x11\x3e\xf5\x8a\x93\xf2\x5a\x8d\x86\x13\xfe\x39\x3a\x1f\xd0\xc8\xaa\x18\xea\xaa\xa4\xa6\xa7\xe1\x99\x3e\x72\x49\x5d\x5d\x94\x74\x9e\x0d\x4f\x24\x29\x49\x93\x54\x88\xb6\x7b\xad\xda\xa6\xa8\xff\xa0\x9e\x03\x82\xc3\x2d\x66\xe7\x71\xe0\x31\x2e\x70\x31\x1c\x63\xf8\xd7\x18\xc6\x2d\x17\xce\x3b\xc9\xbb\xb6\xa7\xfc\x26\x49\x51\x2a\xbb\xf7\xfb\x80\xb2\x1b\x66\x6d\xf8\x0a\x63\x0c\xf8\xd6\xc6\xc0\xba\x80\xc9\xb3\x0a\x8c\x83\xf6\x3c\x05\xe7\x35\xaf\x97\xa7\xdb\xc7\xe1\xa1\xaa\x29\xcf\x4e\xca\x67\xc6\x2d\x99\xf5\x42\xdb\xd9\xab\xeb\xdd\xfd\x0d\x00\x00\xff\xff\x3d\xb6\x72\xfd\x16\x01\x00\x00") + +func examplesNewrelicInfrastructureNrconfigEnvBytes() ([]byte, error) { + return bindataRead( + _examplesNewrelicInfrastructureNrconfigEnv, + "examples/newrelic-infrastructure/nrconfig.env", + ) +} + +func examplesNewrelicInfrastructureNrconfigEnv() (*asset, error) { + bytes, err := examplesNewrelicInfrastructureNrconfigEnvBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/newrelic-infrastructure/nrconfig.env", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesNodesjsMongodbMongoControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\xc1\x4a\xc4\x30\x10\x86\xef\x79\x8a\x79\x81\xb2\x56\x84\x85\x5c\xf5\xaa\x14\x11\xef\xb3\xcd\xd8\x0d\x4d\x32\x21\x33\xbb\xe8\xdb\x4b\x58\x5c\x13\xb6\x3a\xa7\x96\xff\x9f\xef\x6b\x13\xcc\xfe\x9d\x8a\x78\x4e\x16\xce\xa3\x59\x7d\x72\x16\x5e\x29\x07\x3f\xa3\x7a\x4e\x8f\x9c\xb4\x70\x08\x54\x4c\x24\x45\x87\x8a\xd6\x00\x04\x3c\x50\x90\xfa\x04\x90\x30\x92\x85\xc8\x69\x61\xd3\xbd\x0d\xf3\xef\xb2\x64\x9a\x6b\xbd\x5c\xd0\x62\x61\x34\x00\x4a\x31\x07\x54\xba\x80\x5a\x41\x9d\x56\x72\x2b\x02\xf8\x61\xd6\xa9\x2a\xf4\x89\xca\xb5\x3f\x80\x8f\xb8\x74\x0b\x5b\x90\x3a\x99\x8b\x36\x9e\x61\xb3\xd4\x38\x26\x2e\x6a\xe1\x7e\x7f\x37\xee\x9b\xf8\xc8\xa2\x5b\xc9\x99\xc3\x29\xd2\x33\x9f\x52\x2b\xb9\x11\x0d\xb9\xde\x83\x28\x25\x1d\x44\xb9\xe0\x42\x5d\x19\x20\x56\xc4\x84\x7a\xb4\xb0\xab\xe7\xb4\x73\x07\xd3\x2a\xfe\xfa\x85\xff\xc9\xcb\x4c\xd3\x35\x7f\xf2\xb2\xf6\xdf\x98\xdd\x4b\x43\x72\x5e\xd6\x2e\xfe\x90\xb7\xaf\x4c\x16\xe8\x53\x1f\xbe\x03\x00\x00\xff\xff\xeb\xf2\x3b\xc5\x4c\x02\x00\x00") + +func examplesNodesjsMongodbMongoControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesNodesjsMongodbMongoControllerYaml, + "examples/nodesjs-mongodb/mongo-controller.yaml", + ) +} + +func examplesNodesjsMongodbMongoControllerYaml() (*asset, error) { + bytes, err := examplesNodesjsMongodbMongoControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/nodesjs-mongodb/mongo-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesNodesjsMongodbMongoServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8d\x31\x0a\xc3\x30\x10\x04\x7b\xbd\x62\x3f\x10\x88\xd3\x18\xf4\x8a\x40\x20\xfd\x45\x5e\x8c\x88\xa4\x13\xa7\xc3\xef\x0f\x36\x69\x8c\xbb\x9d\x61\x60\xa5\xe7\x37\x6d\x64\x6d\x11\xdb\x14\xbe\xb9\x2d\x11\x2f\xda\x96\x13\x43\xa5\xcb\x22\x2e\x31\x00\x45\x3e\x2c\x63\x5f\x40\x93\xca\x88\xaa\x6d\xd5\x70\xa6\xd1\x99\xf6\xa6\xab\xf9\x3f\xbe\x1d\x10\xf1\x98\xef\xd3\x7c\x18\xc0\xc5\x56\xfa\xf3\xe4\x07\x0b\x93\xab\x5d\x2e\x7e\x01\x00\x00\xff\xff\x31\xb2\x4c\x6b\xa3\x00\x00\x00") + +func examplesNodesjsMongodbMongoServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesNodesjsMongodbMongoServiceYaml, + "examples/nodesjs-mongodb/mongo-service.yaml", + ) +} + +func examplesNodesjsMongodbMongoServiceYaml() (*asset, error) { + bytes, err := examplesNodesjsMongodbMongoServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/nodesjs-mongodb/mongo-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesNodesjsMongodbWebControllerDemoYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x50\x3d\x4f\x33\x31\x0c\xde\xef\x57\x78\x6a\x96\x37\x97\xeb\x0b\x53\x36\xbe\x16\x06\x84\xa8\xc4\x82\x18\x7c\x89\x75\x97\x92\xc4\x51\x12\x8a\xf8\xf7\x28\x2d\x6d\x0f\xf0\xe4\xc4\xcf\x87\xfd\x60\x72\xcf\x94\x8b\xe3\xa8\x61\xb7\xee\xde\x5c\xb4\x1a\x9e\x28\x79\x67\xb0\x3a\x8e\x37\x1c\x6b\x66\xef\x29\x77\x81\x2a\x5a\xac\xa8\x3b\x00\x8f\x23\xf9\xd2\x3a\x80\x88\x81\x34\x7c\xd0\xd8\x2d\x7a\x69\xce\xc4\x92\xc8\x34\x68\x3e\xc8\x16\x0d\xff\x3b\x80\x42\x9e\x4c\xe5\xfc\x57\xa4\x52\x48\x1e\x2b\x1d\x26\x4b\xdb\x56\x4b\xeb\xdf\x4c\x80\xa3\x57\xab\xb6\x02\xba\x48\xf9\x84\x96\xe0\x02\x4e\xa4\x21\xb2\x25\x3d\xf4\xeb\xa1\xbf\x1c\x4e\x4a\x86\x43\xc0\x76\xff\x8b\x50\xa3\x8b\xaa\xcc\xe2\x1f\x08\x69\xc4\xeb\x09\x82\x79\x2a\x6d\x6e\x2c\xa8\x99\x03\xc1\x6a\x05\x93\xab\x60\x3c\x47\x82\xb9\xd6\x54\xb4\x52\x93\xab\xf3\xfb\xd8\x1b\x0e\xca\x6d\xb1\x70\x54\x0f\x6c\xe9\x7e\x23\x37\x18\x92\x27\x79\x95\x52\xdf\x58\x96\x02\x37\x05\x63\xf7\xad\xba\x0b\xc9\xf3\x27\xd1\xed\xb5\x6a\xdf\x31\x05\x70\xb1\x54\xf4\xbe\x3d\x0b\x59\x90\x0e\xa4\x04\x21\x8a\xf2\x6c\xd0\xcf\x5c\xaa\x0a\x1c\x27\x56\x93\x10\x80\x29\xf5\xdb\xb2\xa7\xb2\xa5\xef\xe7\x62\xfb\x9f\x51\xb5\x4a\x9c\xeb\x22\x4b\x79\xce\xec\x91\x73\xd5\x70\x31\x0c\xe7\x7c\x8e\x02\xed\x4c\x59\x28\xef\x28\x7f\x05\x00\x00\xff\xff\x4a\xa3\x6c\xaf\x3f\x02\x00\x00") + +func examplesNodesjsMongodbWebControllerDemoYamlBytes() ([]byte, error) { + return bindataRead( + _examplesNodesjsMongodbWebControllerDemoYaml, + "examples/nodesjs-mongodb/web-controller-demo.yaml", + ) +} + +func examplesNodesjsMongodbWebControllerDemoYaml() (*asset, error) { + bytes, err := examplesNodesjsMongodbWebControllerDemoYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/nodesjs-mongodb/web-controller-demo.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesNodesjsMongodbWebControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8e\xcd\x4a\x43\x31\x10\x85\xf7\x79\x8a\x79\x81\xc0\x55\x77\x41\x04\x29\x2e\xdc\xb4\x72\x51\xc1\xe5\x34\x3d\x68\x30\x7f\x4c\x86\xfa\xfa\x12\xca\xbd\x37\x28\x3d\xab\x81\x99\xf3\x7d\xc3\x35\xbc\x43\x5a\x28\xd9\xd1\xf9\xc6\x7c\x87\x7c\x72\x34\xa3\xc6\xe0\x59\x43\xc9\xbb\x92\x55\x4a\x8c\x10\x93\xa0\x7c\x62\x65\x67\x88\x22\x1f\x11\x5b\x9f\x88\x32\x27\x38\xfa\xc1\xd1\x0c\xb3\xf5\x5b\xb1\x55\xf8\x7e\x2a\x17\x6c\x73\x74\x6b\x88\x1a\x22\xbc\x16\xf9\x0f\x51\xa4\x1a\x59\x71\xd9\x8c\xda\x9e\x51\xfd\xb7\x49\xb4\xb8\x7a\xfa\x0b\x1c\x32\x64\xbd\xb6\x14\x12\x7f\xc2\xd1\xfd\xc7\xe1\x6d\xb6\xbb\xc3\xfe\xf5\xf1\x79\xff\x34\x3f\x5c\xa1\xf5\xd4\x22\x3a\xe8\xec\x86\x7d\x29\xa2\x8e\xee\xa6\x69\x5a\xb7\x0b\xe0\x4b\xb5\xda\x06\x39\x43\x7e\x03\x00\x00\xff\xff\xea\xd9\x31\xa4\x62\x01\x00\x00") + +func examplesNodesjsMongodbWebControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesNodesjsMongodbWebControllerYaml, + "examples/nodesjs-mongodb/web-controller.yaml", + ) +} + +func examplesNodesjsMongodbWebControllerYaml() (*asset, error) { + bytes, err := examplesNodesjsMongodbWebControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/nodesjs-mongodb/web-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesNodesjsMongodbWebServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xb1\xaa\x02\x31\x10\x85\xe1\x3e\x4f\x71\x5e\xe0\xc2\x5e\x6c\x64\x4a\x6d\x2d\x16\x14\xfb\xd9\xec\x20\xc1\x6c\x26\x4c\x86\x15\xdf\x5e\x36\x28\x88\xe5\xff\xc1\xe1\x70\x4d\x57\xb1\x96\xb4\x10\xd6\xff\x70\x4f\x65\x26\x9c\xc5\xd6\x14\x25\x2c\xe2\x3c\xb3\x33\x05\xa0\xf0\x22\x84\x87\x4c\x01\xc8\x3c\x49\x6e\x9b\x7e\x7b\xab\x12\x37\xf3\x67\x15\xc2\x49\x79\x3e\x70\xe6\x12\xc5\x02\x50\xd5\xfc\xbd\xf8\xeb\x41\xd8\x0f\x3d\x01\x67\xbb\x89\x8f\x1d\x77\xc3\xf0\xe1\x6a\xea\x1a\x35\x13\x2e\xc7\x31\x00\x4d\xb2\x44\x57\xfb\xf9\x7d\x05\x00\x00\xff\xff\x7e\xec\xb7\x7e\xc2\x00\x00\x00") + +func examplesNodesjsMongodbWebServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesNodesjsMongodbWebServiceYaml, + "examples/nodesjs-mongodb/web-service.yaml", + ) +} + +func examplesNodesjsMongodbWebServiceYaml() (*asset, error) { + bytes, err := examplesNodesjsMongodbWebServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/nodesjs-mongodb/web-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesOmsOmsagentDaemonsetYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x51\xc1\x6a\xe3\x30\x10\xbd\xfb\x2b\xe6\x07\xb2\x26\x81\x5c\xc4\xb2\x97\x64\x0f\x61\x59\x08\xa4\xb4\xf4\x38\x91\xa7\x89\xb0\xa4\x11\xd2\xc8\x8d\xff\xbe\x08\x37\x8e\xd2\x12\xe8\x9c\xc6\xef\xcd\x7b\xf3\xc6\xc2\x60\x9e\x29\x26\xc3\x5e\x01\x5d\x84\x7c\x69\x53\x3b\x2c\x8f\x24\xb8\x6c\x7a\xe3\x3b\x05\x5b\x24\xc7\xfe\x40\xd2\x38\x12\xec\x50\x50\x35\x00\x1e\x1d\x29\x60\x97\xf0\x44\x5e\x9a\x14\x48\x17\x58\xc8\x05\x8b\x42\xa5\x07\xa8\x05\xa5\x2c\x1e\xc9\xa6\xeb\x17\x00\x86\x50\x79\x14\xe4\xea\x53\x4a\xb3\x17\x34\x9e\xe2\xac\x58\x00\xf9\xe1\x26\x5f\x7c\xa6\x78\x39\xec\xb6\x33\x08\x30\xa0\xcd\xa4\xe0\xf7\xc8\x39\xc2\x3b\xc7\x3e\x05\xd4\x04\xbb\xed\x9f\x6f\xca\x7f\x7f\x5f\x1f\x09\x7b\x1a\x6f\xf3\xc6\xe1\x89\x14\x38\xa3\x23\x27\x7e\x93\x96\x5d\x9a\xc9\x2f\xbf\xe2\x0a\x07\x8e\x92\xea\xb0\xf3\x3d\x7b\x8e\xa2\x60\xb5\x5e\xad\xd6\xd5\xf6\x10\x59\x58\xb3\x55\xf0\xb4\xd9\xcf\x78\x22\x9d\xa3\x91\x71\xc3\x5e\xe8\x22\xea\x4e\x60\x06\x63\xe9\x44\x9d\x02\x89\x99\x66\x6a\x60\x9b\x1d\xfd\xe7\xec\xef\x03\xb8\x82\xec\x51\xce\x0a\xda\x01\x63\x1b\xb3\x6f\x3b\xd6\x3d\xc5\x5f\x89\x75\x5f\x59\x4f\x27\x4d\xdc\xa2\xe2\x26\xe7\xea\x3d\x1e\x0d\x02\x9c\x39\x4d\xbb\xea\xc4\x3f\xd9\x2d\x63\x20\x05\x87\xc2\x49\xf3\x11\x00\x00\xff\xff\xeb\xdd\x17\xc1\xa2\x02\x00\x00") + +func examplesOmsOmsagentDaemonsetYamlBytes() ([]byte, error) { + return bindataRead( + _examplesOmsOmsagentDaemonsetYaml, + "examples/oms/omsagent-daemonset.yaml", + ) +} + +func examplesOmsOmsagentDaemonsetYaml() (*asset, error) { + bytes, err := examplesOmsOmsagentDaemonsetYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/oms/omsagent-daemonset.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesOpenshiftOriginGitignore = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xce\xcf\x4b\xcb\x4c\xd7\xe7\x02\x04\x00\x00\xff\xff\xa5\x1c\x4b\x9b\x08\x00\x00\x00") + +func examplesOpenshiftOriginGitignoreBytes() ([]byte, error) { + return bindataRead( + _examplesOpenshiftOriginGitignore, + "examples/openshift-origin/.gitignore", + ) +} + +func examplesOpenshiftOriginGitignore() (*asset, error) { + bytes, err := examplesOpenshiftOriginGitignoreBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/openshift-origin/.gitignore", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesOpenshiftOriginCleanupSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\x41\x6f\xdb\x46\x10\x85\xcf\xde\x5f\xf1\x4a\xe5\x90\x00\x12\xe5\x1a\x3d\x39\x50\x01\xd5\x96\x1b\x22\x0e\x15\x98\x4a\x53\xa3\x28\x8a\xe5\x72\x48\x6e\xb3\xdc\xd9\xee\x2e\x2d\x0b\x45\xfe\x7b\x41\x4a\x6e\x6c\x58\x41\x1b\x1d\x74\xd0\xbc\x79\xf3\xcd\xd3\xec\xe4\xbb\x79\xa9\xed\xbc\x94\xa1\x15\x62\x82\x0b\x76\x3b\xaf\x9b\x36\xe2\xec\xf4\xfb\x1f\xb0\x69\x09\x6f\xfb\x92\xbc\xa5\x48\x01\xcb\x3e\xb6\xec\x43\x2a\x26\x62\x82\x6b\xad\xc8\x06\xaa\xd0\xdb\x8a\x3c\x62\x4b\x58\x3a\xa9\x5a\x7a\xa8\x4c\xf1\x0b\xf9\xa0\xd9\xe2\x2c\x3d\xc5\xcb\x41\x90\x1c\x4a\xc9\xab\xd7\x62\x82\x1d\xf7\xe8\xe4\x0e\x96\x23\xfa\x40\x88\xad\x0e\xa8\xb5\x21\xd0\xbd\x22\x17\xa1\x2d\x14\x77\xce\x68\x69\x15\x61\xab\x63\x3b\x8e\x39\x98\xa4\x62\x82\xdb\x83\x05\x97\x51\x6a\x0b\x09\xc5\x6e\x07\xae\x1f\xeb\x20\xe3\x08\x3c\x7c\xda\x18\xdd\xf9\x7c\xbe\xdd\x6e\x53\x39\xc2\xa6\xec\x9b\xb9\xd9\x0b\xc3\xfc\x3a\xbb\x58\xe5\xc5\x6a\x76\x96\x9e\x8e\x2d\x1f\xac\xa1\x10\xe0\xe9\xaf\x5e\x7b\xaa\x50\xee\x20\x9d\x33\x5a\xc9\xd2\x10\x8c\xdc\x82\x3d\x64\xe3\x89\x2a\x44\x1e\x78\xb7\x5e\x47\x6d\x9b\x29\x02\xd7\x71\x2b\x3d\x89\x09\x2a\x1d\xa2\xd7\x65\x1f\x9f\x84\xf5\x40\xa7\xc3\x13\x01\x5b\x48\x8b\x64\x59\x20\x2b\x12\xfc\xb4\x2c\xb2\x62\x2a\x26\xf8\x98\x6d\xde\xac\x3f\x6c\xf0\x71\x79\x73\xb3\xcc\x37\xd9\xaa\xc0\xfa\x06\x17\xeb\xfc\x32\xdb\x64\xeb\xbc\xc0\xfa\x0a\xcb\xfc\x16\x6f\xb3\xfc\x72\x0a\xd2\xb1\x25\x0f\xba\x77\x7e\xe0\x67\x0f\x3d\xc4\x48\xd5\x90\x59\x41\xf4\x04\xa0\xe6\x3d\x50\x70\xa4\x74\xad\x15\x8c\xb4\x4d\x2f\x1b\x42\xc3\x77\xe4\xad\xb6\x0d\x1c\xf9\x4e\x87\xe1\xcf\x0c\x90\xb6\x12\x13\x18\xdd\xe9\x28\xe3\xf8\xcb\xb3\xa5\xd2\xf1\x96\x0c\xc9\xa1\xe8\xe0\x29\x70\xef\x15\x05\xd4\x9e\xbb\x51\x48\xf7\xb2\x73\x86\xa6\x90\x21\xf4\xdd\x3e\xbe\x92\xe0\x7b\xbb\xd7\x3c\xba\x3a\x4f\x8e\xe1\x99\xa3\x20\xd5\xf2\xe1\xeb\xde\xb1\x8f\x58\xbf\x5f\xe5\xc5\x9b\xec\x6a\xf3\xc7\xea\xd7\xe5\xbb\xf7\xd7\xab\xc5\x8b\x97\x6e\x5b\xbd\x9a\x1f\xec\xc3\x9c\x1d\xd9\xd0\xea\x3a\xce\xd8\xeb\x46\xdb\xe7\x9d\x17\xeb\xfc\x2a\xfb\x79\xf1\xe2\xef\x67\x66\x9f\xe7\x8a\x6d\xad\x1b\x31\xce\x44\xb2\x58\x2c\x7e\xc4\x0d\x75\x7c\x37\x44\x32\x6c\xb1\x76\x64\x8b\xc1\x1d\x56\x76\x14\x9c\x54\x74\x9e\x88\x4f\x7d\x49\x2a\x1a\x54\x64\x28\xd2\x97\x12\x9e\xc3\x0c\xbb\x1c\x75\x37\xac\xa4\x19\x1f\x43\x38\x4f\x84\xef\x30\xf3\x35\x1e\x33\xee\xb1\x3f\x0f\xa5\xa3\xe8\x5f\x66\x85\x28\x7d\xec\x5d\x6a\xb8\xf9\xaa\x3a\x90\xf2\x14\xd3\x3f\x03\x5b\x11\xb9\x57\xed\x7f\xcb\x8e\xb0\x87\xc8\x7e\x80\x57\xad\xb4\x0d\x55\xb8\x5d\xbe\xbb\x3e\x9c\x95\xda\x9f\xca\x79\x22\x74\x8d\xdf\x30\xab\x91\x1c\x9d\x40\x51\x55\x33\xc5\x36\x7a\x36\x86\x7c\xba\x93\x9d\x49\x4b\xf9\x29\xc1\xef\xaf\x87\xc8\xad\x38\xf9\xda\x0e\xc7\x5a\xc5\x49\x77\x87\xd9\xdd\xff\x6f\x18\x66\x7d\x83\x3d\x99\x40\xe2\x64\x1f\x42\xce\xff\x2e\xfe\xf0\x94\x0e\xef\xa3\xe6\xde\x56\x69\x22\x6a\xfd\x38\xb5\x4b\xb6\x94\x8a\x7f\x02\x00\x00\xff\xff\x83\x5b\x10\xc5\x81\x05\x00\x00") + +func examplesOpenshiftOriginCleanupShBytes() ([]byte, error) { + return bindataRead( + _examplesOpenshiftOriginCleanupSh, + "examples/openshift-origin/cleanup.sh", + ) +} + +func examplesOpenshiftOriginCleanupSh() (*asset, error) { + bytes, err := examplesOpenshiftOriginCleanupShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/openshift-origin/cleanup.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesOpenshiftOriginCreateSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x6f\x73\xe2\x38\xd2\x7f\x1d\x7f\x8a\x5e\x43\x6d\x60\x37\x36\x49\x66\xb6\x9e\x67\x49\x31\x55\x19\xc2\xcc\xba\x26\x03\xa9\x40\xf6\xcf\x0d\x59\x4a\xd8\x8d\xad\x8d\x90\xbc\x92\x1c\xc2\x10\xee\xb3\x5f\x49\xb6\x81\x10\x92\xc9\xcc\xed\xe5\x45\xaa\x90\x5a\xad\xee\x5f\x77\xff\xd4\xed\xca\x77\x8d\x31\xe5\x8d\x31\x51\x89\xe3\x54\xa0\x2d\xd2\xb9\xa4\x71\xa2\xe1\xf8\xf0\xe8\x35\x0c\x12\x84\x0f\xd9\x18\x25\x47\x8d\x0a\x4e\x33\x9d\x08\xa9\x7c\xa7\xe2\x54\xe0\x9c\x86\xc8\x15\x46\x90\xf1\x08\x25\xe8\x04\xe1\x34\x25\x61\x82\xe5\xce\x01\xfc\x8a\x52\x51\xc1\xe1\xd8\x3f\x84\x9a\x11\x70\x8b\x2d\xb7\x7e\xe2\x54\x60\x2e\x32\x98\x92\x39\x70\xa1\x21\x53\x08\x3a\xa1\x0a\x26\x94\x21\xe0\x5d\x88\xa9\x06\xca\x21\x14\xd3\x94\x51\xc2\x43\x84\x19\xd5\x89\xbd\xa6\x50\xe2\x3b\x15\xf8\xa3\x50\x21\xc6\x9a\x50\x0e\x04\x42\x91\xce\x41\x4c\x36\xe5\x80\x68\x6b\xb0\xf9\x4b\xb4\x4e\x9b\x8d\xc6\x6c\x36\xf3\x89\x35\xd6\x17\x32\x6e\xb0\x5c\x50\x35\xce\x83\x76\xa7\xdb\xef\x78\xc7\xfe\xa1\x3d\x72\xc5\x19\x2a\x05\x12\xff\xce\xa8\xc4\x08\xc6\x73\x20\x69\xca\x68\x48\xc6\x0c\x81\x91\x19\x08\x09\x24\x96\x88\x11\x68\x61\xec\x9d\x49\xaa\x29\x8f\x0f\x40\x89\x89\x9e\x11\x89\x4e\x05\x22\xaa\xb4\xa4\xe3\x4c\x3f\x00\xab\xb4\x8e\xaa\x07\x02\x82\x03\xe1\xe0\x9e\xf6\x21\xe8\xbb\xf0\xf6\xb4\x1f\xf4\x0f\x9c\x0a\xfc\x16\x0c\x7e\xe9\x5d\x0d\xe0\xb7\xd3\xcb\xcb\xd3\xee\x20\xe8\xf4\xa1\x77\x09\xed\x5e\xf7\x2c\x18\x04\xbd\x6e\x1f\x7a\xef\xe0\xb4\xfb\x07\x7c\x08\xba\x67\x07\x80\x54\x27\x28\x01\xef\x52\x69\xec\x17\x12\xa8\x81\x11\x23\x83\x59\x1f\xf1\x81\x01\x13\x91\x1b\xa4\x52\x0c\xe9\x84\x86\xc0\x08\x8f\x33\x12\x23\xc4\xe2\x16\x25\xa7\x3c\x86\x14\xe5\x94\x2a\x13\x4c\x05\x84\x47\x4e\x05\x18\x9d\x52\x4d\xb4\x5d\x79\xe4\x94\xef\x38\x0a\x35\x78\x68\x73\x4a\x22\x31\xd9\x23\x51\x89\x4c\x86\xa8\x60\x22\xc5\xd4\x8a\xe3\x1d\x99\xa6\x0c\x0f\x80\x28\x95\x4d\x73\x10\xc7\x08\x32\xe3\xb9\xcc\x46\xee\x49\x4c\x05\x48\x21\xb4\x83\x61\x22\xec\x3f\x70\x5b\xad\xd6\x1b\x08\x38\xd5\x94\x30\xfa\x99\xf2\xb8\xe9\x3a\x74\x02\x9f\xe0\x3b\xa8\xd6\x66\x09\x0d\x13\x48\xe7\x3a\x11\xbc\x0e\xd7\x8e\x4e\x90\x3b\x7b\xf9\xc1\x0b\xbb\x6a\xb0\x27\x90\x4a\xb4\x01\x56\x54\xe7\x60\xc8\x8c\x5b\xa7\x6d\x3e\xaa\x50\xd2\x54\xfb\x70\xc1\x90\x98\x68\x71\xa5\x09\x63\x50\x28\x20\x3c\x02\x2d\xe7\xab\x23\x24\x26\x94\xfb\xae\xb3\x87\x77\x54\xc3\x91\x33\xa1\xce\xb6\x41\x71\xc8\x44\x16\x6d\x1b\x94\xaf\xfe\x17\x06\x15\x0a\x5e\x62\x50\x2e\x3a\xb2\x27\x79\x88\xaa\x55\xad\x15\xa7\x4d\xb5\x65\xba\x50\x6a\xb6\x80\x51\xa5\xe1\x1e\x62\x89\x29\xb8\x43\x6f\x4a\x94\x46\xe9\xd6\x73\xa7\xbc\xcf\xe0\x56\xb7\xb5\xb9\x70\x0d\xf7\xf7\xe5\xee\xe2\xc3\xd5\xdb\xce\xe8\x7d\xbb\x33\x0a\xba\xfd\xc1\x69\xb7\xdd\x19\x5d\x5c\x76\xde\x05\xbf\x2f\xdd\x2d\x04\x06\x6b\xe7\x0c\x0c\x82\xb3\x39\xd8\x32\xd3\x02\x54\x96\xa6\x6c\x6e\x53\x86\x63\x88\x4a\x11\x39\x07\x85\xf2\x96\x86\x48\xc2\x50\x64\x5c\xc3\x0d\xce\x81\x4e\x2c\xa9\x10\x89\x2b\x00\x04\x87\xf7\x42\xc4\x0c\xdd\xf2\xa2\x76\xe1\x64\x87\xc7\x94\x23\x64\xca\xe2\x04\x21\xcb\x8c\x6f\x8d\x9b\x6c\x8c\x5e\x96\xfa\x2a\x29\xad\xb1\xc4\xf3\x94\x1f\xa0\x50\xfb\x10\x4c\xf2\xe0\x50\x65\xd8\x6c\x75\x95\x31\x38\x24\x86\x0a\x4d\x56\x23\x89\xe6\x1b\xde\x10\x48\x89\x61\x34\x91\x57\xdf\x43\x6f\xd2\x6c\xcc\x68\x68\x9c\x32\xc1\x5b\xa3\xfd\x3c\x9e\x7b\x39\xa0\x65\x92\xe7\x19\x92\x4a\x71\x4b\x23\x34\xc8\xc8\xa7\xdd\xe0\x62\xd6\x74\x9d\xbd\x3d\x63\xe5\x93\x52\xce\xde\x84\xda\x14\xc2\xbb\x54\x48\x0d\xbd\x8b\x4e\xb7\xff\x4b\xf0\x6e\x30\xea\xfc\x7e\xfa\xf1\xe2\xbc\xd3\xaa\xd6\xd2\x59\x54\x6f\x14\x85\xad\x1a\x22\x45\xae\x12\x3a\xd1\x9e\x90\x34\xa6\x3c\x2f\xdc\x3e\xee\x3c\xbb\x78\xb4\xb6\x7c\x7c\x53\xbb\xd7\x7d\x17\xbc\xdf\x29\xdc\x08\x05\x9f\xd0\x78\xd7\x1d\x3b\x4e\xe5\x4b\x4b\x67\x7a\x13\x51\x09\xbb\x76\xac\x9e\x8f\x24\x42\x78\x4e\xc2\xd9\x24\xa3\x3e\x6a\xc3\xff\x90\xa5\xd0\x4b\x91\xf7\xad\xeb\x3d\xeb\x3a\x70\x32\x45\x95\x92\x10\x9b\xae\x63\xb2\x2c\xd4\x0c\x42\x4b\x8e\xe0\x4d\x60\xa7\x43\xdb\xf0\x79\x2b\x1d\xfe\x9c\x4c\xd9\xb3\xf7\xa3\x0e\x23\x2f\xa2\x2a\x34\x2c\x3e\x6f\xba\x4e\x05\x4e\x41\x8b\x1b\xe4\x76\xcb\x3c\xb9\xca\x64\x5f\x8c\x1c\xa5\x31\x22\xe3\xf4\xef\x0c\xcb\x42\x80\xe0\xcc\xb2\xc9\x14\xa7\x63\xfb\xcb\x87\xb6\xe0\x13\x21\xa7\xf6\xd4\x27\xe2\x7d\x3e\xf4\x7e\xbe\x5e\xbc\x3e\x5c\x05\xa9\x33\x68\x9f\x8d\x82\x6e\x30\x08\x4e\xcf\x47\xed\xf3\xab\xfe\xa0\x73\x39\x1a\xf4\x3e\x74\xba\x26\x2f\x72\xc6\xf4\x42\x70\xe9\xd4\x8a\x9b\x47\x8f\xc7\x27\x50\xfc\x94\x84\x47\x62\x7a\x02\xa9\xa4\x5c\xd7\xf6\xf7\xfd\xbf\x04\xe5\xb5\x7c\xd5\xef\xcf\x95\xc6\xe9\xa5\xfd\x51\xab\xfb\x61\x22\x68\x88\xb5\x5c\x83\x4f\x54\x48\xe9\x88\x89\x19\x4a\x53\x6d\xf0\x63\xa1\xda\x8f\x68\x4c\xb5\xaa\x5b\x12\x1d\x99\xe7\x59\x12\x1e\x63\xed\xf5\x61\xbd\x5e\x77\xeb\x8e\x45\xa4\xf0\x3a\x07\x26\x53\xf9\x2b\x6f\x2a\x72\x05\x5d\x59\x9b\x0f\x01\xb0\xf0\x16\x58\x79\x2b\x34\x7e\x7a\x08\xc6\x59\xd0\x6f\xf7\x7e\xed\x5c\xfe\xf1\xad\x30\x0c\xdd\x07\xf7\x0c\x5d\xf8\x11\xfe\x97\xd0\xfc\x94\x23\x63\x60\xf0\xa8\x3f\x26\x37\xe0\x21\xb8\xaa\x11\x74\xfb\x9d\xcb\xc1\xe8\xe9\x08\x37\x86\x6e\x75\xf1\xf4\xf6\x72\xe8\x36\x62\x77\x87\xb2\x2d\x84\xd6\x6a\xb6\x36\x0a\x05\x3b\xab\x24\x87\x48\x70\x2d\x05\x63\x28\xf3\xd2\x78\x69\x89\x3d\x2c\x93\x6d\x35\xe0\xad\x4b\xae\xb5\xbf\x5d\x8e\xfb\xdf\x78\x49\x99\x50\x2f\xb9\xe1\x4b\x25\xfe\x72\x32\xd9\x05\xd3\x3f\xe9\xdf\x3f\xe5\xd5\xb6\xf4\xa6\x87\x96\xe0\xe1\x96\xe2\x0c\x3c\x4f\x64\x3a\xcd\x74\xab\xb8\x6f\xc2\x88\xd6\xc8\x5b\x5a\x66\x08\x9e\x37\xa5\x9c\x4e\xe6\xf9\xaf\x37\xbb\xc8\xdb\xbe\xf4\xc5\x8b\xf1\xd5\x74\xfc\x0d\xbe\xe6\xb4\x70\x71\xf5\xf6\x3c\x68\x8f\xd6\xca\x83\x8b\x96\xeb\x6e\x22\xf1\x1b\xb1\x23\x84\xad\xcc\xa2\x0d\x08\x2e\x8a\xce\xd8\x74\xd5\x65\xbf\xbe\x7a\x5f\xa0\x5f\x18\x53\xaa\xf9\x48\x95\x26\x37\xa8\x4c\x59\x17\x86\x9a\x93\x59\x0a\x21\xe1\x10\x92\xd5\xb0\xa5\x05\x30\x21\x52\xa0\x7c\x42\x39\xd5\xc8\x6c\x0b\x45\x78\xa9\x08\xef\x34\x4a\x4e\x98\x31\xc0\xb4\x36\x78\x8b\x32\x6f\x78\x3a\x5c\x65\xd2\x68\x21\x7a\xcb\x98\xe2\xc2\x52\x85\x69\xea\x50\x9b\x9b\xcc\xad\x84\xc3\x4a\x27\x13\x24\x82\x31\x61\xa6\x6b\x94\x3e\xd8\xfe\x2f\x95\xc2\xb4\x77\x76\xa6\x33\x2e\xb8\x50\xa8\x21\x30\xc1\x19\x4c\x29\xcf\x34\x2a\x1f\x3a\x52\x0a\xa9\xac\x3b\x63\xd3\x23\x67\x3c\x32\xce\x1a\x4b\x98\x88\xf3\x21\x32\x5f\x25\xba\x59\x98\xf2\xa5\x88\x6a\x22\x75\x96\xfa\x4c\x14\x0d\x84\xeb\x6e\xe5\xcd\x17\x0e\xcd\x12\x73\xeb\x27\xa8\x2e\x2a\x3b\x82\xbc\x04\x8f\x69\x38\x82\xeb\x13\x88\x44\xd1\x1f\x7a\x1c\x7c\x67\x4f\x31\xc4\x14\x8e\x9c\xbd\x85\xe9\xdc\x9e\xce\x92\x6a\xad\xcc\xd2\x18\x57\x30\xab\x75\xb5\x3c\x48\x43\x77\x3b\x0d\x5d\xf0\x3c\x8d\xd3\x94\x11\x8d\x2d\x77\xb1\x00\xca\x23\xbc\x03\x5f\x69\xa2\x33\xe5\x9b\x60\xbc\x2d\x63\x41\x79\x6c\xe7\xc6\x43\x18\xba\x34\x1d\xba\xb0\x5c\xba\x75\x67\x6f\x09\x6f\xbe\x06\x10\x38\x7e\xf3\xfd\x51\xde\xbb\xda\xf9\x67\xb1\x13\x95\xd6\xbf\xe1\xcf\xda\x27\xfb\x76\x1e\x1d\xbc\x5a\x0e\xfd\xfa\xe2\xd5\x72\xfd\xbb\x0a\xd7\xd7\x27\x50\xb6\xb5\xcf\x96\x90\xe9\x4d\x23\xc1\x71\x73\x40\xbc\xc8\xeb\x67\x9d\x9d\xc1\x45\x91\x8e\xcd\x27\x0c\x72\x1f\x53\x53\xdb\x72\x44\x66\x9e\xcd\xb5\xa6\xa6\xeb\x44\x22\xbc\x41\x3b\x9d\x81\xe7\xa5\x92\xde\x52\x86\xb1\x79\x38\x6f\x77\xd1\x4d\xb3\xe8\x4e\xd7\x01\x6b\xe4\x91\x01\x8b\x19\xe4\xa3\x15\x78\xde\x4c\x52\x8d\x5e\x2e\xdc\x2a\x0f\x79\xde\x9a\xad\xca\xc5\x0d\x02\x33\x7c\x67\xcf\xb7\x12\xad\x53\xd5\x6c\x34\x98\x08\x09\x4b\x84\xd2\xcd\xff\x7f\xfd\xfa\x95\x31\xd0\x42\xb1\x2d\xb6\x1b\x84\xf2\x8c\xa1\xf5\x56\xf1\xcd\xc4\xbe\x35\xc7\xaf\xfe\xef\x67\x47\x65\x91\x00\xaf\x03\x61\x22\x66\x1c\xbc\x4b\xa8\x2e\xae\xfa\x9d\xcb\xe5\xce\x0e\xd9\xa9\xd8\xaf\x48\x13\xc1\x98\x98\xd9\x49\xcb\x8e\xfa\x0a\xde\xb7\x3b\xf9\xb4\x6a\x28\xe4\xc9\xb1\x24\xa7\x8f\x92\x3c\xff\xd5\xeb\x76\x5e\x3c\xad\x3e\x33\x2b\xad\x06\x59\xb8\x07\x32\xbb\x81\xfd\x85\xed\xb6\xa0\x7a\xbc\xdc\x87\x7b\x48\xcc\x0c\xe4\x1d\xd5\x8b\x24\xb0\xfe\x86\x44\x43\x43\xc9\x5b\x0b\x7a\xfe\x4d\xa2\x61\x6a\x10\xa5\x7f\x83\xf3\x13\x30\xf3\xf5\x89\xd1\xb7\x65\x9c\x52\x09\x3c\x63\x89\xb7\x0a\xfb\x67\xc1\x11\xaa\x0b\xe3\xe2\xb2\xf4\xc1\xeb\xdc\x81\x5b\xfb\x73\xe8\xf9\x3f\x0c\xbd\xea\xfd\x9f\xc3\xfe\x8f\xd5\xfa\x36\x2d\x95\xcf\xd9\xc3\x09\x52\xf9\x26\x23\x89\x46\x63\xde\xa3\x20\x50\xae\x50\x6a\x2a\x38\xcc\x28\x63\x30\x21\x94\x19\xe6\x37\x9c\xc0\xf3\xaf\x3a\x10\x26\xa6\x21\x54\x45\x2b\x68\x3a\xb7\x7d\xd5\xc8\x93\xe8\x03\xce\xdf\x51\x86\xaa\xe9\xff\x50\xdd\x5e\x6a\xc4\xfb\x56\xf6\xd1\x3a\x81\x21\x0c\xc1\x83\x67\xcc\xdc\xdf\xe9\x57\x8e\x50\x51\x10\x45\x6f\xb7\x59\x7a\x54\x6f\x95\x1f\xb6\x5c\x83\x77\x31\xf2\x95\xc5\x42\xa2\x29\xe5\xfe\xba\x64\xdc\xaf\xae\xd3\x90\x51\x50\x18\x4a\xd4\xe6\x29\x9c\x6d\xf4\x29\xc5\x89\x55\xb1\x0a\xf8\x4b\x09\x0e\xdf\x3f\x41\x97\xb9\x12\xdf\xc8\xbc\xb4\xf3\xd8\x38\xf2\xd5\xad\xd5\x65\xf1\x29\x64\xcd\x82\x1f\x2d\xa4\xdf\x32\x86\x7e\x65\xfb\xb8\x61\xcb\x99\xe0\xe8\x3b\xff\x09\x00\x00\xff\xff\x88\x1d\xfb\x08\x70\x16\x00\x00") + +func examplesOpenshiftOriginCreateShBytes() ([]byte, error) { + return bindataRead( + _examplesOpenshiftOriginCreateSh, + "examples/openshift-origin/create.sh", + ) +} + +func examplesOpenshiftOriginCreateSh() (*asset, error) { + bytes, err := examplesOpenshiftOriginCreateShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/openshift-origin/create.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesOpenshiftOriginEtcdControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x8f\xdb\x46\x0c\xbd\xfb\x57\x10\xce\x21\x2d\x50\xd7\x9b\x6c\x8b\x34\x73\xdb\xda\x2a\x60\xd4\xeb\x18\xb6\x36\x40\x51\x14\x06\x3d\xa2\xad\x41\x46\x33\xea\x90\xf2\xae\x13\xf4\xbf\x17\xa3\x0f\x47\xf6\x3a\x1f\x3a\x49\xa3\xf7\x48\x3e\x3e\x0e\xb1\x34\xef\x29\xb0\xf1\x4e\x01\x3d\x09\xb9\xf8\xca\xe3\xc3\xab\x2d\x09\xbe\x1a\x7c\x30\x2e\x53\x30\xa5\xd2\xfa\x63\x41\x4e\x06\x05\x09\x66\x28\xa8\x06\x00\x0e\x0b\x52\x40\xa2\xb3\x01\x97\xa4\xe3\x11\x4b\x40\xa1\xfd\x31\xbe\x03\xc8\xb1\x24\x05\x2b\xd2\x81\x50\x68\x00\x10\xa8\xb4\x46\x23\x2b\xb8\x8d\x60\xb2\xa4\xc5\x87\x06\x5c\xa0\xe8\x7c\x8e\x5b\xb2\xdc\x1c\x9c\x25\x00\x10\x2a\x4a\x8b\x42\x2d\xba\x57\x47\x7c\xec\x19\xf1\x82\x0a\xd0\xd5\x17\x1f\xed\x9d\xa0\x71\x14\x4e\xf0\x51\x0b\x2f\xa8\xd8\x52\x38\xc5\x30\x05\xee\x49\x81\x2f\xc9\x71\x6e\x76\x32\x8e\xe1\x46\xaf\x6f\x46\x9a\x9c\x78\x7e\x73\x02\x96\x3e\x48\x2f\xf7\xe8\x73\x8a\xa5\x0f\xa2\xe0\xf5\xed\x9b\xb7\xa7\xbf\x00\x65\xf0\xe2\xb5\xb7\x0a\xd2\xc9\xf2\x6b\xac\xdf\x6e\xbe\xc9\x22\x77\x50\x3d\xd0\x0b\x48\xd2\xc9\x74\xb3\x78\xb8\xdf\xdc\x27\xf7\xbf\x27\xab\x35\x18\x06\xc9\x09\x0a\x7c\x32\x45\x55\x80\xab\xa2\x46\xf0\xbb\x56\x2d\x83\x78\xb0\x58\x39\x9d\xc3\x0f\x39\x1e\x28\x7e\xd7\x5e\xc0\xa3\x91\x1c\x5e\x44\x68\xe7\xdb\x8f\xbd\x6a\x9b\x96\x5d\xa6\xeb\xd5\x72\x40\x5b\x91\x82\xe1\xed\xf0\x3a\x6b\xb6\x98\xa5\xb3\xbb\xf9\x66\x32\x7f\x58\xa7\xc9\x6a\xb3\x4e\xef\xd2\xe4\x0a\xdf\xd1\xe3\xf0\xb9\xc4\x4b\x76\xfa\xee\xcf\x64\x11\xc5\x22\x88\xff\x40\xae\xf6\x1e\x2a\xa6\x5a\xe0\x9e\x1c\xc5\xc9\x84\xca\x99\x7f\x2b\x02\x6d\x2b\x16\x0a\x30\x9b\x02\xba\xac\x6d\x05\xcc\xa6\x3f\xc3\xc4\xbb\x9d\x0f\x45\xcd\xfa\x1b\x47\x1f\x6f\x46\x6f\xff\xf9\xf4\xcb\xcd\x7f\xdf\xa7\xa1\xae\xe2\xb9\x86\xd9\x62\x9d\xac\xd2\xcd\x77\x51\x5a\x7d\xd3\xd9\x7a\xf2\xee\x7d\xb2\xfa\xab\xaf\xac\xad\xbe\x11\x58\x31\x65\xb0\x3d\xd6\xee\x66\x86\xb5\x3f\x50\x38\x02\x53\x38\x18\x4d\xe7\x42\xea\xc1\x6d\x35\x8f\x4e\xaa\x7e\xfd\x82\xa8\x8b\xd4\x5f\x97\xf3\x65\xf0\x33\x21\x0f\xab\x79\x9c\x71\x47\x5a\xb8\xb1\xc7\x38\x16\x74\xba\xf6\x68\x4f\x92\x53\x88\x82\x58\x7c\x30\x6e\x0f\x08\xd6\xb0\xc4\xf9\x2b\x89\x02\x60\x96\x05\x62\x26\xfe\x09\xce\xb2\x74\xab\xa0\x76\x32\x36\xc3\x38\x23\x06\x2d\xb0\xf9\x48\x91\x1d\xcf\x3a\xc3\x2b\x97\xc5\x50\x5d\x27\xdb\x98\xdf\xea\xc3\xc3\x6a\x7e\x65\x30\x73\x91\x52\x8d\x9b\xad\x70\x32\x40\xc5\xcb\x7e\x7d\xe2\x27\xe9\x7c\xb3\x4c\xae\x5f\x92\x5e\xac\x8b\x08\x81\xd8\x57\x41\x13\x2b\xf8\xf4\xd9\x30\xa1\x50\x18\x87\x62\xbc\xbb\x27\x66\xdc\xd3\x12\x25\x57\x30\x1c\x67\x74\x18\xf7\xfe\x8e\xac\xdf\x0f\xcf\x57\xda\xb2\xb2\x76\xe9\xad\xd1\x47\x05\xb3\xdd\xc2\xcb\x32\x10\xc7\xe5\xde\xa1\x98\x74\x15\x8c\x1c\x27\xde\x09\x3d\x49\x7f\xc1\x68\x2c\x71\x6b\xac\x11\x73\x51\x50\x5c\x50\xe6\x60\x2c\xed\x29\x53\xb0\x43\xcb\x34\x38\x09\x10\x0c\xd2\x65\xbc\xb3\x8f\x78\xec\x3a\x9e\x39\xee\xce\x27\x8d\x43\x7f\x98\xc0\x5d\x25\xed\x2c\xdf\x69\xed\x2b\x27\x0a\x5e\xbe\x1c\xb0\xa0\x54\x4d\xe6\xff\x03\x00\x00\xff\xff\xf3\x44\x86\x8c\xbb\x06\x00\x00") + +func examplesOpenshiftOriginEtcdControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesOpenshiftOriginEtcdControllerYaml, + "examples/openshift-origin/etcd-controller.yaml", + ) +} + +func examplesOpenshiftOriginEtcdControllerYaml() (*asset, error) { + bytes, err := examplesOpenshiftOriginEtcdControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/openshift-origin/etcd-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesOpenshiftOriginEtcdDiscoveryControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6b\x1b\x41\x0c\x85\xef\xfb\x2b\x44\x2e\x39\xb9\xae\xd3\x43\xe8\xdc\x82\x4b\xa1\xd0\x96\xa5\x94\xde\xe5\xd9\xe7\xf5\xd0\xd9\xd1\x20\x69\xdd\x2c\xa5\xff\xbd\x6c\x6c\x2f\x76\x20\x3a\x0d\x7a\xef\x49\x9f\x60\xb8\xa6\x5f\x50\x4b\x52\x02\xe1\xd9\x51\xe6\xa7\xad\x8f\x9b\x1d\x9c\x37\xcd\xef\x54\xba\x40\x9f\x50\xb3\x4c\x03\x8a\x37\x03\x9c\x3b\x76\x0e\x0d\x51\xe1\x01\x81\xe0\xb1\x5b\x75\xc9\xa2\x1c\xa1\x53\x63\x15\x71\x16\xcd\x95\x1d\xfd\x34\xbf\x89\x7c\xaa\x08\xf4\x03\x51\xc1\x8e\x86\x48\x51\x73\x8a\x6c\x81\x36\xb3\x19\x19\xd1\x45\x4f\xe6\x81\x3d\x1e\xbe\xf2\x0e\xd9\x4e\x8d\x37\x56\x11\x39\x86\x9a\xd9\x71\xce\x5d\xb1\xcd\x95\x6f\x46\xbc\x39\x84\xe8\xc2\x3c\x57\x94\xe2\x9c\x0a\x74\x09\xae\xce\xc1\xdb\xcc\x5c\x69\xe0\x1e\x81\xa4\xa2\xd8\x21\xed\x7d\xfd\x32\xfb\xe1\xfd\x2a\xa2\xb8\xd8\xe3\x62\x64\xed\xaf\x38\x56\xaf\x18\xde\xd9\x61\xd1\xaa\xa8\xdf\x58\x17\x9e\x56\xd4\x03\x3d\x7c\x78\xfc\xb8\xa8\x44\x55\xc5\x25\x4a\x0e\xf4\x73\xdb\x2e\x7d\x85\xc9\xa8\x11\x16\xe8\xef\xbf\xa5\xeb\xd0\x21\x15\xf6\x24\xe5\x1b\xcc\xb8\x47\xcb\x7e\x08\x74\xb7\xee\x70\x5c\x5f\xa9\xab\x2c\xfd\xdd\xed\x91\xed\x98\x73\x2b\x39\xc5\x29\xd0\x97\xfd\x77\xf1\x56\x61\xf3\x7f\xb8\xb8\x0c\x71\xd4\xe4\xd3\x56\x8a\xe3\xd9\xc3\x15\x63\xe4\xca\xbb\x94\x93\xa7\x57\x40\x33\x7e\x3a\xa6\x8c\x1e\x5d\xa0\x3d\x67\x43\xb3\x1c\xe0\xac\x7e\xd9\xf8\x94\xff\xf0\x64\x67\xad\x2b\x76\xe9\x6f\xf3\x68\x0e\xfd\x9c\xd4\x2e\x24\x06\x3d\xa6\x88\xa7\x18\x65\x2c\x1e\xe8\xfe\xbe\x31\x67\x1f\x4f\x9b\xff\x07\x00\x00\xff\xff\xbf\x21\x5d\xdb\xee\x02\x00\x00") + +func examplesOpenshiftOriginEtcdDiscoveryControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesOpenshiftOriginEtcdDiscoveryControllerYaml, + "examples/openshift-origin/etcd-discovery-controller.yaml", + ) +} + +func examplesOpenshiftOriginEtcdDiscoveryControllerYaml() (*asset, error) { + bytes, err := examplesOpenshiftOriginEtcdDiscoveryControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/openshift-origin/etcd-discovery-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesOpenshiftOriginEtcdDiscoveryServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8f\xcd\x4a\x44\x31\x0c\x85\xf7\x7d\x8a\xbc\xc0\x80\x3f\x0b\x31\x3b\x9d\x95\x1b\xb9\xa0\xb8\x8f\xed\x19\x29\x76\x9a\x92\xe6\x5e\xb8\x88\xef\x2e\xad\x2b\x17\xce\x32\xe7\xfb\x42\x72\x3e\x73\x4d\x4c\x2f\xb0\x2d\x47\x04\x69\xf9\x0d\xd6\xb3\x56\xa6\xed\x3a\x9c\xe1\x92\xc4\x85\x03\x51\x95\x33\x98\xe0\x31\x1d\x52\xee\x51\x37\xd8\x1e\x88\x8a\xbc\xa3\xf4\x21\xfc\xa3\xf4\x86\x38\x70\x53\xf3\xe9\x1d\xa8\x99\xba\x46\x2d\x4c\xaf\xc7\x65\x6e\x0e\xc8\x74\x73\x7b\x77\x3f\x47\x17\xfb\x80\x2f\x7f\xc3\xaa\x09\xbf\xd1\x55\x20\xea\x28\x88\xae\x76\xe1\xf2\x90\xfa\xe8\xf2\x70\x3a\xe5\x9a\x7d\x67\x7a\xd6\x8a\x40\xe4\x7b\x03\xd3\xb1\xac\xdd\x61\x4f\x4b\xe8\x2e\xbe\xce\xe7\x8a\x4a\x7a\x94\x22\x35\xc2\x98\xbe\xbe\xc3\x4f\x00\x00\x00\xff\xff\x66\xb1\x9c\x1f\x20\x01\x00\x00") + +func examplesOpenshiftOriginEtcdDiscoveryServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesOpenshiftOriginEtcdDiscoveryServiceYaml, + "examples/openshift-origin/etcd-discovery-service.yaml", + ) +} + +func examplesOpenshiftOriginEtcdDiscoveryServiceYaml() (*asset, error) { + bytes, err := examplesOpenshiftOriginEtcdDiscoveryServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/openshift-origin/etcd-discovery-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesOpenshiftOriginEtcdServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\xb1\x4a\x44\x31\x10\x45\xfb\x7c\xc5\xfc\x80\xb0\x6a\xa1\x4e\xa7\x5b\xd9\xc8\x03\xc5\x7e\x4c\xee\x4a\x30\x9b\x09\x93\xd9\x07\x8b\xf8\xef\xf2\xb2\x5b\xf8\x50\xb0\xcc\x39\xe1\xc0\x9d\x8f\x5c\x13\xd3\x33\x6c\xce\x11\x41\x5a\x7e\x85\xf5\xac\x95\x69\xbe\x0c\x7b\xb8\x24\x71\xe1\x40\x54\x65\x0f\x26\x78\x4c\x81\xa8\xc8\x1b\x4a\x5f\xf0\x4a\xf4\x86\xb8\xc0\xa6\xe6\xc3\x5e\x9c\x6d\x2c\x19\xd5\xc7\xf7\x66\xea\x1a\xb5\x30\xbd\x6c\xa7\x13\x51\x73\xa6\xab\xeb\x9b\xbb\xf1\x74\xb1\x77\xf8\xb4\x86\x55\x13\x4e\x68\xf3\x23\xdb\x61\x33\xec\x9f\xec\xed\xe6\x8f\xec\x19\xae\xb3\x1d\x05\xd1\xd5\x7e\xed\x5a\x54\x5f\xae\x72\xbf\xdb\xe5\x9a\xfd\xc8\xf4\xa4\x15\x81\xc8\x8f\x0d\x4c\xdb\x72\xe8\x0e\x7b\x9c\x42\x77\xf1\xc3\x98\x5e\x54\xd2\x83\x14\xa9\x11\xc6\xf4\xf9\x15\xbe\x03\x00\x00\xff\xff\x29\x79\x18\x46\x6a\x01\x00\x00") + +func examplesOpenshiftOriginEtcdServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesOpenshiftOriginEtcdServiceYaml, + "examples/openshift-origin/etcd-service.yaml", + ) +} + +func examplesOpenshiftOriginEtcdServiceYaml() (*asset, error) { + bytes, err := examplesOpenshiftOriginEtcdServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/openshift-origin/etcd-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesOpenshiftOriginOpenshiftControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xcd\x6e\xc2\x40\x0c\x84\xef\x79\x0a\x8b\x3b\x8d\x50\x39\x54\x2b\xf5\xd6\x63\x7f\x38\xf5\x6e\x96\x21\xac\xba\x7f\xf2\x1a\x54\xde\xbe\x4a\x93\xa2\x0d\x49\x7d\x89\xf3\xc5\x33\x19\x9b\xb3\xfb\x84\x14\x97\xa2\x21\x7c\x2b\x62\xdf\x96\xf6\xb2\xd9\x43\x79\xd3\x7c\xb9\x78\x30\xf4\x82\xec\xd3\x35\x20\x6a\x13\xa0\x7c\x60\x65\xd3\x10\x79\xde\xc3\x97\xbe\x23\x8a\x1c\x60\x28\x65\xc4\x72\x72\x47\x6d\xe6\xa4\x64\xd8\x7e\x56\x90\xbd\xb3\x5c\x0c\x6d\x1a\xa2\x02\x0f\xab\x49\x06\x97\xc0\x6a\x4f\xaf\x95\xed\x92\xb1\x22\x64\xcf\x8a\x51\x52\x05\xea\xcb\x4f\xd4\x4b\x7a\xa2\xbf\x28\x7d\xd9\x14\x95\x5d\x84\x54\x9a\x35\xb1\x74\xd5\xfb\xc0\x8a\xb2\xe8\x1d\x0b\x5c\x14\x72\x07\xd7\x6b\x9b\xe2\xd1\x75\xcf\xed\xf0\x6c\x87\xa9\x91\x3e\x5c\x39\xf8\x4a\xe1\x02\x77\x30\xb4\xba\x45\x6c\x93\xb8\xce\xc5\x55\x35\x33\x2e\xf1\xcb\x2b\x9c\x93\xe8\x2c\xe6\x6d\xa1\x5d\x12\x35\xf4\xb4\xdd\x3e\x4e\x26\x96\x4f\x32\xd4\x25\xf9\x73\xc0\x5b\x3a\xc7\xb9\x6f\xe8\xe9\x8e\xf5\x64\x68\xdc\x6b\xd1\x76\xf1\x93\x80\x0f\x1f\xd1\x5f\x0d\xa9\x9c\xd1\xd4\x3f\x9b\x9c\xfd\x1f\x8b\x02\x2b\xd0\x69\xa0\x81\xbd\x4f\x57\x19\x4f\xfc\x13\x00\x00\xff\xff\x42\x33\x61\x0d\xd5\x02\x00\x00") + +func examplesOpenshiftOriginOpenshiftControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesOpenshiftOriginOpenshiftControllerYaml, + "examples/openshift-origin/openshift-controller.yaml", + ) +} + +func examplesOpenshiftOriginOpenshiftControllerYaml() (*asset, error) { + bytes, err := examplesOpenshiftOriginOpenshiftControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/openshift-origin/openshift-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesOpenshiftOriginOpenshiftOriginNamespaceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xca\xb1\x0d\x84\x30\x0c\x05\xd0\xde\x53\x58\xe9\xaf\xb8\xd6\x43\x5c\x79\xfd\x87\x18\xb0\x48\x9c\x28\x8e\x98\x1f\x31\x00\xfd\x3b\xcd\xb3\xf0\x0f\x55\xa3\x63\x55\x42\xb7\xbf\x8e\xb0\xe6\xc2\xd7\x97\xaa\x4e\x64\x4c\x08\x31\x3b\xaa\x0a\xa7\xd6\xd5\xe3\xb0\x6d\x7e\xda\xb0\xdd\x3c\x11\x73\xc1\xa2\x25\x1e\xf4\xce\xee\x00\x00\x00\xff\xff\x7a\x3b\x69\x74\x6a\x00\x00\x00") + +func examplesOpenshiftOriginOpenshiftOriginNamespaceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesOpenshiftOriginOpenshiftOriginNamespaceYaml, + "examples/openshift-origin/openshift-origin-namespace.yaml", + ) +} + +func examplesOpenshiftOriginOpenshiftOriginNamespaceYaml() (*asset, error) { + bytes, err := examplesOpenshiftOriginOpenshiftOriginNamespaceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/openshift-origin/openshift-origin-namespace.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesOpenshiftOriginOpenshiftServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8c\xb1\xaa\x02\x31\x10\x45\xfb\x7c\xc5\xfd\x81\x57\x3c\xdc\x42\xa6\xb4\xb6\x10\x04\xfb\x21\xb9\x6a\x70\x37\x09\x93\x61\xc1\xbf\x97\xa8\x85\xb0\xb7\xba\x1c\x0e\x47\x5b\xbe\xd0\x7a\xae\x45\xb0\xfe\x87\x47\x2e\x49\x70\xa6\xad\x39\x32\x2c\x74\x4d\xea\x2a\x01\x28\xba\x50\x50\x1b\x4b\xbf\xe7\xab\x87\xde\x18\x07\x6f\xd5\xbc\x8f\x03\xfc\x6d\x24\xbc\x37\x14\xc1\x7e\x9a\x76\x5f\xe0\x6a\x37\xfa\xe9\x17\x77\xce\x8c\x5e\xed\x53\xda\x76\xfc\xd9\x28\x38\x56\x4d\x07\x9d\xb5\x44\x5a\x78\x05\x00\x00\xff\xff\xa0\x7c\x9c\xd5\xbb\x00\x00\x00") + +func examplesOpenshiftOriginOpenshiftServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesOpenshiftOriginOpenshiftServiceYaml, + "examples/openshift-origin/openshift-service.yaml", + ) +} + +func examplesOpenshiftOriginOpenshiftServiceYaml() (*asset, error) { + bytes, err := examplesOpenshiftOriginOpenshiftServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/openshift-origin/openshift-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesOpenshiftOriginSecretJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x01\x00\x00\xff\xff\x00\x00\x00\x00\x00\x00\x00\x00") + +func examplesOpenshiftOriginSecretJsonBytes() ([]byte, error) { + return bindataRead( + _examplesOpenshiftOriginSecretJson, + "examples/openshift-origin/secret.json", + ) +} + +func examplesOpenshiftOriginSecretJson() (*asset, error) { + bytes, err := examplesOpenshiftOriginSecretJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/openshift-origin/secret.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPersistentVolumeProvisioningAwsEbsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x24\xcb\xb1\x6a\xc3\x40\x0c\x06\xe0\x5d\x4f\x21\xbc\xdb\xed\x6d\x45\x63\x3b\x74\x0d\x04\xb2\xcb\xf8\x27\x1c\xb6\x4f\x87\x74\xb6\x49\x9e\x3e\x38\x99\x3f\xbe\x39\x97\x49\xf8\xda\xcc\xf5\x8e\xbf\x45\x23\x48\x6b\xbe\xc1\x23\x5b\x11\x8e\x0f\x0c\xf3\x4f\x0c\xd9\xbe\xf6\x44\x2b\x9a\x4e\xda\x54\x88\xb9\xe8\x0a\xe1\x58\xec\xa0\xea\xb6\xe7\xf3\xc0\x85\xe7\x6d\x84\x17\x34\xbc\x93\x1e\xd1\x63\x0c\xaa\xea\xba\xa2\xc1\xe3\xbc\xed\x51\x21\x9c\x2d\x11\xf3\xd3\x0a\x84\xb7\xe8\xa1\xd1\xfa\x34\x11\x73\xb6\x1a\x17\xf8\xff\xaf\x70\x97\xbe\x3b\x7a\x05\x00\x00\xff\xff\x78\x7a\x44\x6c\xa8\x00\x00\x00") + +func examplesPersistentVolumeProvisioningAwsEbsYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPersistentVolumeProvisioningAwsEbsYaml, + "examples/persistent-volume-provisioning/aws-ebs.yaml", + ) +} + +func examplesPersistentVolumeProvisioningAwsEbsYaml() (*asset, error) { + bytes, err := examplesPersistentVolumeProvisioningAwsEbsYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/persistent-volume-provisioning/aws-ebs.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPersistentVolumeProvisioningCinderCinderStorageClassYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x24\xcb\x41\x8a\xc3\x30\x0c\x05\xd0\xbd\x4e\xa1\x13\x64\x98\xdd\xa0\xed\x1c\xa1\xd0\xfd\x4f\xad\x06\x11\xc7\x36\x92\x6a\xc8\xed\x4b\xda\xf5\xe3\xed\xd6\x8a\xf0\x2d\xbb\x63\xd3\xff\x8a\x08\xc2\xb0\xbb\x7a\x58\x6f\xc2\xf1\x85\x65\xff\x8b\xc5\xfa\xcf\xfc\xa5\x43\x13\x05\x09\x21\xe6\x86\x43\x85\xb7\x5e\x0b\x0d\xef\xd3\xae\xa3\x2e\xbc\xbf\x56\xf5\xa6\xa9\x9f\xf4\xb0\x56\xd4\x69\xc0\x71\x68\xaa\xc7\x55\xf3\x1c\x2a\xfc\x44\x24\x31\x63\xc2\x2a\x56\xab\x96\xa7\x70\xeb\x13\xf4\x0e\x00\x00\xff\xff\x7e\x17\x6b\x1a\x98\x00\x00\x00") + +func examplesPersistentVolumeProvisioningCinderCinderStorageClassYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPersistentVolumeProvisioningCinderCinderStorageClassYaml, + "examples/persistent-volume-provisioning/cinder/cinder-storage-class.yaml", + ) +} + +func examplesPersistentVolumeProvisioningCinderCinderStorageClassYaml() (*asset, error) { + bytes, err := examplesPersistentVolumeProvisioningCinderCinderStorageClassYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/persistent-volume-provisioning/cinder/cinder-storage-class.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPersistentVolumeProvisioningCinderExamplePodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xb1\x6e\xf3\x30\x0c\x84\x77\x3d\x05\x5f\x20\x30\xbc\x6a\xcd\xfc\xff\x28\x3a\x64\x67\x64\x22\x21\x4a\x51\x02\xc5\xd8\x7d\xfc\x42\x35\x9c\x2a\x28\x7a\x93\x7d\xe4\x7d\x27\x48\x58\xf9\x42\xd6\xb8\x68\x84\x75\x0e\x1f\xac\x4b\x84\x77\xaa\xc2\x09\x9d\x8b\x9e\x8b\xba\x15\x11\xb2\x90\xc9\x71\x41\xc7\x18\x00\x14\x33\x45\x68\x64\x2b\x59\x68\x95\x52\x37\x6d\x8f\xb5\x08\x73\x00\x68\x24\x94\xbc\x58\x9f\x00\x58\x91\x9f\x00\x80\x53\xae\x82\x4e\xfb\x70\x24\x77\x09\x5e\x49\xda\xf1\xf7\x2b\x0c\x70\x34\x76\xa5\xa2\x8e\xac\x64\xcf\xc0\xe9\xf5\x78\x07\x85\x33\xde\x28\x82\xde\x58\x3f\x9f\xe6\x5a\xe4\x91\xe9\x5f\x79\xa8\x0f\x85\x9d\x91\xbb\xf7\x86\x7e\x8f\x30\xad\x68\x93\xf0\x75\xda\xb6\x6d\xba\x7b\x96\x61\xf1\xb8\x8b\xc4\xba\x90\xd5\x35\x85\x11\x3c\x30\x4f\x7f\x2c\x76\xd5\xfe\x04\xcd\x49\xfd\xf2\x1d\x3b\x0b\x72\x8e\x2f\x2d\xa9\x5b\xff\x77\x42\xff\x9c\xc3\x57\x00\x00\x00\xff\xff\xb1\xbf\x9b\x3e\xbb\x01\x00\x00") + +func examplesPersistentVolumeProvisioningCinderExamplePodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPersistentVolumeProvisioningCinderExamplePodYaml, + "examples/persistent-volume-provisioning/cinder/example-pod.yaml", + ) +} + +func examplesPersistentVolumeProvisioningCinderExamplePodYaml() (*asset, error) { + bytes, err := examplesPersistentVolumeProvisioningCinderExamplePodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/persistent-volume-provisioning/cinder/example-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPersistentVolumeProvisioningClaim1Json = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xce\xbb\x6e\xc3\x30\x0c\x05\xd0\x5d\x5f\x41\x70\xf6\x62\x74\xf3\xea\xa1\x53\x1f\xe8\xe0\x0e\x45\x07\x42\x22\x02\x21\x7a\x38\xa2\x9c\x0c\x86\xfe\x3d\x90\xac\x20\x99\x04\x5c\x1e\x52\x77\x57\x00\x78\xb6\xc1\xe0\x04\xf8\xcd\x49\xac\x64\x0e\x79\x89\x6e\xf3\x3c\x3b\xb2\x1e\x87\x4a\x68\xb5\x4b\x9d\xc6\x50\xe1\x75\x3c\x52\xcf\x99\x0c\x65\xc2\x09\xea\x21\x00\x0c\xe4\xb9\x0a\x5d\x57\x47\x54\x00\xa5\x49\x59\x59\x3f\x15\x69\xcd\x22\x1f\xd1\xb0\xe0\x04\x7f\x2d\x04\xc0\x1f\x26\xf3\x9b\x6c\xe6\xaf\xa0\x19\x5b\xfa\x3f\x1c\x1b\x89\x25\x6e\x49\x37\xbf\x3f\x7c\xe2\xcb\xc6\x92\x5f\xb3\xfa\x55\x8e\x89\x4e\xad\xc5\xdb\xbb\xc5\x3e\x28\xed\x2d\xfd\x5c\x37\xb3\x23\x91\xcf\x5e\x59\x5c\xbc\xb5\xc2\xaa\xa8\x7b\x00\x00\x00\xff\xff\x87\xdd\x54\x0c\x17\x01\x00\x00") + +func examplesPersistentVolumeProvisioningClaim1JsonBytes() ([]byte, error) { + return bindataRead( + _examplesPersistentVolumeProvisioningClaim1Json, + "examples/persistent-volume-provisioning/claim1.json", + ) +} + +func examplesPersistentVolumeProvisioningClaim1Json() (*asset, error) { + bytes, err := examplesPersistentVolumeProvisioningClaim1JsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/persistent-volume-provisioning/claim1.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPersistentVolumeProvisioningGcePdYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x24\xcb\x41\x0a\xc2\x40\x0c\x05\xd0\xfd\x9c\x22\x17\x98\x4a\x77\x92\xad\x47\x10\xdc\xc7\xce\xa7\x0c\x6d\x33\x43\x92\x56\xf4\xf4\x52\x5d\x3f\xde\x52\xb5\x30\xdd\xa3\x99\xcc\xb8\xad\xe2\x9e\xa4\xd7\x07\xcc\x6b\x53\x26\xff\xc3\xb0\x5c\x7d\xa8\xed\x72\x8c\x69\x43\x48\x91\x10\x4e\x44\x2a\x1b\x98\x7c\x6d\xaf\xd4\xad\x1d\xf5\x3c\x30\xa6\x65\x7f\xc2\x14\x81\x5f\x9a\x27\xe4\x5e\x52\x17\x93\x0d\x01\xf3\xb3\xc6\xbb\x83\xa9\x97\xec\x21\x5a\xc4\x4a\x22\xfa\x34\x05\xd3\xee\x79\x82\x86\xc9\x3a\x66\x49\xdf\x00\x00\x00\xff\xff\xb5\x7c\xf7\xa8\xa0\x00\x00\x00") + +func examplesPersistentVolumeProvisioningGcePdYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPersistentVolumeProvisioningGcePdYaml, + "examples/persistent-volume-provisioning/gce-pd.yaml", + ) +} + +func examplesPersistentVolumeProvisioningGcePdYaml() (*asset, error) { + bytes, err := examplesPersistentVolumeProvisioningGcePdYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/persistent-volume-provisioning/gce-pd.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPersistentVolumeProvisioningGlusterfsGlusterfsSecretYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcb\x31\x4b\x03\x41\x10\x86\xe1\x7e\x7f\xc5\x47\xac\x73\xa2\x88\xe0\x40\x0a\x0b\x5b\x1b\x41\xa2\xdd\xdc\xed\x97\x64\xb9\xbb\xdd\x63\x67\xce\xb0\xe2\x8f\xb7\x48\xd2\xbe\x2f\x8f\x2e\xe9\x93\xd5\x52\xc9\x82\x9f\x87\x30\xa6\x1c\x05\x1f\x1c\x2a\x3d\xcc\x74\x8d\xea\x2a\x01\xc8\x3a\x53\x70\xe2\x48\x4f\x5b\xbb\xfc\x4b\xb5\x45\x07\x0a\x22\x0f\xba\x4e\x1e\x6e\xe0\x0e\xbd\x1a\x9f\x9f\xc0\x3c\x94\xc8\x88\x45\xcd\xce\xa5\xc6\x0e\x6f\xdd\xb1\x13\x70\x38\x15\x6c\x33\x36\x73\xbb\xad\x0d\xfe\xae\x2a\x00\x23\x9b\xa0\xdf\x4f\xe7\xaf\xfd\xfb\x6f\x7c\x7c\x69\xdf\xaf\xbb\x5d\xf0\xb6\x50\x30\xae\x3d\x6b\xa6\xd3\xba\x54\xee\x8f\xd3\x6a\xce\x7a\xb0\xf0\x1f\x00\x00\xff\xff\xd3\xa6\xdc\xfc\xce\x00\x00\x00") + +func examplesPersistentVolumeProvisioningGlusterfsGlusterfsSecretYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPersistentVolumeProvisioningGlusterfsGlusterfsSecretYaml, + "examples/persistent-volume-provisioning/glusterfs/glusterfs-secret.yaml", + ) +} + +func examplesPersistentVolumeProvisioningGlusterfsGlusterfsSecretYaml() (*asset, error) { + bytes, err := examplesPersistentVolumeProvisioningGlusterfsGlusterfsSecretYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/persistent-volume-provisioning/glusterfs/glusterfs-secret.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPersistentVolumeProvisioningGlusterfsGlusterfsStorageclassYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\x31\x4f\xc3\x30\x10\x46\x77\xff\x8a\x93\x77\x52\x27\xa1\x4d\x7a\x2b\x33\x2c\x48\xec\x57\xfb\x52\xac\x38\x89\xe5\xbb\x14\xf8\xf7\xc8\x54\x1d\x58\xdf\xa7\xef\xe9\x51\x8e\x1f\x5c\x24\x6e\x2b\x82\xe8\x56\xe8\xca\xcd\x3c\x4a\x13\xb7\xc3\xad\x35\x73\x5c\x03\xc2\xfb\x9d\xbf\x24\x12\x31\x0b\x2b\x05\x52\x42\x03\xb0\xd2\xc2\x08\x92\xb6\x2f\x93\xcb\x76\x8b\x55\xc3\x05\x61\xde\x2f\x5c\x56\x56\xfe\xf3\x5c\xd3\x2e\xca\x65\x12\x93\xa9\xd0\xc2\xca\x45\xea\xbb\xb0\xe8\x5e\x12\x82\xfd\x54\xcd\x78\x38\xb4\xdd\xd0\xb8\xc6\x35\x2d\x8e\x6e\x6c\xad\x01\xf0\xf7\x6b\x0c\x08\xf6\xd4\xbb\x7e\xe8\xbc\x0f\x7e\xe8\x1c\x9d\x3b\x7f\x1a\xdb\xe9\x72\xee\xc6\xa9\x1b\x2e\xc7\x7e\xb2\x0f\xa5\xd4\x04\x4b\x61\x89\x6b\x65\xc2\xbe\xb0\xbe\xd1\xc2\x92\xc9\x33\x82\x0d\x3c\xd1\x9e\xf4\xff\x58\x33\x78\x66\x8d\x4f\x77\x56\xd7\x6b\x0c\xaf\x71\x45\xb0\xcf\xce\x39\xf7\x20\xf4\x8d\x60\x8f\x0f\x72\xdb\xd2\xbe\xb0\xfe\xe4\x6a\x28\x9c\x53\xf4\xa4\x8c\xbd\x35\xbf\x01\x00\x00\xff\xff\xb4\xf7\xd0\xf5\x5b\x01\x00\x00") + +func examplesPersistentVolumeProvisioningGlusterfsGlusterfsStorageclassYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPersistentVolumeProvisioningGlusterfsGlusterfsStorageclassYaml, + "examples/persistent-volume-provisioning/glusterfs/glusterfs-storageclass.yaml", + ) +} + +func examplesPersistentVolumeProvisioningGlusterfsGlusterfsStorageclassYaml() (*asset, error) { + bytes, err := examplesPersistentVolumeProvisioningGlusterfsGlusterfsStorageclassYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/persistent-volume-provisioning/glusterfs/glusterfs-storageclass.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPersistentVolumeProvisioningQuobyteExamplePodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xb1\x6e\xc3\x30\x0c\x44\x77\x7d\x05\x7f\x20\x30\xb2\x6a\xcd\xdc\xa2\xe8\x90\x9d\x56\x88\x44\x28\x45\xaa\x14\x6d\xb7\x7f\x5f\xc8\x81\x53\x07\x45\x6f\xb2\x8f\xbc\x77\x82\x84\x35\x9f\xc9\x5a\x56\x89\x30\x1f\xc3\x47\x96\x4b\x84\x77\xaa\x9c\x13\x7a\x56\x39\xa9\xb8\x29\x33\x59\x28\xe4\x78\x41\xc7\x18\x00\x04\x0b\x45\x68\x64\x33\x59\x68\x95\x52\x37\xed\x1e\x6b\x11\x8e\x01\xa0\x11\x53\x72\xb5\x3e\x01\x30\xe5\xdf\x00\x80\x53\xa9\x8c\x4e\xf7\xe1\x9e\xdc\xc5\x38\x12\xb7\xed\xef\x4f\x18\x60\x6b\xec\x4a\x2a\x8e\x59\xc8\x1e\x81\xc3\xf3\xf1\x36\x4a\x2e\x78\xa5\x08\x72\xcd\xf2\x05\x0f\x77\x56\x9e\x0a\xbd\xe8\x24\xbe\x6b\xec\x90\xd2\xbd\x37\xf4\x5b\x84\x61\x46\x1b\x38\x8f\xc3\xb2\x2c\xc3\xcd\x0b\xef\x16\xb7\xcb\xf8\x9c\x74\xfc\x76\xaa\x73\x0a\x7b\xf2\x0e\x7a\xf8\x6f\xb3\xab\xf6\x57\x68\x4e\xe2\xe7\x35\x77\x62\xcc\x25\x3e\xf5\xa4\x6e\xbd\xae\x88\xf5\xf3\x18\x7e\x02\x00\x00\xff\xff\x84\xd4\xa1\xb3\xbe\x01\x00\x00") + +func examplesPersistentVolumeProvisioningQuobyteExamplePodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPersistentVolumeProvisioningQuobyteExamplePodYaml, + "examples/persistent-volume-provisioning/quobyte/example-pod.yaml", + ) +} + +func examplesPersistentVolumeProvisioningQuobyteExamplePodYaml() (*asset, error) { + bytes, err := examplesPersistentVolumeProvisioningQuobyteExamplePodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/persistent-volume-provisioning/quobyte/example-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPersistentVolumeProvisioningQuobyteQuobyteAdminSecretYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcc\xb1\xce\x82\x40\x0c\x00\xe0\xbd\x4f\xd1\xb0\xf3\xff\x9a\x38\x35\xe1\x21\xd4\x04\xc4\xad\x70\x1d\x2e\x48\x0f\xaf\x3d\x0c\x6f\xef\x20\x6e\xee\x5f\x3e\x5e\x62\x2b\xd9\x62\x52\xc2\xf5\x08\x53\xd4\x40\x78\x95\x31\x8b\xc3\x2c\xce\x81\x9d\x09\x10\x95\x67\x21\x7c\x96\x34\x6c\x2e\x35\x87\x39\x6a\x6d\x1f\xe6\xdb\x22\x84\xd5\x54\x06\xc9\x2a\x2e\xf6\x17\xd3\xff\x2e\x2b\xf8\x06\x0b\x9b\xbd\x52\x0e\x84\xe3\xad\x5d\x7b\x7d\x1c\xee\xe7\xa6\x01\xc4\x62\x92\x09\xfb\xee\xe2\xdc\x9d\x9a\x7d\xfb\x99\xc1\x3b\x00\x00\xff\xff\x15\x61\x7d\xbb\xad\x00\x00\x00") + +func examplesPersistentVolumeProvisioningQuobyteQuobyteAdminSecretYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPersistentVolumeProvisioningQuobyteQuobyteAdminSecretYaml, + "examples/persistent-volume-provisioning/quobyte/quobyte-admin-secret.yaml", + ) +} + +func examplesPersistentVolumeProvisioningQuobyteQuobyteAdminSecretYaml() (*asset, error) { + bytes, err := examplesPersistentVolumeProvisioningQuobyteQuobyteAdminSecretYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/persistent-volume-provisioning/quobyte/quobyte-admin-secret.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPersistentVolumeProvisioningQuobyteQuobyteStorageClassYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x41\x4f\xf2\x40\x10\x86\xef\xfb\x2b\x26\x7b\xa7\x7c\xfd\x24\xd0\xec\x0d\x11\x12\x13\x63\x34\x45\xef\x03\x8c\x75\x03\xdd\x5d\x67\xa6\x98\xfe\x7b\xd3\x6d\x2f\x44\xaf\xef\xfb\x3c\x33\x2f\x26\xff\x4e\x2c\x3e\x06\x07\xa2\x91\xb1\xa1\xe2\x5c\x49\xe1\xe3\xfc\x5a\x9a\xb3\x0f\x27\x07\xf5\x98\x6f\x2e\x28\x62\x5a\x52\x3c\xa1\xa2\x33\x00\x10\xb0\x25\x07\x72\x89\xdf\x26\x71\xbc\xfa\xe1\x0e\xb1\x83\x73\x77\x20\x0e\xa4\x94\x0f\x7d\x75\xf1\xd0\x2b\x99\x84\x8c\x2d\x29\xb1\x64\x19\xa6\x7c\xfd\xf2\x58\x13\x5f\x07\xcf\x7e\xaa\x26\x37\x9f\x97\x77\x55\xb1\xac\x8a\xd5\xa2\x28\x17\xff\xdd\xaa\x5a\xfe\xb3\xd9\x60\x6a\xbc\x28\xf7\x0e\xec\x2f\xa4\x1c\x11\x3c\xb5\x3e\xd4\x74\x64\xd2\xe7\xbc\xce\x4e\x6f\x66\xb9\x99\x49\xae\xfe\x64\x25\xe1\x71\x10\x86\xf5\x33\xe9\x45\xa9\x1d\xb9\x4e\xf2\x38\x8e\x71\x12\x1b\x8e\x5d\xba\x49\xa6\x27\x9b\x18\x3e\x7c\xe3\xc0\xde\xaf\xeb\xed\x4d\xb3\xa7\x80\x41\x1d\xd8\x87\xed\x6e\xfd\xf6\xb4\x1f\xcb\x23\x13\x2a\xbd\x76\x51\xd1\x81\xdd\xe1\x45\xc8\x9a\x9f\x00\x00\x00\xff\xff\xf4\xf3\x21\x4f\x94\x01\x00\x00") + +func examplesPersistentVolumeProvisioningQuobyteQuobyteStorageClassYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPersistentVolumeProvisioningQuobyteQuobyteStorageClassYaml, + "examples/persistent-volume-provisioning/quobyte/quobyte-storage-class.yaml", + ) +} + +func examplesPersistentVolumeProvisioningQuobyteQuobyteStorageClassYaml() (*asset, error) { + bytes, err := examplesPersistentVolumeProvisioningQuobyteQuobyteStorageClassYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/persistent-volume-provisioning/quobyte/quobyte-storage-class.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPersistentVolumeProvisioningRbdCephSecretAdminYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x24\xcb\x41\x4b\xc3\x30\x14\x07\xf0\x7b\x3e\xc5\x63\x9e\x37\x1d\xca\xc0\xc0\x2e\xc3\x16\x11\x36\x9a\xd6\x4d\xdc\xed\xb5\xf9\x43\x63\x97\xd7\x90\x97\x0d\xf6\xed\x05\x3d\xff\xf8\x71\x0a\x27\x64\x0d\xb3\x58\xba\xad\xcd\x14\xc4\x5b\xea\x30\x64\x14\x13\x51\xd8\x73\x61\x6b\x88\x84\x23\x2c\x0d\x48\xe3\x52\xff\x74\xc9\x3e\x06\x31\xe5\x9e\x60\x69\x31\x5d\x7b\x64\x41\x81\xae\xc2\xfc\x98\x7b\xbf\x30\xff\xf3\xa1\xb9\x80\x15\x24\x73\x01\x95\x31\x28\xdd\xf8\x72\x05\x05\xa5\x9e\x15\x9b\x17\x82\x0c\xb3\x87\x5f\x19\xa2\x09\x77\x4b\xee\x54\x57\x6e\x9d\xf6\xbe\x1e\x9b\xa3\xb8\xdc\xc5\x71\xe7\x8e\xf5\x37\x57\xed\xd7\xe1\xfd\x43\xcf\xcf\x3b\xdd\xc7\xc3\xcf\xf0\xd6\x6e\xda\xfa\xdc\x7d\x3e\x55\xaf\x8d\xdb\x6e\xcd\x6f\x00\x00\x00\xff\xff\xe4\x9a\xaa\xcf\xcb\x00\x00\x00") + +func examplesPersistentVolumeProvisioningRbdCephSecretAdminYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPersistentVolumeProvisioningRbdCephSecretAdminYaml, + "examples/persistent-volume-provisioning/rbd/ceph-secret-admin.yaml", + ) +} + +func examplesPersistentVolumeProvisioningRbdCephSecretAdminYaml() (*asset, error) { + bytes, err := examplesPersistentVolumeProvisioningRbdCephSecretAdminYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/persistent-volume-provisioning/rbd/ceph-secret-admin.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPersistentVolumeProvisioningRbdCephSecretUserYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x24\xcb\x41\x4b\xc3\x30\x18\x06\xe0\x7b\x7e\xc5\xcb\x3c\x6f\x22\x8a\x60\x60\x97\x41\xbb\x5b\x59\xeb\xa8\xe8\xed\x6b\xbf\x17\x12\x9a\xa6\x25\x49\x07\xfd\xf7\x82\x9e\x1f\x1e\x59\x7d\xcf\x94\xfd\x12\x2d\x1e\x2f\x66\xf2\x51\x2d\x3e\x39\x26\x16\x33\xb3\x88\x4a\x11\x6b\x80\x28\x33\x2d\x46\xae\xee\x98\xff\xf4\xb8\x65\x26\x53\xf6\x95\x16\x87\x69\x1b\x98\x22\x0b\xf3\xc9\x2f\xcf\x69\xd0\x03\x60\xfe\xeb\xd3\x2d\x50\x32\x11\x97\x42\x14\xe7\x33\x1e\x12\x36\xc2\x67\x0c\x92\xf9\xfe\x06\xc6\x71\x51\xea\xc9\x00\x13\x77\x8b\xb6\xaf\x2f\xf7\x2f\xfd\x96\xfa\xe7\xb5\x9d\x9a\xd0\x5d\xdd\xa5\xbd\x87\x6d\xa8\x2f\xae\x8b\x61\xee\xfb\xc6\x69\xa5\x55\x73\xed\xf6\x2e\x68\xa5\xa1\xfa\xb8\xb5\xe7\xb3\xf9\x0d\x00\x00\xff\xff\x81\x8e\x88\x3f\xcc\x00\x00\x00") + +func examplesPersistentVolumeProvisioningRbdCephSecretUserYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPersistentVolumeProvisioningRbdCephSecretUserYaml, + "examples/persistent-volume-provisioning/rbd/ceph-secret-user.yaml", + ) +} + +func examplesPersistentVolumeProvisioningRbdCephSecretUserYaml() (*asset, error) { + bytes, err := examplesPersistentVolumeProvisioningRbdCephSecretUserYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/persistent-volume-provisioning/rbd/ceph-secret-user.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPersistentVolumeProvisioningRbdPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x31\x6e\xeb\x30\x0c\x86\x77\x9d\x82\x17\x08\x0c\xaf\x5a\x33\xbf\x87\xa2\x43\x76\x46\x21\x12\xa2\x14\x25\x50\x8c\xdd\xde\xbe\x90\x03\xa7\x0a\x5a\x4e\xf6\x4f\x7e\x1f\x05\x62\xe5\x13\x59\xe3\xa2\x11\x96\x39\x7c\xb0\x5e\x22\xbc\x53\x15\x4e\xe8\x5c\xf4\x58\xd4\xad\x88\x90\x85\x4c\x8e\x17\x74\x8c\x01\x40\x31\x53\x84\x46\xb6\x90\x85\x56\x29\xf5\xd0\x1e\x58\x8b\x30\x07\x80\x46\x42\xc9\x8b\xf5\x0e\x80\x15\xf9\x01\x00\x9c\x72\x15\x74\x7a\x34\x47\x73\x2f\xc1\x33\x49\xdb\xff\x7e\xc1\x00\xfb\xc6\x5e\xa9\xa8\x23\x2b\xd9\x13\x38\xbc\x3e\x6f\xb7\x70\xc6\x2b\x45\xd0\x2b\xeb\xe7\x33\x5c\x8a\xdc\x33\xfd\x2b\x77\xf5\x61\x61\x77\xe4\x9e\xbd\xa1\xdf\x22\x4c\x0b\xda\x24\x7c\x9e\xd6\x75\x9d\x6e\x9e\x65\x18\xdc\x6f\x91\xbf\xea\x92\xc2\x28\x1d\x7c\x87\x3f\x86\x7a\xd5\x7e\xfa\xe6\xa4\x7e\xda\x90\xa3\x20\xe7\xf8\x62\x4f\x3d\xfa\xbf\xd1\xdb\xe7\x1c\xbe\x03\x00\x00\xff\xff\x7c\xc8\xaa\x60\xb3\x01\x00\x00") + +func examplesPersistentVolumeProvisioningRbdPodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPersistentVolumeProvisioningRbdPodYaml, + "examples/persistent-volume-provisioning/rbd/pod.yaml", + ) +} + +func examplesPersistentVolumeProvisioningRbdPodYaml() (*asset, error) { + bytes, err := examplesPersistentVolumeProvisioningRbdPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/persistent-volume-provisioning/rbd/pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPersistentVolumeProvisioningRbdRbdStorageClassYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8e\xb1\x6e\xc3\x30\x0c\x44\x77\x7d\x05\x91\xdd\x6a\xdc\xa1\x49\xb9\x76\xea\xd2\x25\x40\x77\xc6\x22\x5a\xc1\x96\x28\x90\x4c\x8a\xfe\x7d\x61\x79\x28\x32\x78\x93\xde\x1d\xef\x8e\x5a\xfe\x64\xb5\x2c\x15\xc1\x5c\x94\xbe\x38\xce\x67\x8b\x59\x9e\xee\x63\x98\x73\x4d\x08\x97\x8d\xbf\x2d\x64\x16\x0a\x3b\x25\x72\xc2\x00\x00\x95\x0a\x23\xd8\x22\x3f\xa1\xa9\xdc\xf3\x9a\xc3\x8a\x30\xdf\xae\xac\x95\x9d\x7b\x90\x5e\x53\x68\xa4\x54\xd8\x59\xad\x1f\x42\x91\x9a\x5d\xd4\x10\xc6\xe7\x53\x3c\xc6\x63\x1c\xf1\xe5\x74\x7e\xed\x22\xa5\x92\xeb\x7b\xc2\xed\xf1\x8f\x2e\x3c\x29\xfb\x47\x2f\x9d\xb8\x7d\x0f\xd6\xc1\xb0\x6b\xb3\x46\x13\x23\x1c\xd6\x3d\x83\xfd\x9a\x73\x39\x74\x5f\x13\x59\xb6\x99\xfd\x7b\x33\xd6\xb5\xef\x01\xec\xb5\xad\x5a\x08\x7f\x01\x00\x00\xff\xff\x71\x84\xc8\x20\x39\x01\x00\x00") + +func examplesPersistentVolumeProvisioningRbdRbdStorageClassYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPersistentVolumeProvisioningRbdRbdStorageClassYaml, + "examples/persistent-volume-provisioning/rbd/rbd-storage-class.yaml", + ) +} + +func examplesPersistentVolumeProvisioningRbdRbdStorageClassYaml() (*asset, error) { + bytes, err := examplesPersistentVolumeProvisioningRbdRbdStorageClassYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/persistent-volume-provisioning/rbd/rbd-storage-class.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPhabricatorPhabricatorControllerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\xdf\x4a\xf3\x30\x18\xc6\xcf\x7b\x15\x21\xc7\xeb\xbe\x6d\xfd\x10\xd9\x99\xcc\x1d\x0c\x94\xd5\x56\x26\x22\x32\xde\x75\xaf\x5b\x58\x9a\x84\x34\x56\x51\x7a\xef\x92\x6e\x73\x6d\x5a\xcb\xc4\xc3\x26\xcf\x9f\xdf\x13\xe8\xa7\x47\x08\xdd\x31\xb1\xa6\x63\x42\x23\x54\x9c\x25\x60\x98\x14\x13\x29\x8c\x96\x9c\xa3\xa6\x3d\x2b\x01\xc5\x16\xa8\x33\x26\x85\x15\xe6\xc3\xfd\x69\x8a\x06\xd6\x60\x80\x8e\x89\x0d\x22\x84\x0a\x48\xd1\x2a\xd4\x16\x56\xda\x66\x49\xed\x27\xf5\x2c\x42\x28\x87\x15\xf2\xec\xdb\xd5\xee\xa3\xe5\x5d\xe1\x11\x52\x94\x65\x99\xc2\xe4\x54\xa4\xf7\xac\x36\x64\x78\x48\xcd\x90\x63\x62\x8d\x67\xe5\x1e\x4c\x06\x53\xc5\xc1\x60\xd5\xd4\x98\xd5\x0e\xdd\x5d\x70\x84\xaf\x94\xb9\x23\xca\x13\xfb\x3a\xc0\x04\x6a\x1b\xfd\x54\x89\xae\xd6\xfc\x50\xd4\xab\x4b\x58\x0a\x9b\x52\xf3\xb2\xd1\x1f\xb0\xde\xc9\xb7\x6c\xc7\xfe\xe1\x3b\xa4\x8a\xa3\xaf\xb6\xca\xef\x30\x2b\xa9\x8d\x8b\xd0\xc4\xa8\xa1\x6c\x8d\x51\x7e\x86\x3a\x47\x37\xad\xbe\x2c\x94\xda\xd0\x31\xb9\x1c\x38\x9a\xa2\xf6\xfd\xec\x00\xa1\xc8\x7f\x87\x73\xfb\x18\xdf\xdd\x2c\xe3\x69\xb4\x98\x4d\xa6\xcb\x59\xd8\xc6\x94\x03\x7f\x2d\xc5\xc3\xfe\xa8\x1f\xf4\xff\x53\x17\xc9\xf5\x9c\xdd\x17\xce\xa3\xfb\xce\xc6\x20\x18\x5c\xfc\xbd\x2e\xbc\x8a\xe3\x87\x79\x74\xdd\x3d\x6e\x14\x34\x97\xd5\x1f\xdb\x6b\xbb\x39\x9e\x16\xa7\x5f\xcf\x2b\xbc\xaf\x00\x00\x00\xff\xff\x7d\x9f\xff\x73\x24\x04\x00\x00") + +func examplesPhabricatorPhabricatorControllerJsonBytes() ([]byte, error) { + return bindataRead( + _examplesPhabricatorPhabricatorControllerJson, + "examples/phabricator/phabricator-controller.json", + ) +} + +func examplesPhabricatorPhabricatorControllerJson() (*asset, error) { + bytes, err := examplesPhabricatorPhabricatorControllerJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/phabricator/phabricator-controller.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPhabricatorPhabricatorServiceJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8e\x31\x0b\xc2\x30\x10\x85\xf7\xfc\x8a\xe3\xe6\x0a\xba\x49\x46\x67\x07\x41\x70\x11\x87\x33\x3d\x6c\xb0\x4d\x42\x72\x14\x44\xf2\xdf\x25\x49\x69\x27\xb3\x84\x7b\xef\xbb\x77\xef\xab\x00\xf0\x6d\x5d\x8f\x1a\xf0\xca\x71\xb6\x86\xb1\x2b\x22\x05\x7b\xe3\x98\xac\x77\xc5\x9a\x0f\x4d\x9d\x58\xa8\x27\x21\xd4\x50\x56\x01\xd0\xd1\xc4\x85\x08\x03\x3d\xa3\x35\x24\x3e\xa2\x02\xc8\x15\x4f\x81\xcd\x86\x06\x1f\x25\xa1\x86\x7b\x1d\x61\x91\x57\x0b\x35\x1c\xf7\xdd\xa6\x09\xc5\x17\xcb\xa5\x39\x38\x88\x84\x5d\xe2\x38\x73\xcd\x2f\x2f\xd7\xff\xd1\x56\x30\xf1\xc8\xa6\x5c\xd7\x6b\xf0\xbf\x72\x4b\xbd\x72\xe3\x13\x2a\x70\xf6\xd4\x9f\x68\x24\x67\x5a\x7c\x56\x59\xfd\x02\x00\x00\xff\xff\xbd\xb1\x74\x63\x1c\x01\x00\x00") + +func examplesPhabricatorPhabricatorServiceJsonBytes() ([]byte, error) { + return bindataRead( + _examplesPhabricatorPhabricatorServiceJson, + "examples/phabricator/phabricator-service.json", + ) +} + +func examplesPhabricatorPhabricatorServiceJson() (*asset, error) { + bytes, err := examplesPhabricatorPhabricatorServiceJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/phabricator/phabricator-service.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPhabricatorPhpPhabricator000DefaultConf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x90\x41\x4b\xc3\x50\x0c\x80\xef\xef\x57\xe4\xb0\x83\x8e\xad\xc1\x7b\xad\x28\x13\x3c\x78\xb1\x82\x97\xa1\x25\x7b\x8d\x6b\xa0\x7b\xa9\x59\xea\xd3\x7f\x2f\x15\x71\x82\x1e\xdc\x77\x0c\xf9\xf2\x41\xca\x95\x18\x47\x57\x7b\x07\xec\x74\xc7\x98\x73\x5e\xb6\xe4\x84\x43\x47\x1b\x93\x48\xae\x86\x99\x37\xa6\xea\x55\x00\xa8\xf9\x65\x14\x63\xa0\xbe\x87\xad\x51\x72\x6e\x43\x89\xdf\x57\xaa\x10\xca\x07\x31\x1f\xa9\xbf\xd1\xbd\xc3\x7c\x72\x56\x1a\xc7\x1d\x27\xaf\x55\xfd\x1f\x99\xf0\x99\xc9\x26\xce\xd7\x69\x2b\x89\x41\xd3\x61\x54\x8f\x3d\xc3\x13\xda\xde\x22\x9e\x14\xf3\x53\x98\x58\xc2\xdf\xac\x6f\x17\x77\xf7\x97\x8f\xbf\xec\x67\x7a\x95\xa8\xa9\x90\xa8\xc7\xdb\x53\x75\x76\xd8\x42\x49\x2d\xbf\x15\x43\x37\x5c\x34\xcd\x40\xde\x35\xcd\xf9\xec\x0c\x60\x7d\xb5\xf8\xf2\x4b\xfc\xf1\x92\x2a\x7c\x04\x00\x00\xff\xff\xb6\xcb\xc4\xd8\x74\x01\x00\x00") + +func examplesPhabricatorPhpPhabricator000DefaultConfBytes() ([]byte, error) { + return bindataRead( + _examplesPhabricatorPhpPhabricator000DefaultConf, + "examples/phabricator/php-phabricator/000-default.conf", + ) +} + +func examplesPhabricatorPhpPhabricator000DefaultConf() (*asset, error) { + bytes, err := examplesPhabricatorPhpPhabricator000DefaultConfBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/phabricator/php-phabricator/000-default.conf", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPhabricatorPhpPhabricatorDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\xef\x6f\xdb\x36\x10\xfd\xae\xbf\xe2\xc1\x1a\xd2\x36\x8b\x44\xc7\xe8\x86\x21\xfb\xe4\xe5\x07\x66\x34\xb5\x07\x3b\x59\x57\xec\x07\x4a\x53\x67\x89\x0b\x45\xb2\xe4\x29\x8e\x87\xfd\xf1\x03\x25\x35\x58\x9a\x61\x5f\x36\x03\x36\xcf\x77\xef\x1e\x1f\xdf\x51\xca\x71\xee\xfc\x21\xe8\xba\x61\xcc\xa6\xa7\x5f\xe3\xa6\x21\xbc\xe9\xb6\x14\x2c\x31\x45\xcc\x3b\x6e\x5c\x88\x65\x96\x67\x39\xae\xb5\x22\x1b\xa9\x42\x67\x2b\x0a\xe0\x86\x30\xf7\x52\x35\xf4\xa9\x72\x82\x1f\x29\x44\xed\x2c\x66\xe5\x14\x2f\x13\x60\x32\x96\x26\xaf\xbe\xcd\x72\x1c\x5c\x87\x56\x1e\x60\x1d\xa3\x8b\x04\x6e\x74\xc4\x4e\x1b\x02\x3d\x28\xf2\x0c\x6d\xa1\x5c\xeb\x8d\x96\x56\x11\xf6\x9a\x9b\x7e\x9b\x91\xa4\xcc\x72\xbc\x1f\x29\xdc\x96\xa5\xb6\x90\x50\xce\x1f\xe0\x76\x7f\xc7\x41\x72\x2f\x38\x7d\x1a\x66\x7f\x26\xc4\x7e\xbf\x2f\x65\x2f\xb6\x74\xa1\x16\x66\x00\x46\x71\xbd\x38\xbf\x5c\x6e\x2e\x8b\x59\x39\xed\x5b\x6e\xad\xa1\x18\x11\xe8\x63\xa7\x03\x55\xd8\x1e\x20\xbd\x37\x5a\xc9\xad\x21\x18\xb9\x87\x0b\x90\x75\x20\xaa\xc0\x2e\xe9\xdd\x07\xcd\xda\xd6\x27\x88\x6e\xc7\x7b\x19\x28\xcb\x51\xe9\xc8\x41\x6f\x3b\x7e\x62\xd6\x27\x75\x3a\x3e\x01\x38\x0b\x69\x31\x99\x6f\xb0\xd8\x4c\xf0\xdd\x7c\xb3\xd8\x9c\x64\x39\xde\x2d\x6e\xbe\x5f\xdd\xde\xe0\xdd\x7c\xbd\x9e\x2f\x6f\x16\x97\x1b\xac\xd6\x38\x5f\x2d\x2f\x16\x37\x8b\xd5\x72\x83\xd5\x15\xe6\xcb\xf7\x78\xb3\x58\x5e\x9c\x80\x34\x37\x14\x40\x0f\x3e\x24\xfd\x2e\x40\x27\x1b\xa9\x4a\x9e\x6d\x88\x9e\x08\xd8\xb9\x41\x50\xf4\xa4\xf4\x4e\x2b\x18\x69\xeb\x4e\xd6\x84\xda\xdd\x53\xb0\xda\xd6\xf0\x14\x5a\x1d\xd3\x30\x23\xa4\xad\xb2\x1c\x46\xb7\x9a\x25\xf7\x99\x67\x87\x2a\xb3\xec\x6a\xbd\x7a\x8b\x6e\xdb\x59\xee\xce\x4e\x5f\x97\xd3\xd7\x59\x96\x63\x61\x23\x4b\x63\x90\xbe\x09\xfe\x68\xac\x97\xea\x4e\xd6\x14\xcb\x6c\x7d\xbb\x84\xf4\x5c\xd4\xc4\xe8\x7c\x25\x99\x70\x74\x84\x5f\x32\x3c\x66\x8b\x03\xf4\xc8\x93\xd2\xb5\x66\x0c\xb3\x9c\xa1\xf2\x77\x75\x51\xd1\x3d\xfc\x81\x1b\x67\x0b\x7f\xa8\x5b\xb2\x1c\x7b\xa0\x6f\xfc\x57\xfd\x4f\xd1\x1e\xe2\x47\x33\x84\x75\x35\xac\x7d\x53\x0a\x54\x17\xfa\x52\x21\xbd\x1a\x33\x46\x0f\xc1\xef\xd1\xd9\x21\x7a\x68\x7c\x70\xbb\x7f\x10\xa6\x0c\x49\x0b\xd9\xb1\x1b\xa2\x11\x11\x5a\x14\x61\x07\x71\x2f\x83\x30\x7a\x2b\xa4\x67\x61\x74\xe4\x28\x8e\x21\xb8\xf5\x69\x49\xb5\x3e\xcc\xb2\xfc\xdc\xd9\x9d\xae\xbb\x40\x69\xbb\xc1\x92\x19\xd9\xd6\x55\x08\x94\x6e\xd8\x33\x4f\xa2\xeb\x82\xa2\xe1\x88\x63\xe9\xa5\xaa\xf0\xc1\x44\x14\xa7\x57\xf8\x13\x75\x20\x8f\x17\xbf\xf5\xea\xcb\x63\xf1\xc5\x8b\x0f\x82\x1e\x58\x78\x65\xd9\xa4\x0e\xdf\x78\xfd\x47\x4f\x5b\x0a\xf5\xb8\xfb\xd1\x11\x5a\x79\xd7\xaf\xb1\xab\xdc\xf0\x67\x34\xff\x55\x1a\xe8\xb5\x93\x15\x94\xab\x68\x54\x30\xcc\xaf\xbd\xab\x74\x80\x68\x5c\x4b\xe9\x51\x2b\x2a\xc9\xb2\x2f\xa8\xea\xb3\x6c\x62\x4e\x03\x54\xc6\x59\xea\x9f\xce\x78\x26\x44\xad\xb9\xe9\xb6\xa5\x72\xad\xf0\x8d\x54\xda\x68\x3e\x24\xdf\x7c\xd3\xb1\x36\x65\x6a\x18\x0f\xf9\x5f\x08\x65\x50\xd2\xea\xc8\xff\x17\x9f\x6f\xe4\x36\x68\x25\xd9\x85\x27\x94\x8d\xdb\x5b\x14\x6b\x3c\x52\x3e\xdf\x61\xc0\xd5\xc1\xff\x0b\x2e\xcb\xe6\x17\x17\x98\x4e\xa7\x45\x45\x3b\xd9\x19\x2e\xd3\x9c\x20\x88\x95\x18\xef\xbf\x88\x9a\x29\x16\xf2\x5e\x6a\x93\xde\x50\xe2\x73\x74\x4f\x11\x3a\x5b\xc6\x06\x62\x58\x87\xb9\x34\xe9\x6e\xc9\x2f\x1f\x20\x8e\x53\x2e\xcb\xb1\xee\xec\xf8\x3e\x9f\x95\xd9\xe5\x4f\x3f\xac\x36\x97\xf8\x66\x9a\x9d\xbf\xbd\xc0\xcf\x93\xb1\x77\xf2\x6b\xf6\x57\x00\x00\x00\xff\xff\xa7\x7a\x7a\xc4\x33\x06\x00\x00") + +func examplesPhabricatorPhpPhabricatorDockerfileBytes() ([]byte, error) { + return bindataRead( + _examplesPhabricatorPhpPhabricatorDockerfile, + "examples/phabricator/php-phabricator/Dockerfile", + ) +} + +func examplesPhabricatorPhpPhabricatorDockerfile() (*asset, error) { + bytes, err := examplesPhabricatorPhpPhabricatorDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/phabricator/php-phabricator/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPhabricatorPhpPhabricatorRunSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\x41\x6f\xa3\x48\x10\x85\xef\xfd\x2b\xde\x9a\x1c\x76\x25\x1b\x12\x4b\x7b\xd9\x3d\x31\xb6\x33\x83\xe2\x18\x07\x9c\x44\x39\x45\x0d\x94\xa1\x25\xdc\x4d\xba\x8b\x38\x68\x92\xff\x3e\x02\xdb\xa3\xc9\xe4\x30\x0a\x47\xea\xf5\xab\xaf\x5f\x55\x7b\x7f\x05\x99\xd2\x41\x26\x5d\x25\x84\x87\x99\x69\x3a\xab\xca\x8a\x31\x3d\xbf\xf8\x17\x9b\x8a\x70\xd5\x66\x64\x35\x31\x39\x84\x2d\x57\xc6\x3a\x5f\x78\xc2\xc3\x52\xe5\xa4\x1d\x15\x68\x75\x41\x16\x5c\x11\xc2\x46\xe6\x15\x9d\x2a\x63\xdc\x91\x75\xca\x68\x4c\xfd\x73\xfc\xdd\x0b\x46\xc7\xd2\xe8\x9f\xff\x85\x87\xce\xb4\xd8\xc9\x0e\xda\x30\x5a\x47\xe0\x4a\x39\x6c\x55\x4d\xa0\x97\x9c\x1a\x86\xd2\xc8\xcd\xae\xa9\x95\xd4\x39\x61\xaf\xb8\x1a\xda\x1c\x4d\x7c\xe1\xe1\xe1\x68\x61\x32\x96\x4a\x43\x22\x37\x4d\x07\xb3\xfd\x55\x07\xc9\x03\x70\xff\x55\xcc\xcd\x7f\x41\xb0\xdf\xef\x7d\x39\xc0\xfa\xc6\x96\x41\x7d\x10\xba\x60\x19\xcd\x16\xab\x74\x31\x99\xfa\xe7\xc3\x91\x5b\x5d\x93\x73\xb0\xf4\xd4\x2a\x4b\x05\xb2\x0e\xb2\x69\x6a\x95\xcb\xac\x26\xd4\x72\x0f\x63\x21\x4b\x4b\x54\x80\x4d\xcf\xbb\xb7\x8a\x95\x2e\xc7\x70\x66\xcb\x7b\x69\x49\x78\x28\x94\x63\xab\xb2\x96\xdf\x85\x75\xa2\x53\xee\x9d\xc0\x68\x48\x8d\x51\x98\x22\x4a\x47\xf8\x12\xa6\x51\x3a\x16\x1e\xee\xa3\xcd\xb7\xf8\x76\x83\xfb\x30\x49\xc2\xd5\x26\x5a\xa4\x88\x13\xcc\xe2\xd5\x3c\xda\x44\xf1\x2a\x45\x7c\x89\x70\xf5\x80\xab\x68\x35\x1f\x83\x14\x57\x64\x41\x2f\x8d\xed\xf9\x8d\x85\xea\x63\xa4\xa2\xcf\x2c\x25\x7a\x07\xb0\x35\x07\x20\xd7\x50\xae\xb6\x2a\x47\x2d\x75\xd9\xca\x92\x50\x9a\x67\xb2\x5a\xe9\x12\x0d\xd9\x9d\x72\xfd\x30\x1d\xa4\x2e\x84\x87\x5a\xed\x14\x4b\x1e\xfe\x7c\xb8\x94\x2f\x04\xe5\x95\xc1\xe8\xba\x4b\x6f\x96\xa8\x8c\x63\x44\x6b\x9c\x7d\xbf\x7e\x48\x6f\x96\x8f\xe9\x22\xb9\x8b\x66\x8b\xc7\x68\xfd\x86\xc6\x58\xfe\x50\x58\xc7\xc9\xe6\xcd\x1f\x89\xa0\x32\x3b\xea\xa7\x35\x29\x24\xcb\xa0\xa9\x64\x66\x55\x2e\xd9\xd8\x61\x6b\x73\xa3\xb7\xaa\x84\x23\xc6\xae\x73\x4f\xb5\x3f\x34\x3a\xfb\xbd\xc9\xa7\x6d\x0e\x4c\x1f\x91\x3e\x6f\x24\x9d\x3b\x19\xad\xc3\x34\xbd\x8f\x93\xf9\x29\x9a\xa4\xd5\x43\xb4\x8e\x8d\xed\xc3\x6e\x9b\xd2\xca\x82\xfe\x78\xe9\x93\x7e\x32\xd9\x1a\x9b\xff\x3c\x87\xd7\x57\xd0\x8b\x62\x5c\x08\xe1\x4c\xdb\x57\x02\xe2\x3c\x38\xac\xf9\x34\x20\xfd\xfc\x2c\xad\x3b\x36\x4f\x59\xda\x7e\x4f\x8f\x4f\x76\x3a\x12\x47\x1d\x26\x73\x5c\xc6\xc9\xe2\x6b\x12\xdf\xae\xe6\x42\xfc\x08\x00\x00\xff\xff\x5c\x2d\x20\x99\x20\x04\x00\x00") + +func examplesPhabricatorPhpPhabricatorRunShBytes() ([]byte, error) { + return bindataRead( + _examplesPhabricatorPhpPhabricatorRunSh, + "examples/phabricator/php-phabricator/run.sh", + ) +} + +func examplesPhabricatorPhpPhabricatorRunSh() (*asset, error) { + bytes, err := examplesPhabricatorPhpPhabricatorRunShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/phabricator/php-phabricator/run.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPhabricatorSetupSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x93\x51\x6f\x9b\x3c\x14\x86\xef\xf9\x15\xef\x17\xa4\xea\x9b\x14\x48\x56\x69\xd2\xd4\x69\x17\x2c\xed\x34\xd4\x2a\x99\x4a\xba\xaa\x97\xc6\x1c\xc0\x9b\x63\xb3\xe3\x43\x69\xfe\xfd\x04\x49\xd5\x46\xdb\xa4\x71\x07\x7e\xce\xeb\x87\x17\x1c\xff\xb7\x28\x8d\x5b\x94\x2a\xb4\x51\x14\x63\xe5\xbb\x3d\x9b\xa6\x15\x9c\x2f\xdf\xbe\xc3\xb6\x25\x5c\xf7\x25\xb1\x23\xa1\x80\xac\x97\xd6\x73\x48\xa3\x38\x8a\x71\x63\x34\xb9\x40\x15\x7a\x57\x11\x43\x5a\x42\xd6\x29\xdd\xd2\xf3\xca\x1c\xdf\x88\x83\xf1\x0e\xe7\xe9\x12\xff\x8f\xc0\xec\xb8\x34\x7b\xf3\x21\x8a\xb1\xf7\x3d\x76\x6a\x0f\xe7\x05\x7d\x20\x48\x6b\x02\x6a\x63\x09\xf4\xa4\xa9\x13\x18\x07\xed\x77\x9d\x35\xca\x69\xc2\x60\xa4\x9d\xb6\x39\x86\xa4\x51\x8c\x87\x63\x84\x2f\x45\x19\x07\x05\xed\xbb\x3d\x7c\xfd\x9a\x83\x92\x49\x78\xbc\x5a\x91\xee\x62\xb1\x18\x86\x21\x55\x93\x6c\xea\xb9\x59\xd8\x03\x18\x16\x37\xf9\xea\x6a\x5d\x5c\x25\xe7\xe9\x72\x1a\xb9\x73\x96\x42\x00\xd3\xcf\xde\x30\x55\x28\xf7\x50\x5d\x67\x8d\x56\xa5\x25\x58\x35\xc0\x33\x54\xc3\x44\x15\xc4\x8f\xbe\x03\x1b\x31\xae\x99\x23\xf8\x5a\x06\xc5\x14\xc5\xa8\x4c\x10\x36\x65\x2f\x27\x65\x3d\xdb\x99\x70\x02\x78\x07\xe5\x30\xcb\x0a\xe4\xc5\x0c\x9f\xb2\x22\x2f\xe6\x51\x8c\xfb\x7c\xfb\x65\x73\xb7\xc5\x7d\x76\x7b\x9b\xad\xb7\xf9\x55\x81\xcd\x2d\x56\x9b\xf5\x65\xbe\xcd\x37\xeb\x02\x9b\xcf\xc8\xd6\x0f\xb8\xce\xd7\x97\x73\x90\x91\x96\x18\xf4\xd4\xf1\xe8\xef\x19\x66\xac\x91\xaa\xb1\xb3\x82\xe8\x44\xa0\xf6\x07\xa1\xd0\x91\x36\xb5\xd1\xb0\xca\x35\xbd\x6a\x08\x8d\x7f\x24\x76\xc6\x35\xe8\x88\x77\x26\x8c\x1f\x33\x40\xb9\x2a\x8a\x61\xcd\xce\x88\x92\xe9\xc9\x6f\x2f\x95\x46\x11\xe9\xd6\x63\xb6\x62\x52\x42\xf8\xda\xaa\x92\x8d\x56\xe2\x19\x4c\x53\x81\xe3\x24\xb4\x77\xc2\xde\x5a\xe2\x19\xce\xce\xf0\xa3\x2f\x49\x8b\x85\x3e\x4c\x25\x35\xba\x97\xc1\xe4\x05\x4e\xbf\x07\xef\xfe\xbe\x43\x20\x7e\x34\x9a\xfe\x21\xf2\x48\xfe\x21\xaf\x36\x4c\x83\xb2\x16\xdc\xdb\x43\x52\xa3\xad\xef\xab\xe9\x87\xec\x5f\x01\xc9\x08\x84\xe7\xfc\xd7\xe1\xce\x57\x94\xbc\x5f\x22\x49\x94\xb5\x7e\xf8\x28\xba\xbb\x98\x6e\x45\x71\x43\x92\x88\x6a\xc2\xe4\x77\x38\x5d\x13\x1f\x45\xbf\x02\x00\x00\xff\xff\xa8\xe2\x9e\x43\x91\x03\x00\x00") + +func examplesPhabricatorSetupShBytes() ([]byte, error) { + return bindataRead( + _examplesPhabricatorSetupSh, + "examples/phabricator/setup.sh", + ) +} + +func examplesPhabricatorSetupSh() (*asset, error) { + bytes, err := examplesPhabricatorSetupShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/phabricator/setup.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPhabricatorTeardownSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x51\x6f\xd3\x30\x14\x85\xdf\xfd\x2b\x0e\x8d\x34\x81\xd4\xa6\x65\x12\x12\x82\xa7\xb0\x0d\x11\x6d\x6a\xd1\xd2\x31\xed\xd1\x71\x6e\x92\x0b\xae\x9d\x5d\x3b\xcb\xfa\xef\x51\xb2\x8e\xad\x02\x91\xc7\xf8\xcb\xb9\x5f\xce\x75\xf2\x66\x59\xb2\x5b\x96\x3a\xb4\x4a\x25\x38\xf3\xdd\x5e\xb8\x69\x23\x4e\x57\xef\x3f\x60\xdb\x12\x2e\xfb\x92\xc4\x51\xa4\x80\xac\x8f\xad\x97\x90\xaa\x44\x25\xb8\x62\x43\x2e\x50\x85\xde\x55\x24\x88\x2d\x21\xeb\xb4\x69\xe9\xf9\x64\x8e\x1f\x24\x81\xbd\xc3\x69\xba\xc2\xdb\x11\x98\x1d\x8e\x66\xef\x3e\xab\x04\x7b\xdf\x63\xa7\xf7\x70\x3e\xa2\x0f\x84\xd8\x72\x40\xcd\x96\x40\x8f\x86\xba\x08\x76\x30\x7e\xd7\x59\xd6\xce\x10\x06\x8e\xed\x34\xe6\x10\x92\xaa\x04\x77\x87\x08\x5f\x46\xcd\x0e\x1a\xc6\x77\x7b\xf8\xfa\x35\x07\x1d\x27\xe1\xf1\x69\x63\xec\x3e\x2d\x97\xc3\x30\xa4\x7a\x92\x4d\xbd\x34\x4b\xfb\x04\x86\xe5\x55\x7e\x76\xb1\x2e\x2e\x16\xa7\xe9\x6a\xfa\xe4\xc6\x59\x0a\x01\x42\xf7\x3d\x0b\x55\x28\xf7\xd0\x5d\x67\xd9\xe8\xd2\x12\xac\x1e\xe0\x05\xba\x11\xa2\x0a\xd1\x8f\xbe\x83\x70\x64\xd7\xcc\x11\x7c\x1d\x07\x2d\xa4\x12\x54\x1c\xa2\x70\xd9\xc7\xa3\xb2\x9e\xed\x38\x1c\x01\xde\x41\x3b\xcc\xb2\x02\x79\x31\xc3\x97\xac\xc8\x8b\xb9\x4a\x70\x9b\x6f\xbf\x6d\x6e\xb6\xb8\xcd\xae\xaf\xb3\xf5\x36\xbf\x28\xb0\xb9\xc6\xd9\x66\x7d\x9e\x6f\xf3\xcd\xba\xc0\xe6\x2b\xb2\xf5\x1d\x2e\xf3\xf5\xf9\x1c\xc4\xb1\x25\x01\x3d\x76\x32\xfa\x7b\x01\x8f\x35\x52\x35\x76\x56\x10\x1d\x09\xd4\xfe\x49\x28\x74\x64\xb8\x66\x03\xab\x5d\xd3\xeb\x86\xd0\xf8\x07\x12\xc7\xae\x41\x47\xb2\xe3\x30\x2e\x33\x40\xbb\x4a\x25\xb0\xbc\xe3\xa8\xe3\xf4\xe6\xaf\x9f\x4a\x95\x22\xd3\x7a\xcc\xce\xc9\xd2\xd8\x07\xbe\xb7\xba\x14\x36\x3a\x7a\x41\x20\x79\x60\x43\x33\x9c\x9c\xe0\x57\x5f\x92\x89\x16\xd5\x08\x12\x16\x35\xba\x17\x72\x71\x20\xd3\x9f\xc1\xbb\xff\x25\x0a\x4d\x4b\x19\x6d\x60\xbc\x8b\xe2\xad\x25\xf9\xd7\x00\x31\x47\x03\x5e\xe0\xd7\xf1\x84\x9a\x85\x06\x6d\x2d\xa4\xb7\x4f\xa2\x8d\xb1\xbe\xaf\xa6\xfb\xd8\xbf\x02\x16\x23\x10\xfe\xe8\xdf\x1f\xa5\x3b\x5f\xd1\xe2\xe3\x4a\xa9\xdf\x01\x00\x00\xff\xff\xba\x2e\x4e\xbc\x66\x03\x00\x00") + +func examplesPhabricatorTeardownShBytes() ([]byte, error) { + return bindataRead( + _examplesPhabricatorTeardownSh, + "examples/phabricator/teardown.sh", + ) +} + +func examplesPhabricatorTeardownSh() (*asset, error) { + bytes, err := examplesPhabricatorTeardownShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/phabricator/teardown.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPod = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\x31\x6e\xc3\x30\x0c\x85\xe1\x5d\xa7\x78\x40\x67\x17\xed\x56\x68\xed\x05\x3c\x75\x67\x2d\xda\x21\x22\x91\x82\xc4\x24\xf6\xed\x03\x07\x01\x02\x67\xfd\xc8\xff\x7d\xe0\xd7\xea\x06\x9b\x51\x2d\x7d\x6e\x54\x32\x6e\xe2\x27\xbb\x38\x66\xc9\x0c\x5e\x9d\xb5\x8b\x29\x66\x6b\x70\xee\x1e\xa8\xca\x1f\xb7\xdd\x22\xae\xdf\xe1\x2c\x9a\x22\x46\x4b\xa1\xb0\x53\x22\xa7\x18\x00\xa5\xc2\x11\xba\x88\xae\x01\xc8\xf4\xcf\xb9\xef\x7e\xbc\xf4\xca\xd3\xae\x93\xa9\x93\x28\xb7\xc7\xcf\xf0\x56\x03\x52\x68\x39\x40\xb5\xe6\xcf\xbd\xe1\x55\x8f\xd6\x3c\xe2\xe7\x2b\xdc\x03\x00\x00\xff\xff\xaf\xc0\x71\x4d\xd6\x00\x00\x00") + +func examplesPodBytes() ([]byte, error) { + return bindataRead( + _examplesPod, + "examples/pod", + ) +} + +func examplesPod() (*asset, error) { + bytes, err := examplesPodBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/pod", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPodsecuritypolicyRbacBindingsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x93\x31\x4f\xc3\x40\x0c\x85\x77\xff\x0a\x4b\x99\x2f\x88\x0d\x65\x84\x81\xb5\x2a\x12\xfb\x35\x67\x52\xd3\xf4\xee\x64\x3b\x19\xf8\xf5\x28\x69\x2a\x52\xa8\x22\x86\x50\xb1\x59\xb1\xf5\xfc\xfc\xbe\x5c\x81\x59\xb8\xe7\x96\x1a\x0a\x9b\x97\x0d\x36\xdc\x93\xa2\xed\xe9\xdb\x77\x49\x2d\x41\x81\x96\xc6\x5e\x23\xa9\xcb\xb3\x89\x12\x7c\xe6\x57\x12\xe5\x14\x2b\x94\x9d\xaf\x4b\xdf\xd9\x3e\x09\x7f\x78\xe3\x14\xcb\xc3\x83\x96\x9c\xee\xfa\x7b\x38\x70\x0c\x15\x3e\xb5\x9d\x1a\xc9\x36\xb5\xf4\xc8\x31\x70\x6c\xe0\x48\xe6\x83\x37\x5f\x01\x22\x62\xf4\x47\xaa\x66\x1b\x5c\xd6\xec\x3a\x25\x51\xd0\x6e\xf7\x4e\xb5\x69\x05\x0e\x4f\x6a\xcf\x83\x1d\x40\xf4\x99\xc7\x72\xc1\x02\x2c\x4a\x0f\x57\x6e\xe9\x6d\xb4\xf0\x3b\x31\xfc\x71\x0f\x2c\xb9\x07\xe7\x1c\x14\x28\xa4\x26\x5c\xdb\x94\xb9\xf8\x68\xa7\xd0\x2f\x1b\x83\x1d\xb4\x34\xe4\x7e\x0e\x5d\x67\x23\xe8\x63\xb8\x01\x84\xaf\x85\xab\x43\xb8\x2a\xfd\xcf\xa9\x5e\xf1\x3c\x51\xa5\xc0\x76\x86\x39\xd6\x13\xbf\x19\xbd\x0b\xf6\x37\xe2\x37\x58\xf9\xcb\x47\xb3\xfa\x0f\xb0\x2e\xaf\xf1\xfc\xcf\x00\x00\x00\xff\xff\x6a\x4a\xcc\xd7\xe7\x04\x00\x00") + +func examplesPodsecuritypolicyRbacBindingsYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPodsecuritypolicyRbacBindingsYaml, + "examples/podsecuritypolicy/rbac/bindings.yaml", + ) +} + +func examplesPodsecuritypolicyRbacBindingsYaml() (*asset, error) { + bytes, err := examplesPodsecuritypolicyRbacBindingsYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/podsecuritypolicy/rbac/bindings.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPodsecuritypolicyRbacPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\x41\x0a\xc2\x40\x0c\x85\xe1\x7d\x4e\xf1\x2e\x50\xd0\x9d\xe4\x14\x5d\xb9\x8f\x9d\x50\x82\x9d\x64\x98\x09\xe2\xf1\xa5\x22\x48\xbb\xfd\x92\xff\x49\xb3\xbb\xf6\x61\xe1\x8c\xd7\x95\x9e\xe6\x85\x31\x47\xa1\xaa\x29\x45\x52\x98\x00\x97\xaa\x0c\x5f\xcd\xdf\x04\x6c\xf2\xd0\x6d\xec\x7e\xbc\x8c\xa6\xcb\xae\x4b\x78\x8a\xb9\xf6\xef\xcf\x74\xaa\x01\xab\xb2\x1e\xa0\x45\xcf\xdf\xde\xf4\xaf\xe7\xe8\xc9\xb8\x5d\xe8\x13\x00\x00\xff\xff\x8e\x47\xa3\x30\xa3\x00\x00\x00") + +func examplesPodsecuritypolicyRbacPodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPodsecuritypolicyRbacPodYaml, + "examples/podsecuritypolicy/rbac/pod.yaml", + ) +} + +func examplesPodsecuritypolicyRbacPodYaml() (*asset, error) { + bytes, err := examplesPodsecuritypolicyRbacPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/podsecuritypolicy/rbac/pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPodsecuritypolicyRbacPod_privYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\x41\xaa\x83\x40\x0c\xc6\xf1\xfd\x9c\xe2\xbb\x80\xf0\xde\xae\xcc\xb6\x17\x70\xd5\x7d\xea\x04\x09\xd5\x64\xc8\x44\xb1\xb7\x2f\xda\x42\xb1\xdb\x5f\xbe\x7f\xa8\xca\x8d\xbd\x89\x69\xc6\xfa\x9f\x1e\xa2\x25\xa3\xb7\x92\x66\x0e\x2a\x14\x94\x13\xa0\x34\x73\x86\x8e\xa2\x5b\x02\x26\xba\xf3\xd4\x76\x3f\x5f\x5a\xe5\x61\xd7\xc1\x34\x48\x94\xfd\xd8\x74\x3f\x35\x20\x33\x8d\x27\xa8\xe6\xf1\xf9\xd7\x7d\xeb\xde\x3c\x32\x2e\x7f\x87\x37\x1e\x16\x97\x78\x5e\x4d\x83\xb7\x78\x8f\x81\xea\xb2\xca\xc4\x23\x97\x8c\xf0\x85\xd3\x2b\x00\x00\xff\xff\x84\x25\x86\x61\xcf\x00\x00\x00") + +func examplesPodsecuritypolicyRbacPod_privYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPodsecuritypolicyRbacPod_privYaml, + "examples/podsecuritypolicy/rbac/pod_priv.yaml", + ) +} + +func examplesPodsecuritypolicyRbacPod_privYaml() (*asset, error) { + bytes, err := examplesPodsecuritypolicyRbacPod_privYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/podsecuritypolicy/rbac/pod_priv.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPodsecuritypolicyRbacPoliciesYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x90\xc1\x6a\xc3\x30\x0c\x86\xef\x7e\x0a\xdf\x02\x83\x30\x7a\xcd\x2d\x74\x30\x06\xeb\x28\x1d\xeb\x5d\x8d\xd5\xa2\xcd\x91\x8d\x24\xb7\xcd\xdb\x8f\x64\x1d\xe4\xb0\xb0\xcb\x76\xd3\xef\xef\x97\x05\x1f\x64\xda\xa3\x28\x25\x6e\x3c\x5e\x0d\x79\x1c\xf5\xfe\xbc\x3a\xa0\xc1\xca\x7d\x10\x87\xc6\x6f\x53\x78\xc5\xae\x08\xd9\xb0\x4d\x91\xba\xc1\xf5\x68\x10\xc0\xa0\x71\xde\x33\xf4\xd8\xf8\x2c\x74\xa6\x88\x27\x0c\x4e\x33\x76\x23\x38\xea\xa3\xa4\x92\xc7\xd1\x7b\x29\x11\x1b\xbf\x2b\xdc\x6a\xcb\x83\xf3\xb3\x85\xc6\x9b\x14\x74\x63\x87\x5b\x7d\x53\x94\x85\x15\xc5\x67\xe2\x72\x5d\xa2\x25\xe7\x88\x3d\xb2\x41\x9c\x0e\xeb\x42\xf1\x9c\x62\xe9\x71\xa2\xb5\xaf\xee\x2a\xe7\x3d\xc4\x98\x2e\x18\xd6\x90\xe1\x40\x91\x8c\xe6\xb8\xae\x6b\xf7\x67\x9e\x04\xd5\x84\x3a\x9b\x79\x9a\x9b\x38\x42\x54\xfc\xd5\xdd\x8f\xa2\x36\x45\x6d\xea\xbc\x24\xde\xa5\x64\xff\x25\x0c\xfb\x6c\xc3\x03\x49\xf5\x15\x15\x3b\x41\xbb\x85\x90\x2e\x7c\x01\x09\xed\xf6\xe9\xf6\xd2\x25\x3e\xd2\x69\x03\xf9\x96\xf3\x68\x51\x0d\xd9\xf6\xd3\xaf\xeb\x08\xd4\x7f\x33\x49\xef\x38\xaa\xa9\x9c\xfb\x0c\x00\x00\xff\xff\x73\x3d\x46\x83\x99\x02\x00\x00") + +func examplesPodsecuritypolicyRbacPoliciesYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPodsecuritypolicyRbacPoliciesYaml, + "examples/podsecuritypolicy/rbac/policies.yaml", + ) +} + +func examplesPodsecuritypolicyRbacPoliciesYaml() (*asset, error) { + bytes, err := examplesPodsecuritypolicyRbacPoliciesYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/podsecuritypolicy/rbac/policies.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesPodsecuritypolicyRbacRolesYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x90\x41\x4b\xc4\x40\x0c\x85\xef\xf9\x15\x81\x9e\xa7\xe2\x4d\x7a\xf5\xe0\x4d\x8a\x0b\xde\xb3\xd3\xb0\x1b\xb6\x3b\x19\x92\x4c\x51\x7f\xbd\x54\x56\x5a\x10\x8f\x7a\x9d\xf9\xf2\x1e\xef\xeb\xd0\xd8\xc3\x24\x07\x4f\xe3\x61\xc4\x93\x51\x09\x47\xca\x99\xdd\x31\x14\x9b\x33\x74\x18\x67\xde\x81\x38\x1e\xc6\x1e\xa8\xca\x2b\x9b\x8b\x96\x01\xed\x48\xb9\xa7\x16\x67\x35\xf9\xa0\x10\x2d\xfd\xe5\xc1\x7b\xd1\xbb\xe5\x1e\x2e\x52\xa6\x01\x1f\xe7\xe6\xc1\xf6\xa2\x33\xc3\x95\x83\x26\x0a\x1a\x00\xb1\xd0\x95\x87\x5d\x78\xaa\x5e\x53\x73\x36\xb0\x36\xb3\x0f\x08\x09\xa9\xca\x93\x69\xab\xbe\x1e\x24\xe4\xb7\xe0\xb2\x16\x3b\xe0\x7a\xa9\xcd\x32\xdf\xfe\xaa\x4e\xce\xb9\x99\xc4\x7b\xd5\x59\xb2\xf0\x1e\x7a\xa6\xeb\x37\xb8\x35\x02\xe2\xc2\x76\xbc\xbd\xaf\x83\x53\x4a\xd0\x61\x35\x59\x64\xe6\xd3\xef\x66\xbe\xbc\x6c\x18\x74\x7f\x60\x66\x8b\xff\x2f\x33\xbb\x41\x3f\xcc\x00\x7c\x06\x00\x00\xff\xff\xe9\xeb\x57\x2f\x32\x02\x00\x00") + +func examplesPodsecuritypolicyRbacRolesYamlBytes() ([]byte, error) { + return bindataRead( + _examplesPodsecuritypolicyRbacRolesYaml, + "examples/podsecuritypolicy/rbac/roles.yaml", + ) +} + +func examplesPodsecuritypolicyRbacRolesYaml() (*asset, error) { + bytes, err := examplesPodsecuritypolicyRbacRolesYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/podsecuritypolicy/rbac/roles.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSchedulerPolicyConfigWithExtenderJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x4d\x8f\xd3\x30\x10\x86\xcf\xcd\xaf\x88\x7c\xae\xda\x66\xf9\x92\x72\x5b\x0a\x68\x0f\x50\x45\x5b\x69\x39\x20\x0e\xae\xfd\x66\x33\x5a\xd7\xce\x8e\x27\xcb\x96\x55\xff\x3b\x72\xda\xd0\xa8\x14\x44\x4e\xf1\x3c\xcf\xd8\xf3\xf1\x92\xa9\x07\xf2\x56\xe5\x65\xae\xaa\xe0\xc8\xec\xd4\x34\x53\xba\xa5\x3b\x70\xa4\xe0\x7b\xf0\x54\xa4\x60\xcb\xb0\x64\xb4\x20\xa6\xe0\xb7\x6c\xf2\xa2\xbc\xde\xe2\x98\x6a\x3f\x91\xc4\x9b\x10\xa5\x0a\x2c\x51\xed\xa7\x97\xf8\x2d\x62\xe8\xd8\xe0\x0f\xbe\x0a\x1f\x28\x3e\x2c\x83\xaf\x1d\x19\x39\xa7\x5f\xb4\x98\x66\x15\x2c\xd6\x70\x30\x12\xf8\x5c\x48\xef\xae\xd2\x61\x9f\x4d\xbe\xf7\xa5\x52\x60\x12\xba\x54\xea\x67\xe8\x28\xb7\x78\xec\x10\x05\xb6\x3a\x98\x3b\x35\xcd\xd5\x0f\xd0\x7d\x23\x49\x2a\xce\xee\x7f\xaf\x9d\xf6\x06\x76\xa8\xff\xda\xb9\x60\xb4\xa4\xf9\xfc\x33\x6f\x0d\x7e\x22\x83\x75\xcb\xd0\x96\xfc\xfd\xff\xbd\xf6\xf1\xb1\xd3\xee\x6f\xea\xa1\x41\x3c\x0b\xbc\x05\xff\xee\x2f\xcb\x8f\x9f\xea\xd8\x55\x8c\x9a\x9e\x55\x99\xab\x46\xa4\x2d\xe7\xf3\xe2\xea\xdd\x6c\x31\x5b\xcc\x8a\xb2\xb8\x7a\xf5\xfa\xed\x3c\x9a\x06\xb6\x73\x60\x35\x3d\x25\x8e\x96\xde\xef\x7c\x03\xd1\xc5\x58\xa8\xc9\x09\xf8\x0e\xbc\x49\xc2\xe1\x34\xe6\x1b\xf2\x76\xa0\xe9\x7f\xcc\x86\x8d\xfc\xc4\x60\x9c\x22\x63\xef\xd8\x6a\x99\xbf\x19\x05\xe1\xf5\xc6\xe1\x46\xa4\x8d\xaa\xcc\x6b\xed\x22\x46\xd4\x07\x8b\xa5\x36\x0d\x96\xba\x4d\xde\xa0\x64\x93\x7d\x2f\xa5\x79\x35\x9a\x6d\x15\xec\x75\x5d\x93\x27\xd9\xad\x77\xdb\x2d\x84\xc9\x7c\x3d\x4d\x76\x91\xed\xb3\x5f\x01\x00\x00\xff\xff\xd8\x11\x1a\x25\x0e\x03\x00\x00") + +func examplesSchedulerPolicyConfigWithExtenderJsonBytes() ([]byte, error) { + return bindataRead( + _examplesSchedulerPolicyConfigWithExtenderJson, + "examples/scheduler-policy-config-with-extender.json", + ) +} + +func examplesSchedulerPolicyConfigWithExtenderJson() (*asset, error) { + bytes, err := examplesSchedulerPolicyConfigWithExtenderJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/scheduler-policy-config-with-extender.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSchedulerPolicyConfigJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x3d\x6b\xc3\x30\x10\x86\xe7\xe8\x57\x18\xcd\x1e\x9a\xb5\x5b\xfa\x45\x87\xd6\x98\x18\x52\x68\xe9\x70\x48\xe7\xf8\x88\xac\x73\xa4\x73\x8a\x09\xfe\xef\x45\x49\x4b\x21\x89\x4b\x46\xdd\xfb\xbc\x92\x9e\xdb\x2b\xbd\x21\x6f\x75\x76\x9b\xe9\x92\x1d\x99\x41\xe7\x4a\x43\x47\x2b\x0c\x91\xd8\x1f\x82\xdd\x3c\x0d\xbb\x80\x96\x0c\x08\xc6\x34\xfc\x50\xb3\xbd\xf6\xd0\xe2\x4f\xd5\x3e\x91\xc4\x67\x8e\x52\x72\x90\xa8\xc7\xfc\x52\xbe\xc4\xc8\x7d\x30\x78\x96\x17\xfc\x40\x71\x73\xcf\xbe\x76\x64\xe4\x3c\x5d\xb1\xeb\x5b\x7c\x67\x8f\x53\xcc\x2b\x88\x69\x0a\xb6\x58\xa1\x43\x23\x1c\x4e\x81\xf4\xb7\x22\x1d\x46\x35\xfb\x3c\xe8\x10\x07\x12\xba\xa4\xf3\x82\x10\x65\x89\xdb\x1e\xa3\xa0\x2d\x8f\xe4\xa0\xf3\x4c\x7f\x21\xad\x1b\x49\xd0\xfc\xe4\xfe\x3b\x70\xe0\x0d\xda\x5f\xc7\x85\x73\x6c\x40\xd2\x0e\xff\xed\x55\x18\x76\x64\xb0\xea\x02\x82\x25\xbf\xbe\xee\xb5\xc7\x6d\x0f\x6e\x0a\x3d\x0a\x36\x10\x6c\xc9\x76\x51\xd7\xe4\x49\x86\x6a\x68\x5b\x94\x40\xe6\xed\x8f\xbc\x51\xa3\xfa\x0e\x00\x00\xff\xff\x17\x3d\xf0\x7f\x02\x02\x00\x00") + +func examplesSchedulerPolicyConfigJsonBytes() ([]byte, error) { + return bindataRead( + _examplesSchedulerPolicyConfigJson, + "examples/scheduler-policy-config.json", + ) +} + +func examplesSchedulerPolicyConfigJson() (*asset, error) { + bytes, err := examplesSchedulerPolicyConfigJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/scheduler-policy-config.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSeleniumSeleniumHubRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x8f\xc1\x6a\xf3\x40\x0c\x84\xef\x7e\x0a\x91\x7b\x12\xe7\x8f\x73\xd9\xeb\x5f\xe8\xa9\x10\x5a\xe8\x5d\x5e\x8b\x58\x74\x77\xb5\x68\xe5\x40\xde\xbe\xb8\xa1\xee\x1a\x9a\x7b\x75\xd4\x8c\x3e\xcd\x60\xe6\x77\xd2\xc2\x92\x1c\x5c\x0f\xcd\x07\xa7\xc1\xc1\x2b\xe5\xc0\x1e\x8d\x25\xfd\x97\x64\x2a\x21\x90\x36\x91\x0c\x07\x34\x74\x0d\x40\xc2\x48\x0e\x0a\x05\x4a\x3c\xc5\xed\x38\xf5\xd0\x00\x04\xec\x29\x94\x59\x07\xc0\x9c\xd7\x86\xa6\x64\xf2\xb3\xa6\x77\x7a\x71\x70\x68\xe0\xcb\xe2\x4d\xf4\xd1\x15\x80\x51\xcc\x01\x8d\xee\x8e\x3a\xc5\x3c\xf5\xcf\x47\x04\x80\xef\xdf\xf3\x78\x49\x86\x9c\x48\x97\xab\xed\x2f\x7d\x16\x20\x47\xbc\x54\xda\x7e\x9c\x7a\xf7\x6f\x77\x3a\xee\xda\xc5\x92\x45\xad\x8a\x30\x03\x97\x27\x67\x51\x73\xd0\x75\x5d\x07\x8b\x41\xa9\xc8\xa4\x9e\x56\x37\x81\x23\xaf\x29\x73\xd9\x28\x7a\x73\xb0\x39\xb4\x6d\xfb\xc2\x9b\x95\xe8\xf3\xe4\x60\xb3\x3b\xfd\x6c\x03\x5f\x29\x51\x29\x67\x95\x9e\x6a\xd2\x68\x96\x9f\xc9\xd6\xf0\x8c\x36\x3a\xd8\x5f\x94\x87\xbd\x97\x54\x24\xd0\x5a\x5f\x92\x57\x6b\x4e\x6c\x8c\xe1\x89\x02\xde\xde\xc8\x4b\x1a\x8a\x83\x63\x5b\x39\x8c\x23\xc9\x64\x8b\x78\xaa\x6a\xe3\xc0\x7f\x30\xdf\x67\x00\x00\x00\xff\xff\xb1\x78\x41\x7e\x04\x03\x00\x00") + +func examplesSeleniumSeleniumHubRcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSeleniumSeleniumHubRcYaml, + "examples/selenium/selenium-hub-rc.yaml", + ) +} + +func examplesSeleniumSeleniumHubRcYaml() (*asset, error) { + bytes, err := examplesSeleniumSeleniumHubRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/selenium/selenium-hub-rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSeleniumSeleniumHubSvcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x3d\x8a\xc3\x30\x10\x85\x7b\x9d\xe2\x5d\xc0\xb0\x0b\xaa\xd4\xed\x05\x96\x85\x85\xf4\x63\xfb\x39\x19\x62\x4b\x42\x1a\x1b\x7c\xfb\x20\xa5\x33\xa4\x1b\xe6\x7b\x3f\x3c\xc9\x7a\x63\xa9\x9a\x62\xc0\xf1\xed\x9e\x1a\xe7\x80\x7f\x96\x43\x27\xba\x8d\x26\xb3\x98\x04\x07\x44\xd9\x18\x50\xb9\x32\xea\xbe\x0d\x8f\x7d\x74\xc0\x2a\x23\xd7\xda\x30\x20\x39\x5f\x78\xcd\x9c\x1a\xcb\xa9\x58\x17\x0d\xfd\x0c\xf0\xde\x7b\x74\x93\x49\xb9\xd3\xfe\x2e\xdf\x77\x57\xd3\x7e\x39\xf4\xcc\xc9\x52\xf9\x54\x03\xd8\x99\x19\xf0\x9b\x66\xb6\xa4\x6e\xa9\x6d\xd2\xcf\xb2\x68\x54\x3b\x1b\x8b\x74\xaf\x00\x00\x00\xff\xff\x8c\xcb\x99\x04\xec\x00\x00\x00") + +func examplesSeleniumSeleniumHubSvcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSeleniumSeleniumHubSvcYaml, + "examples/selenium/selenium-hub-svc.yaml", + ) +} + +func examplesSeleniumSeleniumHubSvcYaml() (*asset, error) { + bytes, err := examplesSeleniumSeleniumHubSvcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/selenium/selenium-hub-svc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSeleniumSeleniumNodeChromeRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xcb\x4a\xc3\x40\x14\x86\xf7\xf3\x14\x3f\xd9\xa7\xa6\x35\x5d\x38\x3b\x6d\x17\x6e\xc4\x52\xaa\xdb\x30\x9d\x1c\xda\xc1\xb9\x71\x32\x29\xf8\xf6\x32\x06\x63\x02\xc5\x7a\x76\x21\xdf\x7f\x63\x54\x34\xef\xc4\x9d\x09\x5e\xe2\xb2\x14\x1f\xc6\xb7\x12\x7b\x8a\xd6\x68\x95\x4c\xf0\x9b\xe0\x13\x07\x6b\x89\x85\xa3\xa4\x5a\x95\x94\x14\x80\x57\x8e\x24\x3a\xb2\xe4\x4d\xef\x4a\x1f\x5a\x2a\xf5\x99\x83\x23\x08\xc0\xaa\x23\xd9\x2e\x73\x80\x8a\xf1\x3a\x28\xba\x48\x3a\x33\x3c\xa4\x75\x12\x2b\x81\x6f\x54\xa7\xc0\xb7\xd4\x40\x22\x17\xad\x4a\x34\x90\xd3\x76\xf9\xa6\x1d\x6e\x39\x01\x3f\x5d\xf2\xe9\xe0\x93\x32\x9e\x78\x54\x97\x7f\xec\x1d\x03\x8c\x53\xa7\x09\x73\x37\x61\xca\x96\x8e\xfd\x49\xae\x16\xeb\xfb\x45\x35\x0a\x62\xe0\x34\x29\x98\x63\xc6\xe8\x5d\xe0\x24\xb1\x7e\xa8\x2a\x8c\x00\xf9\xcb\x9c\x1e\x4a\x3d\xbf\x3d\x35\xbb\xd7\xfd\xa1\xa9\xeb\xba\x6e\x0e\x9b\x5d\xf3\xb8\xdd\xee\x31\x21\x81\x8b\xb2\x3d\x49\x14\xe3\x80\x73\x7f\x2c\xfe\xe5\x95\xbf\xae\x7b\x65\xe4\xd7\x83\xa9\x0b\x3d\x6b\x9a\x0d\xb2\xc6\x99\xf9\xc4\xfc\x4e\x2e\xf0\xa7\x44\xb1\xac\xaa\xea\xc5\x14\xb3\x9f\x3a\xf6\x12\xc5\x62\x5d\x88\xaf\x00\x00\x00\xff\xff\xcc\x4d\x78\xd7\x98\x02\x00\x00") + +func examplesSeleniumSeleniumNodeChromeRcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSeleniumSeleniumNodeChromeRcYaml, + "examples/selenium/selenium-node-chrome-rc.yaml", + ) +} + +func examplesSeleniumSeleniumNodeChromeRcYaml() (*asset, error) { + bytes, err := examplesSeleniumSeleniumNodeChromeRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/selenium/selenium-node-chrome-rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSeleniumSeleniumNodeFirefoxRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xbb\x4e\xc3\x30\x14\x86\x77\x3f\xc5\xaf\xec\x29\x69\x49\x07\xbc\x41\x3b\xb0\x20\xaa\xaa\xb0\x46\x6e\x72\x5a\x2c\x7c\xd3\x89\x53\xc1\xdb\x23\x53\x11\x1c\x09\x28\x67\x8b\xf2\xfd\x37\x59\x05\xfd\x4c\xdc\x6b\xef\x24\x4e\x73\xf1\xaa\x5d\x27\xb1\xa5\x60\x74\xab\xa2\xf6\x6e\xe5\x5d\x64\x6f\x0c\xb1\xb0\x14\x55\xa7\xa2\x92\x02\x70\xca\x92\x44\x4f\x86\x9c\x1e\x6c\xe9\x7c\x47\xe5\x41\x33\x1d\xfc\x1b\x04\x60\xd4\x9e\x4c\x9f\x40\x40\x85\xf0\x0b\x29\xfa\x40\x6d\x82\xf8\x9c\xd7\x4b\x2c\x04\x3e\xd9\x36\x7a\xbe\x28\x07\x22\xd9\x60\x54\xa4\x33\x9a\x17\x4c\x97\xb7\xb8\x68\x05\x7c\xb5\x49\xd7\x7a\x17\x95\x76\xc4\xa3\xbc\xfc\x6b\xf3\x18\xa1\xad\x3a\x66\xd0\x55\x0e\x95\x1d\xed\x87\xa3\x5c\xcc\x96\xd7\xb3\x6a\x54\x04\xcf\x31\xeb\x98\x82\xc6\xf0\x8d\xe7\x28\xb1\xbc\xa9\x2a\x8c\x00\xb9\xd3\x94\x3e\xd7\xba\x7f\xba\x6b\x36\x8f\xdb\x5d\x53\xd7\x75\xdd\xec\x56\x9b\xe6\x76\xbd\xde\x22\x23\x81\x93\x32\x03\x49\x14\xe3\x84\x97\x61\x5f\xfc\xcb\x2b\x7d\xfd\xec\x95\x90\x6f\x0f\xa6\xde\x0f\xdc\xd2\x64\x90\xd1\x56\x4f\x27\xa6\xa7\xb2\x9e\xdf\x25\x8a\x79\x55\x55\x0f\xba\x98\xfc\x6c\xc3\x20\x51\xcc\x96\x85\xf8\x08\x00\x00\xff\xff\x78\x30\xb1\xe2\x9e\x02\x00\x00") + +func examplesSeleniumSeleniumNodeFirefoxRcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSeleniumSeleniumNodeFirefoxRcYaml, + "examples/selenium/selenium-node-firefox-rc.yaml", + ) +} + +func examplesSeleniumSeleniumNodeFirefoxRcYaml() (*asset, error) { + bytes, err := examplesSeleniumSeleniumNodeFirefoxRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/selenium/selenium-node-firefox-rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSeleniumSeleniumTestPy = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x92\xcf\x4f\xfb\x46\x10\xc5\xef\xfb\x57\x3c\x6c\x21\x12\x29\xd8\x14\xa5\x17\x2a\x0e\x21\x04\x61\x41\x13\x29\x0e\xa5\x9c\xa2\xf5\x7a\x62\xaf\x6a\xef\xba\xbb\x63\x4c\xfe\xfb\xca\xf9\x01\xa4\x5f\x7c\xb1\x34\x6f\x66\xde\xc7\xcf\x13\x9e\xc5\xad\x77\x71\xa6\x4d\x4c\xe6\x1d\xcd\x96\x4b\x6b\x84\x08\x31\xb5\xcd\xd6\xe9\xa2\x64\x5c\x5f\xfd\xf6\x3b\x56\x25\xe1\xa9\xcd\xc8\x19\x62\xf2\x98\xb4\x5c\x5a\xe7\x23\x11\x8a\x10\xcf\x5a\x91\xf1\x94\xa3\x35\x39\x39\x70\x49\x98\x34\x52\x95\x74\x54\x46\xf8\x8b\x9c\xd7\xd6\xe0\x3a\xba\xc2\xa0\x6f\x08\x0e\x52\x30\xfc\x43\x84\xd8\xda\x16\xb5\xdc\xc2\x58\x46\xeb\x09\x5c\x6a\x8f\x8d\xae\x08\xf4\xa1\xa8\x61\x68\x03\x65\xeb\xa6\xd2\xd2\x28\x42\xa7\xb9\xdc\xd9\x1c\x96\x44\x22\xc4\xdb\x61\x85\xcd\x58\x6a\x03\x09\x65\x9b\x2d\xec\xe6\x7b\x1f\x24\xef\x80\xfb\xa7\x64\x6e\x6e\xe2\xb8\xeb\xba\x48\xee\x60\x23\xeb\x8a\xb8\xda\x37\xfa\xf8\x39\x99\xce\xe6\xe9\xec\xf2\x3a\xba\xda\x8d\xbc\x98\x8a\xbc\x87\xa3\x7f\x5b\xed\x28\x47\xb6\x85\x6c\x9a\x4a\x2b\x99\x55\x84\x4a\x76\xb0\x0e\xb2\x70\x44\x39\xd8\xf6\xbc\x9d\xd3\xac\x4d\x31\x82\xb7\x1b\xee\xa4\x23\x11\x22\xd7\x9e\x9d\xce\x5a\x3e\x09\xeb\x48\xa7\xfd\x49\x83\x35\x90\x06\xc1\x24\x45\x92\x06\xb8\x9b\xa4\x49\x3a\x12\x21\x5e\x93\xd5\xe3\xe2\x65\x85\xd7\xc9\x72\x39\x99\xaf\x92\x59\x8a\xc5\x12\xd3\xc5\xfc\x3e\x59\x25\x8b\x79\x8a\xc5\x03\x26\xf3\x37\x3c\x25\xf3\xfb\x11\x48\x73\x49\x0e\xf4\xd1\xb8\x9e\xdf\x3a\xe8\x3e\x46\xca\xfb\xcc\x52\xa2\x13\x80\x8d\xdd\x03\xf9\x86\x94\xde\x68\x85\x4a\x9a\xa2\x95\x05\xa1\xb0\xef\xe4\x8c\x36\x05\x1a\x72\xb5\xf6\xfd\xcf\xf4\x90\x26\x17\x21\x2a\x5d\x6b\x96\xbc\xab\xfc\xf2\x51\x91\x10\x1b\x67\x6b\x78\xaa\xc8\xe8\xb6\xee\xed\xad\x63\x74\x94\xe5\x4e\xbf\x93\x3b\x95\xa3\xcf\x7a\xa4\x6c\x5d\x5b\x13\xe5\xe4\xfb\xc0\xd7\x4a\x36\x32\xd3\x95\x66\x4d\xfe\xb8\xe4\x7e\xaf\x4d\xbf\x49\x42\xe4\xb4\x81\x2a\x49\xfd\xb3\xce\x9c\xed\x3c\xb9\xc1\xe1\x3d\xbc\x11\xc0\x7e\x39\x6e\xbf\x00\xa2\x25\xd5\x96\x69\x20\xfa\xab\xe8\x4d\xa5\xc9\xd7\xf4\x41\xaa\x65\xeb\x6e\x2f\x0e\x77\x72\x04\xbc\x2c\xdb\xec\x66\x3c\x1e\x8f\xe3\x2e\x8f\xcb\x36\xbb\x18\xed\xe6\x7e\xa2\xbc\x2d\x88\x25\xb3\x1b\xfc\x80\x39\xc2\x11\x4a\x00\xc3\x4f\xae\xa8\x20\x1e\x04\x07\xcb\xc2\xda\xa2\xa2\x3e\x87\xa0\xef\x90\xde\x93\x63\x04\xfb\x72\xd0\x9f\xd8\x61\xa8\x91\x05\xad\xbd\x6d\x9d\xa2\xaf\x4d\xaa\xb2\x9e\x06\xfd\x60\xe3\xb4\xe1\x41\x70\xb7\x37\xc4\xb9\xdf\xc7\xe3\x61\x5b\x3e\x0b\x70\xfe\x85\x22\xc4\x69\x70\xc1\x43\xb2\x9c\x3d\x2c\xfe\x0e\x86\xff\x17\xa6\x8f\xcb\xc5\x9f\xb3\x60\x28\xc4\x7f\x01\x00\x00\xff\xff\xbb\x0d\xb8\xb0\x41\x04\x00\x00") + +func examplesSeleniumSeleniumTestPyBytes() ([]byte, error) { + return bindataRead( + _examplesSeleniumSeleniumTestPy, + "examples/selenium/selenium-test.py", + ) +} + +func examplesSeleniumSeleniumTestPy() (*asset, error) { + bytes, err := examplesSeleniumSeleniumTestPyBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/selenium/selenium-test.py", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSharingClustersBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x92\xcd\x8a\xeb\x30\x0c\x85\xf7\x79\x0a\xe3\x55\x53\x6e\x6b\xee\xee\x12\x28\xdc\xf7\x28\xc1\xc8\x89\xea\x8a\x28\x76\xf0\x4f\xa0\x7d\xfa\x21\x3f\x9d\x69\x86\x4e\x37\xb3\x94\x74\x74\x38\xfa\xd0\x00\x4d\x07\x16\x77\x2d\x5e\x20\x73\xd2\x23\x45\x32\xc4\x94\x6e\xe2\x24\xce\x52\xa9\xaf\x46\x35\x64\xc3\xd4\xc8\xba\x2c\x0a\xf6\xd0\xee\x0a\x21\x84\x90\xff\xc9\x6b\x03\x77\x64\x1d\x32\x63\xd4\xd6\x2b\x65\x7d\xd5\xe2\xe5\x68\xee\x2c\xff\x2c\x2a\xeb\xb5\x21\x07\xe1\xf6\xd4\x60\x32\x61\xe9\x94\x45\xf1\x29\x58\x6c\x1d\xf4\x28\x4e\x42\xc6\x2b\x04\x72\xf6\xd0\x70\x8e\x09\x43\x5c\xd7\xd7\xd5\x49\x51\x59\xaf\x1f\xe9\xbf\x3b\xae\xf5\xd6\xf2\xa5\x7e\x12\xc4\xd0\xc4\xf9\xea\x1e\x3a\xd4\x11\x9b\x80\xe9\x68\xbd\xac\x97\x71\x8b\xc3\x3c\x9e\x8b\xf9\x06\xa5\x86\xce\x2a\x18\xe8\x75\x86\x27\xdd\x88\xae\xf5\x41\x75\xff\xe2\x91\xfc\xb4\xd1\x43\x73\x25\x87\xe1\xf6\xb0\x88\xaa\xc7\x04\x6a\xfc\xfb\x5b\xaf\x90\x5d\xa2\x1e\x7f\xb6\xa9\x67\x3a\x17\x62\xb4\xc1\xe7\x61\x0b\x67\xfd\x87\xc3\xc4\x62\x8b\xc5\xb2\x37\xbb\xb3\xdc\xef\x65\x5d\x2e\x83\x04\x76\xe1\x05\x39\xf9\x1e\x1c\x58\x6c\x1f\xb0\xde\xfe\x51\xa0\x11\x12\xca\xb7\x41\x80\xf9\x45\x88\xb3\xac\x36\x09\xeb\xf7\x49\xca\xe2\x23\x00\x00\xff\xff\x8a\x2e\xbf\x0b\xe0\x02\x00\x00") + +func examplesSharingClustersBuildBytes() ([]byte, error) { + return bindataRead( + _examplesSharingClustersBuild, + "examples/sharing-clusters/BUILD", + ) +} + +func examplesSharingClustersBuild() (*asset, error) { + bytes, err := examplesSharingClustersBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/sharing-clusters/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSharingClustersMake_secretGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x55\xdd\x8e\xdb\x36\x13\xbd\x16\x9f\x62\x3e\x01\xf9\x60\x2d\xbc\x54\xb2\x40\x81\xc2\xc5\x5e\xb8\xfb\x83\x1a\xd9\xda\xc1\xda\x69\x10\x04\xb9\x18\x53\x23\x69\xba\x12\xa9\x92\x94\x1d\xa1\xd8\x77\x2f\x48\xc9\x8d\xb7\x8b\x18\xb0\x09\x92\x87\x67\xce\x9c\x19\xd2\xf9\x85\xb8\x31\xdd\x60\xb9\xaa\x3d\x5c\xbd\x7d\xf7\x13\xec\x6a\x82\xf7\xfd\x9e\xac\x26\x4f\x0e\x96\xbd\xaf\x8d\x75\x52\x88\x07\x56\xa4\x1d\x15\xd0\xeb\x82\x2c\xf8\x9a\x60\xd9\xa1\xaa\x09\xa6\x9d\x39\xfc\x41\xd6\xb1\xd1\x70\x25\xdf\xc2\x2c\x00\xd2\x69\x2b\xcd\x7e\x11\x83\xe9\xa1\xc5\x01\xb4\xf1\xd0\x3b\x02\x5f\xb3\x83\x92\x1b\x02\xfa\xa6\xa8\xf3\xc0\x1a\x94\x69\xbb\x86\x51\x2b\x82\x23\xfb\x3a\x06\x99\x28\xa4\xf8\x3c\x11\x98\xbd\x47\xd6\x80\xa0\x4c\x37\x80\x29\xcf\x51\x80\x5e\x08\x00\x80\xda\xfb\x6e\x91\xe7\xc7\xe3\x51\x62\x54\x29\x8d\xad\xf2\x66\x44\xb9\xfc\x61\x75\x73\xb7\xde\xde\x5d\x5e\xc9\xb7\x42\x7c\xd4\x0d\x39\x07\x96\xfe\xea\xd9\x52\x01\xfb\x01\xb0\xeb\x1a\x56\xb8\x6f\x08\x1a\x3c\x82\xb1\x80\x95\x25\x2a\xc0\x9b\xa0\xf3\x68\xd9\xb3\xae\xe6\xe0\x4c\xe9\x8f\x68\x49\x14\xec\xbc\xe5\x7d\xef\x5f\x18\x74\x52\xc5\x0e\xce\x01\x46\x03\x6a\x48\x97\x5b\x58\x6d\x53\xf8\x75\xb9\x5d\x6d\xe7\xe2\xd3\x6a\xf7\xdb\xe6\xe3\x0e\x3e\x2d\x1f\x1f\x97\xeb\xdd\xea\x6e\x0b\x9b\x47\xb8\xd9\xac\x6f\x57\xbb\xd5\x66\xbd\x85\xcd\x3d\x2c\xd7\x9f\xe1\xfd\x6a\x7d\x3b\x07\x62\x5f\x93\x05\xfa\xd6\xd9\xa0\xdd\x58\xe0\x60\x1d\x15\x52\x6c\x89\x5e\x04\x2f\xcd\x28\xc6\x75\xa4\xb8\x64\x05\x0d\xea\xaa\xc7\x8a\xa0\x32\x07\xb2\x9a\x75\x05\x1d\xd9\x96\x5d\x28\x9e\x03\xd4\x85\x68\xb8\x65\x8f\x3e\xce\x5f\xa5\x23\xc5\x45\x2e\x44\x9e\xc3\x12\x3c\xeb\x01\x9c\xb2\xdc\xf9\x60\x4d\x4d\x4d\x07\xca\xe8\x03\x59\x40\xa8\xf8\x40\x1a\x9e\xfa\x3d\x29\xa3\x4b\xae\x80\xb5\x37\x80\xe0\x48\x59\xf2\x52\x74\xa8\x9e\x82\x8c\x16\x59\x0b\xc1\x6d\x67\xac\x87\x99\x48\xd2\xb2\xc1\x2a\x0d\x63\xeb\xc3\xc0\x26\x67\xd3\x7b\x6e\xc2\xa4\x31\x55\x2a\x44\xd2\x92\xc7\xc3\x3b\x48\x9f\x7e\x76\x92\x4d\x8e\x1d\xb7\xa8\x6a\xd6\x64\x87\xbc\x7b\xaa\xc2\x82\xcb\x03\x28\x3f\xbc\x0b\xc7\x7e\x84\xb3\xbd\xf6\xdc\xd2\x19\xe4\xe9\xdf\xe6\x3f\x11\xa5\x22\x8b\xe9\xee\x36\xb7\x9b\x45\xcc\xbb\x28\x00\xe1\xd2\x40\x10\x0a\xbe\x46\x1f\x3b\x82\x5c\xf0\xe0\xcc\x6a\x2a\xa0\x20\xe7\x59\x47\x27\x63\xb3\x4b\x71\x40\x1b\x92\x3c\xb3\xe5\x3a\xf2\xc8\xad\xb7\xac\xab\x59\xfa\x7d\x27\x9d\x43\x1a\xbe\x1d\x86\xbb\x60\xce\xad\x8c\x5c\x69\x26\x12\x8d\x2d\xc1\xf8\xf9\x0f\x4f\xd8\x09\xa7\x5f\xf2\x45\xbc\x37\xf1\x0a\xb2\x8e\x6a\x83\x4d\x05\x7a\x3c\xdd\xa5\xa9\x3e\x91\xdd\x01\xfc\x80\xdd\x05\xb6\x82\x4a\xec\x1b\x7f\x22\x76\x1d\x2a\x7a\x4d\x93\x09\x51\xf6\x5a\x81\x25\x2c\x66\xf1\xca\xbb\xc8\x92\xc1\x97\xaf\xfb\xc1\x13\xfc\x2d\x92\xfd\x1c\xc8\x5a\x58\x5c\xc3\x58\x6b\xf9\x48\x58\xdc\x73\x43\xf1\x40\x26\x12\x2e\x23\xe0\x7f\xd7\xa0\xb9\x09\x27\x92\xc6\x54\xf2\x1e\x3d\x36\xe5\x2c\xbd\x41\x1d\x1e\x96\x10\x61\x7c\x54\xde\x1c\xe6\xf0\xe6\x90\xce\xe3\x2c\x72\x67\x22\x79\x16\x89\x25\xdf\x5b\x0d\x7b\xf1\x3c\x89\x0a\xdd\x37\xcb\x02\x61\xcc\xef\x03\x5a\x47\xb3\x31\xde\xc5\x79\x91\xae\x21\x4d\x5f\x85\x5d\x4f\x6f\xc2\x58\xf0\x01\x2e\x2f\xcf\xdc\x1e\x03\xaa\xb2\x0a\x59\xc5\xdc\xcf\x08\x33\x91\x8c\x06\x85\xcd\xff\x63\xc7\x72\x1b\xa7\x21\xc2\x66\xff\x27\x29\xff\x3b\x79\x5c\xc0\xd8\xe8\xf2\xfb\x52\x00\x24\x6b\x6c\x69\x31\xd6\xe5\x22\x18\x3f\x3f\x2d\xc6\x0a\x2c\xe0\x42\xbb\xb0\xf4\x1c\x7e\x6e\x31\xf2\x60\xf7\x65\x74\xfd\xeb\x68\x7a\xe4\x49\x27\xa9\x0b\x50\x65\x75\x3a\xf1\x2c\x92\xb2\xf5\xf2\x83\x65\xed\xcb\xd9\x74\x43\xe4\x9d\x56\xa6\xa0\x8d\xbd\x65\x9a\x05\xb9\x37\xa6\x20\xe5\xe4\x03\x55\xa8\x86\x38\x89\xcb\x8f\x54\x85\x97\x6e\x90\x77\x3a\x3c\x9f\xc5\xf4\x9f\xe0\x66\x99\x94\x32\x9b\x4f\x5d\x91\x65\xe2\x59\xfc\x13\x00\x00\xff\xff\x40\xc8\x74\x0f\x7d\x06\x00\x00") + +func examplesSharingClustersMake_secretGoBytes() ([]byte, error) { + return bindataRead( + _examplesSharingClustersMake_secretGo, + "examples/sharing-clusters/make_secret.go", + ) +} + +func examplesSharingClustersMake_secretGo() (*asset, error) { + bytes, err := examplesSharingClustersMake_secretGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/sharing-clusters/make_secret.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSparkNamespaceSparkClusterYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xca\xad\x11\x84\x30\x10\x05\x60\xbf\x55\xec\xc4\x9f\x38\xbb\x45\x20\xf1\x8f\xe4\x89\x4c\x7e\xc8\x64\x03\xf5\x33\x14\x80\xff\x30\xf2\xce\xe9\xf9\xec\xa6\xf7\x5f\x4a\xee\xc9\x74\x43\xa3\x0f\x44\x4a\xe3\x42\xc2\x82\x89\x6a\x47\xa3\x69\xf0\x81\x59\x7e\xb1\x5e\xbe\x38\x83\xa8\x56\x1c\xac\xfe\x8a\x2f\xf3\x04\x00\x00\xff\xff\x50\xfa\x92\x4a\x65\x00\x00\x00") + +func examplesSparkNamespaceSparkClusterYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSparkNamespaceSparkClusterYaml, + "examples/spark/namespace-spark-cluster.yaml", + ) +} + +func examplesSparkNamespaceSparkClusterYaml() (*asset, error) { + bytes, err := examplesSparkNamespaceSparkClusterYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/spark/namespace-spark-cluster.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSparkSparkGlusterGlusterfsEndpointsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8c\x41\xae\x02\x31\x08\x40\xf7\x3d\x05\x17\x68\x33\xfd\x5f\x8d\xb2\xf7\x0a\xee\x71\x8a\xa6\x19\xa7\x25\x85\xf1\xfc\xa6\xa3\x31\xae\x8c\xac\x78\x79\xf0\xa6\x5c\x12\xc2\xb1\x24\xa9\xb9\x98\x3a\x92\x7c\xe2\xa6\xb9\x16\x84\x7b\x74\x33\x1b\x25\x32\x42\x07\x50\x68\x66\x84\xeb\x6d\x51\xe3\x76\x51\x3f\x3e\xb7\x97\x51\xa1\x91\x11\x54\xa8\x4d\x6f\xa5\xcb\x59\xd9\xb4\x7f\x7b\xa0\x94\x1a\xab\xf2\x8a\x7d\x3c\x64\x41\x88\x87\xbf\x10\x77\xfb\xf0\x3f\x84\x38\x6c\x56\x25\xb5\xd9\xc7\x55\x47\x84\xf8\x73\x64\xfb\x2d\xf2\x08\x00\x00\xff\xff\xc2\x59\x5a\xf8\xf1\x00\x00\x00") + +func examplesSparkSparkGlusterGlusterfsEndpointsYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSparkSparkGlusterGlusterfsEndpointsYaml, + "examples/spark/spark-gluster/glusterfs-endpoints.yaml", + ) +} + +func examplesSparkSparkGlusterGlusterfsEndpointsYaml() (*asset, error) { + bytes, err := examplesSparkSparkGlusterGlusterfsEndpointsYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/spark/spark-gluster/glusterfs-endpoints.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSparkSparkGlusterSparkMasterControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x41\x6f\xc2\x30\x0c\x85\xef\xf9\x15\x16\x77\x28\x9d\x34\x21\xe5\xba\x33\x1a\xda\x81\xcb\x34\x21\x2f\x35\x5d\x44\x12\x67\x89\x5b\x89\x7f\x3f\x95\x8e\x12\x18\xa3\xc7\xf8\x7b\xcf\xcf\x76\x0f\x36\x34\x1a\xde\x28\x3a\x6b\x50\x2c\x87\x17\x0e\x92\xd8\x39\x4a\x0a\xa3\xdd\x52\xca\x96\x83\x86\xbe\x56\x9e\x04\x1b\x14\xd4\x0a\x20\xa0\x27\x0d\x39\x62\x3a\xcc\x3d\x66\xa1\x34\x37\x17\xe1\x58\xcf\x11\xcd\x04\x19\xd7\x0d\x94\x02\x70\xf8\x49\x2e\x0f\x26\x00\x86\x7d\xe4\x40\x41\xae\xbd\x54\x8e\x64\x06\x22\x8d\xb9\xb2\x86\x5a\x01\x64\x72\x64\x84\xd3\x63\x2d\x80\x90\x8f\x0e\x85\x46\xae\x8c\x3d\x7c\x65\xff\xc7\x3e\x00\xe7\x1c\x23\x17\x04\x6d\xa0\x54\x68\xe7\x77\x16\x31\x15\x01\xac\xc7\x96\x34\xb4\x26\x2d\x2c\x57\x2d\x73\xeb\x68\x77\xf1\xa9\x4e\x32\x5d\x2f\x9e\x17\x4f\xbb\xbe\x2e\x84\x86\xbd\xc7\xe1\x30\xef\xb3\x2a\x0b\x26\xf9\xf5\x9e\x7d\x14\x50\xe4\x24\x45\x96\x31\xcf\xe4\xbe\xe1\x24\x1a\x56\xcb\xd5\xaa\x20\x7a\x76\x9d\xa7\x35\x77\xe1\xaf\xd2\x0f\xaf\x1b\x94\x2f\x0d\x95\x0f\x52\xb5\xe3\xc5\xf6\xf9\x8a\x3b\x9f\x7e\xaa\xf6\xec\x0a\x20\x51\xe6\x2e\x19\xba\x71\x4f\xf4\xdd\x51\xbe\xed\x09\x60\x62\xa7\xa1\x5e\x2e\xbd\x2a\xf3\xdd\x59\xf0\x3f\xed\xa6\xe7\x6b\x63\x0a\x4d\x64\x3b\xcc\x78\x21\x8a\x3f\xb0\x58\xe1\x69\xdc\xf5\x71\x7b\xea\x7b\x13\x19\x9b\xd7\xe0\x8e\x1a\xf6\xe8\x32\xa9\x9f\x00\x00\x00\xff\xff\x2e\x75\xf1\x82\x29\x03\x00\x00") + +func examplesSparkSparkGlusterSparkMasterControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSparkSparkGlusterSparkMasterControllerYaml, + "examples/spark/spark-gluster/spark-master-controller.yaml", + ) +} + +func examplesSparkSparkGlusterSparkMasterControllerYaml() (*asset, error) { + bytes, err := examplesSparkSparkGlusterSparkMasterControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/spark/spark-gluster/spark-master-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSparkSparkGlusterSparkMasterServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8d\x4d\xaa\xc3\x30\x0c\x84\xf7\x3e\x85\x2e\x10\x78\x6f\x65\xf0\x29\x0a\x85\xee\x55\x67\x28\x26\xfe\x11\x92\x9a\xf3\x97\x04\x53\xda\x4d\x97\xfa\x46\x33\xdf\x56\xfa\x9a\xe8\x0a\xdd\x4b\x46\x60\x29\x37\xa8\x95\xd1\x13\xed\xff\xa1\xc1\x79\x65\xe7\x14\x88\x3a\x37\x24\x32\x61\xdd\x96\xc6\xe6\xd0\x09\x4d\x38\xbf\x93\x5c\x9f\x33\xaa\x7c\x47\xb5\xa3\x49\x94\x47\x93\xd1\xd1\xfd\x7b\x60\xb1\xa9\x35\x41\x3e\x3e\x65\xa8\xcf\xca\x72\x1e\x89\xe2\x5f\x8c\x27\x20\x72\xd6\x07\xfc\xf2\x89\x0d\x15\xd9\x87\xfe\xd4\x84\x57\x00\x00\x00\xff\xff\x60\xdc\x1b\xea\xe4\x00\x00\x00") + +func examplesSparkSparkGlusterSparkMasterServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSparkSparkGlusterSparkMasterServiceYaml, + "examples/spark/spark-gluster/spark-master-service.yaml", + ) +} + +func examplesSparkSparkGlusterSparkMasterServiceYaml() (*asset, error) { + bytes, err := examplesSparkSparkGlusterSparkMasterServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/spark/spark-gluster/spark-master-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSparkSparkGlusterSparkWorkerControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xc1\x6e\xdb\x30\x0c\x86\xef\x7a\x0a\xa2\xf7\xc4\x4d\x81\x01\x81\xae\x3b\x17\x2b\x76\xe8\x65\x18\x0a\x4e\x66\x3d\x21\x92\xa8\x51\xb4\x87\xbe\xfd\xe0\x28\x76\x14\x6f\x8b\x8e\xd2\xc7\x8f\xbf\x28\x9d\x7c\xea\x2d\x7c\xa5\x1c\xbc\x43\xf5\x9c\x3e\x73\x52\xe1\x10\x48\x0c\x66\xff\x4a\x52\x3c\x27\x0b\xd3\xc1\x44\x52\xec\x51\xd1\x1a\x80\x84\x91\x2c\x94\x8c\x72\xda\x0d\x61\x2c\x4a\xb2\xfb\xcd\x72\x22\xd9\xb9\xab\xa0\x72\x25\xa3\x5b\x61\x57\x61\x03\x10\xf0\x07\x85\x32\xcb\x00\x1c\xc7\xcc\x89\x92\x2e\x58\x75\x99\x92\xc9\xcd\x84\xd4\x7c\xc5\xc2\x93\x01\x28\x14\xc8\x29\xcb\xfd\x5a\x00\xa5\x98\x03\x2a\x55\xae\x8d\x3f\xaf\xb6\xff\x7d\x4f\x5d\x63\xa1\xb2\x1c\x45\xbc\x5c\x02\x60\x89\x58\x15\x49\xd1\x27\x92\x46\xbb\xbb\x99\xd5\xc6\x09\xe0\x23\x0e\x64\x61\x70\xb2\xf7\xdc\x0d\xcc\x43\xa0\xb7\xab\xa7\x3b\x97\xd9\xc3\xfe\xd3\xfe\xe9\x6d\x3a\x34\x85\x8e\x63\xc4\xf9\xed\xbe\x3d\x74\x45\x51\xf4\xe2\x7e\xf8\xde\x40\x99\x45\x9b\x2c\x35\xcf\x6a\x7f\x61\x51\x0b\xc7\xe3\xf1\xd8\x10\x13\x87\x31\xd2\x33\x8f\xe9\xef\xca\x38\xef\xbe\xa0\xfe\xb4\xd0\xc5\xa4\xdd\xe5\xe5\xdf\xcb\x0d\xb7\xfc\x8e\xf5\x74\xe2\xd0\x00\x42\x85\x47\x71\xb4\xb1\x0b\xfd\x1a\xa9\x6c\x7b\x02\xb8\x3c\x5a\x38\x3c\x3e\x46\xd3\xe6\xfb\xc7\x80\xff\xd3\x6e\xdd\xbe\x15\x53\xea\x33\xfb\xf9\x8e\x57\xa2\xf9\x9c\xcd\x08\xcf\xd7\x7d\xfe\x78\x3d\xf7\xdd\x44\xc6\xfe\x4b\x0a\x1f\x16\xde\x31\x14\x32\x7f\x02\x00\x00\xff\xff\xd5\xf9\xf9\xc2\x4c\x03\x00\x00") + +func examplesSparkSparkGlusterSparkWorkerControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSparkSparkGlusterSparkWorkerControllerYaml, + "examples/spark/spark-gluster/spark-worker-controller.yaml", + ) +} + +func examplesSparkSparkGlusterSparkWorkerControllerYaml() (*asset, error) { + bytes, err := examplesSparkSparkGlusterSparkWorkerControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/spark/spark-gluster/spark-worker-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSparkSparkMasterControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcd\x6a\x2b\x31\x0c\x85\xf7\x7e\x0a\x91\xfd\xfc\xf8\xc2\x65\x82\xb7\x7d\x81\xd2\x45\x37\xa5\x04\xd5\x11\x83\x89\x6d\xb9\xb2\x26\xcf\x5f\xa6\xd3\x24\x6e\x28\xf1\xce\xe8\x3b\x9f\x8e\x7d\x0a\xf9\xe8\xe0\x85\x4a\x0c\x1e\x35\x70\x7e\xe2\xac\xc2\x31\x92\x18\x2c\xe1\x95\xa4\x06\xce\x0e\xce\xd6\x24\x52\x3c\xa2\xa2\x33\x00\x19\x13\x39\xa8\x05\xe5\xd4\x25\xac\x4a\xd2\xf9\x5b\xb0\x16\xf2\x2b\x25\x9b\xb6\x3a\xb0\x06\xa0\x52\x24\xaf\x2c\xeb\x04\xc0\x73\x2a\x9c\x29\xeb\x6f\x8d\x01\x50\x4a\x25\xa2\xd2\xc6\xb5\x5b\xd7\x13\xf1\x83\x62\xbd\xdc\x1e\x79\x00\x2e\x3d\x36\x2e\x2b\x86\x4c\xd2\x64\xbb\x3f\xde\x71\x1d\x02\x84\x84\x33\x39\x98\xbd\xf4\x81\x87\x99\x79\x8e\x74\xb8\x79\x86\xef\x98\xb3\xfd\xff\xfe\xdf\xe1\x6c\x9b\xa0\xe7\x94\x70\xfd\xd7\xb7\xdd\x50\x15\x45\x7f\xdc\xbb\xf7\x06\x2a\x2c\xda\x74\xd9\xfa\x5c\xed\xcf\x2c\xea\x60\x1a\xa7\xe9\x31\xb1\x1f\xf7\x63\x43\x08\x55\x5e\xc4\xd3\x9d\x58\xe8\x73\xa1\x7a\xbf\x0e\xc0\x97\xc5\x81\x1d\xc7\x64\xbe\x02\x00\x00\xff\xff\x65\x94\x03\xb3\x08\x02\x00\x00") + +func examplesSparkSparkMasterControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSparkSparkMasterControllerYaml, + "examples/spark/spark-master-controller.yaml", + ) +} + +func examplesSparkSparkMasterControllerYaml() (*asset, error) { + bytes, err := examplesSparkSparkMasterControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/spark/spark-master-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSparkSparkMasterServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x0a\xc3\x30\x0c\x45\x77\x9f\xe2\x5f\x20\x90\x4e\x0e\x3e\x45\xa1\xd0\x5d\x38\xa2\x35\xa9\x6d\x21\x89\x9c\xbf\x24\x59\xd2\xd0\x4d\x7a\xe2\xe9\xff\xa5\xb4\x39\xe1\xc1\xba\x96\xcc\x81\xa4\x3c\x59\xad\xf4\x96\xb0\xde\x42\x65\xa7\x99\x9c\x52\x00\x1a\x55\x4e\x30\x21\x5d\x86\x4a\xe6\xac\xc1\x84\xf3\x76\x92\xae\x6e\xdb\x00\x0c\xfb\x92\x10\xc7\x18\x77\x00\x38\xe9\x8b\xfd\x7e\xc5\xa7\x7f\x3f\xe6\x34\x4e\xe3\x1f\xf3\x84\x0f\xf3\xed\x2e\x01\x30\xfe\x70\xf6\xae\x47\x7c\xee\x55\x7a\xe3\xe6\x97\xa6\xdf\x00\x00\x00\xff\xff\x42\x59\x17\x1f\xe6\x00\x00\x00") + +func examplesSparkSparkMasterServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSparkSparkMasterServiceYaml, + "examples/spark/spark-master-service.yaml", + ) +} + +func examplesSparkSparkMasterServiceYaml() (*asset, error) { + bytes, err := examplesSparkSparkMasterServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/spark/spark-master-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSparkSparkUiProxyControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x41\x6b\xe3\x30\x10\x85\xef\xfe\x15\xf3\x07\xbc\xb1\x17\x16\x82\xae\xbb\xb0\xd7\xd0\x42\xef\x13\xf9\x91\x88\x48\x1a\x75\x34\x0e\x4d\x7f\x7d\x71\x4d\x52\xc7\x29\xd5\x4d\x33\xef\xbd\x6f\x46\xe8\x14\xf2\xe0\xe8\x09\x25\x06\xcf\x16\x24\xff\x95\x6c\x2a\x31\x42\x1b\x2e\xe1\x05\x5a\x83\x64\x47\xe7\xbe\x49\x30\x1e\xd8\xd8\x35\x44\x99\x13\x1c\xd5\xc2\x7a\x6a\xc7\xd0\x16\x95\xb7\x4b\xeb\xbf\xac\xb5\xc0\x4f\x3a\x9d\x83\xab\xa3\xbe\x21\xaa\x88\xf0\x26\x3a\x75\x88\xbc\xa4\x22\x19\xd9\xd6\x41\x0d\x91\x21\x95\xc8\x86\x59\xb9\x24\x4f\x27\xf2\x1e\xb1\x5e\x6f\x3f\x27\x11\x5d\x67\x99\x95\xd9\x38\x64\xe8\xc2\xdd\x7e\xbb\xcd\xad\x4d\x14\x12\x1f\xe0\x08\xb1\x4a\x56\x19\x34\x1c\x46\xbc\x6f\xee\xe5\xae\xff\xd5\x2d\x2c\x45\xd4\x16\x88\x19\x73\x83\xef\x44\xcd\xd1\x76\x69\x50\x54\x19\xd5\x63\x65\x52\xbc\x8e\xa8\xeb\x28\x22\x5f\x46\x47\x7d\xd7\xa5\x45\x9d\xf5\xf0\x80\x9c\x87\x4c\x5c\x0d\xea\xb6\xdd\x1d\x32\x86\x33\x32\x6a\xdd\xa9\xec\xb1\x06\x1c\xcd\xca\x7f\xd8\xba\x4c\x54\xd8\x8e\x8e\x36\x8f\xf5\xc7\x9d\x3e\xdf\x2e\x07\x0b\x1c\xff\x21\xf2\xe5\x19\x5e\xf2\x30\xfd\x85\xdf\x6b\x99\x85\x04\x19\xed\xa6\xf8\xd3\x7c\x04\x00\x00\xff\xff\xed\x1d\x48\x4d\x99\x02\x00\x00") + +func examplesSparkSparkUiProxyControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSparkSparkUiProxyControllerYaml, + "examples/spark/spark-ui-proxy-controller.yaml", + ) +} + +func examplesSparkSparkUiProxyControllerYaml() (*asset, error) { + bytes, err := examplesSparkSparkUiProxyControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/spark/spark-ui-proxy-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSparkSparkUiProxyServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8c\xb1\xca\xc2\x40\x10\x84\xfb\x7b\x8a\x79\x81\xc0\xff\x77\x72\xa5\xb5\x85\x20\xd8\x2f\x97\x41\x8e\x24\xb7\xcb\xde\x1a\xcc\xdb\x4b\x62\x61\x61\x37\xdf\xcc\xf0\x4d\xb5\x8d\x19\x37\xfa\x5a\x0b\x93\x58\xbd\xd3\x7b\xd5\x96\xb1\xfe\xa7\x85\x21\xa3\x84\xe4\x04\x34\x59\x98\xd1\x4d\x7c\x1a\x9e\x75\x30\xd7\xd7\x96\xba\xb1\xec\xa3\xa9\x47\xdf\x03\x30\x1c\x90\x71\xfa\x3b\x10\x08\xf1\x07\xe3\xfa\x2d\x3b\x67\x96\x50\xff\xfc\x8b\x2e\xa6\x8d\x2d\x7e\xe4\x40\x6c\xc6\x8c\x8b\xca\x78\x96\x59\x5a\xa1\xa7\x77\x00\x00\x00\xff\xff\xb3\x0f\xef\x29\xb0\x00\x00\x00") + +func examplesSparkSparkUiProxyServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSparkSparkUiProxyServiceYaml, + "examples/spark/spark-ui-proxy-service.yaml", + ) +} + +func examplesSparkSparkUiProxyServiceYaml() (*asset, error) { + bytes, err := examplesSparkSparkUiProxyServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/spark/spark-ui-proxy-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSparkSparkWorkerControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcf\x4a\x03\x31\x10\xc6\xef\x79\x8a\xa1\xf7\xfd\x57\x10\x4a\xae\xbe\x80\x78\xf0\x22\x52\xc6\x74\x58\xc2\x26\x99\x38\x99\xad\xaf\x2f\x6b\x6c\x1b\x8b\x98\x5b\x98\xef\xf7\xcb\x97\x59\x7c\x3a\x59\x78\xa6\x1c\xbc\x43\xf5\x9c\x1e\x39\xa9\x70\x08\x24\x06\xb3\x7f\x21\x29\x9e\x93\x85\xf3\x64\x22\x29\x9e\x50\xd1\x1a\x80\x84\x91\x2c\x94\x8c\xb2\x74\x9f\x2c\x0b\x49\xe7\x6e\x60\xc9\xe4\xb6\x94\x54\x6d\xb1\xb0\x37\x00\x85\x02\x39\x65\xd9\x26\x00\x8e\x63\xe6\x44\x49\x7f\x6b\x0c\x80\x52\xcc\x01\x95\x6a\xae\x7d\x75\x3b\x01\xdf\x29\x94\xcb\xed\x3f\x0f\xc0\xa5\x47\xcd\x25\x45\x9f\x48\x1a\xb6\xfb\xe3\x1f\xd7\x21\x80\x8f\x38\x93\x85\xd9\x49\xef\x79\x98\x99\xe7\x40\xc7\x9b\x67\xf8\xc6\xec\xd4\x3f\xf4\xfb\xe3\x79\x6a\x40\xc7\x31\xe2\xb6\xd7\xd7\xdd\x50\x14\x45\x7f\xdc\xbb\xb7\x26\x94\x59\xb4\xe9\x52\xfb\x5c\xed\x4f\x2c\x6a\xe1\x30\x1e\x5a\xaf\x50\xe1\x55\x1c\xdd\x61\x42\x1f\x2b\x95\x7b\x19\x80\xcb\xab\x85\x69\x1c\xa3\x31\x5f\x01\x00\x00\xff\xff\x55\x57\x20\x63\xe7\x01\x00\x00") + +func examplesSparkSparkWorkerControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSparkSparkWorkerControllerYaml, + "examples/spark/spark-worker-controller.yaml", + ) +} + +func examplesSparkSparkWorkerControllerYaml() (*asset, error) { + bytes, err := examplesSparkSparkWorkerControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/spark/spark-worker-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSparkZeppelinControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8e\x31\x6a\xc4\x30\x14\x44\x7b\x9d\x62\x2e\xb0\x5e\xbb\x48\x58\xd4\xe6\x02\x21\x45\xda\x45\xd1\x0e\x46\x44\xd2\x57\xbe\x64\x17\x39\x7d\x30\xc6\x6b\x63\x88\x3a\x31\xf3\xde\xfc\xef\x90\x1f\x16\x1f\x2c\x31\x78\xd7\x82\xe4\x37\xc9\x4d\x25\x46\xaa\x71\x25\x7c\x52\x6b\x90\x6c\x31\x0f\x26\xb1\xb9\x87\x6b\xce\x1a\x20\xbb\x44\x8b\x5f\x96\xc2\x18\xf2\xc5\xef\x50\x2d\xf4\x4b\x43\x57\x65\xb5\x18\x0c\x50\x19\xe9\x9b\xe8\x92\x00\x5e\x52\x91\xcc\xdc\x76\x85\x01\x1a\x53\x89\xae\x71\xed\x1c\xd7\x96\x17\xdd\x17\x63\xdd\x7e\xff\x39\x80\x6d\x7f\xed\xe4\xe6\x42\xa6\x1e\xb8\xcb\xe9\xf6\x67\x00\x84\xe4\x46\x5a\x8c\x5e\xbb\x20\xd7\x51\x64\x8c\xbc\xef\x8e\xeb\x86\xd8\xb9\xef\x5e\xba\xd7\xfb\x3c\x1c\xe0\x22\xda\x0e\x33\xeb\xd4\x13\x7e\x17\x6d\x16\xb7\xfe\xd6\x1f\x1a\xca\x2a\x93\x7a\x9e\x30\xe5\xcf\xc4\x7a\x96\x01\xbe\x4c\x16\x43\xdf\x27\xf3\x17\x00\x00\xff\xff\x78\x39\xd2\x08\xb5\x01\x00\x00") + +func examplesSparkZeppelinControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSparkZeppelinControllerYaml, + "examples/spark/zeppelin-controller.yaml", + ) +} + +func examplesSparkZeppelinControllerYaml() (*asset, error) { + bytes, err := examplesSparkZeppelinControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/spark/zeppelin-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSparkZeppelinServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xcc\xb1\xaa\x02\x41\x0c\x85\xe1\x7e\x9e\xe2\xbc\xc0\x85\x6b\x27\x53\x5a\x5b\x08\x82\x7d\x98\x3d\xc8\xe0\x6e\x12\x32\x61\x41\x9f\x5e\x76\xb5\xb0\xcb\xff\x41\xce\xa3\xeb\x54\x71\x65\xac\xbd\xb1\x88\xf7\x1b\x63\x74\xd3\x8a\xf5\x50\x16\xa6\x4c\x92\x52\x0b\xa0\xb2\xb0\xe2\x45\x77\xce\x5d\xcb\x70\xb6\x8d\xdd\x22\xc7\x76\x00\x7f\x7b\x54\x1c\xff\xf7\x04\x52\xe2\xce\xbc\x7c\x71\xe7\xc1\x99\x2d\x2d\x3e\x1f\xcd\x16\x37\xa5\xe6\xcf\x30\x90\x4f\x67\xc5\xd9\x64\x3a\xc9\x2c\xda\x18\xe5\x1d\x00\x00\xff\xff\x33\x4d\xab\xcc\xa6\x00\x00\x00") + +func examplesSparkZeppelinServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSparkZeppelinServiceYaml, + "examples/spark/zeppelin-service.yaml", + ) +} + +func examplesSparkZeppelinServiceYaml() (*asset, error) { + bytes, err := examplesSparkZeppelinServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/spark/zeppelin-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraCassandraControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\xc1\x6e\xd3\x40\x10\xbd\xe7\x2b\x46\xe5\x4a\x5c\x27\xa2\x82\xee\xcd\x6a\x8c\xa8\x50\x5a\x2b\x41\x05\x71\x89\xa6\xeb\x49\xba\x74\x77\x67\xd9\x5d\x1b\x2a\xc4\xbf\x23\xc7\x34\x71\x6d\x17\x71\xe8\xdc\xfc\x66\xde\x9b\xe7\xe7\x91\xd1\xa9\x1b\xf2\x41\xb1\x15\x50\xcf\x26\xf7\xca\x96\x02\x56\xe4\xb4\x92\x18\x15\xdb\x0b\xb6\xd1\xb3\xd6\xe4\x27\x86\x22\x96\x18\x51\x4c\x00\x2c\x1a\x12\x20\x31\x04\xb4\xa5\xc7\x09\xc0\x2b\xf8\x74\x47\xa0\xf1\x96\x74\x80\x1f\x4a\x6b\xb8\x25\x40\xe7\xb4\xa2\x12\xb0\x8a\x6c\x30\x2a\x89\x5a\x3f\xec\x87\xb7\x9e\x0d\xc4\x23\x43\xd9\xfd\x93\xe3\x12\x22\x19\xa7\x31\xd2\x6b\x50\x5b\xb0\x1c\x21\x50\xdc\x73\xda\xd1\x66\x7d\xf3\x84\xce\x75\x1d\x04\x47\xb2\x69\xf9\xd6\x7b\x10\x30\x3f\xb8\x0a\xa4\x49\x46\xf6\x2f\xef\x2b\xd9\x93\x1e\xf5\x5b\x6b\x23\xe6\xe0\x40\x6e\x47\xba\x51\x36\xd5\x7d\xb3\xa6\x06\x74\x80\xc7\xf7\x6b\x4a\xb2\x8d\xa8\x2c\xf9\x0e\x65\x0a\x92\x8d\x41\x5b\x1e\xa1\x16\x3e\xf5\x95\x4d\xc2\x5d\x07\xf5\x14\xb8\xf2\x92\xc2\xd3\x51\xad\x8c\x8a\x3d\x0c\x40\xba\x4a\x40\x9a\x9c\x75\x60\xb2\x75\x7f\x49\x7b\x0f\xcb\xec\xcb\xe6\x43\x9e\x15\x9b\xf5\xe5\xd7\xbc\xa7\x53\xa3\xae\x48\xc0\xd9\x6c\xbe\x1c\xe5\xee\x79\x57\xf9\xe7\xe7\xa9\xb3\x34\x1d\xa7\x5e\x64\xeb\x75\x76\xb5\x58\x65\x9b\x75\x9e\x2f\x36\xc5\xea\xfa\xe6\x72\x91\xaf\xc6\x55\x4e\x14\x27\xf7\xef\x42\x72\x48\x37\xf9\x58\xdd\x92\xb7\x14\x29\xac\x89\xca\xc2\x73\xad\x4a\xf2\x27\xa3\xab\x8a\xeb\xc5\xe6\x2a\x5b\xe6\xeb\x22\xbb\x18\xb5\xf9\xde\xb3\xe9\x47\x08\xb0\x55\xa4\xcb\x15\x6d\x87\x9d\xbf\xbd\x02\xe3\x9d\x38\x9c\x45\xd2\x2c\x0b\x0e\x25\x3d\x6b\xe2\xb2\x78\xf1\xed\x21\x62\xac\x42\xe2\xb8\x7c\x22\xae\x0c\xee\x48\xc0\x4e\xfa\x44\xf1\xe9\x8e\x79\xa7\x69\x1a\xd0\x38\x4d\xe1\xf4\x90\xa2\xa8\x67\xf3\x0e\x69\xf8\x7f\x78\x2c\xc7\xbe\x7f\x64\xd3\xe3\x41\x17\xec\xa3\x80\xb7\x69\x9a\xf6\xbc\xb6\x82\xca\x46\x8f\x53\xcb\x65\x3f\x98\xa1\xc0\x6c\x54\x20\xea\x30\xfd\x6f\x91\xd9\xf9\xf9\xa8\xc8\x37\xf3\xf3\xdf\xcc\xf3\xf4\xcd\x7c\x94\x29\xbf\xeb\x0e\x5e\xb3\xae\x0c\x2d\xb9\xb2\xc3\x44\x4c\x83\xb6\xdf\xe5\x18\xf2\xa6\x39\x8e\x51\xe1\x4e\xa3\x55\x7d\xf2\x67\x18\xcc\x34\x45\xc6\xc5\x87\x85\xf2\x02\x7e\xfd\x9e\xfc\x09\x00\x00\xff\xff\x3f\x12\xc5\xe1\x07\x06\x00\x00") + +func examplesStorageCassandraCassandraControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraCassandraControllerYaml, + "examples/storage/cassandra/cassandra-controller.yaml", + ) +} + +func examplesStorageCassandraCassandraControllerYaml() (*asset, error) { + bytes, err := examplesStorageCassandraCassandraControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/cassandra-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraCassandraDaemonsetYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x4f\x6f\x9b\x4e\x10\xbd\xfb\x53\x8c\x92\xdb\x4f\x32\x86\x28\xf9\xb5\xd9\x1b\x8a\x89\x6a\x55\x4e\x90\x91\xd2\xaa\x17\x34\x81\x31\xd9\x66\xff\x90\xdd\x85\x26\xaa\xfa\xdd\xab\x35\x8d\x8d\x81\xb4\x3d\x74\xe4\xc3\xfa\xcd\xbc\x37\xc3\xec\x03\xac\xf9\x1d\x19\xcb\xb5\x62\x40\xcf\x8e\x94\x3f\xda\x45\x1b\xdd\x93\xc3\x68\xf6\xc8\x55\xc9\x60\x89\x24\xb5\xca\xc8\xcd\x24\x39\x2c\xd1\x21\x9b\x01\x08\xbc\x27\x61\xfd\x09\x40\xa1\x24\x06\x05\x5a\x8b\xaa\x34\x38\x1b\x23\xb6\xa6\xc2\xd7\x3a\x92\xb5\x40\x47\x1d\xaf\xaf\xe7\xa3\xaf\xe9\x03\xeb\xfa\x58\x16\xe0\x55\xc8\xc7\x29\x5c\x73\xe1\xc8\x80\xd3\x3b\x9c\x6f\x79\x01\x4a\x97\x64\x0f\x15\xfe\x6f\x46\x82\x0a\xa7\xcd\x01\x9d\x52\x06\x28\xb4\x72\xc8\x15\x99\xde\x08\x73\x28\xb4\x94\xa8\xca\x03\xd4\xc1\x0b\xd3\xa8\xc0\x3e\xf4\x50\x52\xed\xb0\xa8\x5b\xc3\x3a\xfe\x9c\x7f\x48\xe2\x34\xcf\x56\x5f\x92\xa3\x0a\x80\x16\x45\x43\x0c\x2e\xa2\xb3\xf5\x24\x77\xc7\xbb\x49\x3e\xbd\x4d\x8d\xc2\x70\x9a\x7a\x15\x67\x59\x7c\xb3\xdc\xc4\x79\x96\x24\xcb\x3c\xdd\xdc\xde\xad\x96\xc9\x66\x5a\xe5\x84\xeb\xe0\xf1\xbd\x0d\xf6\x3b\x09\x3e\x36\xf7\x64\x14\x39\xb2\x19\x51\x99\x1a\xdd\xf2\x92\xcc\xc9\x64\xab\xf4\x76\x99\xdf\xc4\xeb\x24\x4b\xe3\xab\xc9\x31\xaf\x8d\x96\x6c\x90\x00\xd8\x72\x12\xe5\x86\xb6\xe3\xcc\xaf\x5c\x8a\xee\x81\xed\x6d\x12\xf8\x66\xb6\xc6\x82\xde\x1c\x62\x95\xfe\xf3\xee\xd6\xa1\x6b\x6c\x50\xeb\xf2\x48\x9c\x4b\xac\x88\x41\x55\x98\x80\xeb\x45\xa5\x75\x25\x68\x6e\x51\xd6\x82\xec\x62\xbf\x45\xd6\x46\x67\x3d\xd2\xf8\x45\x79\x8d\x5a\x1b\x67\x87\xf6\xd9\x1b\x32\xd5\xc6\x31\x78\x17\x86\xe1\x60\xd6\x4e\x90\x2b\x67\x70\xee\xad\xfe\x47\x81\x68\x52\xc0\x09\x3b\xff\x6b\x91\xe8\xf2\x72\x52\xe4\xab\x7c\xfe\x3d\xf3\x32\x3c\x3f\x9b\x64\x16\x4f\x62\x80\x9f\xc2\x6a\x0b\x2f\xba\x01\x45\x54\x02\x77\xbb\x9f\x85\x4a\x73\x55\x01\x7e\xc3\x17\xe0\x0a\xae\xfe\x83\xf3\x60\xb8\x91\xd3\x71\xdb\xe8\xff\x51\xd1\xfe\xc1\x1f\x0c\xdf\xba\x5e\xd6\x90\xd5\x8d\x29\x68\x70\x17\x86\x9e\x1a\xb2\xc3\x1b\x02\x28\xea\x86\x41\x18\x5c\xf4\xe0\x56\x8b\x46\xd2\x5a\x37\x6a\x7c\xa1\xd2\xa3\x9d\xad\x0e\x1e\xc9\xbd\xb7\x27\xf7\xd2\x4b\x74\xaa\x47\x1f\xa6\x51\x8d\x0f\x92\xb5\x7b\x59\x72\xc3\xe0\xfb\x8f\xd9\xcf\x00\x00\x00\xff\xff\xd6\x33\x75\xcd\xdf\x05\x00\x00") + +func examplesStorageCassandraCassandraDaemonsetYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraCassandraDaemonsetYaml, + "examples/storage/cassandra/cassandra-daemonset.yaml", + ) +} + +func examplesStorageCassandraCassandraDaemonsetYaml() (*asset, error) { + bytes, err := examplesStorageCassandraCassandraDaemonsetYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/cassandra-daemonset.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraCassandraServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8d\x31\xca\x42\x31\x10\x84\xfb\x3d\xc5\x5c\xe0\x87\x5f\xb1\x71\x6f\x60\x23\x82\x60\xbf\x26\x53\x04\xf3\x92\xb0\x1b\xdf\xf9\xe5\x89\x85\x85\xdd\xcc\x30\x7c\x9f\x8d\x72\xa3\x47\xe9\x4d\xb1\xee\xe4\x51\x5a\x56\x5c\xe9\x6b\x49\x94\x85\xd3\xb2\x4d\x53\x01\xaa\xdd\x59\x63\x4b\x80\x8d\xa1\x48\x16\x61\x2d\xbb\x09\xd0\x6c\xe1\xf7\x12\x83\x69\xbb\xa6\xfa\x8c\x49\x3f\x5d\x14\xe7\xde\x28\xc0\xe8\x3e\x3f\x94\xbf\x77\x51\x1c\xff\x0f\x7b\x01\x82\x95\x69\x76\xff\xa9\x78\x05\x00\x00\xff\xff\x9d\xcf\x54\x9b\xa7\x00\x00\x00") + +func examplesStorageCassandraCassandraServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraCassandraServiceYaml, + "examples/storage/cassandra/cassandra-service.yaml", + ) +} + +func examplesStorageCassandraCassandraServiceYaml() (*asset, error) { + bytes, err := examplesStorageCassandraCassandraServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/cassandra-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraCassandraStatefulsetYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\xdd\x6e\xdb\x46\x13\xbd\xd7\x53\x0c\xf8\xdd\x86\xb4\x94\xaf\x41\x13\xde\xa9\x92\x9b\x06\x89\x6d\x41\x72\x9a\xa2\x41\x21\x8c\x76\x47\xd6\xd6\xcb\xdd\xcd\xce\x50\xb5\xde\xbe\x58\x4a\xa2\x29\x89\x31\x82\xf2\xc2\xb0\x66\xcf\x39\xf3\xb3\x1c\xce\x60\x30\xbf\x53\x64\xe3\x5d\x09\x19\x86\xc0\x57\xdb\xd1\x8a\x04\x47\xd9\xe0\xd1\x38\x5d\xc2\x42\x50\x68\x5d\xdb\x05\xc9\xa0\x22\x41\x8d\x82\xe5\x00\xc0\x61\x45\x25\x28\x64\x46\xa7\x23\x0e\x38\x90\x4a\x76\xa6\xb8\x35\x8a\x6e\xcf\x8e\x01\x22\x05\x6b\x14\x72\x09\xff\x1f\x00\x08\x55\xc1\xa2\x50\xa2\x00\x74\x85\xd3\x63\x71\x45\x96\x8f\xbf\x00\x30\x84\x53\x31\x80\xa3\xbf\xf4\x08\xc5\xca\x38\x14\xe3\xdd\xfb\x88\x8a\x66\x14\x8d\xd7\x0b\x52\xde\x69\x2e\x61\xf4\x76\x38\x3c\x20\x95\x77\x82\xc6\x51\x6c\xc5\xf3\x8b\x4c\x8e\x4e\x4d\x85\x0f\x54\xc2\x83\x8a\x85\xf1\x57\x0f\xde\x3f\x58\xca\x19\xab\x60\x89\xaf\x5a\x78\xb9\x1d\xbd\x3e\xa5\xcc\x6a\x6b\x67\xde\x1a\xb5\x2b\x61\x6c\xff\xc1\x1d\xb7\xe7\xc1\x47\xe9\xa4\x95\x3f\xc7\x33\xf3\x51\x4a\xf8\x79\xd8\x46\x9a\x9e\x7d\x64\xc6\x49\xc4\xdc\x79\x4d\x2f\x12\x47\x17\x44\xb1\x9c\xff\x10\x79\xf4\xee\xdd\x05\xf9\xef\xea\xe9\xfb\x8c\x77\xc3\x9f\x5e\x5f\x30\xd4\x37\xdb\xda\x22\xb1\xaf\xa3\xa2\x4e\xb2\x00\xd6\x54\x46\x4e\x2c\x00\x2a\xd4\x25\x64\x6f\x86\xc3\x2a\x3b\xb1\x57\x54\xf9\xb8\x2b\x61\xf4\xde\x74\xec\x91\xbe\xd5\xc4\x67\x1a\xdf\x91\xe8\x53\x60\x52\x75\x34\xb2\x9b\x78\x27\xf4\x24\x5d\x19\x85\x01\x57\xc6\x1a\x31\x74\x16\x22\x6a\x7d\x6a\x48\x05\xf9\x30\x9b\x2c\x3f\xdd\x4d\x3e\x0e\x9e\x93\x5b\x93\xda\x29\x4b\x5d\x6c\x88\xb4\x10\x1f\x4e\xe9\xf4\xf4\xfc\xe6\xb6\xde\x7d\x55\x61\x6a\xb7\xaf\xd9\xd5\xca\xb8\x2b\xde\x64\xaf\x20\xcb\x55\xfa\x9b\x2e\x4f\xbc\xb7\xa0\x23\x1a\x97\xfd\xd5\x52\xc9\x6d\xbb\x3a\xc7\x37\xf9\x66\xfc\xc7\xf2\xb7\xeb\xf1\x6c\xb9\xf8\xf0\xe7\xf5\x89\x9f\x2d\xda\x9a\x4a\x78\x33\x7a\x7d\xd3\xc3\x6b\x38\xb7\xd7\x5f\xbe\x47\x1b\x0d\x87\x7d\xb4\xc9\x78\xb1\x18\xdf\x4e\xe7\xe3\xe5\xe2\xfa\x7a\xba\xe8\x63\x66\x6d\xb7\xe4\xc3\xa2\xfd\xbf\xd0\xb4\xc6\xda\x4a\xc1\x5b\x55\x28\x5b\xb3\x50\x2c\xac\x57\x68\xb3\x17\xdd\x4c\x3e\x7d\x5e\xdc\x5f\xcf\x97\xb7\xe3\x9b\xde\x38\xb3\x8f\x6f\xa7\x54\xf9\x97\x45\xa6\x93\x5e\xea\x74\x32\xca\x7f\x84\x3e\x1f\x77\xae\xbe\x2b\x30\x47\xf5\xf8\x63\x12\xe3\xcf\xf7\x77\xcb\x5f\xee\xee\xee\x17\xf7\xf3\xf1\xac\x57\x6c\x8d\x96\xa9\x4f\x65\x76\x37\x5d\x7e\xe8\xe1\xfc\x1a\x7d\x75\xfe\x6a\xad\x0d\x59\x3d\xa7\xf5\xb9\xfd\x70\x32\x43\xd9\x94\xc0\x82\x52\x73\x11\xbc\x3e\x91\xed\xfa\x4b\xe5\x5e\xcc\xc6\x93\x9e\x9a\xff\x67\xb7\xc7\xef\x7e\x91\xdc\x70\x40\x45\x9d\x2f\x08\x6a\xe3\x88\x79\x16\xfd\xea\xa4\xa9\x2e\xfb\xe7\xd8\x3d\x27\xc6\x1c\x9a\x4e\x5a\x21\x6f\xce\xec\xb9\x3a\x07\x26\x67\xbb\x3c\x24\x4f\xc5\x09\xdc\x38\x23\x06\xed\x94\x2c\xee\x9e\xe7\xc9\x9b\x0e\x42\x4c\x45\xbe\x96\xf6\xf0\xf9\xec\x7f\x70\xbf\x21\x26\xd8\x7a\x5b\x57\x04\x95\xaf\x9d\x30\x60\x24\x08\x69\xe2\xb2\x90\x93\x22\x61\x76\x8d\xd1\x9a\x47\x02\xe3\xac\x71\x04\xca\xa2\xa9\xf8\x55\x47\x6a\x55\x0b\x38\x2f\x40\x4f\xa8\xc4\xee\x60\x45\x0a\x6b\x26\x90\x0d\x35\x77\xc4\xe0\x88\x34\x88\x87\x0a\x45\x6d\x5a\x9c\x77\x04\x7e\xdd\x11\x4a\x04\x3e\xcc\x74\x08\x5e\x1f\xc2\xe3\xa2\xc5\xec\x0d\x37\x4d\xb8\xdd\x59\x75\x36\x27\xf3\x74\x71\x9d\x42\x34\xf9\xed\xaf\xf5\x79\x3a\x2e\x0f\xa0\x63\x2d\x52\xa2\xca\xbb\x2d\x45\xd9\x47\x7b\x28\xce\x3e\x61\x58\xed\x9a\xf8\xd2\xb4\x89\xde\x5a\x8a\x0d\x15\x9d\xde\xab\x93\x06\x94\x06\x11\x50\x36\x0c\x15\xb9\x34\xf3\x93\x79\xe5\xb7\x54\x34\x68\xed\x9b\x42\x1d\x8a\xc3\xa9\xa6\x10\xa2\xd7\xb5\x4a\x58\xa8\x9d\x18\x0b\xcc\x1a\xde\x4f\xae\x67\xed\x45\x4c\x0d\x3f\x82\x8f\xe0\x65\x43\xb1\x39\x0e\x7a\x70\xac\xc5\x24\x45\x77\x7f\xd8\x58\x9a\x9a\xe4\x17\x2b\xcb\x0b\xd5\x41\xe7\xbc\x34\xdb\x49\xa7\x9e\x7b\xe5\x22\xed\x5a\xc5\x63\xbd\xa2\xe8\x48\x88\xd3\xa6\xc1\xe2\x23\x3e\x50\xae\x2c\x32\x97\xb0\x46\x96\x8b\x8d\x07\x95\x22\xe6\x1b\xaf\x89\x4b\xf8\x0a\xd9\x9c\x50\x7f\x89\x46\xe8\xce\x29\xca\xe0\x38\x23\x7a\xc6\x70\xdf\x08\x3d\x78\xdc\xcf\xca\x3c\xcf\xdb\xd5\xaf\x31\x4f\x52\x1c\x83\xee\xa2\x78\xc0\x17\x8f\x6f\x9b\x80\x0f\x1b\x63\xcf\x7a\xd8\xc4\x1e\xa2\xdf\x9a\x44\xa4\x58\xc2\x69\xaa\x0f\x8a\xf2\xa0\x07\x01\x23\x56\x24\x87\xad\x4c\x76\x81\x4a\x08\x3a\x67\xd6\x83\x7f\x03\x00\x00\xff\xff\x5f\x8d\x6e\x06\xa0\x0a\x00\x00") + +func examplesStorageCassandraCassandraStatefulsetYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraCassandraStatefulsetYaml, + "examples/storage/cassandra/cassandra-statefulset.yaml", + ) +} + +func examplesStorageCassandraCassandraStatefulsetYaml() (*asset, error) { + bytes, err := examplesStorageCassandraCassandraStatefulsetYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/cassandra-statefulset.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraImageDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\x71\x73\xda\xb8\x12\xff\xdf\x9f\x62\x07\x32\x49\xcb\xab\x2c\x48\xd2\x34\xa1\xc3\x9b\xa1\x81\xb6\xdc\xa5\x70\x2f\xa4\xb9\xeb\xb4\x7d\x8c\x2c\xaf\x6d\x11\x5b\x72\x25\x19\xc2\xf5\xfa\x3e\xfb\x1b\x19\x52\x20\x29\xe9\x85\x1c\xff\x18\xed\xfe\x7e\xbb\x2b\x69\x77\x25\xbb\x0a\xa7\x2a\x9f\x69\x11\x27\x16\xf6\xeb\x8d\x17\x70\x91\x20\xfc\x5a\x04\xa8\x25\x5a\x34\xd0\x2e\x6c\xa2\xb4\xf1\xbd\xaa\x57\x85\x33\xc1\x51\x1a\x0c\xa1\x90\x21\x6a\xb0\x09\x42\x3b\x67\x3c\xc1\x1b\xcd\x33\xb8\x44\x6d\x84\x92\xb0\xef\xd7\xe1\x89\x03\x54\x16\xaa\xca\xd3\x97\x5e\x15\x66\xaa\x80\x8c\xcd\x40\x2a\x0b\x85\x41\xb0\x89\x30\x10\x89\x14\x01\xaf\x39\xe6\x16\x84\x04\xae\xb2\x3c\x15\x4c\x72\x84\xa9\xb0\x49\xe9\x66\x61\xc4\xf7\xaa\xf0\x61\x61\x42\x05\x96\x09\x09\x0c\xb8\xca\x67\xa0\xa2\x55\x1c\x30\x5b\x06\xec\x7e\x89\xb5\x79\x93\xd2\xe9\x74\xea\xb3\x32\x58\x5f\xe9\x98\xa6\x73\xa0\xa1\x67\xbd\xd3\x6e\x7f\xd8\x25\xfb\x7e\xbd\xa4\xbc\x97\x29\x1a\x03\x1a\xbf\x14\x42\x63\x08\xc1\x0c\x58\x9e\xa7\x82\xb3\x20\x45\x48\xd9\x14\x94\x06\x16\x6b\xc4\x10\xac\x72\xf1\x4e\xb5\xb0\x42\xc6\xcf\xc0\xa8\xc8\x4e\x99\x46\xaf\x0a\xa1\x30\x56\x8b\xa0\xb0\x6b\x8b\x75\x13\x9d\x30\x6b\x00\x25\x81\x49\xa8\xb4\x87\xd0\x1b\x56\xe0\x55\x7b\xd8\x1b\x3e\xf3\xaa\xf0\x7b\xef\xe2\xed\xe0\xfd\x05\xfc\xde\x3e\x3f\x6f\xf7\x2f\x7a\xdd\x21\x0c\xce\xe1\x74\xd0\xef\xf4\x2e\x7a\x83\xfe\x10\x06\xaf\xa1\xdd\xff\x00\xbf\xf6\xfa\x9d\x67\x80\xc2\x26\xa8\x01\xaf\x73\xed\xe2\x57\x1a\x84\x5b\x46\x0c\xdd\x9a\x0d\x11\xd7\x02\x88\xd4\x3c\x20\x93\x23\x17\x91\xe0\x90\x32\x19\x17\x2c\x46\x88\xd5\x04\xb5\x14\x32\x86\x1c\x75\x26\x8c\xdb\x4c\x03\x4c\x86\x5e\x15\x52\x91\x09\xcb\x6c\x29\xb9\x33\x29\xdf\xf3\x5e\x9f\x0f\xde\x41\xcc\xb5\x2f\x14\x8d\x95\x8a\x53\x1c\x71\x25\xdd\x2e\xa1\x36\xb4\x08\x0a\x69\x0b\x62\x52\x91\x35\xeb\xfe\x89\xe7\xb5\xcf\xdf\xc0\xab\xf7\xbd\xb3\xce\xa8\xd3\xbe\xe8\x96\xc3\xcb\xd3\xe1\xe8\xbc\xfb\xba\xfc\x7f\xda\x1e\x0e\xdb\xfd\xce\x79\x7b\x74\xd9\x3d\x1f\xf6\x06\xfd\x52\xda\xe9\x5e\x8e\x4e\x07\xfd\x8b\x76\xaf\xdf\x3d\xf7\xbc\xb3\xf6\xab\xee\x19\x7c\xf2\xdc\x46\x2b\x1d\xfb\x29\x0b\x30\x25\x86\x27\x98\x31\x3f\x28\x44\x1a\x92\x90\x59\x6c\xed\x2c\x1d\x6d\x42\x87\x8a\x5f\xa1\x5e\x3c\x5c\x4a\xb6\x2a\xb4\xf3\x7d\x50\xd9\x44\x5b\x24\x52\xab\xb2\x5e\x09\xae\x00\x36\x72\x24\xcb\xb0\x55\xb9\x3a\x36\x24\x52\x9a\xb8\x5c\xba\x32\x74\xee\x98\x70\x66\x0c\x93\xa1\x66\xe4\xea\xd8\x6c\xb4\x50\xe8\xb4\x55\x71\x99\x6d\x9a\x94\xc6\xc2\x26\x45\xe0\x73\x95\xd1\x5b\x36\x37\xf2\x27\xdc\x10\x8d\x51\x6b\x67\xb1\xe2\xf7\xe1\xec\x2c\xc7\x56\xe5\x8d\xb0\xf7\x5a\xfb\x9b\x11\xfd\x70\x96\x9e\xd7\xed\x5f\xae\x6c\xf8\xdb\xc1\xbb\x6e\x8b\x16\x46\xd3\x54\x71\x96\xd2\x79\xdd\xae\x90\x76\xbe\xde\xc9\x8e\x6f\x8b\xe0\x96\x8a\xd3\x41\xff\x75\x8b\xa2\xe5\xf4\x3b\xf1\x0e\xa6\xd3\xbe\x68\xb7\x96\xfa\x51\xc8\xec\x5d\xd0\xd9\xe0\xcd\xb0\x45\x27\xcc\x85\x13\xdf\x31\xf6\x4b\xfb\x72\x2d\x62\x11\xd0\xf1\x24\xa3\x63\x36\x61\xe4\x98\xa8\x1c\xe5\x38\xbc\x22\x2c\x0b\x8f\x0e\x17\x8c\xdf\xda\x17\x6f\x5b\x3b\x5f\xdd\xe3\x5b\xf3\xa7\x24\x1a\x08\xd9\x7c\xe8\x62\x38\x12\x2c\xdc\x75\x7a\x37\xe2\x56\xc3\x77\x7d\xf9\xbb\x78\xf8\xb6\xdd\x3a\x6e\xec\x1f\x34\x42\xd6\xe0\x61\xfd\xc5\x61\x14\xf2\xe3\x06\x8b\x8e\xf6\x5f\x1c\x9f\x44\xc8\xc2\xe3\xa3\xc3\x06\x46\x07\xd1\xfe\x61\x70\x14\xd4\x5f\x1c\x1c\x1d\xb1\x06\x3f\x38\xc4\xe7\x41\xfd\xf9\x49\xc4\xa2\x83\xa3\x03\xcf\x6b\x77\x3a\x65\x0b\x37\x40\x3d\xef\xfc\x7d\x1f\x0c\x5a\x20\x08\xbb\xbb\x80\x3c\x51\xb0\x17\x62\xc0\x95\x8c\x60\xf1\xa4\x91\x56\xd2\xa2\x0c\xc1\x60\x8a\xdc\x42\x5f\x49\x21\x2d\x6a\xc6\xad\x98\xe0\x1e\xfc\x75\x83\x24\x06\x2d\x99\x83\xca\xa6\xe3\x02\xdf\xdd\x05\x96\x5b\x12\xa3\x85\x22\x77\xb5\xbd\x2a\x21\x5f\xbe\x00\x99\x01\x71\x19\xc7\x91\xcc\xd0\x80\x90\xc6\xb2\x34\x05\x42\xa4\x22\x8b\x01\xd1\xc8\x55\x96\xa1\x0c\xcd\x4d\x4a\x2f\x56\xfc\x98\x8c\x35\x92\x04\x59\x58\x9e\x02\x73\x65\x2a\x82\x31\x66\x2c\x4d\x15\x6f\xdc\x88\xdc\x56\x60\x5e\xe8\x18\x17\x92\xa9\xf3\xbf\xbb\x5b\x8e\x32\xa1\xb5\xd2\x23\x57\x12\x3b\x4f\xe6\x1a\xf2\x05\xc8\x00\xc8\x86\xd3\x28\x9c\x49\xca\x53\x65\x50\xfb\x3c\x16\xcb\x14\xa3\x0b\xe3\xee\xf7\x17\xb8\x93\x97\x48\xd8\x33\x55\xbf\x96\xb8\xea\xad\x7c\x7a\xb2\xb0\xe7\xd7\x96\xa4\x4f\xf4\xe3\x7f\x2b\x9f\x6b\x9f\x9e\x56\xfc\x5a\xf5\x53\xa3\x9a\xef\xad\x59\x71\x93\x73\x66\x6e\xa6\xf2\x74\xf1\xdc\xdd\x5d\x8f\x74\xe7\xeb\x72\x1a\xdf\xe8\x0f\x93\xec\x6f\xa5\x22\x09\x84\xf4\x2d\xd3\x7e\xfc\xe7\x5a\x1c\x96\x69\x20\xd7\x7f\x46\x40\x80\x9c\xc2\x32\xc1\x37\x84\xf3\x83\xd6\xf2\x01\xd3\x9c\x86\x45\x16\x10\x21\x85\xa5\x1a\x53\x64\xee\x48\x0f\xd5\x54\xa6\x8a\x85\x74\xb2\xf3\x75\x99\xfc\xdf\x96\xd0\xd1\x9a\x7c\x34\xaf\xcd\x7f\x03\x35\x81\x90\x4b\xd4\x32\x90\x32\x8d\x2b\x3b\xf3\x8a\x81\xdb\xb8\x8a\xdb\x9a\x84\xed\x3f\x3f\x32\x45\x06\x84\x03\x59\x32\x79\x92\xa9\x10\xfe\x75\xbd\xd9\xf6\x12\xa1\x91\x85\x33\x92\x6b\x15\xa0\x6f\x92\x25\x22\xbb\x0a\x85\x06\x92\xc3\xad\x3e\x45\x57\x9a\xd5\x1a\xec\x47\x2d\xcf\x01\x26\xe0\x1a\x58\xc0\xf8\x95\x7f\x9d\xa5\x2b\xe6\xfc\x19\x73\xe3\xf1\x24\xf3\x55\x3e\x2f\xb5\x75\x23\x74\xdd\xca\x43\x9b\x51\x59\xf5\x4b\x0c\xca\x89\x9b\xe0\x46\x17\x2c\x0c\x0b\x83\x1a\x08\x09\x85\x71\xd7\xae\x90\xe4\xcc\x98\xa9\xd2\xe1\xbc\x8c\xb9\x46\x66\x91\x24\x2a\x43\x20\x24\x46\xae\x0c\xec\xed\xad\xe2\x53\x15\xbb\x9b\xe4\xdd\x45\xe0\x89\x9a\xae\x28\x9a\x9b\x97\x5d\x44\xf0\xd1\xd5\x49\x65\x67\xed\xce\x51\x81\xcf\x2f\xdd\xbd\x47\x2e\x9b\xce\x6c\x63\x73\xb9\x69\x3e\xf9\xcc\x26\x4a\xbe\x04\x4c\x0d\x82\xce\x80\xe8\x08\x60\x67\xfd\xc0\xa3\xf9\x2c\x15\xc1\x4b\x88\xc4\xca\x4a\x2c\x5d\xcc\x7b\x4d\x59\x12\x77\x9b\xcf\x3a\x94\x15\x56\x69\xcc\xd4\xe4\x07\x6a\x9e\x22\x93\x4b\xf1\x22\x96\x65\x5d\xde\x0e\xaa\xe6\xdb\x6b\x7b\x8f\x3e\x54\xfc\x1e\xad\x3b\xcf\xee\x47\x58\xa5\x52\x43\x6b\xf3\x0c\xfc\x19\xcc\x95\x50\xcd\x0f\xd8\x7d\x01\xdd\xc6\x2c\xdd\x67\xdf\x27\x2e\x64\xa4\xd6\x1a\xf9\x62\xe0\xf6\x4d\x49\x72\xf3\x6e\xb0\x90\xfe\x8f\xfa\x01\x33\x89\x5e\x9d\xc6\xfc\x36\x20\x02\xca\x72\x4b\x53\x61\xac\xa1\xb5\x3b\x6a\x15\xdf\x15\x72\x57\x2f\xf4\xe6\x24\x5c\x53\xbb\x72\x30\x33\x63\x31\x0b\x57\xc5\xce\x4b\x6a\x82\xdb\xa2\x22\xc4\xc9\xaa\xcc\xd5\xa4\x49\x98\x46\xb7\x25\x74\xa3\x86\x04\xcc\xe0\x06\x75\xc6\xe4\x9a\xc6\x66\xf9\x7a\x84\x3f\xbd\xaa\x8c\x35\xd2\x3c\x2d\x5c\xed\x3d\x94\xe6\xf6\xcd\x29\xa7\x66\x3b\xea\x78\x3b\x9e\xd2\x41\xf8\x20\xa2\x23\xe5\x8c\x5f\xed\xd7\xeb\x5b\x39\xcc\x55\x2a\xf8\xcc\xe5\xf3\x56\x74\x9d\x89\x87\xc5\xbb\x42\xd4\x18\xbb\xb7\xce\xd9\x56\x7c\x83\x7a\x82\xfa\xc1\x71\x3b\xaa\x75\xef\x3b\x8e\xbf\x95\xe3\x42\x6e\xbb\xdc\x25\xa0\x4c\x29\x7f\xcc\xf4\x56\xf4\x10\xf3\x54\xcd\x1e\x5e\x04\x73\xae\xb9\xb2\x2a\xdf\x8a\x5b\x73\xda\xe8\x7a\x3b\xc7\xb5\xf1\xb6\xcc\xf9\x28\x15\x41\x88\x5c\x69\x36\x32\x06\x7d\xa3\x1e\x67\x2a\xd7\xc2\x64\xa3\xda\xa3\xed\x44\xd7\xf3\xce\x62\x1e\x6d\x29\x4e\x99\xf9\x07\xac\x18\xab\x91\x65\xa8\x49\x2a\xec\xe3\x97\x69\xb1\xe1\x8f\xb7\xf3\x08\x23\x78\x6d\xe9\x38\xba\xd6\x76\xeb\x7a\x71\x16\x24\x33\x89\xd2\x72\x6b\x1b\x2a\x48\xc5\x97\x02\x49\xa4\xa4\x7d\x78\x53\x77\x80\x79\xa2\x3c\x38\x80\x8c\x49\xcf\xf3\x2e\x07\x67\xef\xdf\x75\xe1\x63\x85\xee\xac\x7f\x27\xa8\x7c\xf6\xbc\x2a\xbc\xa8\xd7\xeb\x4d\x10\xd2\x6a\x46\xa4\x0a\xb1\xbc\x34\x14\x52\xf0\xf2\xc3\xd8\x1c\xd0\x68\xc2\xc5\xd9\xf0\x5e\x50\xe3\xe4\xa4\x09\xbf\xbc\xfb\xc3\xab\xc2\x49\xfd\x70\xbf\x09\xa7\xff\x39\x73\xff\x1b\x47\xf5\x26\xd8\x44\x8b\xc8\x82\x6b\x99\x82\xa3\xd7\xfd\xe3\xb7\xc1\xb0\x5b\x7a\x2e\xad\x97\xec\x92\x56\xe2\x3d\xef\xf4\x5d\xc7\xc5\x7b\xeb\xb5\xe4\x19\x54\xca\x06\xea\x2e\x2f\xe5\x40\x17\xd2\x37\x49\xe5\xb3\xf7\xff\x00\x00\x00\xff\xff\x18\xcc\xb1\xb5\xf5\x15\x00\x00") + +func examplesStorageCassandraImageDockerfileBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraImageDockerfile, + "examples/storage/cassandra/image/Dockerfile", + ) +} + +func examplesStorageCassandraImageDockerfile() (*asset, error) { + bytes, err := examplesStorageCassandraImageDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/image/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraImageMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x5f\x6f\xdb\x36\x14\xc5\x9f\xc3\x4f\x71\x60\x07\xc5\x16\x44\x52\x92\x01\xc3\xa0\x21\xd8\x54\xdb\x43\xb5\x16\x52\x61\xb9\x29\xf2\x14\xd0\xd4\xb5\xc4\x86\x22\x35\x92\xb2\x6b\x04\xf9\xee\x83\xe4\x3f\x4d\x90\x16\x1d\x86\xfa\xc9\xbc\xff\xce\xef\x1e\x91\x63\x4c\x4c\xbb\xb5\xb2\xaa\x3d\xae\x2e\x2e\x7f\xc5\xa2\x26\xbc\xed\x96\x64\x35\x79\x72\x48\x3a\x5f\x1b\xeb\x42\x36\x66\x63\xbc\x93\x82\xb4\xa3\x12\x9d\x2e\xc9\xc2\xd7\x84\xa4\xe5\xa2\xa6\x43\xe6\x1c\x37\x64\x9d\x34\x1a\x57\xe1\x05\x7e\xea\x0b\x46\xfb\xd4\xe8\xe7\xdf\xd9\x18\x5b\xd3\xa1\xe1\x5b\x68\xe3\xd1\x39\x82\xaf\xa5\xc3\x4a\x2a\x02\x7d\x16\xd4\x7a\x48\x0d\x61\x9a\x56\x49\xae\x05\x61\x23\x7d\x3d\xc8\xec\x87\x84\x6c\x8c\xdb\xfd\x08\xb3\xf4\x5c\x6a\x70\x08\xd3\x6e\x61\x56\x4f\xeb\xc0\xfd\x00\xdc\xff\x6a\xef\xdb\x38\x8a\x36\x9b\x4d\xc8\x07\xd8\xd0\xd8\x2a\x52\xbb\x42\x17\xbd\x4b\x27\xb3\xac\x98\x05\x57\xe1\xc5\xd0\xf2\x41\x2b\x72\x0e\x96\xfe\xe9\xa4\xa5\x12\xcb\x2d\x78\xdb\x2a\x29\xf8\x52\x11\x14\xdf\xc0\x58\xf0\xca\x12\x95\xf0\xa6\xe7\xdd\x58\xe9\xa5\xae\xce\xe1\xcc\xca\x6f\xb8\x25\x36\x46\x29\x9d\xb7\x72\xd9\xf9\x67\x66\x1d\xe8\xa4\x7b\x56\x60\x34\xb8\xc6\x28\x29\x90\x16\x23\xbc\x4e\x8a\xb4\x38\x67\x63\x7c\x4c\x17\x6f\xf2\x0f\x0b\x7c\x4c\xe6\xf3\x24\x5b\xa4\xb3\x02\xf9\x1c\x93\x3c\x9b\xa6\x8b\x34\xcf\x0a\xe4\x7f\x21\xc9\x6e\xf1\x36\xcd\xa6\xe7\x20\xe9\x6b\xb2\xa0\xcf\xad\xed\xf9\x8d\x85\xec\x6d\xa4\xb2\xf7\xac\x20\x7a\x06\xb0\x32\x3b\x20\xd7\x92\x90\x2b\x29\xa0\xb8\xae\x3a\x5e\x11\x2a\xb3\x26\xab\xa5\xae\xd0\x92\x6d\xa4\xeb\x3f\xa6\x03\xd7\x25\x1b\x43\xc9\x46\x7a\xee\x87\xc8\x8b\xa5\x42\xc6\xc6\x58\x76\x52\x95\x43\x54\x70\xe7\xb8\x2e\x2d\x87\x6c\x78\x45\x21\xbb\x99\xcd\x8b\x34\xcf\xae\xd7\x97\x57\xec\xfd\x3c\xff\x7b\x36\x59\xdc\xa5\xd3\x3f\xae\x2b\x63\x2a\x45\x77\x8e\x37\xad\x22\x77\x48\x5d\x57\xc2\x86\xd2\x44\xa7\x0f\x5f\x6a\x1f\xd9\x24\x29\x8a\x24\x9b\xce\x93\xbb\xc3\xb4\x5f\xc2\xcb\x0b\xc6\xb8\x52\x31\xee\x8f\x97\x36\x38\x8a\x87\x9f\xb8\xdd\x41\x31\xf6\xad\x7c\x8c\x30\x8c\x3e\xf1\x35\x8f\xce\x8e\xff\x9c\x15\x51\xc3\xa5\xde\x9d\xa4\x89\xee\x7f\x73\xd1\xb1\x2b\x3a\x0b\xfb\x38\x3b\x11\xe5\xa1\x03\xaf\x5e\xa1\x59\x6b\x08\x45\x5c\x1f\x0e\x2d\x17\xf7\xbc\x22\x76\xd2\xac\x8f\x93\x3d\xb7\x15\xf9\xe8\x6b\x30\x67\x03\x6d\xff\x18\xdc\x57\xf3\x7d\xfa\x9b\x9a\x8c\x09\xa3\xfb\x07\x41\x36\x66\x27\x7f\x92\xa8\x0d\x46\xaf\xfb\xcd\xfb\x6f\x79\xb4\xf1\xf1\xcb\x16\xf1\xe9\xc3\xde\xc5\xc7\x11\x3b\x29\x8d\xb8\xa7\xbd\x57\x08\x82\xb6\x53\x0a\x41\x30\x1c\x03\x6e\x2b\x8c\x5e\x7a\x7f\xfa\xf0\x22\xf6\x38\x42\xe0\xbf\xa7\x86\xf0\x09\x6c\x50\xd2\x3a\xfe\x91\xf2\x4f\x9b\xa6\xb3\x9b\xbb\x49\x9e\x2d\x92\x34\x9b\xcd\xaf\xbd\xed\xe8\xbf\xf0\xf5\x48\x3d\xe3\x30\x28\xc6\x11\x15\xcf\xa0\x19\x6b\x3b\x57\xc7\xfb\xdb\x75\x52\x09\x65\xba\x12\xfb\x3d\x82\x00\x7d\xf6\x7b\x4a\xff\xb3\x6d\x27\x1f\xbe\x7f\x93\x67\xb7\x31\xb8\x52\x7b\xdf\xfa\x5e\xf6\x6f\x00\x00\x00\xff\xff\x18\xa2\x64\x36\xd1\x05\x00\x00") + +func examplesStorageCassandraImageMakefileBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraImageMakefile, + "examples/storage/cassandra/image/Makefile", + ) +} + +func examplesStorageCassandraImageMakefile() (*asset, error) { + bytes, err := examplesStorageCassandraImageMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/image/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraImageFilesCassandraYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x73\x1b\x39\x92\x20\xfe\x3f\x3f\x05\xc6\xfa\xed\xaf\xa5\x59\xaa\xf4\xf0\x63\x3d\x9a\xb9\x89\x90\x25\x79\xac\x6e\xdb\xf2\x89\xea\xe9\xed\xbd\xb8\x60\x80\x55\x20\x89\x56\x15\x50\x0d\xa0\x44\x71\xee\xee\xbb\x5f\xe4\x03\x28\x14\x49\xb9\xed\x9e\x9e\x8d\xdd\xbb\x73\xc4\xf4\xd8\xac\x2a\x20\x91\x48\xe4\x3b\x13\x7b\xe2\x42\x7a\x2f\x4d\xe5\xa4\xf0\xc1\x3a\xb9\x50\xa2\xb4\x66\xae\x17\xe2\xc7\xf3\x0f\xef\x47\xa3\x3d\xf1\xf1\xe6\xee\xea\x6c\xb4\x27\x84\x98\x28\x25\x96\x21\xb4\x67\x47\x47\x2b\x7d\xaf\x0b\xd9\xca\x72\xa9\x0a\xeb\x16\x47\x65\x1c\xe5\x68\x42\xa3\x5c\xe0\x20\x9d\x93\x41\x5b\x23\xe6\xd6\xe1\x08\xf3\xae\xae\x85\x7a\x6c\x6b\x69\xf0\x81\x17\x76\xce\xf3\xc5\x57\x2b\xed\x54\x19\xf4\x83\xf2\xa3\x3d\x71\x04\x93\x03\x10\x77\x4b\x25\x8c\x6c\x14\xbc\x1f\x96\x4a\x94\x75\xe7\x83\x72\x85\xb8\x5b\x6a\x2f\xb4\x17\x8d\xd4\xa6\x5e\x8b\xce\xab\x4a\x04\x2b\x5a\xa7\x1e\x94\x09\xa2\x91\xe5\x52\x1b\xe5\x85\x36\xa3\x3d\x61\x8d\x12\xb5\x5d\xe8\x52\xd6\x71\x04\x31\x77\xb6\x11\x3f\x59\x6d\xb4\x59\x08\x69\x6c\x58\x2a\x57\x8c\xf8\xe9\x14\xe6\x3c\x13\xdf\xdc\x29\x1f\xc4\x05\xfd\xf6\x0d\xc1\xa3\xbd\xa8\xd4\x1c\xc7\x06\x80\x4c\xd7\xcc\x94\x43\xf0\xec\xbd\x32\x5e\x38\x69\x2a\xdb\xd4\x6b\x21\xbd\xd7\x0b\x43\x60\x05\xf8\xcc\xd8\x4a\x09\x6b\xf0\x33\xa7\xcd\x82\x97\xd7\x58\xa7\xf8\xe3\xb1\x70\xaa\x96\x80\x04\xf8\x08\x41\xc2\xaf\xfc\x18\x3f\xaa\xa5\x5b\x28\x87\x7f\x6d\x9d\x6d\xad\x43\xc4\xd9\xb9\xa8\x64\x90\xa3\x3d\x11\x96\x32\x64\x53\xad\x74\x5d\xe3\xe6\xaa\x42\xfc\x68\x3b\xf8\x66\x26\x67\xf5\x5a\xac\xa4\x09\x42\xd6\x35\x8d\x0d\x53\x2d\x25\x4c\xb9\x54\xc2\x03\xae\x69\x4d\x80\xb7\xb4\x2a\xe9\x7d\xd7\x00\xa6\xc2\x52\xad\xe9\x75\xf5\x73\x27\x6b\xb1\x94\xae\x5a\x49\xa7\x44\x29\x5b\x39\xd3\xb5\x0e\xeb\x62\xb4\x37\xda\x13\xd7\x73\xb1\xb6\x9d\xa8\x15\x0d\xad\xbd\xe8\x8c\x6f\x55\xa9\xe7\x5a\x55\xe3\x8c\xfc\x10\xcc\xce\xd3\xfc\x95\x9a\xcb\xae\x0e\x30\xf3\x09\xcd\x0d\x34\x24\x6a\xb5\x90\xe5\x5a\x94\xb6\x69\x65\xd0\x34\xcd\x78\xb4\x27\xa4\xa9\x86\xdf\x6b\xa3\x83\x96\xf5\x94\x3e\x95\xb0\x57\xbe\x74\x7a\xa6\x2a\x31\x53\xb5\x5d\x11\x6c\x13\x84\x63\x0d\xeb\x19\x7e\x80\x63\xd9\x07\xe5\x9c\xae\x18\x6a\xaf\x42\x80\x17\x79\xe3\x00\x65\xdf\xf8\xf8\x99\xf0\x41\xba\x30\x46\x12\x13\xbe\x9b\x79\xf5\x73\x07\xe4\x87\x3f\xe3\xae\x65\x23\xe0\xe0\xb2\x6d\xeb\xb5\x00\x22\x15\x7a\x9e\x86\xa1\xd9\xe9\xdd\x01\xfa\x64\xed\x94\xac\x18\xe3\x32\x11\xef\x4a\x87\x65\x42\x50\xcb\x54\x32\x66\x74\xf8\x25\x6c\x69\xa3\x17\x4e\x06\x20\xa4\xd1\x9e\x68\xba\x3a\xe8\xb6\x8e\x74\x96\x7d\xe2\xbf\xe4\x6c\xdf\xb4\x8a\x4e\xa9\x1f\x99\xae\x21\x5c\xf9\x33\x71\xfa\xf2\x15\x9e\x09\xa7\x17\x0b\xe5\xbc\x90\x5d\xb0\x8d\x0c\xba\x04\xe2\xb2\xa5\x8c\xe4\xd9\x7f\x13\xe7\x87\x3d\x4d\x84\x5a\xe0\x31\xe8\x3f\x81\x7d\xad\x17\xd6\xe9\xb0\x6c\x84\x0c\x41\x35\x6d\x40\x2a\x2d\x97\xd6\xfa\xb4\x06\x6d\x84\x14\x2b\xb9\x26\xb2\xb7\x6d\xd0\x8d\xfe\x9b\xf2\xc2\xa9\xb6\xd6\xa5\x0c\xaa\x12\xb5\x95\x15\x6e\x27\x1e\x0e\xc5\xf4\xae\x69\x27\xe1\xd0\x94\xca\x20\x2f\xb0\x74\xaa\xe2\xa7\x00\xb7\x0f\x80\xbe\x05\xb3\x96\xd9\x9a\x8e\x47\x24\xe0\xd1\x9e\xb8\x57\x6b\xdf\xca\x52\xd1\x7e\xc1\x12\x70\xba\xfc\xd8\x2b\x59\x2e\xb3\xb3\x38\x03\xfe\x45\x2b\xc8\x0e\x30\x6e\xbf\xd0\xc1\xf7\xbc\x64\xb4\x27\x1e\x10\x56\x1a\xfb\x06\x38\x9c\xef\x5a\xf8\x40\x55\xb4\xf9\x00\xcd\x87\xce\x35\x9d\x7b\xfe\x49\xba\xa0\x61\x24\x60\x60\x7b\x11\x91\x8a\x51\x3e\x9d\x5b\x37\x8d\xb0\x9e\x89\xef\xae\x7e\x9c\x7c\x3a\xbf\x40\xe6\xba\x71\x58\xea\xda\xae\x3c\x52\x5d\xb0\xbc\xd2\x75\x44\x76\x23\x4d\x27\xeb\x7a\x5d\x08\xf1\xc3\x52\xd7\x0a\x5f\x2b\xa5\xc1\x83\xb7\x27\x74\x40\xa8\x12\xdc\x62\x3f\xdb\xf3\x3f\x8b\x93\xb1\x90\x33\xfb\xa0\x0e\xc4\xe1\x21\xa0\x7f\xb5\xd4\xe5\x52\x94\xd2\xd3\x38\x7e\x69\xbb\xba\x02\x94\x3c\xc0\xb1\x03\x56\x56\xda\xa6\x91\x87\x5e\xb5\xd2\xd1\x4e\x6a\x1f\xf0\xe3\xf0\x8d\x17\xad\xd3\x8d\x74\x3a\xb2\xfd\xd5\x12\xa0\xaf\x2a\x38\x63\x34\xfb\x1e\xac\x20\xf2\x0c\x3a\x32\x3e\xf2\xc7\xca\x0a\x63\x03\x1d\x28\x06\x56\x19\x39\xab\x55\x55\x6c\xa2\xe4\x0c\x90\xf4\x45\xc2\xef\x9d\x36\x41\x55\xef\x80\xf5\xcf\x61\xf7\x3e\xc8\xb5\x50\x1a\xf9\xf7\x4c\x89\x67\xc1\x75\xea\x99\xb0\x4e\x3c\x9b\xcb\xda\xab\x67\x48\x1b\x38\xa9\x58\xd4\x76\x06\x88\x1d\x2d\x71\x88\xe9\x92\xc6\x98\x32\x4c\x67\x02\xbe\x1d\xed\x89\x1f\x60\x91\xbb\xdf\x01\xbe\x01\x6f\x8d\x85\x14\xb3\x5a\x96\xf7\x84\x2d\x96\x0b\x82\x68\xdc\xd3\xea\x91\x0e\x8d\x0d\xa3\x3d\xe0\x01\x73\xeb\x1a\x1e\x54\x2c\x13\xf0\x1b\xb3\x54\xda\xe3\x34\xd3\xfe\xc0\x78\xd2\x0b\xc4\xa1\xb8\xbc\x38\xe9\xff\x7a\x8a\x38\xde\x10\x90\x8d\x7c\xd4\x4d\xd7\x08\xd9\xd8\xce\x20\x54\x41\x37\xc0\xcb\x2a\x25\x2b\xb1\xb4\x9e\x81\xc2\x0d\x81\xa9\x61\xa7\x16\xca\x28\xdc\xf8\x42\x88\xf3\x39\x1c\x51\x0d\x5b\xe6\xc5\x4c\x29\x43\x5f\xe2\x44\xb5\x35\x8b\xb1\x30\x6a\x45\x5f\xe2\x41\xd6\xfd\x2a\xc5\x0c\x50\x57\x3a\x85\x34\xd4\x99\xa0\xeb\xc1\x40\x5e\x21\xdd\x83\xbc\x05\xd6\xb9\x00\x3d\xa1\xb2\x2b\x23\xe4\x42\x6a\x53\x8c\x1a\xf9\x38\x85\x81\xa7\x2b\x6d\x2a\xbb\x9a\x6a\x33\x6d\xfc\x99\x38\x39\x7e\x7d\x0c\x7f\xc4\x9e\x78\x2e\x96\xb6\x73\x7e\x84\x7b\x4e\x0b\x0d\x4b\x67\x43\xa8\x41\x16\x89\xef\xde\x10\xaf\xf5\xaa\xb4\xa6\x1a\xe3\xdf\x2b\x05\x13\x3a\x60\x28\xc0\xdb\x0b\x41\x4a\x05\x73\x88\xd1\x9e\x70\xaa\xea\x4a\x55\x0d\x58\x44\xbd\x26\x35\x22\x57\x38\x06\xdc\x2c\x29\x46\x62\xff\x1a\x55\x25\x07\x43\x81\x60\x0e\x2b\xbb\xf3\xd5\x31\xb1\xa7\x0d\x70\x86\xe2\x94\x37\x0f\x80\x92\x41\xfd\x11\x44\x16\x0e\x4d\x03\x2f\x9d\x52\x3c\x0a\x7e\x95\x56\x8e\x1a\x45\x3d\x8f\x4a\x1b\x8f\x02\x62\xd2\x6b\x53\x2a\xb1\x52\xa0\x0c\xaa\x32\x64\xc0\x05\x0b\x47\x85\xa1\x81\xa3\x4c\x3b\xea\x35\xc8\x2e\x69\x94\xed\x7c\xbd\x2e\x0e\x36\xcf\x49\x9c\x13\xf6\xe6\x7e\x06\x7b\x73\xfa\x02\xb5\xd7\x5e\x2f\xc3\x75\x79\x62\x9b\xc4\x79\x82\x8d\x13\xd1\x2c\x7f\x1c\xed\x89\x0b\x6b\xbc\xae\x80\xd2\x0c\x10\x8c\x27\x65\x47\x27\xae\x8c\x5c\x06\xb8\x15\x12\x2a\x0a\xd4\xc3\xaa\x14\x95\x6a\x6b\xbb\x6e\x94\x01\x71\x8f\xab\x43\x8a\xb3\xde\xc3\x53\x86\x52\x04\x65\xaa\xb8\x44\x5f\xdb\x95\x72\x89\xb6\xfc\x34\xee\xc0\x94\x21\x3d\x13\xa7\xb0\x82\x4b\x54\x88\xad\x5b\xc3\xd4\x4e\xe5\x0a\x3b\xf1\x4b\x54\xed\x68\x01\x05\x69\x0c\x40\xf2\x5e\x85\xf1\x40\x95\xaa\xd2\x38\xda\x8b\xff\xef\xe2\x7c\x32\x39\xff\x78\x79\x7b\x3e\x7d\x77\xf3\xe1\xea\x08\xce\xf4\x11\x0f\xc1\xd0\xc4\xd7\xcf\x44\xcf\xe0\xa6\xfd\x7b\x00\xda\x3b\xbb\x12\x76\x1e\x98\x23\xf9\x08\xd0\x4c\x89\x79\xdd\xf9\xa5\xaa\x48\xbb\x26\x85\x2c\x28\x07\x32\x6e\xd6\xcd\xe7\xc8\x86\xac\xa8\xb4\xbf\x07\x88\x7f\x00\xa2\xf9\xbd\xb1\xe1\xf7\x22\x90\x0e\x21\xe6\x7e\x6d\xca\x08\x0a\x0e\x36\x6d\x95\xd3\xb6\xea\xcf\xde\xf1\xf1\x71\x7e\xdc\xbc\xfe\x9b\xc2\x73\x2f\x01\xfd\x8b\x5a\x45\x56\xa0\x6b\x35\x06\x92\x6f\xd4\x42\xce\xd6\x01\x84\x69\x8f\x73\x78\x3a\x85\x4f\x71\x5c\xa0\x9b\xd3\xd7\x23\xa4\x82\xa6\x75\xca\x7b\xd0\x00\x82\x65\x6d\x8d\x4f\x1e\x7c\x89\xc3\xfa\x02\x90\x6d\x1b\x1d\x02\xa8\xb2\xfd\x7c\xc0\xba\xa2\xa4\x5f\x39\x78\x6c\x44\x67\x4a\x1e\x13\xb8\xd9\xfb\x7f\x7b\x31\x16\x13\x23\xdb\x76\x4d\xea\xda\xa5\x9a\xd7\xa0\xa6\xc5\x97\x2c\x4a\x2a\x38\x5e\x49\xe0\x17\xa3\x3d\x02\xba\xec\x81\x23\x06\x7c\x28\xca\x5a\x7a\xcf\xd6\xca\xfb\x7f\x7b\x71\x91\x46\x21\xae\x2c\x40\x7e\x36\x2a\x63\xd9\xf8\xe7\xf0\x4b\xf9\x55\xb0\x41\xd6\xc5\x6f\xca\xa0\x46\x33\x19\xca\x65\x6d\x17\x53\xd0\xb6\xe4\xfa\xc9\x13\x7c\xde\x85\xa5\x32\x21\xea\x63\x33\x59\xde\x2b\x80\x49\x37\x6d\xad\xe0\xc0\xc1\x09\xbd\xce\xde\xb2\xee\x8f\xc9\x0e\xd4\x15\xfc\x38\x47\x0d\x01\x31\x7a\xd3\x85\xc8\x8e\x66\xf6\x31\xb7\x3f\x58\xed\xf0\xc2\xba\x45\x94\xee\x89\xf0\x0b\xd9\x85\x65\xf1\x3f\xce\x41\x37\x3a\xaf\xeb\xc1\x6c\xc0\xcf\x3e\x49\xef\x57\xd6\x55\x83\x07\xff\x8b\xd4\xb6\x43\xb1\xf3\xb3\x28\x78\x41\xf9\x15\xe5\x52\x95\xf7\x5e\x1c\xc2\xb1\x05\xd1\x44\xa7\x03\x35\x03\x39\x58\x7f\x81\x03\xee\x9c\x0e\x8c\x46\x0d\xf0\xa3\x36\xe6\x80\x18\x8e\x5a\x7e\x51\xb4\x52\xd3\xa1\xcb\x86\x53\x48\x0a\x88\x99\x42\x5c\x07\x71\xaf\x54\xeb\xd3\xb7\x1e\xe9\x72\x29\xf1\x1c\xc7\x71\x70\x1b\xfd\xda\x07\xd5\x4c\x11\x25\xa5\x53\x88\x62\x59\x7b\x11\x00\xde\x02\x07\xfd\x54\x2b\xd0\xea\x98\x87\xaa\xfc\x93\xa4\x30\x0f\xd4\xec\xb9\x04\x66\x03\x82\x05\x78\x2b\xc9\x1d\xed\x73\x68\xad\xa3\xa1\xaf\xe7\xa2\x43\xae\xbc\x13\x09\xd9\x8e\xde\xda\x5a\x7d\x90\x46\x02\x3f\x69\x3a\x0f\xa6\xae\x47\xce\x8b\xc4\xb1\x0f\x16\x0f\xda\x82\x07\xa3\xc1\x2c\x67\xbb\xb7\x2b\x92\xa2\x75\xfa\x6f\xbf\x48\x89\xf0\x92\xca\xc8\xb0\xd6\x8d\x0e\x42\x96\xa5\xf2\xfe\x28\xea\xb7\xad\x72\x8d\xc6\x53\xfc\xdb\x12\x26\x4d\x0e\x54\x99\xc6\xe8\x7f\xde\x49\x93\xf4\x28\x6a\xfe\xd2\xac\x85\x2c\x43\x64\x7d\x86\x0e\xcf\x93\xb4\x99\x10\x42\xa4\xb9\x63\x4e\x92\x50\x3e\x5f\xf0\x26\x19\xe5\x8f\x88\x8c\x98\x84\x70\xcb\x7f\x13\x32\x22\x58\x8a\x51\xff\xf7\xb3\x1d\x48\x18\xe1\x61\x76\x69\x2f\x36\xb8\xcf\xff\xff\x65\x34\x90\x91\x1e\x11\xc1\x08\x4d\x91\x46\x6a\x13\xa4\x36\x62\xe1\x24\xc8\x0a\x38\x60\x8d\x02\x36\xe9\x97\xba\x05\x65\x34\xac\x40\x15\x75\xb6\x46\x9b\xef\xef\x23\x8a\x5d\x07\x01\xa8\x82\x74\x1f\xde\x13\x98\x4a\x68\x03\x8c\x88\x56\xc4\x6c\x7a\x17\xa6\x0b\xf1\x01\xd4\xf4\x79\x67\xca\xe4\xbc\x0b\x4b\xd8\xa2\x7c\xc1\xc2\xa9\x9f\x3b\x0d\xba\xa1\x19\x30\x9b\x0a\x5d\x6f\x66\x2c\xbc\x15\x9d\xa9\x95\x27\xbb\x20\x7a\xff\x54\xb5\xc1\xc4\x41\xfc\x95\x01\xad\xcd\x1e\xbb\x7e\x83\x1d\x8e\x45\x63\x3d\xe3\x48\xfb\x04\x9a\xac\x75\x58\x27\x11\xdc\x19\xf9\x20\x75\xcd\xdc\x69\x48\xa5\x39\xe0\x39\x4a\xd0\x64\xfa\x2c\x2e\x7e\x4b\xfa\xc4\x29\x1b\x02\xa3\x18\xc1\xbf\xa6\xfc\xaf\xb3\x9d\xa0\x02\x95\xfe\x55\xd6\xba\x82\x65\x92\x62\x84\xba\x0f\x12\x8e\x28\x81\x1a\xc4\xfe\x5c\x85\x72\x09\xe4\x88\xd4\xa6\xaa\xf4\xd4\x00\x52\xa4\x41\xdd\xdb\x78\xfd\x00\x8b\xb0\xd1\xb5\x03\x9a\xac\x32\x55\xe6\xea\xca\x81\x7b\x82\xbd\x6a\x8f\xbe\x55\xf5\x28\x61\xa3\x0e\x46\x7b\xe2\x2f\x83\x39\xc9\x31\x58\xa2\x46\x08\x2a\xda\x80\x2c\xbc\xea\x79\xc2\x79\xfe\xe4\x7b\x60\x3b\xd2\xc0\xe1\x91\x68\xfc\xa1\xc7\x93\x56\x9b\x3c\x30\x02\x94\xe2\xb1\x98\xa9\xd2\x36\x4a\xa8\x5a\x2f\x34\x70\x26\x98\x66\x5f\x82\x16\x79\x00\x72\xd1\x4a\x34\xeb\x2f\x49\x17\x46\x41\x78\x7a\x7c\x7c\x3c\x46\x9e\x16\xac\x38\xce\xb9\x5a\x29\x09\x6f\x00\x88\x53\xf5\x3a\xe9\xa8\x60\x98\xb0\x15\xdc\x3b\xb9\x90\x40\x61\xba\x9d\x62\x83\x76\xd3\x4f\x1f\x78\xb7\xa2\xfe\x7a\xca\xea\xeb\xad\x9a\x3b\xe5\x97\xa4\x1f\x3f\xc8\x7a\x7b\x1b\xf5\x3c\x3a\x26\x0e\x00\x90\x73\xc6\x84\xf6\xe9\x9b\x31\xbf\xaa\x4c\x70\xa0\x00\xec\xc2\x85\xa3\x79\x0a\xf1\x7d\x6b\x8d\x30\xea\x31\xe0\xf9\x02\x81\x34\xc6\x93\x0a\xa8\x62\x4c\xa1\x03\x12\x36\xab\xc3\x85\x9a\x0a\x11\x6f\xeb\x4a\x3c\xc8\xba\x03\x82\x0e\x9d\x33\x99\x25\x4d\x8e\x9a\xb6\x56\x81\x75\xe2\x5d\x6b\x16\xe8\xe6\x33\x87\x7f\x53\xce\xa2\x65\x62\x68\x15\x28\x9a\x51\x9f\x04\xf9\xbc\xb9\x4b\xc9\x19\x4d\x53\x4b\xbf\x73\x6c\xf8\x8a\x7e\xef\xda\x4a\x06\xd0\x21\x09\x35\x9b\xe8\xde\x75\x68\x72\xd9\xb3\x79\x74\x86\xcf\xf8\xe0\x8c\xf6\xfa\xa3\xf3\xb9\x83\xd3\x4b\x9a\xf1\x4e\xb1\xa8\x3d\xc7\x24\xe2\xb9\x29\xbe\x8c\x40\x7f\x05\x3d\x46\xe1\x97\xad\xe7\xeb\x48\x72\x07\x92\xfe\x33\x12\xe6\xd3\xeb\xff\xad\xc8\xf3\xe9\x19\x0a\x72\xb6\xa5\xa7\xbf\x82\x54\x73\x6d\x1b\x51\xcb\x36\x19\xa1\x59\x7b\x11\xf4\x62\x19\xea\xb5\x28\x6d\xd7\xd6\xa8\x7b\xb2\xcb\x9b\xf5\x85\xea\x09\xd3\x21\x09\xd8\xe4\xac\x1f\x0a\x63\x40\x1e\xc6\x59\x28\x18\x75\xfd\xd9\xaf\x01\xa0\x24\xd5\x39\xf8\x41\x10\x66\x6e\xc7\x99\xda\x20\x59\xd4\x95\x61\x4f\x3d\xa1\x75\x6e\x81\x7e\xe1\x38\x71\xe0\xc4\x67\x0e\x42\x63\x85\x9a\xcf\x55\x19\x00\xa9\x6c\x6c\x18\x1b\xd4\x78\x80\xa2\x4c\xec\x90\x28\xd7\x4e\x28\x53\xba\x75\x1b\x48\x12\x35\xa8\x8d\xac\x96\xba\x56\xa4\x6e\xe8\x07\x19\x92\xc7\x87\x60\x6e\xe4\x9a\x2d\xdd\x0d\xb3\xf6\xe7\x4e\x21\x55\x37\xb2\x52\x4c\x0b\xa3\x3d\xd1\x99\x4a\xb9\x1a\x63\x4a\xa8\xc8\x8e\x41\x65\x86\x31\x8c\x0d\x42\xcc\xd0\xa5\x25\x85\xd7\x0b\xa3\xe7\xba\x94\x26\xd0\xe0\x99\xee\x35\xda\x13\xb5\x0c\xca\x94\x6b\x98\x45\x9b\x4a\x3f\xe8\xaa\x93\xf5\x86\xea\x93\x42\x22\x5f\x21\xd8\x36\xc8\x47\x9b\x45\x31\xca\x7e\xfc\x3a\x96\xb0\x45\x8c\xff\x39\x59\xc2\xd3\xeb\xff\xad\x58\xc2\xd3\x33\x14\xe4\x96\x4e\x4f\x7f\x81\x25\xdc\xc1\x41\xee\xa3\x3c\x00\x9f\x53\xbe\xb5\xc6\x27\xdc\x55\xda\x07\xa7\x67\x5d\x20\xc5\xcf\x76\x2d\xaa\xe9\x0e\x0c\xbb\xfd\xd9\x1a\x58\x50\x1c\x00\x34\xd4\x03\x21\xd1\x49\xf9\x94\x13\xf9\xc7\x3e\x2c\xd3\x47\x70\x71\xe1\x20\xb7\x60\x42\xa3\x56\x29\xb6\x82\x3e\xec\x21\x88\x20\x34\x3f\xde\xdc\x61\xcc\x6b\x29\xcd\x82\xe3\x56\xb6\x0b\xe8\x40\x82\x2d\xc4\x13\x51\xd7\xa8\x72\xf3\x79\x54\x46\x74\xed\xc2\xd1\xb3\x2c\x34\x84\x44\x0d\x5b\x90\x8e\x1b\x62\x3a\x9f\x10\xde\x5e\xa1\x6b\x9a\x43\xa6\xe8\x2c\x20\xbd\xff\x8d\xf2\x68\x33\x6d\x07\xcc\xc6\xf9\x18\x80\x87\xb2\xee\x2a\xd6\x56\xc1\xc6\x5b\x49\x57\x79\x26\x9d\x14\x79\x8e\xaf\x89\x5b\x8c\xf5\x0f\x86\x7b\xb3\x0e\xea\xc6\x55\xca\xa9\x6a\xf0\x3b\xa9\xb3\xf8\xe4\x93\x53\x5e\xb9\x07\x6d\x16\xc3\xc8\xdd\x28\x03\xe5\x6c\xb7\x7d\x57\x2d\x43\xb1\xbd\x88\xdc\x5b\x0c\x67\xeb\xb3\xfe\x62\x34\x70\x30\xdf\xc2\xdf\x17\xa2\x7f\x2b\xba\x2e\x7d\x8b\x61\x00\x7c\x4d\x3d\x28\x53\xaf\x23\xa9\x84\xa5\x02\xbe\xd9\xcd\x7e\x42\xcf\x3d\x51\x3c\xd8\x18\x5d\x2d\x1d\xa0\x05\x03\x97\x1b\xb6\x1d\x22\xae\x1c\x44\x54\xff\x3e\x67\x35\xfc\xa7\x18\xc1\x7f\xc9\x89\x5b\xf5\x0b\x3f\x1b\x51\x24\x6a\xd3\x6f\x8d\xe9\x11\x1c\x54\xd4\x01\xcc\xd1\x42\x10\xb1\xb9\xce\x18\x56\xdc\x1a\xb9\x30\x2a\xe8\x52\xbc\xbb\xbc\x8c\x81\xfb\xe4\xd6\x06\xec\xc4\x60\xa4\xf0\xad\x36\x55\x0d\x47\x42\xf6\x91\x64\x91\xc1\xf1\xf7\x2d\x90\xa0\x04\x20\x47\xe9\xaf\x9f\xf3\xca\xa7\x97\x60\x89\xad\xad\x75\x49\x6a\x20\x43\xe5\xef\xc5\x5c\xea\xba\x73\x0a\x5d\xc0\x95\x56\x67\xc2\x2f\xbb\x40\x81\xae\x85\xf5\x5e\xb7\xc8\x3f\xcb\x5a\x2b\x13\x44\x70\xd2\xf8\xd6\x3a\x76\x53\xdc\x53\x60\x47\x89\x6f\xff\xfa\x81\x6c\x38\xb3\x16\x73\x2f\x94\x73\xd6\x79\x91\x1c\xcd\xec\x7c\x3f\xf4\x1e\xa5\x1f\x3f\x1f\x47\xa1\x8e\x41\x70\x56\xa4\xd1\xef\x5b\x52\xbc\xd5\x07\xdb\x4e\x01\xaf\xc6\xea\xea\x8b\x01\xc3\xf4\x09\x00\x66\xf7\xa4\x99\xa7\x9b\xff\x6c\xad\x82\xc1\xaf\x3a\x94\xcb\x98\xae\xd1\xb5\x11\xa0\x2f\x85\x63\x8c\xbc\x91\xb3\x62\x68\x89\xa4\x9c\xe8\x07\x55\xaf\x31\x4c\x39\x16\x33\xe4\x78\xf4\x07\x10\xe0\x03\x6b\xf0\x1a\xd3\x61\x40\x21\x79\xd0\x52\x7c\xfb\xe1\x5f\xc7\x5f\x01\xe6\x4c\xf9\x30\x55\xf3\xb9\x75\xe1\x0c\x61\x66\xdf\x28\x2a\x50\x52\x83\x4c\xc4\xad\x07\xb8\x49\x54\xa0\x3f\xd2\xa9\x9f\x3b\xe5\x83\x17\x33\x09\x5a\x17\xe6\x5a\x0c\xfe\x38\xd5\x48\x4e\x89\x8a\xae\x13\xc1\xd8\xf5\x31\x52\xd9\x28\x69\x28\x4f\xe0\x87\xeb\xf7\xef\x31\x83\xc4\xce\xbc\x05\xc9\xba\x39\x1c\xd2\xa0\x0c\xe2\xe2\x7d\x71\xf3\xf1\xea\x77\xa3\x3d\xa1\x17\xc6\x3a\x75\xc6\xff\x2f\xe6\x32\xc8\x3a\x2e\x13\x80\xad\x55\xe8\xa1\x84\x95\x8c\x41\x92\x6a\x23\x5a\xa7\x0e\x4f\x8a\xd3\x8c\x61\xc1\x02\xa7\x4c\xdb\x53\x22\x7c\xc2\xc5\xc6\x41\xe0\x63\xff\x15\x47\xe1\x6e\xe9\xf4\x3c\x6c\xd1\xff\x17\x51\xf3\x67\x87\xfc\x8d\x29\x26\x9d\x20\x5a\x22\x4d\x8d\x33\x13\x17\x8e\xec\x0e\xa6\xe5\x1c\x24\xa7\x83\x02\x35\xbd\xae\x81\x89\xe7\x53\xc5\x19\xad\x09\xda\x74\x08\xa3\x15\x28\xa8\xd0\x97\x25\x2b\x9f\x6f\xc5\x69\x71\x5c\xbc\x1c\x48\x8f\x2f\xd9\x59\x74\x68\xca\x50\x2e\x15\x6d\x2e\x73\xb8\x27\x77\x71\x10\xe4\x63\x87\xe8\xbd\x5a\x47\xbb\xc7\x88\x46\x35\xd6\x71\xc6\xd9\x95\x2c\x97\xd9\xd3\xa5\x0e\xc2\xcb\x07\xe5\xc5\x09\xd0\x28\x9d\x05\x0c\x56\x3b\xbb\xda\x7a\xe7\x14\xdf\xf1\x02\x33\xe8\x80\x8e\x1b\x6d\x30\x68\x2d\xbc\x6d\x54\xd0\x0d\x28\xfc\x98\x4a\x77\x37\x84\x01\x17\xe2\xea\xb5\x08\xda\xac\x53\x26\x51\xca\x76\x00\x89\xa8\x1b\x25\xe2\x44\x48\x43\x98\xc5\xb2\xb2\x2e\x2c\xd1\x04\x01\x44\x77\x1e\xdf\x91\x81\xb2\xfc\xd8\xdc\x40\x51\x72\x87\xbe\xb8\x08\x32\x81\x8b\x1c\x90\x32\x07\x75\xa3\x90\x66\x48\x3d\x85\xed\x93\xac\xce\x91\x1f\x0b\xbe\xc5\xd0\x3b\xcc\x0b\xf0\xaa\xc7\xe0\x54\x03\xf4\x86\x7e\xca\x43\xd0\x3a\xd1\xa7\x51\x88\x6b\x00\x0c\x78\x0b\xe6\x1f\x72\x62\x25\x23\xa4\x07\x81\xbd\x98\x94\xb1\x61\x03\x29\x99\xc0\x8d\x03\x26\x7f\xc1\x3f\x69\x47\x30\x85\x34\xbe\x9e\xd9\x52\xb0\x9d\x63\xfc\x31\x1a\x48\x0b\x15\x68\x4c\x1b\x02\x4c\x7f\xaf\xd6\x1e\xf3\xa9\x90\x4b\x65\x9c\xaf\x57\xba\x59\xcf\x86\x05\x35\x6d\x58\x93\x9f\xfd\x1e\xb1\xf8\x0c\x2c\xcc\x67\x62\xbf\xd1\x66\xff\xe5\x3f\x01\xe1\xbc\x53\xb2\x15\xfb\xda\x88\x0f\x6f\x0e\xc6\xe2\xe4\xf8\xf8\xc3\x9b\x83\x83\x42\x4c\x76\x18\x4b\x69\x6f\x8b\xd1\xbd\x5a\x4f\xf1\xaf\x79\xa8\x18\xb5\xad\x98\xb5\xaa\x0d\xc7\x4a\x3d\xbb\x2a\xc9\xc9\xbe\xa9\x7b\xa1\xc2\xca\x29\x96\xfd\xf8\xe2\x42\xe2\x49\xc0\x68\xaf\x7c\xa0\x90\x11\xfe\x85\x66\xcd\x82\xf1\x42\x82\x16\xda\x3b\x3f\x35\x9b\x24\xc3\x1c\x5a\x50\x88\x38\xc3\x11\x87\xa3\x51\xc4\xc2\x29\x19\xc8\x9b\xee\xec\x03\x30\x86\xba\x3a\x44\x94\xc2\x88\x0a\x0f\xb6\xa9\xc8\xaa\xa0\xf4\xd3\x7a\x2d\xca\x25\xa0\x0c\xd3\x67\x83\x72\x0d\x5a\x13\xd7\x47\x37\x89\xc2\xb3\x65\xdc\xe6\xc4\x89\x49\x95\x60\x2b\x95\x4b\x22\xd0\xde\x65\x46\x3a\xf0\x52\x7a\x8a\x8b\x81\x71\xe6\xd5\x70\x4f\xb5\x17\x27\x2f\x5e\x1c\x1f\x03\x39\xbd\xa0\xdc\x9a\xc1\x36\xc8\x07\xc5\x09\x01\x67\xf4\xe2\x30\xd7\x03\xc9\x26\xe5\x1e\xf4\xa7\x94\xf1\x8a\x7a\x32\xfb\xcd\x66\xeb\xa8\x93\x8d\x51\xa2\x45\x6b\x04\x87\x80\x1d\x59\x58\xe6\x81\x33\xde\x1d\xca\xf9\x63\x48\xe0\xb5\x69\xb0\x08\x11\x66\x25\xa0\xb9\xdc\x1f\x91\xa1\x67\x04\xc3\xf4\x98\xc8\x8c\xe6\x71\x12\xad\xc3\xd7\x38\x46\xbf\x53\xf3\x27\x54\xdf\xbc\xbb\xf8\x44\x0e\x1d\xb7\xa9\xe2\xbc\xed\xea\x1a\x54\xf0\xf9\x21\x6e\x9c\x7b\x0a\x94\x7d\x5e\xf5\x41\xf1\x4b\x93\x4d\x94\xd3\xb2\xd6\x7f\xd3\x66\x81\x84\x9a\xcd\x1c\xb3\xaf\xc3\x80\x35\x6d\xcc\xc4\x1a\x04\xf9\x58\x7e\xed\x1f\x12\x37\x0f\xda\x76\x48\x9d\x4a\x7a\x85\xa4\x98\x4e\x18\xb9\x80\x57\xbc\x2d\x79\x3e\xc4\x97\xe1\xf1\x29\x31\x93\x2d\x2b\x13\x33\xb9\xcf\x89\x32\xea\x6e\xde\x5d\xec\x5e\x3e\x87\xc3\x3c\x0a\x10\xcc\x4f\xe4\x6c\xcf\xb4\x47\x34\x2a\x31\x2e\x23\x17\x8a\xad\xa7\x46\xb6\x60\x2b\x75\x65\x00\x4d\x85\x5d\x63\x20\x42\xcc\xe1\xbc\xd6\x8b\x65\x88\x1f\xb2\x5a\x98\x3c\xd1\xc0\xba\xe7\xd6\xa9\x23\x62\x45\x43\x87\x0b\xa9\x2b\xe4\x50\x01\xd9\xa4\x2a\xca\x72\xf3\x24\x95\xe9\xe5\x12\xf0\xa5\xc3\x9a\xdd\x8b\xf6\x41\xb9\xa5\x22\x67\x4b\xe7\x29\x24\xe7\x1b\x38\x25\x68\xd6\xb9\x98\xdc\xae\xc4\x6a\x69\xeb\xec\x73\x38\x68\x94\x67\x19\xf3\x48\x91\x15\xc4\x05\x53\x9e\x7a\x0c\x9b\x21\x68\x12\x74\xd9\xe8\xae\x03\xd9\xe8\x03\x4d\x29\xbc\x0e\x1d\x13\x94\x89\xde\x08\xc0\x07\xb0\x12\x25\x2b\x67\x6d\x83\x4c\xe9\x66\x22\x66\xb5\x2d\xef\x45\xad\x1e\x54\x1d\x79\x13\x80\xa1\x1e\x62\x90\x1b\x64\x8c\x8b\xd3\x02\x53\x58\xc9\xa7\x84\xca\xf1\x38\x17\x0a\x91\x1a\xd0\xa5\xd0\x93\x5b\x9e\x41\x74\xfc\x6b\x04\x43\x2f\x16\x12\xbd\x15\x18\xc0\xff\x0a\xc1\xf0\x7f\x87\x58\x18\xc8\x68\xdf\x2b\xd1\x19\xde\xb2\x7d\xc9\xe5\xc4\x67\x65\x44\x7f\xcc\x19\xc5\x45\x5f\x1f\x20\x8e\xc5\x3e\x6d\x1b\xb3\xba\xc8\x3a\xbf\x42\x62\xf4\x30\xed\x94\x18\xbb\x38\x0f\x1d\x4f\xb7\x5b\xc9\xbd\x18\x3c\x5c\xaa\xba\xf5\x64\xd8\xa1\x72\x15\x3f\x85\x73\xe0\xbf\x41\x65\x10\x94\x40\xaa\xc4\x41\x5d\x2d\x0d\xae\xea\x9a\x1c\x15\x86\x12\xb1\xed\x5c\xdc\xbe\x15\xff\x45\x9c\x08\xb9\x01\xc1\x32\x66\xd4\x96\x12\xb4\xc1\x9e\x84\x01\x63\xf7\xba\xe5\xd4\x79\x59\x31\xfb\x19\xed\x91\x99\xd1\xc7\x51\xc5\x0f\x3a\x2c\x61\xf8\x3f\x7f\x6e\x78\xb2\x73\x60\x49\xd9\x8a\x10\xed\x4c\xc8\x5c\x91\x82\x99\xf6\xe5\xbd\x58\xda\xba\x1a\xe3\xfb\x54\x5d\x11\x96\x5b\x2b\x14\xe4\x58\xf5\xa4\x20\xa7\xb4\x60\xe2\x05\x00\x7b\x4b\x75\x38\x69\x05\x3d\xc8\x98\x74\xcf\x73\xc9\x5a\xec\x97\x30\xe7\x98\x46\x3f\x10\xa1\x6b\x6b\xc4\x99\x1c\xce\xa7\xbd\xb8\x57\x6d\xc0\x4c\x72\xde\xb7\x31\x4e\x99\x31\x49\x7a\xbf\x37\x04\x36\x4f\xd7\x7f\x1c\xdd\xf9\xb4\xd8\xa5\x3d\xbf\xfc\x8c\xf2\x3c\xd8\xda\x62\x73\x19\x31\xe5\x3c\xbe\x55\x29\x74\xc7\xb3\x97\x02\xd4\x17\x23\x60\x67\x16\xe5\xc2\x8f\x73\xff\x6f\x1c\x7e\xeb\x78\x14\x23\xfe\xe7\x6f\xaf\xa7\x0f\xa9\x74\x1f\xb1\x0a\x26\xd1\xc1\x3f\x52\x6f\xcf\x18\xde\xbf\x9c\x92\x1a\x7c\x1a\xd5\xe0\x8d\x95\xe6\x2c\x0e\xde\xfd\x1c\x97\x1b\xae\xe5\xb7\xd2\x86\x87\x00\xed\xe4\x6f\x3e\x13\x38\x7f\x97\x57\x34\x47\x6f\x31\xda\x8d\xec\x6d\xdf\x68\xfe\x5e\xef\x01\xae\xed\x62\x8a\xa1\x24\x38\x41\x33\x15\x2b\x35\x9e\x11\x36\x75\x49\xa5\x1a\xe8\xa7\x28\x9e\x8d\xf6\x44\x2c\xbf\xd0\x86\x9c\x17\xa2\xc1\xd2\xa9\xac\x84\xcd\x9a\x6f\x82\x90\xe5\x7d\xf4\xaf\x50\xd0\x69\xe8\x84\x61\x19\x87\x85\x07\x98\xe6\x4c\x74\xc3\x7e\xf8\x6b\x66\x4f\x2b\x19\x43\x55\x19\xa0\x53\x9c\x76\x50\x85\x20\x1a\x5d\xd7\x3a\xd2\x74\x4c\x20\xc3\x71\xd9\x69\x80\x29\xbb\xf0\x41\xe6\xc7\x06\xde\x04\xff\x74\x41\xcc\x14\xb1\x73\x64\x4c\x00\xb5\xcb\x32\xe5\xeb\x9a\x22\xb5\x1d\x15\xa9\x00\x98\x16\xfd\x06\xb0\x56\x77\x4f\x91\x53\x84\x15\x14\x22\x21\xf6\x7f\x8c\xfc\x48\x71\xfe\x2d\x67\x46\xe1\x52\x4c\xd9\x39\xa7\x4c\x98\x32\x76\xa2\xae\x80\x31\x1c\x78\xcd\x9a\xe2\x00\xc9\x7f\xb8\xec\x33\x42\xf7\x97\xa0\xe3\x4c\x9c\xe2\x00\x18\x04\xc4\xdd\xb4\x6d\x8c\x49\x67\xfb\x4a\x91\x11\x06\x83\x77\x5f\x96\xf7\x70\x30\x9b\x46\x55\x5a\x06\x55\xaf\xb9\xae\x10\x86\xba\xc0\x79\xdf\x5b\xd4\x5d\x3c\x28\xf8\x6b\xc1\x5b\xa7\xb0\x68\x62\x03\xb0\x3c\x57\x1d\x7d\x48\xfd\x1e\xe5\xde\x7c\x5a\x5c\x04\x6b\xf4\x99\x41\xb2\x84\xf7\x3b\x66\xfe\x51\x06\x66\x01\xe2\x34\x00\x72\x12\xe1\xd5\x02\x73\xe6\x0a\x21\xce\xfb\x67\x18\xc2\xc0\x07\x69\xe5\xae\x5c\xea\x07\x55\x8d\x99\x11\x57\x63\x81\x51\xd8\x72\x5d\xd6\x28\x3b\x4a\x2c\xcb\x4b\x31\x0e\x92\x6a\x3a\x88\xfd\xd6\x06\x0a\x5d\xd6\x6b\x62\x32\xe8\x57\x2b\x6d\xdd\x35\x66\x2e\x1b\x0d\x5a\x65\x9e\x43\x77\x90\x48\x7f\xb4\x97\x6a\x04\x80\x0d\x45\xd7\x72\xaa\xa1\x8b\x1c\x01\x57\xaa\xbd\x78\x7e\x3a\x16\x49\x07\x93\x35\x66\xfd\xc9\x7a\x25\x81\xbb\x69\xc3\x9e\x2f\x16\x2f\x92\x6b\x5e\x60\x55\xc0\xad\x7a\xb4\x44\x8c\x50\xf6\x6f\x8f\xef\xf4\x6e\xd1\x3a\x30\xa3\x82\x56\xfe\x60\x4c\x74\x44\xd5\x1e\x1b\x45\xb3\x38\xa9\xdb\x88\x7a\xf5\x53\xfe\x51\xbc\x06\x14\x9e\xbc\x12\x1f\xde\x00\xb6\x3c\x93\x77\xcc\xde\xf9\x20\x1f\x45\xd3\xb1\x81\x18\x97\x88\xe9\xc9\x49\x20\xc0\x79\x7b\xd0\x52\x34\xf2\x71\x1a\x5f\x4d\x62\xed\x7e\x96\xaa\x49\x51\x05\xef\xed\xda\xb5\x6c\xea\x62\x80\x41\xed\xa9\x08\x27\x2a\x0d\x39\xad\x12\x3a\x32\x69\x29\x7e\x8f\x79\xf7\xb9\xea\x71\x3d\x7f\x12\x06\x2a\x54\xc5\x82\x6e\x5d\xea\x40\x8a\x92\xf9\xfc\x04\x4d\xe7\x39\xfd\x83\x33\x14\x64\x00\x63\x0e\xcc\xcf\x95\xce\x74\x1b\xc0\xe7\x53\xf3\x1e\x51\x71\xc0\xde\xe8\x73\x33\x9d\x89\xe7\xa7\xbf\x54\xca\x91\x47\x02\xf3\x52\x8e\x2d\x8e\xfd\xf9\x6a\x8e\x5f\x5b\xce\xd1\x83\xff\xdb\x96\x74\x48\xb3\x66\x57\x13\x9a\xd8\x59\xf6\x2c\x2c\x6c\xa2\x54\x95\x7c\x38\x98\x6a\x30\x97\xa5\x8a\xd9\xfe\x5c\x76\x69\xc8\xf3\x80\x1c\x1a\xac\x74\x79\x0f\x8a\x8e\xf8\x20\xdb\x3f\x4d\x82\xd3\x66\x31\x16\xf4\xff\x7f\x86\x8d\xea\x61\x21\x4c\x55\xb6\x18\x79\xa5\xaa\x29\xa7\x1d\x39\x0a\xc9\xee\x89\xf3\xaa\x42\xa4\xa1\xbd\xb8\xb4\x3e\x30\x88\x80\x99\x4a\xa9\x06\x23\xc5\x26\xc8\x32\x88\xd6\x52\x39\x12\x7d\xd8\x0b\x59\xca\x54\x48\xa9\xb3\xb1\xc6\x91\x07\xb3\x70\x32\xd9\xbf\x4f\x02\x80\xbd\x05\xce\xf0\x48\x01\x35\x9f\xd6\xd6\x76\xb1\x4e\x4e\x1e\x12\x5f\x28\xbd\xd0\x7b\x8e\xa9\x0a\x9c\xb9\x92\x98\x4a\x0c\x13\xf3\x40\xa9\x98\x1a\x21\xfa\x1d\xfd\x3a\xdc\x37\x6d\x8b\xfb\xd7\x3e\x73\x3b\x7d\xd7\xcd\x94\x33\xa0\xec\xe6\xbb\xc0\xf1\xea\xfc\xcb\xc9\xd5\xd5\xe5\xf4\xd3\xed\xcd\x5f\xaf\x2f\xaf\x6e\x47\x62\x6b\xc7\x7b\xcf\x18\xb0\x73\x55\xa1\x1b\x2e\xe5\x4b\x4b\x2e\x9c\xad\x54\x34\xa5\x23\x9a\x64\xdc\x80\x62\x30\xc4\xd5\xe3\x99\x78\xf6\x27\xdd\x9e\xfc\x79\xfc\x27\xdd\x9e\xe2\x7f\x9f\xff\xf9\x59\xf6\xce\x21\x4d\x73\x26\x9e\x9d\x9c\xfe\x4b\x71\x5c\x1c\x17\x27\xcf\x80\xd6\xde\x5a\x87\xba\x00\x18\x1a\x5c\x5c\xd7\xa4\xfc\x02\x0c\x8d\x97\x12\x34\xdb\x90\x5b\x42\x69\x37\xbf\x81\x63\x31\xc3\xba\x1f\xa3\x40\x6f\xe2\x73\x46\x0a\x08\x92\x46\x54\x25\x30\x27\x93\x86\x05\x51\x83\x81\x3b\x50\x99\x9e\x65\x8a\x05\x7e\xf6\x2c\x53\x74\x98\xc7\xec\x9f\xbc\x12\xbf\xe7\x58\xca\xd4\xce\xa7\x95\xd3\x0f\xca\x1f\x70\x57\x08\x07\x07\x01\x58\x03\x9a\x83\xa8\x3a\xf4\xae\x34\x2c\xd1\xfd\xb9\x53\x9d\x42\x93\x44\x19\xdb\x2d\x96\x49\xaa\x05\x59\xde\xf7\x1d\x17\x94\xb8\x99\x20\xbd\xd1\xf8\xb8\x72\xa7\x78\xfc\xa5\x6a\x0a\x31\x01\x55\x07\x58\x90\xc6\x52\xc7\xd1\xde\x00\xfc\xa8\x48\x93\x62\xf2\x8c\x0b\x09\x93\xd6\xce\xfa\x8a\xa3\xb2\x57\x25\xf8\xb3\xd1\x1e\x99\x71\xd1\xed\x47\x4a\x57\xac\x45\xc0\x5e\x00\x4e\x73\x56\x9b\x6a\x30\x9d\x25\xd6\x93\x67\x7a\xd2\x52\x9a\x2a\x4e\xc8\x13\x49\xcc\xa2\x41\x51\x4b\xbe\xb3\xeb\x1b\x31\xb3\x9d\x61\x06\xa9\x2b\x25\x41\x3f\xec\x33\xe2\x9e\x6d\xe9\x78\xcf\x04\x96\x01\xb7\xca\x54\xa0\x70\xc4\xe6\x09\xe9\x8b\x12\x33\xee\x71\x1b\x32\x97\xdc\x1f\xc5\xfe\xeb\xc1\x7e\xe1\x6b\x07\x48\xe2\x62\x61\x6d\x25\x5c\x57\xb3\x02\xd4\x35\x33\x50\xa9\x86\x24\x80\xbc\x7f\x0b\x98\xcd\x5f\x87\xe8\x8e\xf2\x02\x08\xba\x91\x81\x9d\xde\x18\x64\x55\x2b\x46\x09\x46\x3e\xa9\xf2\x15\x61\xc1\xad\xd0\xe6\xc1\xd6\xa8\x3e\x79\x9b\x27\x8c\x90\x94\x8b\x07\x90\x3b\x07\x60\xdd\x03\x35\x3d\x61\x30\x98\xd6\x31\x40\x9d\x7e\xa3\xe9\x06\x0b\xcb\x61\x9a\x02\x4c\x1b\x70\x47\x17\x52\xef\x4d\x06\x1e\x89\xb9\xbb\xd6\xd6\x98\x37\xc0\xe9\x11\x5c\x82\x59\x6c\xa7\xad\x35\xb2\xae\x63\xc7\x8f\x93\xa3\x17\xc8\x57\xc1\xe6\xb7\x4e\xbc\x3c\x39\xfd\xf0\x86\xfd\xc1\x30\x20\x69\x2c\xd4\x62\xa0\x4a\xbe\x6c\xf2\x66\x50\x53\x06\xf6\x74\x53\xe9\x0b\x3a\xb4\x09\xb2\xfe\x2b\x74\x46\x29\xd9\x16\xe2\x03\x3d\xd2\x64\x5a\x67\xaf\x48\x8f\x0c\x80\xe2\xea\x98\xe8\xb3\xed\x71\x7d\x79\x42\x1b\x57\xcb\x05\x6a\xc3\x25\xe5\x70\xae\x96\x0a\x29\x9b\x4f\x36\x8c\x07\x04\x68\x81\xf0\x78\x5d\x2b\xca\xe9\x53\x1b\xa8\xc1\xbc\x01\x5a\xa2\x7a\x5c\xca\xce\xb3\x52\x20\x51\x9b\xc2\x8f\xb8\x7c\x5c\x3d\x96\x08\xdd\xa0\xc4\x9d\xd6\xf9\x14\xbc\x63\x31\x53\x6b\x0b\xa7\x92\xd4\xd9\xcc\x1f\x45\x66\x79\xac\x90\x05\x8d\x36\x07\x9c\xd3\x21\x0a\x58\x2b\xbd\x33\x05\x28\xa7\x9d\x57\x53\x58\xcd\x54\xcf\xa7\x09\x5c\x6e\x18\x10\xed\x85\xd8\xc4\x02\x30\xce\x2d\x32\x00\x45\x98\x0b\x01\xf4\x37\xda\x13\x9f\xac\xa7\x34\x42\x66\x26\xd2\x29\x50\x2c\xbc\xaf\xc4\x3e\xe6\xd8\xd8\x5a\x57\x18\xdb\xc5\xac\xf3\x7b\x3f\x30\xdd\x0f\xd0\xbd\xa1\x29\x8d\x8a\xde\x8f\xff\xc2\x97\x0f\x98\x5f\x4f\x79\x76\xd6\xe9\x18\xae\x33\x98\x06\x81\xb5\x41\xd6\x94\x25\x0d\x9a\xd8\x0e\x62\x6e\x54\x13\xd3\x50\x36\x7a\xc7\x60\xb2\x00\x25\x8a\xb6\x79\x92\x43\xda\x64\xaa\xc2\xd3\xd9\xae\x91\x7d\x2e\xc9\x14\xe9\xf3\x42\x07\x2d\x65\x62\x49\x72\x7c\x2b\xa6\xcc\x24\x48\xa6\x65\xad\xa4\xe9\x5a\xac\xdb\xf6\x4b\x8b\x27\x3f\xd7\x26\x37\xe1\x54\x01\x44\x1e\x96\x9f\xc3\x21\x0b\x1b\x06\x1d\xfb\xfe\xfa\xf1\x71\x73\x31\x46\x1f\x29\xfe\xf4\xf8\xc5\xeb\xfc\x0d\x3b\x9f\x3f\xf1\xd2\x68\x4f\xdc\x02\xae\x61\x70\x5b\x96\x5d\xab\x55\x85\x49\xad\xb8\x18\xc0\x52\x1c\x84\x60\x80\xa3\xba\xb1\x07\xf0\x7b\x94\x71\x3b\x31\x12\x9d\xb1\xd2\x2d\x94\x0f\x69\xc0\x42\xbc\xa7\x46\x45\x4d\x19\xa2\x2f\xa1\x51\xd2\xc4\xfe\x45\x64\xff\x71\x99\xa9\x02\xb9\x83\xcc\xb1\xcf\x14\x1c\xf3\x11\xf0\x36\x3e\x31\xbd\xc8\xa3\xa9\x31\x65\x1b\x6b\xbd\xb8\x95\x88\x49\x0e\xcc\x4a\xcf\xe7\xba\x04\x0b\x28\x58\x2c\x6d\x25\x09\x83\xd4\x28\xe6\xe8\xb8\xc2\x5c\x6d\xc0\xf7\xc3\x9a\x5d\xd5\x5c\x28\x94\xe3\x76\x6b\x77\x23\xc9\x23\xdb\x3c\x11\x47\x62\x3f\xbd\x4b\x95\xea\xe4\x46\xf1\xe2\x9f\xc5\xc9\xc1\x67\x47\x3a\x13\xc7\xc5\xc9\xc9\x28\x8b\x34\xa0\x17\x46\xae\x33\x92\x89\x1c\x80\xab\x05\x31\x40\xe8\xfb\x4d\xeb\x23\x92\x37\x2d\x29\x2c\x7c\x6e\x05\xd2\xd1\x94\x99\xc9\x19\xa8\x70\xd6\x10\xd7\x33\xda\x46\x26\x43\xb1\x5f\xa6\x9e\xf4\x6e\xe2\x8f\xfb\xe4\x53\x3b\x78\xf2\x13\x8b\x49\xa0\xf9\x27\xfc\xcb\x28\xad\xba\x6f\xe8\x33\x0d\xeb\x56\x9d\x0d\xe0\xea\xcf\x3c\xd5\xca\x65\x07\xbd\xb7\xbf\x7c\xca\x53\x8d\x2d\x91\xe8\xe5\x85\x0a\x9e\x1a\xca\x90\xd8\x45\xc6\xb5\x75\xdc\x88\x50\xc8\x4d\x53\x69\x17\xd6\xe2\xe2\x2d\x79\x30\x38\x53\x1c\x68\x36\x7a\x44\xc8\x03\xdd\xc0\x90\x3a\x14\x42\x4c\xac\x90\x1c\xea\xa4\x63\x91\xf9\x12\x00\x86\x68\x1a\x06\x45\x89\x75\xe4\x4b\x43\x05\x78\x83\x40\xad\x41\x22\x3e\xc4\x1f\x54\xee\x23\xd1\xbb\xfc\x1e\xc9\x31\x9f\xc9\x65\x38\x68\xaf\x4f\xfe\x70\x4a\x26\x26\xcb\x67\x32\x67\x12\x06\xfb\xd8\x48\x0f\xe9\x03\xcc\xc5\x8e\xe5\xde\xe4\xc4\x8f\x86\x1c\x03\x06\x4f\xdd\xcd\xbc\x62\x7b\xb1\xef\xd8\x92\xa8\x8e\xd6\x36\x74\x17\x52\xf2\xb7\x57\x99\xdb\x10\xe3\xb0\xec\x55\x06\x49\xa3\xed\xb8\xcf\xbe\xb2\x86\xeb\x41\xf0\x4c\xc9\x7e\xf0\x64\x27\x50\xad\x6a\x9d\xc6\xd9\x38\x98\xc3\xc3\x96\x1f\x4a\x18\x1a\x5b\xac\x6c\x65\x07\x0f\x9a\x92\xb9\xad\x8c\x5d\x54\x79\x67\x32\x02\x3d\x99\x5c\x8e\x53\x87\xa3\x54\xe4\x09\xb4\x16\xb3\xf3\xe4\x83\xd5\x60\x36\x3f\xe4\x9c\x74\x03\xb2\xdf\xef\x80\x03\xe6\xfa\xf3\xa6\x1e\x3c\xda\xdb\x3d\xc2\x99\x40\x1e\x71\x2e\xe6\xfa\xb1\x97\x89\xa8\xa1\x90\xef\xc8\x88\x0f\x6f\xf0\xcc\xc0\xff\x26\x93\x3b\x46\x63\xa5\x1e\x85\xef\x9a\x46\x62\x32\x32\x2c\xba\x56\x73\x80\x1a\x83\x3d\x9c\xdc\x4c\xf6\x3a\x53\x5d\xb0\x82\x22\x3d\x51\x0e\xe1\x04\xf8\x69\xa6\xc0\x75\x5e\x2e\x14\xe5\xb4\xc1\xc1\xd8\x98\x88\xa5\xab\x8f\xe6\x79\xa3\xc3\x38\x02\xc5\x06\x22\x18\x52\xa8\x3a\x3b\x64\x6c\x4c\x30\x7e\xe9\xb4\xb9\xe7\x32\x9d\xcd\x41\xb5\xe9\xed\xb4\x46\xc5\x32\x00\x1c\xbd\x10\xe2\x9d\x5d\xc1\x01\x1f\xc7\xf2\x04\x54\xce\x67\xca\x87\x43\xca\x8d\x15\xad\xb3\xa5\xf2\x80\x04\x13\xf3\xde\x40\x9c\x90\x86\xea\x33\x96\x91\x3b\xaf\x3b\xf4\x5b\x53\x76\x1d\xe5\x78\xc3\xb8\xf9\x69\x40\x82\x42\x50\xa7\x04\xea\x7a\x1a\x73\x1f\xb2\xe8\xd3\x3b\xbb\x12\x73\x47\x2d\xe1\xd0\x23\x3a\x5c\x5a\x6f\xad\x3a\xe5\xb1\x10\x30\x35\x03\x02\xe3\xc9\x1a\x45\x85\x63\xe8\x24\x8e\x1d\x36\x9c\x4a\x95\x1e\x69\x5f\x52\x98\x07\xe9\xe4\x10\x69\x03\xa9\x24\xf3\xb0\xc2\x50\x83\x96\x63\x88\x6d\xa7\xca\x68\x89\xd0\x9e\x00\xeb\x63\x07\x63\xb0\xe2\xf0\x84\xc9\x24\x85\xdf\x34\x0f\x44\x35\x39\x31\x99\x55\x3d\x6a\xcf\x4e\xc9\xe1\x12\xc9\x3a\xd6\x2e\x9a\xac\x02\xd7\x09\x6f\x62\x92\xc6\x26\x0e\x9d\x62\x75\x39\x2b\x83\xd1\xa6\x43\x63\xe7\x15\x3a\xc1\x7f\x48\xba\xfd\x98\xf4\xbb\xca\x52\xa5\x18\x22\x59\xcb\x3a\xda\xbc\x63\x8a\x85\xec\x1f\x00\x0c\x71\x40\xbf\x61\xf8\xcf\xad\x63\xcf\x23\x1b\xfe\x30\x54\x4a\x0e\x21\x66\x87\xba\x2e\x88\x8f\xa4\x7d\xfb\x42\x5c\x99\x84\x0f\x34\x33\x90\x1b\xf8\xae\xaa\x94\x61\x59\x43\xaf\x8a\xa4\x6d\xb1\xeb\x42\x93\x8e\x63\x16\x84\x73\xaa\xf7\xc2\x53\x7a\x3e\xf0\x6d\xb3\xb9\x0b\xa6\x36\x48\x90\xc9\xe4\xd2\xff\x91\x0b\xe8\x8c\x02\xe4\x53\xff\x33\x6b\x44\x5b\xcb\x80\x35\x38\xa3\xe0\x74\x79\x0f\x3c\x84\xc2\x0b\xd8\x6a\x6c\xf8\xe3\x00\xb3\xb1\xd7\x0a\x05\x17\x2e\x3e\x09\x20\x8e\x71\x12\xc1\x12\x63\xa5\xa6\x8a\x9e\x7f\x30\x8f\xbd\x2a\x3b\xf4\x79\x93\x57\x7b\x18\xa3\x05\x43\x46\x3d\xb6\x36\x3a\xe8\x60\xb8\x68\x01\x52\x17\x20\x05\x47\xf6\xad\x76\x6a\x85\xec\x03\xfd\xf6\xd1\xc8\xe3\x26\xa4\xd3\x16\x33\xda\xff\x85\x63\x1e\x93\xc9\xfb\x0c\xac\xbe\x84\x0f\x00\xec\x4c\x6c\x8d\x22\xc4\xf7\x06\xab\x08\xb9\xbd\x40\xea\x8b\x86\x15\xbb\xf4\x11\xa8\x21\x14\x12\xf2\xff\x0e\x8b\xf1\xf5\x74\x6b\x41\xc4\xcb\xc9\x0d\x07\xc6\x68\xef\x81\x0d\x56\xcc\x34\xe9\x11\x18\x78\x52\x75\xcd\xce\x99\x4d\xef\x67\xc0\x40\x81\xa1\xfa\x1b\x50\xfe\x7e\xb4\x9d\x98\x36\x9d\x0f\xd3\x5d\xbe\x4b\x8c\x59\x0c\xdd\x95\x1c\xc2\x8d\x61\xbd\x1e\x91\xea\x77\x94\x21\xa4\x02\xfa\x0c\x95\x99\xb2\xcb\x50\xdc\xdc\xc6\x5f\x12\xc8\x94\xd3\x00\xc6\x0c\x70\x56\xfe\xd1\xc7\x0c\x64\xc7\x15\x07\xe4\x01\x48\x7d\x99\x78\xbc\xb1\xb8\xfe\x24\x64\xad\xa9\xc5\x16\x96\xda\x85\x81\x77\x7c\xb4\x27\xde\x33\x63\xd1\x41\xcc\x6a\x69\xee\x29\xed\xcb\xc3\xbf\x3b\xcc\x0e\xb9\x36\x2a\x30\x2e\x8b\x85\x0a\xef\x6d\x29\xeb\x77\xd6\x87\xfd\x03\x72\x55\x44\xfd\x8c\x8f\x53\x45\x3b\x77\x8b\xd9\x73\x77\x78\x20\xc1\x6a\xee\xb3\xf0\x61\x8b\x31\x02\x84\x35\xb4\xb1\x7a\x69\xb4\x27\xf6\x97\xd6\x07\x23\x1b\x58\x32\x85\x2b\xbd\xad\x3b\xb2\x52\x54\x28\x0f\xc6\x29\x56\x98\x0f\x4e\x6c\xa1\xcf\x9d\x8e\xa8\x94\xde\xdb\x52\xcb\x41\x17\xc7\x38\x81\xd8\xd7\x41\x34\x38\x08\xb5\xae\x3b\x28\xe2\x8e\x20\xc3\xd8\xd8\x95\x60\xc5\x31\xba\x63\x8f\xc9\x23\x83\xeb\x5c\x39\x1b\x6b\xde\xb8\x81\x68\xea\x99\xd9\x77\x74\x8c\x24\x8c\xb4\x37\x5b\xd3\xba\xe2\x2a\xfa\x27\x18\x13\x30\x42\xb7\x0f\x2f\xf0\x29\xfd\xfd\x55\x5c\x0b\x79\xee\xa8\x40\x81\x47\xe6\x06\x23\x49\xac\x95\x4b\xeb\x95\xe1\xca\x94\x4d\x12\x9a\xb6\x4e\xcd\x95\x9b\xc2\x98\xa8\x68\x20\xbf\x62\x31\xe6\x7c\xc0\x89\x33\xd4\xa5\xa6\x1e\x18\x79\x01\xc5\xc4\x75\x1b\xaf\xbf\x7a\xe2\xe5\xdc\xdd\x45\xb3\xd0\xdc\xdc\x84\x17\x26\x8a\xaa\x0e\x39\xf8\xd0\x17\x05\xca\x64\x1c\x2f\x3a\x6b\xd0\xb3\x5c\x53\x0d\x86\x53\x0b\xe9\xaa\xe8\xd7\x83\x41\x8e\x70\x2d\xa3\xe1\x46\x9d\x51\x02\x11\xec\xf2\x68\x6f\x0b\x0b\x67\x42\x85\xe5\xf1\x8e\x07\x39\x7a\x22\x2f\xcf\xf8\x07\x9c\x62\x67\x65\x55\x4a\xce\xd5\xdf\xc5\x2e\xb2\x83\x84\x5c\x81\x8e\x52\xf2\x45\xe8\xb0\xbb\x6c\x75\x08\x3f\x88\xbd\x38\x53\xbf\xa6\x93\xe2\xb4\x78\x5e\xbc\x18\xc5\xd4\x08\xda\xe3\xc4\x6a\xda\xe5\xda\x63\xb7\x65\xa3\x02\x26\x0c\xa4\x75\xf9\x71\x2a\xe6\x64\x07\x21\x6e\xa3\xe5\x59\x41\xa2\x6d\x4d\x97\x7b\x15\xfb\xca\xf6\x21\x98\x63\xf2\xe2\xf7\x3d\x40\x87\xcc\x0d\x73\x37\x2c\x76\x28\xed\x41\xc1\xf4\x37\xaa\x56\x21\x26\x4f\x31\xe0\x35\xb7\x39\x4c\xc0\x0f\x93\x75\x06\xd5\xeb\x98\xe1\x07\x0a\x8a\x48\x39\x18\x58\x75\xdf\xcd\x6a\x5d\xe2\xb1\x69\x9d\x7e\x00\x00\x78\x30\x2f\x7c\x57\x2e\x01\xcd\x57\x17\xa7\x45\xbf\xf1\xd6\x4c\x77\xa0\x39\xed\x3b\x32\x59\xe4\x54\xf2\x8b\xda\xa2\xa5\xf7\x87\xfd\xd1\x46\x7b\xa9\x35\x15\xa2\xeb\x08\x34\x3b\x8c\x7e\xb0\x58\x41\xad\x18\xf5\xc9\x56\xc5\xe6\xd3\x45\x44\x1a\xfc\x6b\xba\xd1\x33\xeb\xe9\x36\x44\xb1\x0d\xc5\x6e\x50\x86\xca\x1c\x25\xa9\x11\xd2\xb9\xff\x75\xac\xb2\xc3\x12\x24\xea\x6c\xbb\x95\x7b\x8d\x56\x6a\x94\xa8\xb1\xad\xec\xce\x41\x80\xfa\x6d\x47\xd9\xac\x59\x01\xb1\xe4\x14\xf6\xb6\x8c\x38\xa7\x18\x3a\x7e\xb3\x24\xe3\x02\x95\x71\x0d\xda\x5c\x74\x14\xf4\xe9\x5c\xdc\x53\x1a\xa1\x9f\xd2\xa4\xd3\x34\x69\xea\xdd\x8a\xa3\xc5\xa4\x97\x8b\xff\xfa\x7e\x1b\xbc\x9e\xfe\x51\xfd\xc2\x42\x43\x4f\xe5\x79\xff\x60\x55\x65\x13\x68\xd6\x57\xfe\x70\xfc\xe2\x74\xb4\x47\x7a\x2e\x9e\xa9\x4d\x88\x7b\xb5\x0a\x8e\x16\x41\x3c\xdd\xd6\xb5\x36\xba\x0a\x73\xa6\x15\x19\x58\xd9\x10\x29\x23\x28\x48\x53\x49\x57\xd1\x22\xac\x8b\x52\x54\x8a\x4a\x55\xd4\x1c\x68\x9c\xa7\xd2\xe3\x6b\xb2\xb6\x31\xff\x13\xc6\xe8\x4c\xd2\x13\xb1\x3c\x8e\x47\xdc\xb9\xd0\x22\x5f\x23\xd7\x77\x66\x60\x61\x01\xa0\x52\x6d\x8f\x81\x8d\xef\xa7\xde\xd7\x7d\x2b\x96\xd4\x3a\xb5\x1f\x62\xb4\x47\xc5\xf2\x3b\x27\x4f\xa2\xfd\xe9\xb1\x51\x7f\xea\xa9\x0f\x79\x34\x8c\x09\x27\x74\xe7\x57\xbb\x80\x78\x1a\x04\x9c\x23\xb6\xc1\xf8\xec\x4a\x73\xb4\x02\xd6\x9e\x1c\xee\x4c\xfc\xe1\x04\x69\xe7\x2e\x8b\x8c\xc4\xcc\x32\x0c\xfc\x48\x53\xd5\x64\x01\x71\x99\x67\x72\xd4\xef\x3a\xb6\x28\xc2\xa3\x6f\x8a\xb2\xb0\x74\x2d\x91\x32\xe0\xd8\x36\xf2\x31\xf6\x4d\x15\x61\x89\x31\xda\x61\x62\x21\xc5\x54\x7c\xcd\x0d\x52\xf6\x29\xdb\x3c\x89\x7a\x63\xb7\x97\xd2\x68\x13\xc7\x1c\x0b\x4d\xa5\xde\x7d\x66\x5c\xd4\xb5\x40\x17\x08\xb6\x6d\x55\xdf\xa7\xea\xf9\x71\xcc\x32\x3d\xd8\x89\xa3\x0c\x58\xea\x38\xba\xb7\x81\xa7\x18\x0e\xc0\x53\x83\x6d\x54\x65\xa3\x0a\xf1\xd6\xa1\x7e\x18\x11\x76\xd0\xdf\x04\x10\xbd\x13\xbd\xef\xcd\xa9\x9f\x48\x3f\xc1\x5a\x4d\x6c\x3b\xb1\x95\x17\x74\xfa\xf2\xd5\x87\x37\x4f\x42\x88\x93\x0e\x02\x6d\xb1\xd1\x7b\x06\x69\xee\xc2\x4a\xd1\x4b\x3e\x41\x99\x2c\x29\x36\xdc\x9b\xda\x8b\xc3\x93\x98\xd1\x45\x85\xc4\x9d\xe1\x50\xe9\x93\x00\x0d\x42\xb7\x69\xe8\x33\x71\x78\xf2\x2b\xa1\xa2\x1e\xa7\xb6\x03\xeb\x5f\xb7\xff\x40\x18\xa7\x2d\xaa\x70\x11\xd4\x9d\x02\x2f\x50\xb1\xb1\x6b\xcb\x24\xea\x48\x9e\xb8\xb6\xcc\x34\x80\xbb\x5c\xd6\xed\xb4\x1e\x97\x2a\x16\x2e\xdf\x7e\xba\x48\x95\xbb\xc0\xc3\x36\xcf\x15\xa6\x02\xc2\x54\x64\x45\xb2\xd9\x97\x49\x41\xb0\xf9\xe0\x9f\xff\xee\x06\x5f\x0e\x03\xa9\xab\x4b\x96\xd1\x28\xaf\xa9\x58\x1a\x48\xdb\x9a\x6d\x3d\x75\x5f\x17\xaa\xc8\x75\xf5\x14\xb2\xdb\x68\x4a\x91\x4c\x2e\xf6\x78\x82\x76\xc2\xd6\xd6\xc7\xa4\x5c\xc0\x9e\xdf\x6f\xab\x99\x9b\x46\x0f\x1b\x61\x14\xb3\x5a\xc7\x44\x22\x59\x7b\x8b\x58\x0e\x99\x3a\x9b\x2f\x0e\xf1\x44\x2a\x37\xe9\xee\x78\x96\x79\x30\x02\xe5\x1f\x2c\xf9\xff\x23\x1a\x89\x03\x9a\xfb\x3f\xd7\x42\xcc\x08\x61\x68\x1e\x0e\xd6\x8f\xb6\xe1\xc9\xe6\xaf\x4f\x18\x86\x49\xc7\x64\x16\xf0\xa4\x46\x09\x83\xb1\x8e\x77\x42\x3e\x55\xe0\x16\xf2\x09\xbb\x12\x13\x9a\xb8\x80\x7f\xa7\x8d\x99\x1a\x91\x99\xd4\xde\x2b\x76\xa0\x62\x5a\x8e\xf1\x07\x3a\xcf\x79\xf4\xa1\x7f\x17\x36\x89\x0f\xc3\x9c\x17\x9c\xf4\xf1\xeb\xf9\x80\x2b\x70\xee\x69\x3f\xc1\xf8\x89\x13\x36\x48\x38\x2d\x06\x66\xec\x00\xff\x99\x29\xcb\x77\x32\x50\x3b\x25\x2e\x06\x57\x2d\x5d\x10\x60\x0d\x80\x71\xc4\xac\x34\xe3\xf1\x88\xd1\xf4\x5e\x9f\x7f\xb1\xa3\x67\x6b\x58\x59\x61\xbb\x70\x68\xe7\x87\x61\xa9\x0e\x67\xf6\x51\x44\x3d\x39\x6a\xc0\xb0\x19\x13\xe4\xcd\x67\x78\x42\xb1\x4e\x41\x1c\xfe\x59\xdc\x98\xa8\x86\xa0\xf4\x62\xa9\xd1\xc3\x51\x20\xbf\x90\x02\xe3\x9d\x79\x0f\x01\x94\x86\xb4\xff\xe3\x3e\xc0\x96\xfe\xc4\x9d\xc0\xb8\x18\x4a\x39\x74\x57\x63\xbf\xd2\x42\xdc\x18\x21\xc5\xab\x17\x62\xa6\x03\x75\xc0\x38\x79\x7d\xfc\xdd\x9b\x18\x9f\xe4\x1e\x09\x94\x0e\x17\xf3\x05\xd2\x9f\x36\xc5\x08\xa3\x93\x2c\x26\x12\xf4\x12\x03\xf6\x11\x67\xee\xa8\x04\xed\x41\xbb\xd0\xc9\x3a\x46\x36\xf6\x81\xa9\x26\x67\xc2\x36\xf0\x9c\xc8\x1e\x73\xad\x06\x9d\x18\x79\x44\x86\xad\x95\x65\x64\xf1\x4b\xbf\x94\x88\xd2\x49\x40\x27\x37\xa0\xfe\x19\xa6\x4a\x03\xb2\x97\xce\x1a\xdb\xf9\x31\x25\x4f\xcb\xec\xa7\xe2\x99\x38\xa7\x5b\x0e\x10\xf3\x7c\xa4\xa4\x53\xa4\xd2\xa2\x1e\x98\xfe\xe4\x1f\xd6\xdc\x8c\x2a\x85\x94\xcd\xd6\xe5\x04\x7c\x35\x89\x22\xe1\xf8\x20\xdd\xba\x37\x68\x28\xf2\x94\x0f\x4e\x1f\xe6\x50\xec\x13\x82\x3b\x2f\x7c\x29\x31\xde\xa6\x30\x74\x2d\x1a\xca\x09\xc6\xb7\x0e\x48\x11\x04\x4d\x23\xe9\xde\x98\x9a\x1c\x48\x7b\x4c\x7f\x32\xd8\xc5\xbe\x1d\x12\x1e\xc7\xb1\x79\x80\x03\x3c\x9f\x88\x51\x3c\x98\xcc\xf9\x02\xa7\x4a\x69\x2f\x94\xf7\x14\x99\xc9\x27\xc0\xe5\x6e\xaa\xef\xc0\x46\xb8\x55\x58\x8a\x68\x0d\xc3\xe2\x76\x3e\xd0\xc4\xb6\xf5\x36\x3c\x2d\xb1\xb2\xc5\x1a\xf1\x03\x96\x88\xf8\x04\xa0\x9c\xd9\x2e\x88\xe7\xc7\xff\xc4\xb7\x30\x14\x02\x28\xfc\xbd\x36\xdd\xe3\x98\x0f\xdb\x11\xbe\xcb\x95\x6a\xd2\x94\xaa\xff\x2e\xaa\x21\x63\x2e\x36\x84\x17\x51\xd5\xec\x9c\x57\xd1\xcd\x89\xac\x27\x2b\xd8\x3c\xaf\xf1\x02\x04\x2a\xf0\x1b\x53\x47\x97\xd8\x09\x1c\x29\xdf\xae\x4c\x52\xd8\x94\x03\x59\x4b\x8f\x53\x3b\x9f\xae\xae\xd7\x87\x3f\x77\xb2\x26\x9f\x43\xdf\x4b\x80\x62\xfe\xd2\x08\x5b\xc8\xa2\x2c\x42\x71\x47\x9c\xe3\xad\xa4\x5a\x2a\xc4\x32\xcc\x47\x37\xa0\xa0\x70\x36\x60\x10\x97\x88\x4a\x1d\x48\x12\xd1\xc4\x9c\xa4\x01\x28\x00\xee\xf5\xbd\x29\x6d\x83\xa9\x11\xb8\x4d\xda\xfc\xcf\x7e\xab\xa8\x31\x4c\xea\xd3\x93\x45\xa4\x71\x6f\x38\xab\xe1\x76\x20\xfd\x70\xa9\xe5\xd2\x6a\x9a\x3b\x5b\x30\x96\x64\xd0\xf5\x40\xe3\x8d\x2c\xd1\xa8\xd6\x27\x6a\x4d\x8d\x12\xe1\xfb\x48\x94\x30\x7b\xa5\xcb\x80\x31\xe5\xa5\x5d\x31\xcd\xe7\x89\x96\x19\xb1\xb7\x31\xdd\x6d\x7f\x58\x39\x92\x35\x50\x42\x1c\xec\x65\x30\x62\x2f\x47\xcc\x47\x4a\xf3\x6c\xa4\xb3\xf2\x31\x4c\x18\x9f\x25\x11\x01\x96\x18\xe6\xf3\x1d\xec\xa4\xd8\x44\xcf\x22\x9d\xe0\x24\x2e\x0c\x5e\x13\x15\x88\xbf\xa7\x6a\xfd\x24\xcb\x1f\x94\x5b\x2d\x55\xdd\x24\xb0\xc9\x7a\xc0\x98\x10\x95\xc2\x28\x03\xb4\x29\x17\x2a\x6d\x99\xcc\x4c\x72\x19\x30\x67\x0a\x8e\xad\xe1\xdc\x1b\xc0\x05\x76\x5c\xb0\xdc\x9a\x92\xd4\xda\x8a\x13\xa9\xb4\x01\x96\x4f\x9c\x9c\xc5\x74\x7e\x80\x9d\x6a\x9d\xf2\xa9\xde\x60\x87\x51\x46\x96\x58\xda\x0f\xbe\x1e\x0d\xc9\x00\x58\xb9\x7a\x54\x65\x87\xd5\x13\x71\xef\x6a\x3e\x45\x4c\x84\x99\xf5\xfc\x6a\x1b\x80\x3e\xf5\xad\x4b\xd4\xcb\xeb\xf6\xb6\xbc\x07\x5d\x9c\xa2\xb2\x1e\x2f\x0a\x23\x89\x3e\x10\xe5\x34\xa4\x57\xa6\xc2\x44\xa5\x64\x04\xe3\xfd\x21\x67\xfc\xd8\xa9\xf2\x61\xe7\xe3\xc1\xb1\x79\x72\x62\xba\xa4\x28\xf9\x73\x07\xa1\xcc\x81\x01\x82\x6e\x91\x58\xee\x43\xc9\x27\x21\xa5\x89\xa6\xea\xa1\x2c\xcf\x18\xd4\xfd\xd2\x3a\x55\xac\x1a\xd5\x00\x62\x62\x3a\x23\x0c\xc4\x75\x97\x81\xc3\x6a\xc4\x9c\xe9\xa2\xa6\xf4\x31\xea\xb9\xa1\x6c\xa7\x30\x00\xdd\x7d\x05\x8b\x3e\x6a\x9d\x2d\x8f\xfc\xda\x1f\x19\x15\x8e\x60\x86\xa3\x6c\x86\x1d\x4f\xdd\x53\x4f\x51\x07\xce\x26\xf8\xfc\x53\x69\xaa\x33\x38\xcc\x22\x94\xed\xc0\x07\xfd\x99\x0d\xea\x5f\xfa\xdc\x36\x91\x43\x25\xed\x06\x0b\xd3\xfd\x3e\x91\xd7\x63\xaa\x4b\xad\xcc\x22\x2c\x0f\x8a\x11\xbd\x40\x9e\x91\x2a\xb3\xfc\x07\x37\xc8\xbc\x1c\xb1\x21\x9d\x45\x35\xb0\x47\x52\xaf\x09\x46\x46\x8c\xd7\x26\x8a\x1a\xd3\x5e\xf8\x9a\x38\x4e\xd4\xc8\xea\xe3\xb0\xa3\x92\x53\x30\x25\x19\x09\x54\x55\x27\xd1\xe7\xdf\xb5\xfe\x48\xf8\x6e\xd6\x57\xce\xa6\xa6\xfc\xa9\x01\x3d\xb6\x4a\x14\xe2\x56\x35\x36\xb6\x4b\xf0\x0a\x67\x4d\xcd\x5b\x28\xef\xc1\x3a\xac\xc7\x48\x3d\x45\xf9\x1a\xc7\x54\x4f\x20\xeb\x29\xcf\x99\x59\x1c\xd1\x99\x61\x1d\x15\xb8\x5b\x2c\x16\x02\x1d\xc7\xc8\xd6\x2f\x31\x84\x89\x65\x09\x5c\x1b\x18\xb3\x3b\x0b\x21\xde\x60\x5d\xa8\x74\x6a\xde\xd5\x89\xef\x82\x55\xd5\x12\xcf\xa1\x6a\x84\xcd\xfa\x5a\x4c\xa3\xc4\xf8\x2f\x39\xf0\x79\x1a\x1f\x39\x57\x21\xf0\x9e\x02\x6a\x5a\x05\x23\x13\x73\xff\xc6\x61\xa3\x50\xec\x30\x98\x5c\x8d\xc8\x1e\x31\x5b\x88\x0a\x4b\xf0\x1a\x04\x56\x3f\x8a\x51\x1c\x7a\x4a\x2b\x98\xf6\xc0\x3f\xbd\xfe\x6c\xdd\x80\x5b\x79\xaf\x4c\x74\x2f\xe0\x14\x8c\x8c\xb4\x39\xc1\x75\x26\x1d\x7a\xb0\x38\x9c\xc5\x6e\x04\xa4\x51\xd4\x5d\x63\x44\xca\x12\x44\xa1\x31\xb9\xbb\xbd\xf9\xf8\x97\xf7\x3f\x0a\x59\x3d\x68\xaf\xaa\xfc\xae\x4c\x0e\x34\xf4\x56\x75\x7f\x1f\x2a\x69\x1a\x08\x82\x97\x73\x15\xd6\x45\xb4\xfa\x53\x53\xd5\x79\x2d\x17\xc9\xf2\x25\x0f\x03\xfb\x13\xf1\xb6\xc2\xd8\x31\xb4\x87\x38\xc2\x8b\x97\x6a\xd8\x69\x5c\x78\x6f\xfb\x60\x4c\x90\xb8\x39\xeb\xbd\xa5\x34\xa4\x36\x61\x42\x57\x6c\x29\x2a\xfb\xf6\xab\x63\xb1\x52\x29\x03\x0b\xa5\x0d\x6d\x73\xb0\xcd\xcc\x07\x6b\x50\x4e\x51\x11\x36\x1b\x07\xde\xc2\x27\x54\x6b\x13\x3a\x67\xa8\xcc\x25\x55\xf8\x59\x57\x69\x43\x57\xc3\xa0\xcf\x21\xa6\x04\x70\x54\xbe\x49\x4d\x0f\x7c\xe7\xa2\x13\x86\xaf\x6c\xe0\x9a\xcc\x7b\x63\x57\x99\xea\xc7\x45\xb2\xb1\xbf\x19\x35\xb5\xe8\x4b\xa0\x90\x67\xc7\x8b\xeb\x84\x14\xb5\xa5\xad\x49\xf0\xa7\x8e\xd8\x86\xd3\x45\x33\x25\x93\xb2\xaa\x66\xb5\x6a\xc8\xd6\xc6\xfe\x6e\xea\x51\x76\xdc\x9e\x87\x85\x64\x4c\x11\xdf\x8f\x37\x12\xae\x56\x05\x6c\x8f\x0f\xf2\xb1\x28\x6d\x73\x54\xa9\x87\xa3\x59\x6d\xb3\xbb\x09\x0f\xa5\x09\xfa\xb0\xc5\x24\x21\xe3\x0f\xb1\xa2\xc9\x1f\x4a\x53\xd1\x5f\x0f\x6b\x7d\xaf\x0e\x71\x0c\x15\x30\x5b\xff\xbc\xfa\x29\xce\x9a\x12\x96\xbd\x20\xc7\x07\x5f\x5f\x61\x2a\xe5\x30\xb0\xc2\xe4\x6d\x16\xd1\x47\x80\x19\x27\x18\xa2\xf5\x98\x93\x4d\x77\xdb\xa6\x1d\x94\x66\xbd\x92\xeb\x94\x31\x9a\x8d\x0f\xe2\x3f\xde\xd3\x23\x11\x02\x52\x9c\x5c\x67\x82\x46\x55\xb7\xd7\xcf\xf8\xaa\xe1\x09\x7b\x38\x9b\x99\x92\xa6\x18\xa5\x69\xa6\x2b\xe9\x4c\x9e\x6c\x7d\x72\x7c\x7c\x9c\x3d\x8e\xcd\x06\x37\xde\xa0\x8c\xa3\xbf\x0c\x2b\x7b\x89\x94\xea\x3a\x76\x91\xa8\xd4\x63\x6a\xab\xcc\xd4\x9c\xd1\x30\xf5\x53\xe1\x74\x51\xcd\x4a\x2f\xbe\x0b\x0a\x26\x1a\xe5\x58\x62\x9d\x37\xd0\xcb\x2d\xf6\x41\x51\x15\x7e\x07\x16\x57\x3f\x3c\xb5\x59\x06\x6e\xa4\xa8\xcf\xb3\x8d\xdd\xce\x91\xb5\x53\xfa\xf7\xc9\x41\xb4\x33\x37\x0a\x95\xc9\x95\xdd\x50\xa5\x18\x2c\x24\xb6\x86\xc2\xfe\x0e\xf1\xc6\xc5\x68\xa6\x61\xf9\xa4\xb5\xf7\x30\x4f\xd7\x0e\x56\x1c\xf2\x5e\xcf\xa0\x3b\xf4\x18\x22\xce\x15\xc7\xc0\xe6\x88\x3e\x28\x2a\x5d\x3d\x3d\x00\x65\x72\x2b\x4f\x3b\x9e\xf5\x2d\x3c\xf7\x27\x9d\x9b\xd7\xc4\x61\xa9\xa9\xb5\xf4\x08\xc4\x56\x5b\xc8\x03\xac\x45\x92\x31\x46\xb2\x85\x81\x38\x4a\x74\x4c\x72\xb7\x77\xbc\x4b\x8f\x9b\x19\x8e\x68\x19\x53\xce\x4e\x4c\x05\xc8\x67\xe2\xd5\x8b\x11\x50\xc9\x7b\xbb\x10\x3f\x9c\xdf\x7e\x14\x18\x24\x5c\x73\x5b\x08\xd4\x27\x28\x0b\x36\x89\x34\x34\x5c\x0b\xf1\xf2\x7e\x86\x7b\x49\x2f\xf6\xdd\x36\xa8\xd9\x53\x47\xf5\xe0\x89\x7b\xb3\xf4\x30\xc3\xbb\x08\xf3\x6a\x11\x14\xdf\xb1\x2e\x41\xa2\xfb\x11\xd6\x52\xb3\x75\x46\x39\x4d\x60\xeb\x45\x59\x4e\x2d\x13\x70\x29\xc3\xe3\x11\x57\x86\xda\xcb\x5b\xa9\xeb\x6c\x41\x4f\xac\xe5\xf8\x7e\x26\xf6\x4f\x8e\x1f\x05\x8c\xd4\xc3\x71\x30\x58\x57\x36\x21\x1c\xb8\x1d\x13\x6e\x74\x2c\xc9\x6f\x7a\xcc\xd4\x05\x9f\x92\x15\xc6\xd8\x50\x9c\x7a\x6f\x93\x5f\x16\xa3\x5b\x44\x32\xcf\xb2\x2f\x9e\x71\xa3\xe2\xa0\x0f\x81\xc4\x6d\xbb\x06\xc6\x2e\x35\x98\xfb\x93\x6c\x96\xd8\xd7\x9b\xe7\x01\x04\x62\xf7\xa1\x96\x1a\x74\x73\x4b\xa0\x81\x2b\x00\x8e\x7b\x83\xd9\xd8\xf0\xec\x08\x13\xb5\x41\xb0\xb0\x14\x18\x03\x0a\x1a\x1d\xf4\x22\x5e\x27\xa0\xb0\x44\x20\x36\xf5\x27\xf7\x4f\xcc\xc9\xc5\x95\x95\x65\xd7\x74\x35\x5d\xca\xc6\x0d\xdd\x52\x00\x05\x03\xdb\xb1\x47\x75\x06\xea\x56\x40\x8f\x9b\xb3\x61\xe9\x99\x21\x3f\x3d\xf3\x18\xf5\xd8\x2a\xa7\xb1\xca\x26\x09\x18\xf4\x5e\x64\x8d\xb9\xe3\x0c\xc1\x22\xe3\xae\xed\xaa\x5e\x53\xf0\xdd\xe2\xf9\x1d\x04\x1d\x80\x27\x08\x19\x06\xb8\xc3\x3b\xfc\xba\xc5\xb2\xed\xc2\xb4\x99\x61\xd0\xcb\xab\x92\xdc\xee\xb1\xfc\x20\x0b\x8f\xe1\x67\x76\x23\x77\x7f\xa3\xde\x61\xbf\x67\x84\x54\x74\x36\xe0\x8d\x54\x17\xca\x7e\x18\x99\xfc\x90\x76\x2e\x4e\x29\x0c\x91\x8c\x4f\x3b\x17\xaf\x7f\x5d\xee\x3f\xaf\x77\x90\xfe\xdf\xd7\x34\x6e\xc0\x82\x45\xfd\x3b\x96\xc8\x29\xfc\x77\x7c\xc7\x61\x4e\xd8\xa9\x83\xba\x06\x59\x4f\xa5\x1c\x3d\x1e\xb3\xa6\xeb\xdc\x94\x0a\xfd\x53\x3e\xa8\x86\x76\x9f\x18\x2b\x5b\xec\x5e\xb9\xc0\x7d\xf4\xc3\xf0\x59\xd4\xa8\x78\xde\x8d\x04\xe8\xc4\x7b\x63\x1d\x24\x96\xc6\x62\xf3\x62\xee\xac\x61\x58\x32\xd4\xe3\x81\x29\x4a\x32\xfe\xe4\x15\x0c\xf2\xfc\x54\x50\x7f\x5c\x4c\xa5\x01\xe5\x27\xba\x54\x08\x30\xac\x05\xc4\x6b\xb5\x7c\x96\x54\xef\xbb\xf9\x5c\x97\x5a\x19\xe4\x81\x93\xe1\xd8\xe2\x38\x7a\xe0\x7d\xbc\x9f\x12\x2b\xf5\x3f\x66\xa9\x3f\x58\xf7\x4e\xf0\xe2\x71\xaf\x6b\x11\xd6\x2d\x66\xbd\xe1\xae\xf4\xd5\x64\x89\x65\xe4\x0c\x23\x33\x48\x46\xbf\x44\xc9\xe8\x6e\x60\xb6\x2f\x91\xeb\x71\x9d\x69\x3f\x8c\x59\xf4\x22\xd1\x6f\xc7\xe7\x29\x71\x23\x9b\x07\xdf\x98\xa6\x4f\xa6\x3c\x68\xc6\x26\xd1\xa6\x3c\x3e\x4e\xea\x74\x3f\x13\x6d\x32\x37\x9e\x46\x67\x03\x6f\xdf\xbe\x3f\x88\xde\x27\xdb\x2a\x34\xec\xc9\xea\x08\x4b\xb5\xe6\x3e\x14\xb1\xd8\xb1\x5e\xc7\xa6\x16\xe4\x9d\x47\x8b\x41\x63\x3e\x79\x99\x02\xa3\xad\xd3\x60\x85\x46\x7e\x35\xa7\xdb\xd9\xcc\x5a\x38\xce\x35\x96\xd9\x6d\xca\x3c\x1c\x47\x84\x52\x6b\x3a\xdf\x58\x1b\x96\xf5\x9a\xc2\xcf\x73\xd4\xb2\x25\x5e\xaa\x90\x67\xcc\xc5\x39\xc6\xd4\xeb\x8c\xf0\xb9\x48\x7d\x29\x97\xa0\xdf\xe7\xe9\x38\xa9\xef\x30\xe8\x05\xfc\xf1\xb4\x75\x4a\x35\x2d\x46\xe7\x61\xfd\xc3\x42\x82\x24\x72\xfa\xc3\x08\x34\x63\xbb\x40\x99\x61\x64\x6b\x63\xf0\x03\x7b\x32\x33\xb4\x9e\xe2\xc7\x7c\x57\x7d\x7f\x01\xc5\x13\xc7\x56\x1b\xf1\x61\xd6\xc6\xb0\x18\x7c\xc5\xe9\xfa\xeb\xe4\x97\xee\xf5\x9f\xca\x22\xb9\x36\x64\xb5\x66\x45\x0c\xd7\x37\xec\xfd\x49\x30\x11\xd7\x22\xf9\x30\xb3\x36\xf8\xe0\xa8\x3e\x9b\x24\x5b\x6f\xe3\xe4\x6a\x80\x97\xa1\x73\xbd\x24\xca\xf2\x19\x4d\x74\x2a\x1a\xb0\x23\xe3\x8d\x1b\xae\x2d\x73\x71\x57\xa4\xec\x4e\xb3\xd5\xb1\x4b\x7b\x71\x7a\x7c\x8c\x6b\xc5\x26\x65\x2f\xc5\x87\x37\x47\x9e\x1a\x92\x03\xcc\xf9\x41\x8a\x28\x9e\xe2\x55\xbc\x3a\xf8\xfe\x5c\x9d\x1e\xef\xd8\x92\x27\x76\x62\x40\x2f\xd9\x65\xe4\xe3\x78\xed\x78\x64\x50\x9c\x73\x86\x17\x9c\xd2\x86\xa5\x1b\x6e\xb1\xeb\x5c\xc9\x33\x6c\xec\xdb\x66\xe1\x7a\x64\x3b\x08\x53\xc4\x5d\xfc\xd2\x49\x60\x5f\x78\xcb\x4b\x9f\x57\xc0\x77\xe0\x7f\x05\x06\xbe\x1a\xc3\xd1\xc5\x35\xad\xca\xe9\xaf\xc1\xf4\x3b\xbb\x22\xb5\x62\xc3\x48\x8e\xe2\x6e\x25\x75\xe0\xcb\x78\x64\xb5\xd1\x0f\x23\xb2\x8e\x11\x3c\x9b\xb2\x17\x77\x0a\xbc\xdf\x76\x21\xf6\xab\x7a\x09\x86\xd4\x57\xcc\xe3\xd5\xcf\x94\xcf\x82\x95\x43\xa5\xdc\x9c\x0a\x18\xcd\x53\x73\x51\x6f\xac\xaf\x98\x8c\x2b\xc3\xf3\x09\xf0\xa7\xa7\x26\x38\xfd\xca\xf1\x37\x3a\x76\xe4\xf3\x0c\x9a\x4e\x7c\x29\xf2\xe4\xae\xd9\xb8\x43\xbf\xa2\x72\xb0\xe0\xd6\x42\x8a\x8b\xf3\x49\xbf\x59\xb1\x68\x9b\xda\x7f\xc6\xee\x2c\xe4\xe1\xc0\x22\x30\x0f\x66\xe3\xb0\x0b\x9b\x5d\x8d\x4a\xe9\xa7\x7d\xc7\xd0\x5d\xb8\xfe\x1a\x54\xb0\xb7\x68\x03\x0b\x7b\x62\x3f\xe6\x0b\x80\x94\xc2\x76\xb0\x30\x9c\x72\xe3\xc4\x1f\xb9\x8a\x67\xe0\x5a\xa2\x24\x5c\xca\xb3\x04\x7d\xbb\x77\x15\x51\x95\x16\x65\x78\xf4\x1e\xa1\x4d\x1f\xa4\xcb\x7c\xa0\xe4\x17\x3d\x18\x45\x08\x9f\xda\x8c\x57\x4c\x5d\xb9\xae\xcd\xaf\x50\x3f\x05\x40\xe8\x58\x34\xda\x97\xaa\xae\xd9\x70\xe9\x4f\xcc\xe8\xb3\x44\x1b\x13\x4f\xf3\x8b\x04\xe3\xe0\xf9\xb5\xac\xea\x91\xeb\x7a\x22\xf3\x4b\xd9\xed\x60\x39\xb8\xd8\xb0\xae\x51\x12\xdd\x58\x31\x24\xc7\x43\xf9\x02\xef\x4d\x8e\x98\x1b\xf7\x0e\x2e\xca\x64\xf4\xbe\x6b\x58\x8c\xc7\xa0\x0c\x62\xd7\xa1\x5f\x7c\x25\x5d\x95\x5a\x3c\x37\x1c\x3b\x04\x49\xc5\x3d\x4d\xb6\x7d\x6c\xec\x63\xe0\xf8\x10\x95\xd9\xdb\x07\xe5\xf0\xc6\xae\xac\xee\x72\xa5\x62\xb7\x43\x1f\x15\x3a\x24\x05\x6a\x31\x88\x17\x26\x70\x91\x21\x19\x7a\x7c\xa7\xd3\x21\x3c\xa9\x0e\x01\x47\x11\x5c\xd2\xed\x7f\x20\xed\xe9\x2c\xb9\x9c\x63\x4e\xef\x30\xaf\xbf\x77\xf7\x81\x8d\x1c\x5a\xea\x58\xe2\x03\x58\x1d\x55\xd6\xf6\x8f\xd4\x59\x0c\x8d\x73\x24\x1c\x1b\xc2\xe4\xf2\x87\x33\xe3\x51\x49\x9f\x62\xbc\x81\x51\x9e\x79\x88\x27\x7d\xfc\x27\xa7\x9b\x5e\xbc\xa5\xad\x2f\xfa\x7e\x1d\x20\x5d\xf8\x66\x54\xbe\x5c\x02\x4b\xd9\xe6\xc2\xd8\xa4\x45\x3b\x55\x2a\xfd\x40\xf6\x0a\x68\x63\xc9\xf5\x8f\xfa\x64\xa9\x5b\xbc\x65\x38\x79\x6b\x64\xe0\x32\xd2\x62\x57\x07\xd8\xe7\x48\xe7\xc7\xc3\x1d\x24\x40\x7c\x82\x9b\xf2\x5b\xc1\x40\xb6\x9d\xeb\xa5\x3c\x68\xac\xb4\xc2\x4d\x2a\xe7\x51\x31\x35\x69\xa9\x79\x36\xde\x68\xbc\x45\x0d\x04\x4c\x7f\x31\x2c\xa6\xe4\x71\x6d\x5a\x23\x1d\xd8\x62\x60\x84\x14\xac\x1d\xb1\x2c\x8f\x79\x6f\x98\x96\x1f\x19\x80\x8c\xfe\x4a\x4d\x37\x2d\x2e\x35\x70\xb1\x07\x5d\x86\xdc\xc3\xf7\x9a\xf2\x7b\x2a\xec\x2e\x36\xf5\x46\x87\x72\x29\x0e\x0f\x29\x5e\x13\xcb\x38\x77\x37\x4f\x03\xdb\xf1\x8a\xbf\x9c\xe0\x87\xec\x88\xe3\x51\x30\x43\x71\x65\xfb\xfb\x91\xcf\xf0\xaa\x61\x1d\x44\x50\xd4\x28\xb6\xd7\xf8\xb8\x8d\x14\x39\x95\xd1\x1c\x8d\x8a\x45\x6a\x4d\x06\x5c\xdd\x76\x7c\x97\x4e\x0a\x95\xaa\x68\x2d\xe1\x71\x3f\xa4\x80\x34\xaa\x39\xc3\x7e\xcc\x74\x7b\x57\xef\xc7\x76\xa8\xdb\x52\xf4\x9d\x6e\x6b\x4b\x05\xab\x38\x01\xa6\xe2\xd4\xd4\x95\x87\xef\xc6\xc1\x3b\xe1\x31\x17\x85\xaa\x86\xd6\x74\x9f\x1c\x16\xf8\x60\x0b\x74\x2c\xcb\x46\x03\x50\x88\x67\x99\x22\xf6\x0c\x0f\xd0\x33\x27\xcb\x7b\x5f\x3c\x13\x9b\x8e\xbe\xca\x0a\x1d\xf8\x7a\x11\x8e\x18\x2d\xa9\x0d\xad\xc8\xec\x42\x6b\xd2\xcd\xc9\x31\x73\x13\x25\x14\x0e\xfb\x2c\x36\xe4\x8e\xbd\x8f\x63\xe7\x33\x1c\x64\xa6\x84\xec\xb3\x85\x62\xf7\x09\xea\x2c\x7a\xfd\x56\xfc\x78\xf3\xbd\xb8\x78\x77\xfe\xf1\x2f\x57\xe2\xee\xdd\x95\x98\x7c\xbc\xbe\xbb\x78\x27\xce\xdf\xde\x5d\xdd\x8a\xcb\xf3\xbb\x73\x71\x3d\x11\xd7\x1f\x27\x57\xb7\x77\x57\x97\xe2\xfa\xe3\xdd\x0d\xbe\x76\xf1\xfe\xfb\xc9\xdd\xd5\x2d\x28\x99\x30\xc0\x87\xef\x27\x77\xe2\xf6\xfb\x8f\xe2\x5c\xbc\xfd\xfe\xfd\x7b\x71\x7b\xf5\xe9\xfc\xfa\x76\x2c\x26\xd7\x1f\x2f\x36\xc6\x7d\x7b\x75\x71\x37\x11\x3f\xbc\xbb\xba\xbd\x82\xd7\xde\x5f\x5f\x9c\x4f\x46\x7b\xe2\xfc\xf6\x4a\x7c\x7a\x7f\x7e\x71\x75\x59\x44\xc8\xe0\xb3\xdb\xf3\x8b\xef\xc4\x79\x7c\x11\x60\xa1\x97\xc4\xf5\x47\x86\x7a\xc2\xb0\xe2\xdb\xfc\xda\xbb\xf3\x89\x78\x73\x75\xf5\x11\xc6\xbd\xbc\xbc\xba\x14\x77\x37\x30\xc8\xf5\xc7\xbf\x8c\xf1\xbd\x8f\x37\x97\x57\x04\xf3\x9b\x2b\x71\x79\x75\x71\xf3\xe1\xc3\xf5\x64\x72\x7d\xf3\xf1\xea\x52\x9c\x7f\xbc\x14\xb7\x57\x6f\x6e\x6e\xee\x26\x77\xb7\xe7\x9f\x3e\x45\x80\x7e\xf9\xf2\x71\xc0\xf6\xa1\x98\xe0\x11\xa1\x13\xc1\xad\x08\xef\x9c\x92\xc1\x8b\x49\x6c\x3b\x44\x8e\x06\x89\x2c\xf8\x51\x37\xfd\xcd\x02\xd8\x58\x21\xf6\x9d\x87\x43\x42\xdf\x63\x98\x93\xda\xba\x60\x25\xb5\x67\x36\x1e\x89\x9a\x7c\x78\xd8\x9a\x5b\xb6\xc0\xd6\x9d\x96\x41\xb1\x5d\xda\x5f\x42\xd6\xd3\xa4\xa8\x54\x5b\xdb\x35\xb5\x43\x25\xb0\xff\x82\x97\x32\x69\xb3\xf8\xc4\x62\xe1\xad\x8e\xab\xe0\x45\x0c\xef\x7e\xc3\xb3\xb3\xb0\x87\x70\xba\xe8\xc0\x63\x6f\xad\x94\x22\x81\xdd\xea\x89\x21\x38\xea\x0a\xc7\xde\xf3\x0c\x8a\xa8\x6b\x51\x2f\x71\xaa\xe3\xc2\xce\x87\x14\x7e\xd7\xec\x31\xef\x83\x36\x30\x52\x55\x66\x5d\x49\xb9\x96\xcc\xb6\x72\x81\x87\x35\xd5\xfc\x91\x3e\xf0\xa0\x25\x0d\x41\x57\x4e\x91\xd8\xef\x87\x8b\xcc\x25\x1f\x10\x8b\xf6\xfd\x98\x33\x01\xe8\x16\x56\xea\x02\x29\x04\xc8\xb0\x7a\x26\xcb\xfb\xac\xac\xae\xd1\x8b\xd8\xae\x3a\x66\x67\x6d\x63\x90\x71\xbc\xfd\x80\x09\xe4\x53\xa4\x03\xca\x3e\x08\xca\x35\x31\x01\x01\x96\x9c\xf0\x26\x08\x71\x51\x28\x51\x3a\x8b\x10\x79\xcb\xd1\xcc\xee\xd2\xe6\xf3\x6b\x65\xa8\xae\xca\xd3\x01\x30\xe7\x43\x12\x12\x57\x17\xa7\x39\xbd\x90\xb7\x97\x5d\xb1\xb7\x6a\x81\x11\x98\xf7\x18\xeb\xa3\x7f\xf5\x5b\x7d\x1e\xaf\x3a\x81\x95\xfd\x1b\xb0\xb0\x5c\x87\x4b\xf8\x82\x09\xce\x3f\x5d\x93\x03\x8f\xc6\xa0\xcb\xa0\x85\x10\x01\x53\x03\xaa\x58\x92\xd6\x13\x4f\x5f\x61\xbc\x3d\x4b\xac\x5f\xa3\xd6\x7e\x30\x0c\x9e\x8d\x58\x73\x78\xfd\xc9\x73\x6a\x53\xde\xa5\x2e\xb5\x1d\x43\xb9\xc3\x7e\xc6\x58\xba\x49\xa3\x10\x6c\x19\xde\x3e\xc0\x63\xfa\x75\x80\xc2\xef\xbd\xf2\xb1\xda\x11\x67\xf3\x3b\xca\x37\x53\x8b\x45\x9c\xea\xd0\x65\xc8\x8b\xae\x88\x07\x64\x0d\x60\x1c\x74\xc3\x1c\x77\xcc\xa1\x01\x49\x9f\x1a\x58\x46\xbf\x29\xcd\x4a\xc3\x5c\x7f\x82\x99\x57\xaa\xae\x8b\x03\xcc\x7f\xa2\x35\xb2\x86\x60\xdb\xe8\x64\xca\x6a\xf2\xd3\xd5\x85\x9b\xc5\xfa\x51\xea\xa4\x55\x81\x71\x81\x09\xf4\x00\xe0\x5b\x4a\xde\x71\xf2\x30\xa7\x01\x76\x07\x6c\xb7\xfc\x5a\x21\xc3\x88\x10\xa7\x6d\x21\x7d\x8a\x49\x1a\x9d\x57\x9a\xda\x44\xc8\x3c\xa3\xf7\x80\xd0\x7f\x2b\xcb\xfb\x6b\xc3\xd9\xe8\xbf\xe9\x69\x22\xfd\x9f\xfd\xc3\x79\x4a\x2e\x40\xfb\xdc\x51\x4e\xda\xa9\xa9\x84\x2d\x83\x42\xa1\x80\xb9\x1c\xc0\x72\xbe\xf1\xe2\xfa\x13\x8f\x12\x4b\x23\x60\x80\x78\x97\x1d\x36\x65\x40\x3b\x0e\x69\x6e\x29\xdb\x56\x91\x69\xdf\x60\x68\x09\xb8\x2a\x7d\xde\x9f\x38\x58\xfb\x03\x59\x9f\x31\x58\xae\x59\x5f\x48\xec\xc9\xc4\x4b\xd3\x29\x53\x5c\x88\xd4\xe4\x52\x8a\xb2\xf3\xc1\x36\x82\x50\xc4\xba\x1c\xdf\x60\x92\xae\xc1\x8e\x0a\xb1\x6f\xb5\xd3\x1c\x9c\xf8\x91\x23\x81\x54\x69\x38\x1c\x65\xb6\xde\xf4\x7b\xa7\xa4\xcc\xad\x4c\xcc\x90\x74\xc2\x88\xe9\x98\x5c\x9d\x21\x7a\x86\x89\xa9\xac\x90\x49\xef\x5b\x19\x96\xc5\x68\x43\x33\x3d\x1b\x08\x57\xea\x5c\x6f\x82\xb3\x35\x25\x38\xda\x79\x40\xdf\x63\xba\x50\x21\xc4\x08\x66\x7f\xab\x4a\x8c\x8d\xa2\x62\xed\x4b\xba\x97\xa3\x94\x75\xd9\x51\x90\x75\x54\xad\x8d\x6c\x74\xc9\x33\x3e\x75\x05\xf1\x09\x9a\xc0\xbb\x67\x77\x0a\x53\x0a\xb1\x95\x53\x9c\x24\x2f\xc4\x96\x62\x26\xab\xa8\xd9\x63\x8d\x02\xa6\x5e\xae\xc1\x7e\x01\xab\x70\x13\x04\x1c\x6f\x0b\x02\x36\x24\xf6\xc0\x06\x82\xf9\xf0\xda\x9a\xe8\x5c\xff\x9b\x72\x96\x9b\x77\xa1\x4b\x0a\x34\x84\x29\x58\xcc\x94\xb7\xfb\x27\x71\x52\x1c\xe7\x25\x07\x08\xdb\x68\x4f\x7c\xc3\x4d\x0a\xbf\xc1\x48\x7b\xd4\x96\x41\x23\xb5\x9c\x67\x9a\x62\x24\x29\x00\xb4\x71\x45\x12\x9b\x6c\x33\x59\x19\x22\xf3\x18\x8e\xe5\x14\x77\xc4\x18\xe5\xa3\x82\x69\xbb\xb2\x8e\x8b\x57\x60\x6a\x2e\x42\x22\xdb\xc1\xd2\xc5\x4c\xbd\xaf\x5e\x30\x62\xa2\xc2\x81\x23\x52\xdd\xc7\x66\xa2\x8a\xc5\x0a\xe5\xd0\x37\x0e\x02\x33\xe7\x91\x3b\x54\xe3\x89\x11\x95\xed\x66\xb5\x62\x8a\xcc\x72\x34\x31\xcb\x19\x38\x83\x5c\x90\x02\x03\xac\x57\xe6\x75\x18\xc7\xc5\x29\xdb\x83\x79\x2e\xd6\xa6\x0f\x8a\x01\xe3\xfa\xdd\xd0\x83\x4d\x0d\x25\xd1\x11\x10\xaf\x43\xc8\xd7\xbe\x92\x5e\x9c\x1e\xff\x53\xc2\x0c\xdf\xa6\x8b\xc1\x2b\x1f\x8a\x4d\xea\x60\x44\x6f\x74\xd1\x1b\x61\xde\x1a\x39\x5a\xe2\x7d\xe0\xee\xcb\x0d\xbb\x5b\xfa\x74\x12\xbf\x1c\x1c\xdc\x38\x1e\x90\x80\x6d\xb2\x12\xe1\xcc\x57\x22\xcb\x12\x9d\x20\x8b\x14\xc3\xa4\xe2\xf0\x92\x6f\x20\xed\x03\x01\x9c\x94\x86\xbd\x2c\x41\x9a\x1e\x06\x65\xa4\x29\xb1\xdb\x19\x85\x31\x59\xd5\xc8\xd2\x05\xf9\x3e\xee\xd4\x93\x3d\x15\xc1\xf2\x24\xd4\x80\x1f\xbd\xb5\xf1\xca\xd4\x74\xe5\x07\x81\x8a\x22\x80\xc2\x0c\x68\x2f\x51\x01\x1d\x39\xc2\xb7\xf3\x4f\x0b\x0c\x0e\xee\xa8\xe8\x4f\xa8\x2d\x3e\xda\x49\x8f\x66\xf1\xd1\x46\x2c\xd1\xc5\xf7\xf7\xa0\x0e\xd4\xdc\x8f\xee\xf3\x03\xdd\x82\x65\x7a\x6b\x67\xda\xe4\x03\xe2\xaf\xc2\xc1\xcf\x44\x83\x5b\x39\xc3\xb0\x9d\x08\x79\xc4\x5a\xbc\x97\x99\x9a\x35\x63\xa3\x20\x89\xba\xfc\x16\x5d\x4c\x63\x2d\x6c\x4f\x29\xda\x8b\x79\xe7\xf0\x4c\x11\xe3\x27\x4f\xcf\x7a\xe7\xe7\xa9\xa8\x1d\xa4\xad\x2f\x9d\x9e\xf5\x3d\x00\xb6\xde\x7e\xa2\x37\xc2\x4e\x4c\xa2\xb7\x28\xc1\x14\x3b\x3a\x62\x19\xc8\xa0\x86\x31\xac\x5b\x2a\x6a\x49\x1f\xee\x89\xe1\x86\xbc\x93\x98\x37\xde\xb7\x3a\xea\xd1\x4c\xda\x44\x0c\x86\x4c\xa9\x2b\xea\xe1\x21\x22\x64\xe3\x57\xbd\x99\xe0\x9e\xee\x9e\x7b\xea\x2a\xbf\xb4\x3f\xad\x8a\xe5\x66\x98\x7a\x1a\xef\x1b\xc6\xd6\xb7\x4f\x7d\x8c\xe7\x92\x66\x06\x75\x15\x37\xb2\x12\x5d\x4b\x8c\xe3\xc9\x29\x39\x6d\x21\x4d\x8d\xd9\x3c\xec\x69\x2e\x9e\xfa\xea\x2e\x2b\x35\x13\xaf\x8f\x45\xac\xe8\xeb\x6f\x21\x48\xab\x7e\x6a\x88\xcd\xae\xd3\xe2\x9f\xb7\x2f\x39\x61\xd5\x99\xfd\xc6\xd3\x95\xc2\xc6\x3e\x87\x5b\xbf\xa4\xac\x57\x59\x53\xe6\x02\x39\x75\xe6\xfd\xc5\xda\x9b\x7f\x80\xe3\xbb\xbe\x3c\x24\x7a\xa6\xd3\x25\x19\x27\x3c\x35\x4d\xe0\x61\xce\x1f\xf8\xaf\x80\xdc\xc1\x6c\x9b\x4d\x00\x4f\x04\x19\xaa\x5b\x73\xf3\xa4\xd8\xdf\x6c\xb0\x00\x3a\x4f\xbc\x18\x8c\xd4\xd5\xe8\xf4\xd7\x06\x85\xe9\x6a\x6b\x24\x2c\xce\x18\x54\x64\x70\xf5\x54\x8c\x6e\xa2\x8a\x89\xf9\x9c\xc9\xad\x39\xfc\xd3\x53\xf4\x78\x78\x3a\xb2\x53\xcd\xe5\x41\x4f\x1e\x61\x56\xa0\x87\x64\x7f\x26\x5e\x1f\x47\x9d\x34\x5f\xe3\x99\x78\xc9\xaa\x26\xe1\x31\xdd\xbb\xf0\x1d\x27\xf3\x9e\x9c\x89\x93\xcd\xdf\x4e\x39\xa5\x6a\x17\x13\x82\x3d\x39\x37\x42\x57\xa0\xec\xce\x35\xe6\x85\xf1\x3a\xb8\x87\x49\x52\xed\xd2\xe5\x64\xe4\xd7\xef\x99\x6d\x21\x2e\x62\x89\x04\x65\x72\x83\xe1\x87\xf9\x0d\xd9\xd5\x37\x31\xdb\xb8\x78\x02\x90\xb3\xf4\x46\x1e\x90\xe8\xcb\x1f\x51\x4e\x1c\xd2\x3d\xd5\x79\x4f\x8b\xe8\x44\x66\xd5\x98\xf6\xf1\xee\xfd\x44\x3c\x9c\x8c\xc5\xed\xe4\x1c\x1b\xcb\x1d\xce\x34\x5f\x46\xb6\x4f\x2c\x45\x37\xe4\xef\x7e\x50\x29\x42\x80\x6e\xdd\x94\x34\x4b\xbd\x02\xed\xca\xe0\x67\x07\x30\xe2\xf4\x76\x72\x3e\xfd\xe1\xfa\xee\xdd\xf4\xfc\x6a\x32\x3d\x39\x7d\x3d\xbd\x78\x73\x31\x9d\xbc\x3b\x8f\xb6\x6f\xa9\xdb\x25\xf2\x41\xdf\x69\xb6\xe3\x87\x2d\x72\xc6\x98\x1a\x98\xe2\x28\x98\x5d\xdb\xb7\xc6\x60\xb5\x9d\xfc\x88\x7c\x79\x41\x8c\xfc\x03\xd6\xbe\x67\xa5\xed\xf2\xdd\xd5\xd1\xd5\xc5\xe5\xbb\x2b\x9e\x10\x7b\xac\x45\x0e\xa4\x8d\x78\x7b\xfd\x69\x22\x4e\x5e\x1c\x13\x03\xd2\xd8\x78\xcd\x56\xd9\x15\x68\x1f\x6d\xb4\x2c\xf2\xd9\xfb\xde\xbd\xa9\x6b\x1d\xf7\xb5\x69\x6c\x43\x0d\x8f\xb1\xf0\xbf\xbf\x31\x36\x15\x8e\xe4\xdf\x9e\x01\xdf\x18\x0b\x63\x8d\x1a\x8b\xaa\x1c\xb3\x27\x8a\x9b\xe6\x52\x49\x42\x55\xf6\x4e\x12\x3a\xf8\x0c\x08\x49\x16\x0e\x68\xe7\x31\x8e\xcb\x0b\x3f\x18\x01\x6d\xca\xaf\x1c\x03\x9d\xc1\xa9\xf0\xa9\x95\xde\xaf\xac\xab\x7c\x4a\x37\xa1\x9a\x84\xb8\x16\x8c\x0d\x90\x81\x18\xb6\x5f\x47\xa7\x20\x13\x4b\x7f\x6f\x1f\x90\x4a\x00\xc5\x19\xdd\x24\xae\xf3\x01\xff\x59\x08\x41\xb6\x3a\x5d\x68\x82\xc3\xdb\xfc\x73\x9e\x7a\xae\x6b\x6a\x4a\x85\xe9\xb3\x9c\x57\x5d\xd9\x95\xc1\x96\xd0\xd6\xc9\xb2\x56\x98\x5a\xfd\x93\x7c\x90\x5e\x1d\xbd\x3a\xaa\x6c\xe9\x8f\x82\x2a\x97\xc6\x06\xe5\x8f\x16\x9d\xae\x94\x3f\x8a\x95\xfa\x47\x3f\x79\xaf\x8e\xbe\x9d\x4c\xae\x6e\xd5\xfc\x2f\xf0\xac\x58\x86\xa6\xde\xbb\x40\xb3\xe5\x3b\x06\x76\xb4\x37\xe2\xb2\xbb\xed\x9e\x39\x74\xc9\x47\x5f\xc8\xd2\xbf\x71\x86\x3b\x8c\x8f\xe3\xaa\xcf\xd0\x0f\x76\x54\xc4\x7f\x0f\x1e\x4e\x23\x02\xcf\xfa\x6d\xc3\x17\x7a\x34\xc5\xef\xfb\x5f\x36\x5e\x78\x72\x8c\x3d\xf1\x01\xb1\x5e\x3d\x48\xbc\x10\x2b\x25\xf3\xa1\x42\x14\x2f\x7e\x69\x9d\x0d\xb6\xb4\xf5\x19\x1c\x66\xfe\x4d\xd6\x0b\xeb\x74\x58\x36\x67\x62\xd2\x99\x7f\x7d\x79\xfc\x07\x7e\x40\x13\x52\x21\xe2\xb7\xdf\xc5\xd7\xe9\xc0\x4d\xf1\x7c\xfb\x33\xf1\xdf\x3e\xc7\x15\xc6\x5b\x0f\x4f\x5f\xbe\x1a\x3c\xbc\x7c\x77\xf5\xf9\xaf\xb7\x5e\xd8\x1c\x01\xd9\xc0\xe7\xc7\xd8\xf1\x4a\x36\xca\x7f\xe7\x85\xf1\x0d\xc1\x53\xee\x9e\x04\x6c\x2b\x8b\x1e\x6e\x17\xa3\xd3\x7b\x47\x5c\x0b\xd0\x93\x45\x31\x7a\xb2\xff\x12\x6d\x03\xb3\x96\x38\x38\xcd\x7e\x3d\xef\x59\x8e\xa9\x7a\xbd\xa0\x2f\xb0\xc7\x22\xa6\xbe\xe9\x26\x66\x89\x99\xbc\x09\x67\xdf\x50\x25\x93\xe3\x74\xc1\x4c\x1c\x2e\x9f\xf3\xef\xa3\xd9\xcf\xe2\x8b\x5e\x40\x9b\x0f\x28\x77\x9b\x1d\xa4\x61\x91\x6f\x6f\x0f\x84\x2a\xa0\xeb\xe2\x48\xbf\x78\x40\xf6\xfe\xdf\x11\xf9\xc7\x1e\x91\x41\x2d\x5f\x76\x4d\x56\xef\x8b\x4a\xf7\x7c\x6c\x88\x1d\x8a\x88\xe8\x98\xde\xcd\x97\x75\x71\x6a\xdc\x4c\x9d\x09\x74\x59\x89\x43\x4a\x19\xe5\x8f\xb5\xcf\x5e\xce\x55\xce\xaa\xc4\x4b\x90\x36\x27\xe9\x7b\x72\x65\x01\xd0\xa7\x47\x01\xbe\x2d\x0e\xc1\x04\x8f\xfd\x41\x73\xd0\x76\x2e\x14\x65\xfa\x6e\xb5\x2c\x94\x2d\xe6\x1c\xd4\x72\xdd\x57\x93\x1e\x82\x80\xdf\x34\xe6\x2f\x53\x08\x2d\x36\x28\x71\xca\x63\x76\x59\xba\x8e\x01\xeb\xa0\xe7\x6a\xa5\xdc\x41\x0a\x46\xb7\xb2\xbc\x57\x48\xa7\xd4\x5d\xd9\x84\x31\x6a\x90\x9c\x99\x99\xee\x05\x4f\xde\x06\xec\x1f\xcc\x74\x2c\x74\xf0\xaa\x9e\x8f\xa3\x26\x53\x5a\xba\x82\xaa\x2f\x66\x18\xed\x71\xe7\xe3\x75\x4c\x53\xa7\x9b\xbb\x31\x85\x0a\x63\x04\x59\xec\x8c\xab\x12\xc1\xa4\x4a\x99\x6f\x19\x02\xf2\x16\x49\x77\xef\x71\x88\x7e\x6f\x82\xc3\x52\xbb\x75\xab\x58\x85\x60\x1b\xa3\xb6\x8b\x05\xd7\xda\x71\x2a\xad\xd4\x2e\x35\x0b\x1f\xe1\x67\xf0\xd5\xf4\xe7\x4e\xb9\xf5\x34\x84\xfa\x4c\xbc\x7e\xf5\xe2\xf8\x38\x7b\xc4\xce\x46\x7c\xf6\xea\xf8\xc5\x6b\xae\x1f\xba\x10\x9f\x64\xe7\xe3\xf5\xda\xd1\x4f\xb9\x28\x77\x94\x5d\x34\x7d\x1f\x14\x00\x88\x74\x3f\x2c\x2b\xc1\xee\xd8\x4f\xd4\x62\xf5\xb6\x02\x3a\x91\xf1\x52\x29\x2e\xcb\xcb\xf2\x19\x99\xc5\xb1\x0e\xf9\x26\xbb\xde\xb5\x77\x2f\xe1\x15\x0b\x4f\x00\x7c\x7a\x7c\x2c\x1a\x6c\xe0\x7d\xfd\xf1\xed\x0d\x03\xf4\xc4\x2a\x38\x39\x0c\xb4\xe5\xcb\xb7\x5e\xec\x83\x56\x9f\x62\x9b\x29\x2b\xe2\x80\x42\x9e\xdb\x37\xce\x02\x9d\x9e\x0f\x2f\xf5\x17\xcf\x8b\x63\x91\xdd\xb7\x04\xbf\xce\xec\x63\x9f\x9f\x4c\x3e\x7c\x0a\x11\xb5\x4e\x3d\x60\xe3\x3e\xaa\x37\x24\xa5\x5e\x3d\xe8\x5a\x94\xa8\x81\x93\x94\x9b\x02\x54\x53\x86\x6a\xda\xe7\x6a\xf4\xe4\x43\xe7\xcc\x0b\x5f\x3a\x8d\x02\x8e\x56\xf3\xad\x7c\x90\x13\xfc\x09\x7f\xc0\xce\x6e\xf0\x1b\x3d\xa6\xbb\xb2\xb0\x21\x1c\x4b\xd3\x31\xd0\xf4\x67\xe7\x8c\xb2\xa6\xe8\x0f\x77\x56\xfe\xba\xd1\xa1\xb9\xf3\x8a\x66\x42\x77\xd7\xb3\x5a\x9a\x45\x27\x17\x4a\xa0\x3a\x8a\x60\xe1\x75\xb5\xd8\xf2\x80\xec\x8b\x6f\x27\xb7\x87\xa7\xa7\xcf\x63\xcc\xc3\xa5\xee\x79\x3c\xfe\x92\x5c\x44\xd4\x4b\xeb\xcb\xa0\x45\x1c\x25\x4c\x46\x04\xfd\x32\x4a\xf3\xd4\xb9\xd8\x8b\xe3\x5e\x39\xa3\x6a\xcc\x2c\xa2\x4b\xfa\x32\x07\x62\xdf\x5d\x19\x3d\x19\x2f\x8b\x57\x8d\xe7\xab\xac\x56\x0a\x2f\xca\x02\xe5\x27\x71\xb7\xf7\xf0\xeb\xb0\x3c\x29\xef\xfa\x91\xb7\xda\x40\x1f\x7c\x00\xf3\x5d\xb9\xc4\x7c\x60\xf6\x99\x0a\x7c\x99\x05\x1f\x9d\x71\x6c\xfc\x09\x36\xa5\x6d\x54\xec\x49\x83\x8e\x41\x65\x1e\xb4\xb3\x86\xe2\xc3\x8d\x5c\x0b\x6c\x5e\x21\x8c\x5a\x90\x5d\x3b\x28\x16\xa2\x8a\x0b\xe4\x91\x68\x7c\x26\x48\xd9\x6c\x46\x9f\x3f\x5f\x3d\xa7\xe3\x1d\x68\xe9\x54\x90\xa3\x72\xed\x49\x38\xc8\xda\x8b\x6f\xf0\x0e\x72\xa7\xfc\x37\x22\x58\x5b\xb3\xbf\xcb\xcc\xb5\x6b\xf2\x5b\xd4\xbe\x49\x85\x35\xd4\x81\x0c\xef\xe8\x1d\xd1\x6d\xb9\x1e\xf3\xb4\x5c\x0a\xb2\x60\x7d\x4a\x46\xfb\x51\x83\x8c\x19\xe7\x32\x1c\x3a\xe5\x83\xd8\xe7\x9b\x58\x0e\x0a\x71\x99\xb8\x2b\xd8\xd5\x91\xc8\x52\x4a\x67\x5b\x77\xc8\xca\x34\x57\x90\xe4\x3e\x2a\x6e\x02\x49\xad\xf0\xa5\xf8\xf6\xe2\xea\xd0\x87\x75\xdd\xdb\x70\x85\x38\x8f\x5e\xf0\x64\xd6\x61\x59\x16\xf0\xbd\xd4\x5d\x18\x1e\xf5\x83\x53\xc2\x10\x82\x54\x46\xd7\x2d\xfc\xfe\xec\x5e\xad\xa7\xd8\x76\xee\x59\xaa\x76\x37\xf5\x1a\xa1\xee\x5b\x11\xc5\x5a\xe9\xac\xbf\x3c\xa6\xe5\x05\x09\xa4\xfc\x47\x64\x2e\x3a\xf6\xf0\x51\x15\xce\xcd\xaa\x04\xdd\x57\x8f\x9d\x77\x88\x13\xfd\xee\x00\x86\xe3\x02\xc9\x81\x59\x3a\x98\x0a\x50\xa9\xfa\x99\x64\xf4\xd4\xee\x63\x42\x94\xa9\xe2\x3d\xe7\x7c\x2b\x3f\xc0\xeb\x2c\x5d\x86\xca\x3d\x44\xae\xa9\xd9\x4d\x70\xd6\x2c\x38\x9c\xd6\x34\xca\x70\xb2\x66\x34\x5e\x29\xf6\x49\xe9\x8d\xc4\xb1\x2e\x60\x52\xbb\x70\xb2\x5d\xae\xc5\xd5\x63\x50\x06\x35\xaa\xfd\x6f\x2f\xae\x0e\xb0\x79\x45\x6c\x26\x31\x09\x0e\x5b\x1f\x88\x6f\x3b\xa7\x7d\xa5\x29\xd1\xe5\x13\x46\x34\xc4\x5b\xcd\xb5\x20\x44\x74\x0f\xca\xf9\xcc\x93\xf2\xed\xe5\x77\x58\xa1\x1c\x9b\xaf\xd4\xda\xdc\x9f\x89\xac\x5e\x39\x33\xa9\xd1\x88\x26\x95\x03\xcd\xeb\x68\x63\xc7\x15\xf8\xa3\x9f\x4a\xf5\xfa\x30\xfe\xf3\xf0\xf4\xe4\xf9\xf3\x93\x57\xaf\xd0\xa0\xa6\xb4\xae\xe4\x03\x1b\xd3\xe6\x62\x00\xc9\xc6\x00\x24\x95\x0f\xa0\xf4\x1f\x5c\xc1\xca\x09\xca\xd2\xf8\x56\x26\x1d\x2e\x33\xa8\xc6\x42\xd6\xd4\x4c\x34\xde\x03\xc2\x95\x33\xec\xec\x99\x77\xa1\x43\xca\x8c\xe2\xca\x29\x6c\x4d\xec\xcf\xfa\x7b\x76\xc6\x62\xa9\x4d\xf0\xa3\x6c\x1a\xbc\x93\xfc\x6b\x8c\xb4\x72\xd9\x99\xfb\x29\x75\xa1\x88\xe5\xa7\xf8\x3b\xaa\xfb\x67\xe2\xfc\x6a\x72\x74\xf1\xe6\xe2\xe8\xd3\x77\x17\x93\x97\x9f\x64\x55\xc5\x4b\x4a\x13\xe9\x9f\x89\xa0\xf0\x6a\x8e\xb3\x93\x78\xa1\xea\x9b\x0b\x71\xfd\x57\x6e\x6d\x81\x88\x38\xbf\x9a\x60\xaa\x44\xbc\x1b\xe0\xe4\x95\xc0\x4e\x19\x31\xd7\x2e\x5e\x51\x1c\x36\xae\x67\x3e\xe0\x11\xf5\x03\x83\x88\x65\x52\x71\xfa\x74\x03\xac\xe0\xcb\x44\x87\xf7\x9c\xee\x8e\x8d\xb0\x0f\xa5\xf8\xf6\xbb\xc9\x77\x6a\x3d\xb8\x26\x55\x0c\x2f\x42\x15\x83\x2b\x4a\x3f\x6b\x59\xc6\x3f\xbf\x68\x61\xc6\x3f\x03\x1b\xeb\xe2\x8a\xad\xac\x6c\x98\x9d\x23\x8c\xfe\x77\x00\x00\x00\xff\xff\xd6\x35\xde\x80\x54\xb7\x00\x00") + +func examplesStorageCassandraImageFilesCassandraYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraImageFilesCassandraYaml, + "examples/storage/cassandra/image/files/cassandra.yaml", + ) +} + +func examplesStorageCassandraImageFilesCassandraYaml() (*asset, error) { + bytes, err := examplesStorageCassandraImageFilesCassandraYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/image/files/cassandra.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraImageFilesJvmOptions = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x5a\x6d\x73\xdb\x38\x92\xfe\xae\x5f\xd1\x55\xaa\xa9\x58\x3b\x7a\xf5\xd8\x1e\xc7\x75\xda\x2b\x47\x76\x34\x99\xb3\x62\x9d\xe5\xec\x64\x3f\xa9\x20\xb2\x49\x22\x06\x01\x2e\x00\x4a\xd6\xd4\xfd\xf8\xab\x6e\x90\x14\x2d\x3b\xd9\xdd\xaa\xcd\x07\x8f\x4d\x02\x8d\x7e\x79\xba\xfb\x69\x70\xba\xff\xb9\x7f\x9d\x2e\xfc\xe8\xdf\xb7\x6d\x3e\x34\x85\x97\x46\xbb\x1f\xae\xa3\x7f\xff\x4c\xd6\xbf\xf3\x8f\x64\x0d\x40\x28\x05\x89\x12\xa9\x83\x18\x13\xa9\x31\x86\x0c\x2d\xc2\x4e\x2a\x05\x1b\x84\xd2\x61\x0c\x9b\x3d\x44\xc2\x39\xa1\x63\x2b\xc0\x1b\x70\x5e\x58\x5f\x16\xe0\x33\x84\xdf\xff\xb6\x68\x64\x19\x8d\x2c\x0b\x5c\x66\x4a\x15\xd3\x7e\x57\x60\x24\x13\x89\x31\x14\x68\x41\x49\x8d\xff\xa2\x5e\xb4\xd4\x81\xcf\x84\x87\xd8\x80\x36\x3e\x9c\x0a\x3b\xe9\x33\x78\x37\x78\xd7\x68\x28\x53\x6d\x2c\xc6\x3f\x92\x65\xb4\xda\xd3\x76\x2f\xa3\xca\x56\x61\x11\x44\x14\x61\xe1\x31\x86\x13\x6d\x60\x2b\xac\x14\x1b\x85\x0e\x8c\x85\x42\x58\x91\xa3\x47\xeb\x7a\xaf\x64\xc5\x7b\x2d\xf2\x46\x4e\xad\x84\x28\x0a\xd4\x31\xc6\xe4\x1d\x9f\xa1\x43\x30\xfa\xe0\xb3\x01\xea\xed\x2b\xbd\xfe\x83\xf8\xfa\x8e\xb0\x4e\x17\x56\x8f\xd7\x0f\x8f\x5f\x96\xb0\xbc\x7e\xb8\x5e\xdc\x3e\xde\x3e\xac\xbe\x7b\x74\xa7\xd3\x85\x2f\x3a\x32\x79\x8e\xda\x83\xd0\x7b\x30\x09\x47\x38\x31\x4a\x99\x9d\xd4\x29\x14\xd6\x14\x68\xbd\xa4\xc0\x18\x40\x4d\x0e\xab\x23\x1c\x35\xa8\x38\x78\x8f\x44\x7e\xd2\x20\x20\x2f\x95\x97\x03\xa9\x9d\x17\x3a\x42\x88\xb1\x50\x66\x4f\xe7\xf4\xc3\xab\x42\x21\xcc\x1a\x84\xd5\xeb\x2a\xf7\x4a\x1d\x23\x7b\x57\x7b\xb5\x07\xe1\x5c\x99\x63\x00\x86\x50\xaa\xd3\x85\xd9\xf2\x0b\x69\x16\xa1\x73\xc6\x56\xa1\xdd\x0a\xa9\x58\x3b\x6f\x40\xfa\x21\x3c\x66\xd2\x81\x43\xef\xc9\x0c\x41\xf6\x38\xd8\x9b\x92\xc1\xcc\xfa\xef\x41\x80\xcb\x85\x52\x68\x69\x1d\xd9\x7e\x90\xd9\xe9\x82\xd0\x8c\xe0\x4c\x14\x0e\x32\xb1\x45\x10\x49\x22\xb5\xf4\xfb\x61\xa7\x3b\xb8\x69\x22\x3d\x6c\x4e\x5e\x1f\xb6\x4f\x75\x99\x6f\xd0\xae\x4d\xd2\x7a\x48\xbe\x79\xcc\x10\x62\x69\x31\xf2\xc6\xee\x41\x99\x48\x50\x15\xa8\xfd\x7e\x10\xba\x17\xb9\x82\x44\x2a\x3c\x3a\x2c\x32\x3a\x91\xe9\xb4\x11\x41\x32\x57\xe8\x1d\x6f\x27\xed\xa4\x50\x14\x0e\x2f\x49\x2e\x5a\xf0\xe6\x09\x35\x24\xc6\x82\x00\x6d\x62\x0c\xf1\x95\xd6\x79\xf0\x32\x0f\x7f\xf2\x73\xf2\x16\x85\x13\xe3\xa3\x23\x2b\xa9\x6b\x96\x34\xe5\x9f\xd5\xa9\xe4\xcb\x44\x28\x87\x4d\x85\x68\x85\xd4\xe8\xfa\xc4\x4d\xe9\x39\x9b\xd9\x89\xcd\x79\xdf\x8c\xd4\xc1\x68\x55\x3a\x8f\xf6\xe8\x54\x7a\xbd\xb6\x52\xa7\x53\x6f\x4b\xfc\x3f\x3e\xe6\xad\x63\x23\x85\xc2\x72\x49\x4b\x8d\x73\xb2\xe0\xa4\x47\x36\xb8\x39\xca\x68\xb0\xc8\xfa\x0d\xe1\x8b\x43\xd8\x65\xa8\x19\x0b\xac\x51\x94\x09\x9d\x62\xcc\x4b\x3b\x5d\x90\x3a\x31\x36\x0f\x61\x91\xfa\x38\x24\x27\xae\x8c\x32\x10\x0e\x94\x74\x1e\xf5\x5a\xc4\xb1\x45\xe7\x7a\x47\xda\x2b\x23\x62\xd6\x7e\xcd\xea\x1c\xd9\x70\x1b\xd2\xa8\x50\x65\x9a\xf2\x6f\x39\x7a\x2b\x23\x07\x16\x0b\x63\xc9\x17\xb0\x42\x84\xe5\x77\xde\x13\xa0\xa5\x6e\xb9\xfa\x74\x38\x1e\x9e\x1e\x69\x50\x6d\x79\xa8\x24\xce\x18\x37\x1f\xa5\xc2\x29\xa1\xaa\xf1\x64\x86\x40\x0b\xc8\x45\xbb\x4c\x46\x19\x3f\x99\xfd\xef\x1d\x68\xe1\x25\x85\xcb\x0a\xed\x78\x45\x30\xd8\xb1\x67\x23\x25\x51\x7b\x37\x84\x93\x1b\x4c\x44\xa9\xfc\x15\xbc\x1f\x9f\x9d\xf6\x5e\xaa\x10\x44\xac\x1b\x11\x6b\xfa\x31\xa5\x1f\x74\xfc\xfd\x16\xad\x95\x31\x06\xe8\xb6\x20\xdb\x96\x6a\x6c\x3a\x14\x85\x88\x32\x1c\x1e\xe4\xc6\x99\x1f\x2e\x4a\x9b\x97\xf6\x97\xe5\x61\xdb\xd1\xe1\x2d\x81\xd3\xd6\xef\x9c\x83\x86\x1c\xa9\x44\x84\x87\x9c\x10\x04\x4f\x07\xb1\xc4\xb8\x5f\x83\x85\xde\xe2\xae\xca\x0e\x0d\xd2\x3b\x08\xbb\xaa\xfa\x41\x71\x20\xdd\x2b\x0c\x54\x49\xdc\xe9\x42\x8c\x22\xc0\x69\xc8\xf9\xde\x08\xc9\x4b\xd7\xca\x04\xaa\xb7\xb1\xf0\xa2\x96\xcd\xbf\x37\x89\xdd\x0f\x4a\x49\xd7\x07\xe9\xc3\xce\x0d\xab\x11\x8e\x70\x22\xc7\x0a\xea\xc2\xc1\x06\x13\x63\x11\x36\xc6\x78\xe7\xad\x28\x0a\xa9\xd3\x23\x3c\x54\x16\xd7\x80\x9d\xbe\xc4\x2f\xb5\xc0\x8d\x35\x22\x8e\x84\xf3\xeb\x96\x41\x8d\x29\xe4\xb8\x6b\xaa\xa2\xec\x1d\x43\xd8\x3e\xf4\x01\x1f\xfa\x68\x62\x4d\x0e\x42\x83\xb0\x51\x26\xb7\x18\x03\xb5\x16\xe9\x41\x99\x37\xb5\xd9\xdf\x49\xe7\xa7\xbc\xb7\x91\xee\xc0\x04\x5c\x90\xfc\xaa\x2a\xc6\x01\x0d\xf0\xf0\xe9\xf3\x7c\x7d\x73\x7b\x77\xfd\x77\x38\x99\x8c\xc7\xe3\xdc\xf5\xfa\x15\x6a\x65\x40\x91\xc8\x4d\xa9\xb9\x92\x73\x6d\xab\xa2\xbb\x13\xd2\x53\x41\xaf\xbc\x44\x95\xa5\x0e\x9d\x7d\xc3\x51\x94\xb5\x31\x2a\xb1\x5f\xe7\x6e\x9a\xbb\x57\xa9\x52\x97\x96\xc7\xcc\xca\xc4\xc3\xc3\x72\x06\x0e\xed\x56\x46\xd8\xd2\x86\x49\xd4\x21\x55\x20\x32\x5a\x63\xc4\x8c\xef\x45\xd6\x4c\x2e\xc6\x47\xc0\xb5\x45\xf4\x32\x51\xea\xc3\x57\xab\xbb\x83\x02\xa8\x23\xbb\x67\x2a\x43\x3e\x2e\xb5\x0c\x8d\xa4\x2d\xfb\xd7\xf1\x78\x72\x24\xdb\x39\xb5\xa6\xe0\x89\x14\x5f\x9e\x51\x55\x24\x63\x21\x96\x2e\x74\x51\x02\xee\x71\x0d\x20\x3b\xeb\xea\xc4\x29\xb2\x3e\xce\xf1\xd7\x25\x73\xd8\xe9\xb6\x9e\xbc\xbd\xeb\xed\xfa\x78\xa4\xcd\x91\xbf\x5f\x16\x0a\x12\x70\x6c\x2c\x1f\x65\x8b\x88\xa5\x8f\x5e\x76\x90\x76\x30\xa5\xf6\x68\x07\x0c\x95\x1f\x39\xf3\x38\x50\x6f\x3a\xb2\x16\x5e\x63\xb6\xe9\xf0\x35\x6a\xbc\x95\x69\x8a\x16\x7e\xbf\x7e\x78\x81\x04\x6a\xec\xa3\xea\xa5\x3b\x3a\xa9\x7e\xbc\x8e\xa5\x7d\xd9\xfa\x3f\x92\x54\x74\xdc\x12\xa8\xcc\x44\x26\x2f\x04\xc3\x8c\xe9\x0b\xfd\x49\x99\x4c\x7f\x53\x61\xf0\x98\x4a\x74\x43\xf8\xe4\x8f\x18\x11\x3e\x17\x68\x25\xd3\x40\x66\xdb\xb1\x4c\x12\xb4\xa8\x3d\x95\x9a\x66\x23\xcb\xdc\xa0\x8e\xb2\x5c\xd8\x27\xd8\x59\xe9\x91\x28\x12\x37\x4c\x66\x79\xd5\xb6\x40\xe4\x7c\x66\x4a\x4f\xac\x89\x80\x5f\x25\x5c\x61\x4d\x5c\x06\x05\x77\xc6\x3e\x51\x9f\x3c\xca\x3f\x96\xba\x76\xa5\xdd\xe2\x9e\x23\x57\x95\xec\x1a\x0a\x81\x01\x95\x36\xb8\x75\x2b\x05\xfc\xbe\xf8\x4a\x29\x2f\x4a\x9f\x41\x44\xbd\xc2\x1d\xda\xb4\xcf\x8c\x0b\x6c\x20\xb2\x48\x7c\x52\x0a\xe5\xfa\xa4\x74\x2e\xd9\x2f\x6c\x54\xa7\x0b\xd6\x28\x74\xbd\x8a\x36\x32\x09\xcd\x51\xe8\x6a\x7f\x38\x13\xea\x91\x2d\x12\x3a\x0c\x18\x34\xed\xa0\x87\x93\x02\xad\xe3\x7a\xea\xd5\xbe\xf7\x3a\x05\x2a\x32\xc9\x52\x2d\xfe\xa3\x94\xc4\x57\x9b\x2e\x43\xca\x51\xec\xb6\x42\x95\x81\x66\x7b\xf1\x84\x80\xec\xb7\x23\xe7\x54\x4e\x58\x93\xad\xeb\x60\xeb\xda\x62\x6e\x3c\xae\x5f\xf8\xa5\x76\xdc\xf7\xc6\x87\x2e\xcc\x6f\x3f\xdf\x3e\x5c\xdf\xf1\x30\xb7\xba\x7d\x7c\xfc\xf4\x79\xfe\xfd\x41\x21\x8c\x0a\x15\xfb\x17\xce\xd1\x44\xc0\x95\xac\x8a\x4a\x88\xae\x74\x64\x7a\x3b\xc2\x64\x70\x4a\x25\x44\x40\x6e\x62\x74\x04\xa7\x36\x5e\x36\xa8\x31\x91\x1e\x4e\x84\x35\xa5\x8e\xe1\xfc\xa7\xde\xb0\x33\x40\xd1\x3a\xcd\x67\x96\x5a\x50\x61\xa5\xb1\x92\xe6\x90\x3e\xfd\x9e\x0b\x2b\x69\xc0\x33\xb0\x43\x0e\x07\x9f\x42\x18\x36\x31\xf7\x23\xf7\xc4\x14\x1e\x94\xd9\xa1\xad\x77\xef\xc9\xb9\x62\x6b\x64\x1c\x72\x3e\x41\x6e\x63\x8c\xf8\xaa\x4e\xd7\xa0\xec\x0c\xbe\x7e\xbd\xfa\xf9\x8b\xc3\x47\x3e\x7f\xd9\x1c\x4f\xaa\x55\xb9\xc3\xb2\x83\xe9\x6d\x1d\xf7\x0d\xf4\x37\x48\x6f\xad\x31\xcc\xaf\x94\xd4\xe5\x33\x0c\xc8\x41\x1b\xb1\x51\xfb\x4e\x97\xb9\x80\x46\x1a\x0f\x84\xdd\xd3\x9a\x3f\xa4\x8e\x49\x34\x51\xe6\xd8\xa0\xd3\xef\x88\x2c\x58\xea\xaa\x7b\x9f\x85\x66\x05\x0e\x11\x32\xef\x8b\xab\xd1\xc8\x63\x94\x51\x21\x52\x6e\x2b\x9f\x86\x91\xc9\x47\xa7\xe3\xc9\x78\x34\x9e\x8c\xf8\xb4\xc1\x37\xb1\x15\x83\xa0\xde\xe0\xe0\xc2\x01\x59\x29\x2c\xdb\xf8\xc2\xbe\xfd\xd2\x28\x19\xed\xa7\x67\xa7\xad\x32\x9c\xa1\x28\x06\x71\x99\x17\x20\xb9\x1f\x5b\x7c\x47\x49\x03\xf7\xf7\x8b\xe0\xa5\xdf\x50\x14\x37\x65\x5e\xdc\xeb\xfb\xd2\xdf\x27\x0b\xcc\x8d\xdd\xdf\x5a\x6b\x98\x6d\x2d\xd1\x56\x1a\x50\xcb\x88\x9e\xc0\xc9\x3f\x71\xd8\x19\x7c\x75\xee\xf4\xfc\xe2\x89\x96\xdc\x09\x4b\x25\x91\x63\xa2\x91\xd6\x05\xb7\xd2\xf1\x7d\xce\x8f\xc0\xed\xdf\xb9\x03\x62\x66\xd7\xab\xd5\xf5\xe7\x9b\x87\xeb\xc1\xc5\xd9\x64\xdc\x63\x4d\x56\xbc\xef\x91\xb6\xad\xe4\x9f\x38\x25\x92\x30\x1e\xff\x42\x47\x2c\x28\xa5\x5c\x49\x89\xc7\xa9\x4d\x2a\x52\x9f\xe6\xea\x8b\x31\xe7\xe7\x9f\x68\x0d\xc6\xc0\xb5\x92\xe7\xda\x21\x0f\x6c\xd2\x41\x86\xaa\x70\x50\x58\xdc\x12\x46\x9c\x49\x7c\xd8\xc8\x80\x8f\x8c\xf6\x42\x6a\xb4\xa1\x3e\xe6\xe2\x09\x09\x7b\xa1\xb9\x09\x2a\xa2\x90\x95\x29\x16\x22\xe5\xc3\xeb\x86\x90\x13\x17\x09\x49\x2e\xb7\xec\x90\xaf\x57\x3f\x5f\xab\x9d\xd8\xbb\xa5\xc5\x47\x53\x46\x19\x29\x7e\x53\x95\xbd\x8d\x14\x44\x29\x94\x89\x9e\x78\xa0\x75\x44\x0b\x09\x22\x0c\xa2\xda\x2d\xcd\x4c\x10\xe4\x0d\xbe\x38\xfc\xc0\x1b\xef\xc2\xbe\x56\x58\x2b\x54\x90\x3e\xaa\xad\xd7\x86\x8e\x08\xa6\x30\xce\x9b\x2b\x1f\xca\x9d\xd2\x1b\x1a\x8d\x22\xa1\x18\xbf\x16\x29\x98\xb4\x22\x07\xe1\xc1\x96\x9a\x78\xd7\xf0\x90\x3c\x77\xd7\x1f\xc2\x1f\x0f\xbc\x92\xff\xee\x74\x6b\xf4\xee\x76\xbb\x21\x6e\x85\xfe\x66\x34\xba\x61\x24\x46\xdf\xb6\xf9\x20\xcf\x45\x31\x28\x44\xe9\x70\x98\xf9\x5c\x85\xed\x4b\xb4\x49\xe5\x89\x55\x26\x2c\xc6\x0b\xcc\x19\x5c\x16\x13\xb4\xb0\x91\x9a\x09\xa3\x37\xf0\x69\xb9\x3d\x03\x8d\x9e\x20\xce\x88\x4a\x04\x75\xa3\x13\x9e\xf9\x34\xfa\xa1\x2c\xb6\x17\x43\xda\xb0\xbd\xa0\x1a\x3e\x9d\xf4\x98\xcf\x1c\xb4\xda\x94\xa9\x1b\xba\x52\x73\x3a\x6d\xca\x94\x78\xf9\x46\x38\x1c\x6d\x25\xee\xd6\x9b\x32\x1d\xc6\xe6\xbf\x37\x65\xba\x96\xf1\xf4\xe2\x97\xb3\xd3\xf3\x8b\x09\x9c\xb8\x8c\xd8\xc4\x96\xfa\x80\xd1\x57\x44\x79\xaa\x5b\x15\xaa\x03\x5c\x1a\x51\x7b\xbb\x6f\x5d\xa2\x7c\x5a\x6e\x2f\xc0\x95\x05\x31\x07\xaa\x7a\x37\x94\xab\x43\xd2\xb0\x60\xa3\xc8\x90\x15\x25\xcc\xa1\x96\xc3\x0d\x6e\xca\xa6\x0d\x91\xfd\x65\x73\x7b\x73\x10\x9c\x28\x99\x66\x1e\x2c\x46\xc6\xc6\x68\x3b\xdd\x10\x0d\x4d\x71\x9d\xd1\x6a\x1b\x49\xa1\x3e\xa2\xf0\xa5\x25\xa4\xf2\xeb\x8f\xbc\xe9\xa1\xde\x73\x2c\x9a\x07\x96\xc3\xc0\x49\x70\x08\x03\x04\x67\x67\xe8\x40\x10\x93\x76\xc4\x53\x46\x85\x35\x34\x65\x5a\x47\xc9\xc4\x3c\x6b\x72\x36\x39\xeb\x74\x07\x22\xa5\x1e\x29\x37\x57\xdf\xe2\x5d\x31\x3d\xf0\xbf\xd8\xaf\x9d\x89\x9e\xd0\xf7\x03\xb5\x9b\xee\xfb\xae\x74\x05\xea\x78\xaa\xfb\xf5\xc8\xc2\x32\xfe\x15\xcd\x4c\x5a\xd5\x12\x41\xa9\xee\x33\x13\x98\x90\x54\x01\xe1\x27\x31\x6e\x51\x99\x22\xe8\xa7\xf6\xbd\x17\x2e\xba\x91\x22\xd5\xc6\x79\x19\xfd\x6d\x71\x5f\x79\x3a\xbc\xbf\x33\xe9\xec\x20\xe6\x8d\xee\xda\xe9\xc2\x6f\xb7\xd7\xcb\x1f\xf6\x53\x32\x80\x0a\x26\x97\x41\xaa\x40\x2f\x72\x0a\x22\xa1\xa2\x52\x09\x7f\x74\x05\xcb\xd7\x89\x1b\xae\x00\x46\x33\x9e\x3a\x5d\x72\x7d\x5e\x2a\x71\x05\xb9\x78\x3e\xc9\xa5\x3e\x99\x8c\x4e\xc1\x8a\xbc\x0f\x93\xf1\xe9\xd9\xe2\x43\xaf\x0f\xe1\xe9\x59\x78\x7a\x39\xff\xd0\xeb\x71\x49\xe3\xc1\xf2\x8a\x2f\x37\x9b\x03\xa1\xda\x1d\x88\xa3\x28\xc8\xb9\x41\xce\xab\x75\x67\xc7\xeb\x2e\x27\xef\x4f\xab\x75\x85\x8c\x9e\xb8\x64\xe4\xe2\xb9\xd3\xad\x28\x6a\x8b\x13\x94\x0e\x99\x74\xe6\x82\xfa\xa4\xcb\xb8\xac\xc4\xdf\x68\xbe\xe5\x34\x21\x3c\xed\x4d\x49\x13\xce\x56\x5a\xa3\x29\xce\x54\x87\x3f\x25\x3c\x10\xbf\x73\xf5\x45\x19\xf6\xdb\x40\xc8\x10\x06\x5f\xf3\x67\x56\xea\x6b\xee\x1a\xaa\xb6\x41\x2e\x61\xa6\x1e\x2b\xb1\x9a\x9f\x1b\xaf\x37\x86\x55\xd7\x70\x04\x20\xea\x78\x55\x8f\x18\xb2\x0d\x9f\xc8\x5f\x9c\x51\x74\x5c\x75\xe9\x4b\xcc\x2f\x97\x1a\x4e\x06\x5f\x73\xd7\xab\x6a\xff\x33\xff\xf9\xdc\x0b\x32\x28\xc6\xc4\xe8\xa8\x1d\x64\x18\x86\x76\xa6\x79\x07\x22\xe2\xbc\x29\x06\x3e\x43\xea\xc9\x2a\x86\xf9\x0c\xb8\xf6\x39\x88\x4b\x6e\x82\xa1\xc4\xf6\x2b\x96\xea\x4c\xb8\x16\xa8\x58\x0f\xe1\x95\x25\xf3\x69\x52\xd7\x8d\xed\xd0\xc2\xe8\xa0\xba\x6f\x09\x4d\x35\xdb\x24\xd4\x39\x78\x54\x0f\xfc\xc4\xed\x44\x51\x10\xb0\x4a\x66\x9b\x5f\x73\x77\x36\xe7\xff\x3e\x9f\xcd\x09\xad\x7f\x37\xa5\x4e\x21\x45\x8d\x15\xe7\xfe\xb7\x91\x4b\xb3\x77\x1b\xbb\x2d\xe4\x12\x3e\xc7\x63\xf8\x0b\xe8\x32\x5f\x47\xc6\x12\xbf\x23\x80\xfd\xe5\xe0\xc0\x1e\x87\xe0\x91\x21\x25\x35\xf5\xd5\x18\x07\x26\x49\x9a\x91\x6a\x7f\xac\xa0\xac\xbe\x22\xd0\x4b\x55\x71\x0b\xa2\x9e\xd2\xf5\xc3\x33\xa3\xe9\x59\xed\x6b\xbe\x2c\x68\x2e\xf6\xc3\x9d\x0d\xd7\x73\xde\xd7\xec\xa2\x86\x4d\xbc\xf4\xb9\x40\xed\x88\x6e\xce\x67\xcd\xc7\x80\x93\xd2\x95\xe4\x85\x5e\x1b\x2f\xd4\x98\xdf\xc0\xcc\x9b\x2a\x07\x9f\x26\x50\xba\x6a\x52\x22\x8a\x3e\x81\xf9\xac\x0f\x4e\x12\x55\x0e\x61\xa7\xe3\xda\x48\x06\x4f\xe6\xf9\x60\xc7\x80\x2f\x3d\x52\x23\x78\xe6\x5e\x10\xbf\x90\x3a\x31\x57\xed\x76\x6b\xac\x88\x14\x72\x6b\x23\xee\x58\x35\xca\x91\xb0\x5e\x46\x0a\xdd\x88\x9a\xd0\x28\x9d\xa4\xd1\x60\xf2\xfe\xf2\xec\xfc\x97\xf3\xd0\x84\xeb\x08\xe0\xb3\xc8\x0b\x62\x23\x9c\x56\xe1\x62\xde\x55\xec\xde\x6a\xb8\x1c\x50\x08\x7f\x86\x5c\x44\x99\xd4\x61\xee\x8a\x31\x0a\x73\x24\x7b\x79\x48\x89\x2c\x35\xc4\xa6\xdc\x78\x46\x35\x59\x4d\x05\xa1\xfa\xe4\xc3\x77\x75\x04\x24\xab\xf6\xb0\x13\xa1\xc8\xfb\x1d\x8a\xa7\x3e\xa4\x94\x48\x04\x97\xc5\x07\xfe\xb6\x54\x64\x7b\x47\xe8\xe3\xef\x01\x74\x72\xc0\xaf\xbe\x1c\x8f\x17\x6f\x97\x67\x8a\x59\x53\x9d\xbf\x53\x9e\xbb\x5d\x98\x2d\x56\x34\xc9\xd3\xd4\x4a\x6d\xb6\xa6\x33\x4b\x61\x3f\xe3\x6e\x3e\x3b\x3c\x99\x19\x1d\x2d\x84\x7d\x5a\xed\x10\x8b\xe6\xc5\x6c\xb1\x5a\x0a\x2b\x94\x42\xf5\x80\x34\x2a\x07\xca\x15\x87\xd7\xab\xd2\x6e\xe5\xd6\xd8\x07\x8a\xfc\xf4\x32\x3c\x5c\x88\xe7\x47\xd4\x9c\xf2\xc4\xc8\x5d\x66\x54\x3c\x9d\x84\x77\xb3\xc5\xea\x13\xdf\xc1\x93\x3e\xf7\x51\x54\x16\x42\x47\xfb\x8f\x36\x0c\xfa\xd3\x5f\xcf\x5b\xfa\xbc\xb9\xf4\x5e\x13\x5b\xab\x44\xfd\x21\xa4\xbf\xa9\xc7\x44\x66\xc8\xaf\xb5\x0e\x32\xd4\xe2\x58\x75\x5a\x73\x1b\xa3\x9e\x65\xa5\x7e\x72\x81\x2d\x04\xca\xca\xb5\x29\x67\xa2\x58\x65\x52\x42\x3f\xc2\x17\x43\x69\x43\x36\x33\x07\x13\x11\xcd\x3b\x18\xd7\xa3\x7b\x9f\xe7\x99\x16\x9d\x3f\x3f\x9b\x1c\x4e\x9b\x29\xe1\x1c\x35\x66\x41\x04\xaf\x56\x86\x83\x34\x9f\x34\x31\x82\x93\xc3\x05\x86\x50\xfd\x86\x7c\x51\xe5\x93\xa6\x74\xe0\xf0\x70\x29\x72\xe8\x1a\xf5\xd3\xa6\x49\x04\x06\xd5\x23\xf9\xfc\xa1\x80\x32\xec\x37\xe3\x5d\x61\x3c\xa4\xc2\x6e\x44\x8a\x83\xf0\xed\x24\x32\x4a\xf1\x35\xcc\x81\xec\xce\x27\x04\x00\xda\xfa\x5b\xfd\xa1\x83\x9a\x49\x6c\x40\xa1\xa3\xee\x91\x63\xbe\x41\x4b\xf3\x0d\x86\x41\xb3\xae\xf1\xab\xc7\x3f\xfa\xfc\x09\x0c\x45\x4c\xfb\x03\x01\xe4\x57\x91\xd1\x51\x69\x79\x88\x98\xcf\x86\xf0\x80\x71\x49\x74\xb6\x78\xff\x7e\xf8\x1e\xa8\xda\xea\x68\x1f\x54\x98\x4f\x1e\x56\xe8\xbf\x14\x31\xc7\x7e\x49\x05\xe1\x51\xe6\xb8\x44\x4b\xf9\x37\x3d\x0f\xaa\x2d\xa8\x84\x92\xa6\xe0\x4b\x36\xf6\xaa\x3d\xc6\x62\x5d\x10\x43\x55\xe1\x38\x86\x09\xda\x67\xd6\x94\x69\x56\x94\x9e\x7d\xb8\x95\x0e\x99\xed\x8a\x21\x49\x3d\x1d\x8f\x73\x57\x5f\xc2\xb2\xd1\xd5\xf5\x17\xad\x25\x01\xce\x53\xb8\xf9\xdb\x61\x08\x19\xed\x0a\x77\xb8\x20\x75\x64\x51\x38\xfe\x10\x50\x1f\x32\x84\xff\x41\x2c\xa8\xfa\xd6\x5f\xe8\x7c\x26\xc2\xe7\x22\x2a\x23\xa6\xac\x46\xaf\xe3\x9b\xc6\x2a\x95\xe6\x33\xb6\x7f\x21\x95\x92\x6e\x7a\x3e\x1e\x73\x44\x03\x9b\x13\xaa\x8d\x1c\xbe\xb3\x63\x0a\xb9\xfc\x12\x2e\x8d\x69\x52\x27\xf3\xe1\xe4\xaf\x53\x98\x5c\xcc\x3f\x84\x5e\xee\xa8\xab\xf1\xb5\x70\xe8\xca\x29\x57\xed\x48\x68\xcd\xd6\x00\x8d\x3e\xaa\xd5\x8b\x1d\xfc\x3a\xfe\x09\x92\x52\xa9\xd0\x50\x6a\x8f\x48\xdd\x20\xea\xb2\x3c\x1b\xd3\xc2\xb3\xf1\x4f\x95\xea\x87\xdc\x25\x8a\xd8\xe4\x6f\x1d\xc3\x5f\xc7\xf5\x9d\x9f\xdb\x3b\x8f\x79\xb8\x64\x83\xbf\xc2\x25\x54\xad\xb3\x7d\xf5\x58\x27\xf3\x7c\x16\x66\x7c\x0e\xd0\xf9\xe8\x32\x5c\xed\xf2\xf7\x49\x22\x03\xca\xa4\x5c\x43\x59\x02\x35\x8e\x7b\x9a\xf1\x77\x14\x60\xfc\x47\x29\x54\xf5\x7d\xbb\xb5\x83\x57\x86\x64\xbe\x04\x63\x19\xde\xdc\x71\x42\xd5\x6f\xb4\x9a\x8c\xab\xa5\xd5\xff\x1b\x40\xf3\x4f\xfd\x41\x36\x7c\x31\xf7\x06\xfe\x6b\xca\x4e\x6a\x8e\x27\x37\xbc\xd2\x7c\x3a\xb9\xe8\x74\xe1\xc3\xbe\xb6\xad\x0f\x54\x78\x5f\x18\x46\xa4\xc1\x24\xaf\x8d\x1e\x86\x4b\x59\x3e\x74\x63\x7c\x56\x9b\xd3\xe2\x62\xc4\xa4\x2c\x27\x16\x65\x22\x25\xa5\x08\xd7\x5b\x55\xcd\x6c\x1f\x45\x9a\x84\xea\x33\x23\xcf\xa5\xfc\x99\xa2\xe2\x9a\x83\xc1\x5b\xf3\x58\xa7\x9a\x60\xad\xd4\x7e\x3e\xbb\x41\x2f\xa4\x72\x2f\x9f\x09\x8f\x2b\x2f\xf2\xa2\xfd\x98\x00\x70\xed\xe7\xb3\xd6\xa3\xba\x41\xdc\x48\xe7\xad\xdc\x94\x3c\x85\xb4\x05\x5d\x17\x85\xaa\xee\xae\x57\xde\x10\xa9\xa3\x0a\xd0\x5a\xb2\xb4\x26\x37\xf4\xfa\xa3\x90\xaa\x24\x3a\xc3\xee\xa6\x57\x1f\xef\x56\x2b\x2f\xbc\xa4\xc1\xc7\x85\xce\x43\xf6\x45\x57\xa3\xad\xb0\x23\x65\xd2\x51\x93\x6c\xa3\x34\x1a\x2a\x93\x1e\x0a\xdf\xec\xce\xf0\xa7\xc5\x07\xe3\x45\xa3\xd4\x67\xc6\xcb\x7d\xd2\xbc\x75\xd3\xc9\x38\x54\xaa\xfa\x49\x75\x49\xb3\xe8\xfc\x7f\x00\x00\x00\xff\xff\x57\x9a\xea\x4d\x7a\x23\x00\x00") + +func examplesStorageCassandraImageFilesJvmOptionsBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraImageFilesJvmOptions, + "examples/storage/cassandra/image/files/jvm.options", + ) +} + +func examplesStorageCassandraImageFilesJvmOptions() (*asset, error) { + bytes, err := examplesStorageCassandraImageFilesJvmOptionsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/image/files/jvm.options", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraImageFilesKubernetesCassandraJar = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x7a\x75\x50\xdc\x5b\xb6\x75\xe3\xee\x4d\x08\xae\x09\xde\x68\x80\xa0\xc1\xdd\x09\x1e\xdc\x1d\x1a\x97\x00\xc1\x82\x7b\x43\x13\x24\xb8\xbb\x43\x80\xe0\x04\x09\x12\xdc\xdd\x1b\x82\x6b\xe0\xab\xa9\x99\xfb\xee\x4d\xe6\xde\x57\x73\xe7\x7b\xfb\xbf\xae\xda\x6b\xef\x3a\x67\x9d\x3e\xbf\x5d\x67\x2d\x15\x79\x04\x44\x74\xc0\x3f\x02\xc5\xbd\x5a\x0e\xf0\x87\x40\x03\x00\x00\x8a\x92\x1a\xa2\xac\xb2\x4a\x52\x6c\xbf\xa5\xa1\x02\x90\xdd\xab\xe5\xb8\xd1\xbd\x22\x1c\x00\x00\x40\x30\x00\x00\x00\xfe\x31\x4d\x51\x54\x49\x56\x4a\x52\x5d\x03\xa4\x28\x75\xa6\x38\x3c\xa4\x20\xcf\x0a\x1a\xc7\x92\x67\x65\xfa\x3a\x3c\x5a\xab\xc6\x3e\xc9\xb5\xba\xe5\xc2\x22\xf7\x75\x80\x45\x9e\x55\x0c\x15\x65\x33\x4f\x33\xe9\x09\xf3\x67\x3a\xcf\xe6\x74\x39\x2e\xb0\x9c\x6b\x06\x53\x39\x70\x22\x92\xf3\x9b\xdc\xa0\x57\x73\x7a\xa4\x1a\x81\xbc\x9a\xfa\x67\x93\x18\xa4\xf0\x2f\xc4\xc5\xe8\xed\xe1\xe6\xc5\x5e\xe8\x7d\xde\x7d\xde\x10\x5c\x72\xc6\x16\x03\xc6\x39\x2a\x79\x96\x73\xcc\x75\xac\x68\x4c\xaf\x66\xcf\x66\xc0\xef\xcb\x40\xfe\x65\x19\x08\x00\x00\xc0\xda\x91\xed\xaf\x13\x50\xfe\x99\x60\xcb\x07\xfe\x5f\x92\xf0\x7e\x4f\x32\x35\x06\x83\x8d\x1d\xcc\x5c\x8c\x7f\xd9\x94\xd7\x44\x37\x4a\x19\x70\x00\xc0\x1e\x3c\x00\xc0\xfd\x67\xe9\xf2\x6e\x26\xe6\x2e\x0e\xe6\xae\xe6\x60\x75\x73\x73\x33\x15\x17\x47\x77\x6b\x33\x73\x17\x3a\x75\x37\x13\xb0\xb9\x2b\xc8\xd4\xce\x18\x0c\x4e\x56\x55\x54\x26\xe5\xc0\xf5\x53\x12\x7b\x32\xa1\x62\xc5\x50\x97\xf4\x96\x9c\x89\x90\xcf\x08\x9b\x8c\x29\x30\x4e\x25\x4f\x2e\x89\xb0\x3c\x8d\x27\x6c\x39\x7d\x49\xd5\xa9\x26\x8a\x79\x01\xa3\xa3\xb4\x50\x8e\xec\x1a\xee\x9e\x2a\xe6\x35\x7d\x6b\x7a\x09\xc5\x2b\x88\xa5\xe0\xe8\xf1\x48\xd8\xf6\xf6\xe8\xd4\x8b\x00\xa1\x4f\x7b\x1f\xc3\x2f\x10\x49\xd1\x0c\x98\x58\x52\x05\xaf\x80\xf0\x48\x21\x5b\xae\x26\xa0\x28\x50\x2e\xab\xab\x8d\xf8\x62\xca\x71\x20\x79\x6d\x78\x7e\x21\x62\x25\x30\x21\x37\xad\x7c\x4c\xc8\xe2\xf9\x0a\x9b\x02\x2b\xec\x91\x56\x48\xa6\xfc\xdb\x37\x1c\x51\x4b\x31\xf6\x74\x9f\x5c\xe5\x41\x3c\xaf\x02\x19\xe3\x57\x49\xfe\x27\x47\x5d\xdb\x9b\x2b\x4b\xe6\x8b\x22\x49\x36\x30\x84\x21\x1e\x0a\x26\x6e\xde\xc6\x50\xf4\xf2\xf6\x21\x59\x63\xc6\x7a\x85\xc2\xad\xe6\x81\x0e\xa8\x2a\xb5\x0c\x9b\x1b\x94\x31\xb4\x6f\x41\xc7\x17\xa5\x61\x1d\x9a\xac\x34\x1f\xe4\x02\x64\x60\x3a\x5c\x6e\x0d\xd1\xa5\xbe\x10\x40\xd0\xba\x8d\x12\x9e\xd7\x69\x8f\x7e\xac\xf5\xb0\x08\x62\x2a\xf3\x67\x7d\x39\x0f\x26\x99\x37\xca\xbf\xc7\xab\x8d\x7c\xae\xdb\x3f\xd1\x65\xb0\x7f\xaf\x6d\x39\x71\x0f\x65\x0c\xca\x4c\xb5\x23\x21\xb3\x55\x07\xcb\xf8\x27\xec\x7a\x0e\x7f\x4d\xa4\xfb\x21\x2b\xac\x8b\xae\xe6\x37\xae\x39\xeb\x91\x59\xd3\xba\x59\xc0\x22\xef\x76\x82\xba\x84\x58\x49\xe8\x4e\xc1\x13\xc5\x52\xab\x2b\x63\xec\x59\x26\x12\xfb\x3c\x09\x2d\x8f\xb2\x89\x20\xe4\xea\x4a\x63\x95\x95\xa4\x88\x1f\xf2\xad\x2b\x7d\xb6\x41\x02\xcb\x75\x33\x64\x0e\x77\x9d\x68\x2b\x9f\x19\x99\xbd\xf1\x07\xe9\xbe\x96\xa4\x17\x4b\xc3\x9b\xc0\x46\x6d\xfc\x85\x72\x34\x6d\x29\x65\x5f\x02\x66\xc2\x03\x46\xcd\x52\x09\x74\x5b\x97\xac\x1f\x9f\xc1\x2c\xa8\x63\x89\x95\x88\x6c\xec\x6c\x85\xd4\x0f\x68\xdb\x8f\xf0\x3f\xd3\x9d\x12\x82\x1d\x8f\x01\x0f\x00\xbc\x42\x04\x00\xd8\xfe\x06\xdd\x1c\xff\x64\x3a\x3a\xc1\xd1\x96\x40\x14\xb7\x2f\x4b\xd1\x24\xa1\xcf\xca\xf4\xde\xb1\x5e\x4a\xf1\x85\x75\xa4\x96\xa8\x68\xb9\x06\x1d\x03\x90\x80\x10\x3f\x77\xb5\x74\x64\x29\xd5\xce\x67\x39\x64\xa9\xcd\xa8\x23\xb9\x1d\xb7\x93\xe8\x2d\x40\x24\x89\xaf\x31\x9c\xb0\x64\x75\xa9\x7a\x68\xf8\xe8\xd0\x31\x13\xba\x44\x29\xd2\xe1\x87\xe2\x44\xc4\x9b\x12\xd7\x6f\x83\x84\xa4\xcf\x9a\xad\xda\x55\x8f\x5f\x81\x01\x84\x49\x40\xb7\x21\xaf\x5a\x4b\x4d\x1c\x1f\xdb\x4f\x7c\xad\xa3\xa2\xe0\x59\xdb\x76\xbe\xbc\x77\x95\x80\x28\x64\x31\x78\xe6\x6f\x40\xd1\x65\x1c\xcf\xb2\xa5\x99\xd4\xdc\xa5\x8d\x6a\x93\x6f\x34\x7c\x18\x54\x76\x7b\xe0\xd0\x58\x3c\x5e\x4b\xb0\x25\xe0\x90\xf1\xc6\xe5\xc6\x69\xed\x2f\xcd\xa6\xac\xa9\xd8\x24\xdf\x46\xf6\x8a\x31\x29\x7e\x6c\x21\x95\xcc\x13\xa0\xa6\xa7\x72\xe7\xad\xb1\xb0\x5b\x36\xce\x77\xf3\x17\x7b\x78\x9b\x75\x1e\x05\xde\xeb\xd1\x46\x47\xa4\x68\x58\x76\xbb\xda\x54\xf0\x0e\xbd\x97\x60\xf6\x59\xbd\xc9\x2b\xbf\xba\x5c\x9e\x0e\xc2\x26\xdd\x6f\x3b\xcd\xcf\x87\x79\x29\x30\xe4\x56\xcf\x34\xea\x4a\x9a\x6a\x75\x57\x73\x43\xdc\xca\xcc\x4d\x50\x93\xcc\x4d\xe8\x83\x82\x8a\x4b\x4f\xd9\xd6\x1d\x43\x32\x54\x54\xcd\x70\x08\xa7\xfb\xcd\xb2\xae\x85\x15\xe7\x16\x5e\x3c\xa7\x1e\x21\x76\xac\x9f\x27\x06\x6b\xde\x3a\xe7\xf8\x79\x17\x4c\xf0\x54\xdc\xb7\x0a\x35\xaa\xe3\xaf\xf4\x7e\x1b\xc0\x31\xed\xd6\xf5\x36\xa3\x77\x56\xe9\x8a\x66\x1a\xb4\xd2\x54\x95\x60\xac\x9f\xbe\xb6\x36\x3b\x6a\x7a\x05\x53\x0e\x67\x93\xf6\xd9\xd4\x0b\x9c\x72\xdd\xcb\xed\x5f\xcb\xe4\xc8\x4e\x3c\x40\x87\x7d\x91\x89\x91\x05\x1b\x13\xdf\x2c\xa6\x4c\x7f\x82\x0b\x7f\x9d\x3d\x93\xa8\xee\x41\x7b\xa3\xe9\xf3\x1e\x59\xe4\x08\xfe\xda\x9b\xca\xa6\x5e\x43\xa0\xe3\x06\x3e\x96\x13\xe2\x59\xdf\x35\x8d\xed\x72\x8f\x90\x7c\x11\xcd\x86\x7b\x60\x18\x7f\x37\x6c\x80\xdd\xef\x05\x72\xc1\x64\x7f\x95\xbc\x03\x3e\x63\x48\xff\xcc\xb9\x5a\x96\xf4\xfc\xba\x72\x6d\xf2\xdd\x45\xaa\x74\x66\x18\x5f\x84\x27\x0c\x37\xfa\x66\x9b\xfa\x5d\xc8\x46\xdd\x02\x11\x5f\x50\xad\xaf\x98\x53\xda\x63\x57\x28\xd4\x78\xc7\xd9\x18\x6e\xc1\x55\x0e\x4a\x2b\x4c\x9e\xdd\xe6\x5c\xb7\xef\xeb\x21\x3a\xb4\x91\x73\x06\x32\xee\xbd\x38\xe0\xac\x58\xcd\x2b\xd5\x69\x2a\xbb\xff\xf1\xcb\xb9\x3a\xfc\xd8\xd9\xe9\x0c\x07\x00\x48\xc1\x03\x00\x2f\xfe\xc6\xb9\x12\x35\x33\x73\x31\x07\x83\xff\x75\x8f\xa8\x28\x3a\x12\xfc\xe3\x1e\x99\xb0\x93\x21\xc0\x57\x9b\xc7\x6f\x3a\x0f\x90\x18\x82\xc3\x28\x46\xa1\x2b\x91\x53\xa5\xcb\x1b\x2b\xa2\x82\x7f\x79\xbe\x7d\x18\x83\xbf\x63\x4a\x36\xb7\x7c\xda\xca\x47\xed\xbc\x8a\x72\xbe\xf2\x1d\x45\xc5\xb2\x31\xb9\xc9\x09\xa0\x73\x39\xfc\xc9\xeb\xcc\xa2\x8f\xb7\xc3\xff\x1e\xd1\x29\xa2\x50\x51\xa3\x3a\x6b\x95\xbd\x93\x20\x24\x62\x89\xe9\xbc\x4f\x1e\x6c\x7f\x3e\xff\x5d\x5f\x39\xa7\x51\xd0\xbf\x54\x45\xa4\xd6\x6e\xa3\x59\xec\xe2\xda\xac\x44\x85\xb4\x25\x0a\xc8\x6f\x3a\xe4\x0a\x75\xb4\xd8\x14\xf9\x30\x97\x16\x61\x92\x92\x76\x31\xe9\xa9\xd7\x73\x65\xc4\x0a\xb2\x53\x91\x41\xd6\xd9\x66\x7c\x3f\x43\xc2\x91\x48\x59\xa1\x88\x4a\xb7\x76\x50\xed\xe6\x7d\xf1\x7c\x57\x03\xd0\x0d\xe5\xbd\xa5\x21\x52\x2c\x90\x31\x16\x4b\xf2\x3b\x3f\x9a\xb7\xd8\xcc\x5a\x61\x1e\x78\x35\x12\x3e\xe4\x27\x77\x6c\x37\xbe\x3a\xb7\xb2\x57\x19\x21\x09\xbc\xcd\x72\x89\x71\x17\x57\x27\x2d\x1b\xe6\x32\x72\x1f\x97\x38\xd0\xd6\xcd\x8a\xc9\xc8\x3a\xd0\x68\xd0\x49\x15\xdc\xcd\x97\xd5\xea\xac\xe6\xf1\x20\x9b\x38\x7e\x46\x32\x32\xe7\x85\x3f\xce\x7a\x63\x55\xbc\xbb\xdc\xf0\xec\x32\x44\xeb\xb0\xdd\xe5\x75\xbb\x5a\xbd\x8a\x74\xc2\xc7\xca\x8f\x8f\x60\xd2\x90\xa3\x2c\xca\x47\x76\x3d\x35\x12\x42\x83\xfb\x5c\xd4\x18\x15\xd1\x97\x01\xe9\x24\xee\x72\x38\xbd\x2c\x26\xa4\xeb\x7b\x9c\x08\x87\x9f\xee\xb1\x2f\x14\xd3\xd1\x29\x92\x82\xe1\xef\x43\x0a\x3e\x95\x0b\xc0\xbb\x9f\xa8\xd8\x11\x66\x24\x4c\xf5\xd2\x56\xb7\x26\x1c\x7c\x59\x6a\xed\x32\xad\x43\xb2\x92\x53\xe9\x0c\x04\xbe\x70\x80\xfb\x99\xc3\xa1\xc5\xef\xde\xd9\x70\x00\x00\x0c\x1e\x00\xe0\xfd\x1b\x1c\x4a\x3a\x98\x39\x39\x5a\x3b\xb8\x82\xff\xe7\x6b\xf0\x1b\x8b\x04\x6a\xba\x5d\x96\x8c\x86\x28\x74\xba\xd8\xf5\xb8\x42\x54\xf5\x25\x88\x84\x32\x21\x84\xff\x22\x51\x8d\x7e\xc1\xd9\xdc\x67\xe8\x78\x3d\xb8\x27\x90\xf2\xb3\xa1\x98\xd8\x30\xff\x7b\x84\xf5\xb1\xc1\xd3\x28\xcb\xfb\xe5\x61\xc1\x91\x58\xc3\x95\x76\x84\xd9\xce\x1f\xc2\xf3\xda\xa3\x55\xf1\x6b\x31\x62\x4f\xf6\x65\x3f\x3e\x05\x4e\x9f\x42\x5f\x72\xb5\xc4\x34\x4c\x34\x63\x39\x6b\x65\xf3\xd6\xa8\xf3\x54\x5f\x26\xad\x55\x88\x79\x24\x55\xa1\x07\x89\x5b\x9c\xa2\x24\xa3\x05\x06\xdf\xac\x53\x6e\x1b\x38\x64\x64\x8a\x60\xb4\xe0\x06\xac\x4d\x90\xfe\x28\xc8\x8c\xb3\x8c\x00\x4a\x49\x6c\xf9\x1c\x7f\xb5\x93\x7d\x58\xcb\x59\x3d\x6a\x3f\xdf\x3f\xd2\x69\x70\x36\xcc\x6e\x6b\x7e\xa1\xb9\x4b\xd6\x94\x00\xd4\x04\x0f\x9d\x37\x08\xe3\x5d\x4a\x73\x15\xd3\x71\x0d\xbf\x31\x2e\xa9\x3e\x69\x08\x7f\xa4\x13\x38\x99\x1d\xa4\x6a\x4b\xd1\xcf\xe4\x1f\x8a\x4e\x2f\xdc\xa1\x58\x67\x93\x2d\xd8\x8d\xd5\x87\x61\x78\x9b\x7f\x28\x21\x7d\xa4\xb7\xe3\xb5\x21\x9c\x16\x99\x24\x83\xa1\x45\xdb\x57\x71\xf6\x80\x2d\x88\x14\xeb\x62\xf2\x6f\x94\x8e\xee\x35\x88\x68\xd6\x66\x27\x45\x47\x15\x38\x70\x62\xea\x75\x8c\x64\x3a\x20\xbb\x4e\x83\x5f\x13\x81\x42\xcf\x28\x59\x5f\x2c\x69\xd9\x0d\xfa\xad\xbf\x6c\x1d\x5d\x84\xb8\x15\xc3\x81\x8c\xe3\xd6\x32\xbb\x12\x31\x0e\xe2\x33\x0a\x7a\x35\x42\x0b\x6f\x97\xcc\xa4\x42\x0e\x1d\xee\x4c\x5a\x55\x3d\x5d\x95\xe0\x29\x3e\x86\x70\xd7\xa6\x63\x43\x7a\xdc\x9f\xd9\x64\xb3\xb1\x71\x73\xf6\x54\x0e\xc8\xd3\x23\x56\x9d\x5f\x33\x4f\xa6\x20\x36\xb3\x34\x7c\x48\x10\xa9\x66\x72\xaf\x02\x18\x61\x89\x9f\xd8\xeb\x2b\x16\xd9\x36\x65\xa2\x33\x2e\xc6\xf9\x9c\xa1\x36\x8e\x25\xf6\xa8\xb4\x73\x2e\xf6\xd5\xa4\x43\xae\x99\xb5\x1f\xb0\x7e\x66\x1d\xb2\x95\x38\x15\x89\x0b\x00\x9c\xd0\x00\x00\xac\xff\x39\xeb\xff\xe4\x3a\x43\x1b\xcd\x57\x63\xab\xfe\x31\xeb\x0b\xdd\xd5\xd7\xcd\xe7\x74\x08\x70\xc8\xaa\x28\x40\x19\x31\xa3\xd9\x3c\x3e\xd1\x79\x3b\x19\x2a\x3d\x2e\x38\x2c\xed\x0d\x73\x97\x44\x4c\x85\x23\x4c\x8f\x23\x44\xf8\xa9\x92\x8f\x6e\x86\x45\x18\x15\x6e\xd9\x26\x44\xcc\x4c\xc1\x3d\x75\x72\x77\x4c\x0d\xd7\x06\x7a\xad\xed\xf9\xee\x5e\xc7\x6e\x5e\xf2\x86\x2b\xdb\x3e\xd3\x36\x7b\x37\x47\x6d\x5c\x50\xba\x6e\x8b\xb7\xd0\xbb\xf2\x1d\x81\x1d\x81\x1d\xff\xaf\x37\xed\xc7\x9b\x59\x86\x7e\x58\x9f\xd1\xf9\xf7\x25\x89\xdf\xae\x85\x84\x1b\x7a\x5f\x9f\x31\xa3\x3d\x32\xac\x65\x7d\x1a\xe8\x17\x89\xbc\xac\x7c\x76\xdf\x87\x31\xe7\x70\xaf\xd9\x77\x6c\x76\x1f\x99\x7a\x5f\xc9\xf9\xa0\xd8\xd7\x31\x74\xdd\x16\xf5\x18\x77\x82\x42\xfc\xc8\xb8\xd1\x41\x77\xdf\x48\xf4\xe1\x44\x84\xf3\x41\xab\xaf\xd5\xe0\x9e\xf2\xc1\xb0\xcf\x87\xf3\x81\x61\xcd\x8f\xcd\x62\xc1\xf7\x81\x6e\x03\x81\x4d\xb8\x27\xeb\x59\xfa\xa9\x49\xcc\xee\x7d\x1c\x15\x81\xec\x66\x02\xc3\x68\xe4\x4d\x8e\xad\x70\xb3\xf9\x20\x91\x79\x20\xd1\x99\x8c\xc9\x03\xdd\xd0\x26\x9e\xd0\xb2\x18\x13\x9d\xa4\x2b\x91\xac\xc6\x61\xaf\x5a\x1a\xcd\x34\x03\x5e\xbd\x1a\xd4\x97\x53\x91\x70\xca\x1a\x3f\xd9\xab\x5a\xae\xac\x21\xa9\x40\x9e\x3b\x88\x94\xfb\x5b\x90\xcd\x29\xd1\x04\x4b\xcb\x2b\x5f\x0b\xa2\x89\x10\xd7\xf8\x6b\x7d\x16\xd5\xcf\x41\xba\x69\xb4\xe3\xfa\x38\xfb\x7b\xf8\x6c\x6f\xe4\xce\x7a\xd2\x6f\xd6\x6b\x03\x3c\xc4\xb7\x38\x5f\xa3\xc2\x31\xb5\xd5\xc5\x95\x98\xe9\xd2\x21\xea\xb0\xa8\xaa\x14\x3c\xcb\x69\xd1\x28\x30\xff\x24\xa9\x0b\x1a\x47\x67\xe3\xdf\xe5\xc4\x29\xcf\x8b\xf5\xb2\x22\x7c\x03\xda\xe8\x15\x43\x57\xad\x97\x28\x35\x6f\x79\x57\x2f\x61\xdb\xb3\xb3\x81\xef\x27\x56\x40\x22\xaa\xcf\xfc\x74\xfa\x8b\x06\x9b\x7a\x50\xca\xf4\x44\x32\x7e\xf9\x99\x58\x37\x9b\x99\xcd\xf9\x84\xf7\x3c\x95\xaa\x3a\x75\x4e\x9d\x3e\x26\x8f\x4f\x71\x88\x6e\xdb\xa4\x54\x16\x70\xa8\x4e\x1e\x08\x29\x16\xcf\x89\xe6\xb4\x3f\x35\x41\x91\xc5\x7f\xb3\x95\x5f\x5a\xac\x9e\x33\x82\xa8\x1c\xb4\x9c\xf1\x5e\xda\x8d\x4b\x56\x85\xc4\xed\x0d\xd7\xbe\x89\x0d\x67\xb1\x73\x2d\x55\xfa\x7c\xda\xa4\xc2\x3b\x8d\x6f\x4b\xf6\x56\xb2\xe3\x84\x91\x57\x97\x36\xc8\x9d\x33\x40\x5e\xef\xa0\x2f\xda\xa3\x11\xf6\x9d\xcf\x4b\x2b\xd3\xf6\x5a\xeb\x29\x5e\x10\x72\x75\xa7\x4d\x8f\x24\xca\xa7\x35\x14\x23\xd8\xb0\x9b\x4b\x99\x76\x16\x58\x4d\x6c\x12\x67\x3a\xd5\x69\x69\x8d\x24\x65\xe3\x0d\xd2\x63\x56\x36\x2c\xb4\x58\x20\x93\xde\x6c\x7c\x2f\x33\xe8\x36\xab\xb1\xce\x4b\xb0\x50\x64\x91\x6a\x72\x8a\x7c\x61\x9f\xf2\x82\x0d\x1a\x85\x24\xd0\xa3\x52\x5b\x52\xda\x80\x29\xb9\x57\x7c\xb0\x2e\x5b\x5d\xf8\x39\x78\x2f\x47\x4f\xeb\xae\x5e\x31\x0d\x0f\x16\xae\x4b\x87\x54\x9a\xeb\x3d\xa9\xdf\xfd\x61\xf0\x49\xb1\x8e\xa2\x86\x96\x1d\x4d\xd3\xc1\xfa\x12\x0b\x2c\xa9\xa0\xa8\xa2\x3e\xef\xb6\xd1\x46\x2a\xac\xe5\x45\x81\x0e\xd3\xfb\xa2\x6a\xc5\x12\x3c\x42\xfb\xc2\x6f\xf6\x97\x92\x50\x5b\x49\x75\x6e\x8a\xc5\x76\x26\xe2\xa8\x2a\xd0\xeb\xb6\x05\x95\x20\x52\x35\x85\x41\x35\x2b\xd9\xec\x4c\x1e\x5a\x61\x5c\x58\xc3\x1c\xbd\x86\x38\x4c\x19\xfd\xc9\x46\x33\x41\x41\xac\x25\x47\xaa\x4c\x6d\xb3\xdd\xbd\x86\xb4\x1b\xc7\xeb\x63\xac\x50\x45\xda\x92\x2b\x4d\xe5\x23\xbc\x08\xfd\xd7\x0f\xf1\xa8\x21\x14\x9b\x06\xac\xf6\xda\x86\x5e\xbd\x66\xdf\xe4\x6c\x48\xe8\xe4\x47\xdd\xce\x52\x0a\xec\x87\xe5\x64\xf8\xb5\xf5\x5c\xbe\xf6\xf0\xf0\x43\x79\x56\xa2\x1c\x67\x5c\x8d\xe3\x64\x73\x08\x4e\x69\xb6\x41\x5d\x65\x68\x0c\xa8\x61\x1f\xf6\xd7\x5b\x8a\x61\x35\xbb\x0b\xf3\x7a\x02\xba\x5e\x36\x83\x46\x01\x84\xb1\x9d\x4e\xa6\x3e\x04\x38\xad\xb4\xce\x19\x5a\x59\x02\x78\x32\x05\x50\x99\x53\x4c\x03\xe9\x19\x1a\x0b\xee\x8a\x48\xfb\xf3\xd2\xf0\xe0\xef\xb1\x48\x10\x7f\x89\xa7\xfc\x7e\x36\x4c\xc4\x8b\x05\x52\x0d\xf4\x1b\xde\x71\x61\x41\xe5\x7a\x8d\x27\xf7\x16\xb6\x39\x4e\x68\xf6\xc3\x70\x29\x59\x67\xdb\x5c\x06\x43\xcc\x4d\xdc\xcb\xc6\x3a\xd3\xdb\xa4\xee\x92\x75\xc1\xb4\xf1\xad\xb1\x70\xa3\x92\x34\x0e\x4e\xaa\xa9\x93\x51\x81\x56\x12\xb6\xc6\x38\x46\xfe\x8a\x3d\xad\x92\xac\x50\x15\x5a\xf8\x56\xb4\xa9\xc3\xda\x6d\xab\xa5\xb5\x5d\x87\x68\xe7\x7e\x0b\xe5\x46\x54\xf5\x5a\x6d\xee\x9a\x53\xb2\x42\x2d\xda\x78\x4f\x39\x5e\x01\x3b\xda\x4d\x7a\xfb\x28\x60\x88\xe2\x32\xd7\xf1\x84\x18\x4b\x18\x59\x8c\x03\xbe\x7d\xfc\x2e\x49\xb8\xb0\x79\xc8\x99\x49\x4c\x27\x99\xd7\xb3\x16\x48\x37\x33\x8a\x9c\xd8\x16\x9d\x7e\x06\xf5\xf3\x6b\x9a\xd0\x82\x34\xdd\x1f\x4d\x71\xb4\x76\x53\xe2\x4d\x93\x13\xed\x83\x0b\xfb\xdf\x6a\x5c\x19\x91\x73\xdb\x3a\xf9\x4b\x57\x9f\xbd\xe7\x75\x73\x86\x34\x5f\xc0\xbc\x7d\x0b\x41\x34\x12\x0d\xc8\x67\x77\x87\x32\x9c\x6e\x43\x66\xbe\xb2\x93\xcf\xd6\xf4\xc8\x8a\xd0\x96\xb5\xf5\x61\x0d\x29\xcf\x87\x77\x32\xd2\x13\x51\x43\xde\x0d\x86\x37\x6b\x7a\x12\xb2\xae\x89\x59\x16\x2a\x11\x97\xc4\x55\x7d\xa1\x31\x96\x4d\xd3\x0e\x8d\x5a\x94\x0d\xaf\xd8\x78\xdf\x25\xbc\xf0\x11\xa7\x8e\x24\x06\xd2\x07\xff\x19\x2a\xd4\x4e\x53\x48\x8f\x85\x2a\xb8\xe9\x1c\xd5\xb8\x7f\xc8\xf4\xad\x3c\xce\x08\xae\xc4\x82\x0c\x75\x7b\x67\x35\x01\xac\x88\x52\x1f\x75\xdb\x37\xed\x5c\x04\x0b\x47\x1f\x0b\x86\xb1\x46\x35\x56\x7f\xe2\xc7\x07\xc3\xbb\x1b\x34\xbf\x57\x58\x76\x12\x34\x97\xa8\xab\x57\xc5\x23\x66\x1b\x80\xb1\x47\x22\x51\x22\x35\xae\x5a\xa2\x1b\x74\xbf\x45\x9a\xd9\x40\xc6\xc6\x28\x54\x7e\x46\xd6\x3d\x3a\x45\x94\x72\xda\xd2\x13\xb9\x12\xfc\x61\x34\xc8\x06\xfa\xae\x6d\x56\x3a\xb5\xcd\xd8\xd4\x5e\xdc\x47\x5e\x5c\x5a\xbc\xa9\xb4\xbc\xbe\x2d\xd7\xb6\x37\x62\xeb\x0d\xb9\x9b\xfd\x9b\x17\x17\x17\x30\xcc\x2d\x18\xf1\x69\xaf\x92\xf7\x9b\x74\xb2\xf7\x2c\x31\x3d\xda\x9a\xcb\x5a\x0a\x66\xa8\x48\x2b\xfd\x0b\x96\xda\x72\xdc\xda\x7a\x8b\x74\x49\xd3\x53\xc1\xdd\x2f\x58\x2f\x60\x2f\xde\xac\x85\x5e\x2a\x46\xbb\x61\x91\x05\x71\x4e\xd4\x6c\x34\xd4\x4f\x7b\xd4\x4f\x72\xf3\x06\x2f\xd8\xf4\xa4\x4e\x66\xf4\x29\x05\xc0\x11\x63\x61\xb3\x60\xed\xef\xa5\xc6\x63\x7e\x95\x47\xe6\x3a\x89\x14\x6a\x32\x1b\xee\x73\x4f\x55\xb7\x62\x96\x9c\x65\x4a\x4c\x75\xaf\xb7\xb3\xdb\xf6\x16\x17\x5a\x48\xd5\x74\x36\x53\x29\xd2\xbb\x36\xdd\x0b\x7d\xbd\x56\x91\xd6\xd2\x32\x1d\xcd\x4a\xfe\x86\xbc\x9c\x94\x44\x97\x8f\x05\x99\xd8\x5b\x94\x36\x1f\x25\x91\xc4\x47\x08\x3c\xa8\x86\x7e\xb0\x80\x66\xa3\x44\x85\xce\xbf\x67\xb4\xaf\xcd\x50\xcc\x81\xe9\xa6\xd2\x43\x80\x24\xd2\xa7\xac\x4d\x40\xf6\xf8\x12\x93\x71\x52\xbc\x0d\x1b\xbd\x67\x82\x91\xd6\x06\x1b\xb9\x3b\x27\xa7\xbe\x96\x7f\xfd\x07\xfa\x85\x6a\x12\xf5\x0c\xfd\x3b\x3f\x86\x01\x01\x8d\x9a\x5a\x04\xe3\x3e\x09\x95\x99\x82\x1c\x0e\x9e\x4a\xb1\x05\x2b\x81\x63\x96\x3c\x95\xa8\x5b\xa4\x57\xae\x48\x3e\xdf\xad\x0b\x9a\xd4\xb8\x14\x33\x9f\x0e\xec\xb2\x8e\x99\xf6\xdc\x21\xbc\xa3\x01\xa9\x8a\x65\x93\x0b\xa6\x60\xe2\x87\xa5\xd4\xe6\x93\x85\x28\xc8\x31\x72\xbf\x12\x20\x9c\x97\x0c\xb2\x6b\x4b\x4b\x9a\x23\xe2\xcd\x69\x2d\x9f\xfd\x3c\x5d\x3a\xa5\x21\xce\xe5\x79\xb1\x54\x17\xc6\x7e\x9c\x5e\x93\x20\x96\x55\x70\xf0\x12\x35\xc3\x83\x53\x6d\x17\xf9\x36\x4a\x8c\x77\x1d\x39\xe6\x0c\x7d\x49\x82\x97\xb9\x2e\xe5\xd2\xf9\xbd\xd6\xee\x93\xf1\xa6\x64\x61\x79\x6d\xdf\xb7\xc4\x06\xd9\x0b\xc1\x95\xc8\xa3\x67\x2a\xd9\x63\x30\x3e\xaa\x71\x72\xf4\x25\x59\x0f\x46\x57\xde\xa5\xdc\xb1\x36\xd7\x2c\xb1\xab\x6f\x7e\x88\xfe\x23\x01\x24\xd1\xe1\x93\xc0\x31\xf5\x1f\xa6\x0d\xa8\x3a\xee\xb3\x6c\xe3\x3b\x40\xef\x00\x0a\xba\x49\x33\x1e\x22\x23\x49\xe4\xf3\x26\x62\x15\xae\xbc\xe2\x3c\xf6\xbc\x0d\x2a\x38\xe6\x33\xa4\x1c\x6f\x2a\xda\xf5\x75\xd1\x7a\x91\x82\x31\xf1\xa4\xc0\x8d\xeb\x7b\x05\x2b\x87\x19\xf7\xbc\xba\x3c\x62\xf6\x8d\x40\x0e\x15\x94\xd9\x71\xc4\xa2\x39\x27\xa1\x61\xf9\x83\x0a\x7e\x0f\x4d\x1c\x82\x8a\x2a\x9a\x2d\x69\x08\xd1\x4a\x9f\x07\x2a\x57\xff\x66\xf9\xda\x5d\x00\xf5\xa6\x3d\x7b\x54\x13\xf5\xe7\xe1\x08\x98\xda\x2e\x9e\xb7\x46\x4e\x3f\xd0\x9b\xcc\x43\xfe\x3c\x58\x4c\x79\x62\xa7\x3f\x04\xb0\x40\x3b\x8b\x51\x02\xf4\x8e\xc8\xd4\xdc\x25\xde\xdf\x21\xb8\x27\x26\x00\x99\x6a\xc8\x50\xca\xf0\x6d\x63\x56\x29\xf7\xb7\x5c\x20\x59\x50\x3d\x89\x75\x54\x7e\x06\x4f\x43\x8a\x72\xa9\xcf\xd6\x70\x5b\x26\x86\xb2\x87\xe1\x3b\xcb\xcf\x15\x42\x48\x03\x33\x1d\x8b\xaa\x2e\x9f\x6f\x76\xad\xce\x70\x7e\xe6\xad\x94\x2d\x4e\xc3\xcd\x22\xa2\xbe\x0e\x33\xbb\xd8\x94\x69\x4f\xef\xa7\x99\x6b\x83\xab\x66\x38\xd6\xcf\xd9\x21\xbc\xa5\xf1\x0b\xef\xf4\xc9\xdc\xd3\xcf\x66\xdb\xa0\xc7\xf7\x93\xdc\x3d\x47\x0a\x6f\x2f\x19\x8b\x74\xd5\x66\x78\xc8\xe7\x8e\xeb\x2b\x54\xf8\x4a\xc0\xb8\xc4\xc9\xb1\x21\xe3\x84\xc3\xc7\xc1\xb1\x8a\xd8\x1b\x40\x00\xb4\x8c\xd6\x29\xcc\x68\xcd\xfd\xa1\x3b\x4d\x72\xc6\xbb\xad\x4f\xfb\xf2\x6d\x3c\x80\xf9\x9e\xcc\x4f\x35\x27\x85\xd0\x3b\x24\xc6\x49\x77\xb8\x18\x60\x4c\xcc\xe5\x80\x58\x6b\xcd\x87\xa4\xc0\x6f\x71\x5a\xec\x7b\xdf\x3c\x16\x68\x59\x81\x20\x94\x85\xd9\xbf\xcd\xe3\x12\x01\x24\xbb\xbe\x7e\xeb\x8e\x81\xab\xb9\x9d\x9e\x67\x8e\xfd\x7a\x43\x31\x39\xbf\xb9\xe4\x14\xdc\xfe\x3d\x9c\x40\x5e\x54\x79\x71\x57\x4b\x67\x72\x08\x4c\x96\x54\x13\x0b\x75\xd7\xf8\xea\xe7\x9e\x70\x8d\x09\x99\xd0\xbd\xe1\x6e\x58\x65\xe9\x2f\xaf\xee\xf6\xa6\xce\x2a\x20\xb9\xc8\x2b\xde\x5f\xff\xdc\x71\x5d\xe7\x5a\xd8\xcc\xd8\xdc\xdb\x1c\xe9\xf4\xfa\xa6\x47\xfe\x1a\xd9\x9e\xdd\x0f\x49\x64\xe3\xc7\xa7\xbd\xf3\xe2\x69\xcd\xa8\x01\x11\x6f\x5e\xe3\xf1\x97\x19\x54\x19\x66\xb6\x6d\xb8\x3d\xdf\xc6\x2d\x74\xbd\x8e\x72\x2d\x2a\x08\x79\x15\x57\x5d\x75\xfd\x62\x9d\x99\xa0\xd7\xdf\x8d\x8b\xf3\xe9\xbf\x3e\x8d\xae\x3d\x34\x6d\x86\x66\xb0\xb2\x86\x83\xf5\x9f\x7a\xbc\x4e\x1f\x2c\xb6\x5f\x37\x45\x5c\x4b\x38\xad\x6d\xd3\x42\x85\xca\xf7\x74\x0a\x50\xcc\x55\x40\x6d\xa7\x50\xbb\x3f\x10\x3c\x2e\x9e\x92\x41\x48\x79\xfb\xd7\x5e\x56\x0b\xa0\x8c\xca\x26\xbd\x2b\x8c\x3d\xbe\x52\xaa\x31\x61\x39\x63\xec\x24\x1b\x8e\xfe\xb4\x68\x03\x6a\x88\x4b\x91\x81\x2e\x16\x16\xa7\x23\x5b\xe4\x25\xd3\xd2\xcc\xcd\x06\x34\xe1\x81\xe7\xda\x64\x03\x3e\xe0\x32\x8d\xbe\x64\x8c\x0c\x73\x73\x23\xb1\xe4\xe8\x7f\x7f\x48\x7d\x99\x0b\x4f\x99\x97\x67\x55\x93\x2d\x42\x4d\xb7\xcd\xdc\x6d\x11\x2a\xcf\x4d\xf0\xb4\x20\xb6\xd5\xb5\x00\x21\xf4\xe3\x91\x7a\x22\xab\xe6\x2b\xe7\x03\x4d\x0e\x0a\x6d\x62\x10\xc5\xce\x9a\xb8\x20\xb4\x39\x07\x2d\x33\xe5\xe0\xeb\xe0\x99\x36\x42\x7d\xd0\xe5\x48\xeb\xe9\xf9\xf7\x4c\xcf\x19\xf3\x78\x68\x27\xe2\x7d\x81\xf3\xa0\x9e\x33\x7d\xf9\xd0\xcb\xe3\x52\xd5\x43\x79\x5e\xf2\x91\x11\x90\xa3\x20\x41\xd4\x50\xdf\xa5\x3e\x51\x6c\xaf\x9d\x76\x84\x74\x6b\xd2\x32\xe5\xb1\x45\x51\xb8\x82\x51\xd8\x7c\x33\x81\xe1\x7e\x09\x58\xf0\xb1\xc9\xa3\x24\x34\xd3\xc7\x54\x47\x88\xdc\x4f\xca\xb7\x50\x7b\xae\x4b\xe2\x2b\xab\xb3\x7f\x3c\x1f\xd4\xf5\x19\x27\x9a\xf1\x17\x62\xc7\x6e\xfb\xf5\x9b\xa8\x6e\x16\x4a\xef\x7a\x07\x52\x2c\xb2\xf9\xaf\xb1\xef\xd8\xe2\xc3\x5d\x0b\x3d\x3f\x3d\xbd\x92\xe9\x1b\x84\x11\x2a\xab\x9f\x8d\xe2\x33\x72\xbe\x1f\x50\x7e\x6e\x42\xa3\x04\xd9\x51\x91\x32\x95\x8c\xb1\x44\x3c\x71\xb0\x92\xb8\x1b\xdd\x57\xd6\xe1\x57\xd3\xa6\x3b\x70\x73\xca\x70\xab\x82\xea\xbc\xd5\xbd\x36\xa3\x1c\x40\xbe\xf9\x3a\xeb\x58\x18\xc8\x41\x9f\x99\xa5\xae\x65\x72\xf5\x65\x75\x7e\x3e\x5a\x5f\x6a\xa4\xe8\x55\x63\xd8\x45\x0a\x77\xb4\xc6\x26\xad\x10\x9d\xd9\xa4\xfa\xe7\xc5\x17\x7e\x54\x7e\x09\xe3\x73\x8d\xbd\x6e\x59\x23\x26\x97\x1c\x29\xfb\xb5\x9b\x3d\x68\x47\x09\x8a\x6f\x84\xac\x15\x4f\x18\xa8\x0c\x1a\x24\x65\x8a\xc3\x7b\x6d\x50\x14\xc7\xd3\x75\x32\x23\x9b\x4c\xe4\x59\x17\x2a\x7c\xe5\xcb\xc7\x8e\xa3\xc2\x8d\x85\x09\x40\x42\x90\x6d\xd8\x80\x48\xa5\xa0\x34\x5d\xda\x39\x67\xcc\x4b\x76\x55\xe4\x2e\xc0\x62\xea\xb3\x8a\x40\x80\xfe\x3a\xda\xbb\x3b\x61\xd3\x29\xc7\xcd\x15\xc5\xa6\xb9\x92\xe3\x5e\x61\x90\x39\x45\x2b\x52\xa3\xcb\x5d\xed\x62\x0b\x31\xfe\x4c\x40\xc9\xa0\xe9\xc7\xc1\x41\xea\xa6\x18\x9a\xca\x89\x1f\x6e\x4d\x02\x67\x52\xf1\x2b\x5f\x96\x90\xd6\x72\xe3\x98\xa4\xa9\x23\x43\x77\x18\x3e\xb1\x9d\xdc\x0b\x2e\xf6\xad\xec\x0d\xec\x38\x72\x81\x1d\x83\xde\xb1\x83\xfa\x9e\xb0\xf4\xb8\x35\x2d\x91\xd4\x4e\xf7\x92\x37\x11\x54\xd9\x78\xac\x39\x6c\xfb\xe1\xcc\x10\x82\x60\x99\x3e\x5c\x09\xcb\xfd\xf5\x77\xd5\x2b\x90\xa1\xb6\x44\x2d\xd0\xc6\x91\xae\x61\xb6\x32\xb1\x94\x6a\x62\xe5\x2c\x6f\xc8\x90\x85\x61\x78\x65\xd2\xd0\x93\xac\x51\xde\xe4\xa1\xb8\x05\xde\xe8\x7c\xd6\x83\xe1\xb3\xd6\xee\xee\x54\x8a\xc1\xab\x91\xef\x23\x40\x04\xa4\x87\x77\xc6\xd7\xe2\x09\x8e\x90\x63\xf8\x71\x88\x34\x47\xeb\xd9\x53\x10\xa6\xd7\xfd\x29\x3b\x08\xdd\xcb\x8f\x08\x87\x16\x97\xe9\x9c\x48\x6d\x0b\x4f\x26\x37\xb5\x3b\x17\x1c\xe6\x14\x7e\x3c\x11\xc7\x19\xe1\x95\x91\x9b\x3a\x2a\x84\x71\x3f\x88\x3b\x48\x74\x3a\xaa\xd5\x99\xc5\xf4\x70\x73\x76\x53\xfb\xde\x5f\xdc\x28\x9a\x05\x93\xb0\x2d\x8a\xc9\xb2\x46\xd9\xf5\x2e\x32\xb4\x2a\xb5\x5f\x0a\xd7\x55\x94\x1b\x42\xd6\x3f\xa1\x52\xdd\x91\x7a\xe3\x19\x56\x35\x6c\x78\xc8\x46\xd6\x75\x4a\x5d\xf6\x9d\xe8\x0e\x24\xaf\x5e\x01\x4c\x32\xf0\x99\xa2\xf6\xb5\x03\x96\x36\xdd\x9d\x8e\x01\x1f\x81\xfe\x27\xb8\x62\xed\xfb\xd4\x65\xc2\x31\xfb\x2a\xe1\x1d\x9b\x88\x6f\xb7\xd8\x5e\xbe\x63\x56\x5a\x2d\x7a\x1d\x63\x84\xb5\xa6\x2a\x78\xcc\x2d\xfc\x75\xaf\x7c\xd2\x90\xff\x9d\x32\x2e\x45\xe7\x5b\xd5\x52\x6a\x32\x69\xfb\x81\x9d\x2b\x72\xd1\x25\xb4\xc3\x6a\xb9\x30\x05\x0f\x92\x77\x76\x25\xfe\x25\xe2\xee\xf5\x45\x3a\x66\x17\xd9\xd6\x6f\x63\xfd\xe7\xf1\xb8\x31\x4d\x61\xa8\x15\xae\x6b\x4c\x1d\x96\x88\x07\xd7\x35\xcc\x58\xd9\x27\xd6\x1a\x16\x30\xff\xb6\xd9\x10\x21\xfe\x60\x2c\xe2\x67\x9e\xa1\xe3\xae\xd7\x63\xc5\x41\x61\x4a\xf6\x02\x07\x9b\xe2\x0c\x1b\x2f\xdb\xb7\xf1\xea\x9a\x3e\x33\x0d\xd5\x5a\xcd\x25\x19\x8c\x2f\x6d\x5f\xc5\xac\x26\x7a\x41\xe1\xc2\x1e\x54\x3f\x14\xf9\x91\xc5\x8f\x40\xf0\x08\x0b\x12\x41\x6c\xba\x7b\xac\x5a\x81\x0c\xc4\x95\xf0\x6d\x86\xe6\x65\xf0\x7e\x87\x78\xaa\x49\x46\xa4\x16\x26\x02\x3e\x1a\x98\xf2\xe3\xb1\xb8\xae\x93\x54\x31\x17\xb3\x9d\x4d\x4a\x26\x5c\x6a\x2a\x73\xa3\x98\x87\xeb\xc7\x54\xd8\x26\xbc\xa5\x16\x38\x4a\x9c\xde\xfe\x03\x14\x97\xd8\x3e\x13\x3e\xb3\xf2\xc1\x7e\x9b\xdd\xe5\xdc\x08\x8d\xaa\x84\x0e\x85\x4f\x16\x45\xf1\x16\x65\x1b\x57\x41\xde\xb8\x57\x63\xa2\x8b\xf2\x8e\xab\xc2\xde\x18\x77\x7b\xad\x9e\x01\xcb\x7d\xe2\xe7\x20\xec\x31\x46\xc1\xf5\x84\xef\x74\xf2\x57\xa9\xf2\x9d\x1b\x15\x50\xcf\x2e\xc2\xcf\xea\x15\x72\x82\x07\xba\x81\x41\x15\x53\x65\x4f\xd6\x5e\xd3\x73\x44\xcf\xe8\x46\x8e\xae\xc1\x55\xd4\x57\xf9\x8b\xbc\x0f\x5b\xed\xb6\xf0\x86\xc3\xd9\x00\x7c\x52\xd9\x7b\xc9\xb3\x92\xcb\xd0\x03\x58\x8a\xed\x6f\x52\xee\x14\x85\xac\x39\x0b\x06\xd2\xa4\xe7\x31\x7f\xa7\x13\x8e\x35\xa1\x61\xfa\xac\xee\x49\xa2\xae\xbd\xec\x71\x82\x99\x29\x89\x06\xce\xec\x13\xb8\x83\xaf\xec\xca\xdc\xf1\xac\x38\x44\x5f\x7b\x69\x10\x82\xd0\x6e\x4b\x2c\xef\x1c\x70\xf1\x32\x71\xcb\x3b\xd3\xd6\x2b\x75\x23\x2d\x88\xcd\x65\x24\x3a\xbf\x42\xcd\x37\xdc\xf6\x06\xb5\xd9\xcc\x17\x6a\x8b\x54\xe4\x8c\xd7\xfe\x8e\x88\xaf\xaf\xac\xf0\x4a\x7b\x05\x45\x7b\xc6\xf8\x16\xc1\x60\x13\x75\xeb\x8b\x04\x7c\xeb\x8e\xd4\xd1\xcb\x61\xa1\x99\x6e\x9f\x08\xcd\x4e\xfa\xb5\x67\x68\x6c\xca\xb7\xfe\xbd\xb7\x14\xd5\xed\xd2\xe5\xc7\x71\xc1\xa6\xf8\xa1\xcf\xa2\x64\x3c\x09\xaf\x71\x99\x9f\x45\xb9\x5c\x28\xcf\x9e\x4a\x37\x2d\x87\x1d\x24\xa8\x33\x84\x5c\x0d\x1f\xc0\xd5\xe3\xb7\x6b\xba\x07\x12\x44\xf1\x3d\x84\xef\xe8\x0b\x3c\x1d\xc7\xf1\xcc\xa5\x38\xf2\xf7\x7c\xba\x56\x20\x4e\x16\x2c\x35\x3e\xae\xe3\x86\x49\x6a\x68\xe8\x89\xf8\x21\x66\x95\x69\x65\x8a\x76\xd7\x95\x83\x8a\xe7\xae\xa1\x29\xd4\x49\xb1\x96\xc0\x56\xb7\x44\xcc\xa1\xe3\xae\x3e\xf9\xc6\x8b\x19\x63\x10\x7d\xf0\x34\xab\x13\xbf\xa3\xb5\xcc\x48\x47\x46\x97\xce\x77\x47\x9d\x38\x8c\x3f\x78\x22\x8e\x05\xb0\xb8\x95\x22\xe5\xf4\x86\xe2\x92\x70\x2c\x5b\x7d\x45\x6f\xd3\xc8\xe7\x32\xc7\xb8\x68\x0f\xaa\x2e\xe6\xc0\x01\x2e\x45\xba\x90\x7c\xd2\x75\xa6\xcd\xc7\x6b\xdb\x9c\x7c\x32\x1f\x6e\xeb\xc4\x4a\xeb\xca\xd6\x7f\x6d\x4b\x9e\x57\x69\x19\x0c\xa8\x74\x3a\x78\x3a\xca\x3f\xa8\xf9\xd4\x24\x19\x33\x17\x9e\x36\xea\x52\xcb\xeb\xde\x56\xe1\x0a\xab\xc0\x37\xda\x3a\xa6\x96\xed\x53\x04\x62\x7b\x6f\x69\xfa\xaa\x5b\x7b\x37\x73\xdb\x97\x03\xdf\x0f\x84\xa7\x90\x90\x2e\x5b\x6d\x72\x87\xed\x5b\xfe\xd1\xad\x6e\xea\xc6\xf6\xce\x22\x67\x0e\x56\x53\xac\x95\xcd\xcc\x0b\x54\xed\xa2\xf8\xd4\xaf\x43\xb9\x2b\x9b\x37\x65\xaf\x50\xd4\xf3\x3f\xe5\x28\xea\x75\xbe\xbd\xd4\x1a\xfe\xd2\xeb\x72\xae\xdd\x34\x30\xb4\xda\x75\xd4\x1c\xef\x83\xad\xa7\x23\xd5\x9e\xa0\x78\x0e\x27\x88\xbf\xcc\x17\x22\x27\x03\x91\x5c\x89\x73\xea\xea\xea\x46\xbb\x14\x4a\x5f\x07\xd2\x29\xef\x5b\x12\x04\x89\x38\xb6\xc7\xe6\x5c\xc5\x75\xc4\xdb\x86\x10\x0b\xe8\x55\xaa\x29\x71\x2e\x7e\xc9\x97\xd1\x3d\xf3\x8d\x37\x76\x75\x2c\xf2\x25\x90\xcc\x1d\x9b\x8d\x13\x0a\xfb\xa8\x71\xeb\x1d\x36\xee\x41\x36\x5e\x10\x42\x3b\x2b\x05\x51\x70\x7f\x72\xae\xe3\x73\x87\xb7\xf1\xa3\x3f\x35\x30\x6b\x9d\xe6\xde\xfe\x39\xc2\x93\xaa\x57\xf4\x3a\x38\xab\x06\xe1\xf5\x57\x33\x55\x8c\x84\x4d\xc2\x9f\xb9\x9f\xd8\x65\x04\x77\x74\x7a\xb0\xde\xe1\xb5\xf7\xb7\xdc\x0a\x2f\x6f\xa7\xe1\x4a\x6f\xa8\x69\x37\x14\xb9\x3c\x5d\xf8\x50\xba\x2c\xf1\xd0\xb5\x5d\x12\x6e\xe7\xdf\x87\x7d\x85\x4d\xba\xba\x73\xf8\xbd\xa3\x6e\x16\xd9\x8e\xe6\xfe\xb3\x09\xb3\x8d\x48\xdd\x22\x6f\xd6\xc8\x29\xed\x90\x1f\xce\x42\x7f\x00\x8e\x0a\x03\xf7\x06\xa1\xe3\x0c\xf6\x10\xbd\x97\x62\x76\xe0\x45\xee\xec\xa2\x0e\xf4\xca\xcd\x8e\x42\xca\xee\xe9\x8f\xfe\x8f\x94\x0e\x83\x11\x8b\x68\x31\x8b\xc9\xee\x15\x35\x46\x7c\x11\xe4\x7b\xbe\x7b\x5c\x7d\x7d\x31\xd4\x37\x2d\xc9\xfb\x7e\xa9\x83\x9d\xdc\x7a\x47\x86\xe0\x51\x47\xbe\xc5\xfb\x27\xa2\xf7\xa0\xdc\x0a\x6b\xed\x2f\x46\x37\xc5\x92\xb5\x99\x53\x0c\xee\x54\x79\xac\x80\x90\x67\xf7\xe4\xea\x0f\x7e\xf3\xcc\xd0\x98\x32\xaf\x1b\x9a\x45\xca\x86\x61\xaf\x0f\x42\xc9\x1d\x1d\x8d\x90\xba\x51\xe2\x1b\xec\xfd\x89\xe7\x29\x27\x38\x65\x3c\x3e\xdd\xe0\x32\xe2\x80\x7e\x4b\x6c\xda\x0b\xf4\x92\x9e\xb5\xd0\x9a\x27\xba\xdd\x74\xc7\xda\xc1\x22\x3b\x63\x38\x7d\x6f\x84\x4b\x6e\x66\xeb\x13\x53\x8a\xb7\x5c\xe2\x86\xbc\x41\x1e\x60\xc6\xee\x87\xa1\xc6\xc8\x0e\xc0\xcf\xaf\x1a\x9f\xe6\x2e\xde\x74\xc0\x01\x00\x52\x08\x7f\xef\x9d\x9b\xf3\x5f\xef\xdc\x6a\x2b\xb6\x04\xa2\xb8\x0f\xcf\x5f\x82\xad\xa3\x78\xa6\x57\xca\xa7\xb5\x31\x9e\x97\x37\xd1\x08\xa3\xc6\xd3\x00\x25\x4f\x4a\xba\x64\x29\x92\x84\xed\x8e\xa6\x2d\x0e\xdc\xb4\xdc\xd9\x44\x1f\xe9\x0d\x7d\x71\x3b\x51\x1e\x01\x8f\x0c\xce\x97\xf8\x40\x7f\x51\x87\xe6\x39\xe8\x1c\xd4\xb1\x1d\xba\xe4\xb8\xd2\xe1\x8b\xe4\x84\x32\x03\x51\xe9\xd7\xc5\xc0\x03\xf5\x36\x91\x99\x0a\xf5\x11\x8a\xe5\x92\xd9\x76\x78\x45\x8e\x29\xd7\x11\x3a\x1e\x79\xc7\xcb\x1e\xe7\x7f\xc9\x00\x2a\x3f\xa7\xdd\x8a\x62\x4a\x56\x4e\x1e\xcc\x12\x10\x98\x6a\x76\x41\x50\x6a\x29\x8c\x06\x79\xa0\xf2\x7a\x63\x58\x5e\x84\x05\x5b\xcd\x6c\x47\x54\xa5\x5b\xe5\x66\x2a\xc5\xf0\x1d\x85\x90\x11\x1e\xea\xc8\xda\x3d\x8f\xcc\x76\xe5\x9f\x05\x5b\x02\x8b\xf0\xe6\x63\xa3\x55\x1d\x1a\x57\xe1\x23\x46\x60\x92\xcc\x0e\xcb\xd8\x0a\x85\x83\x7b\x33\xc7\x68\x39\x29\x64\x83\xc5\xc0\x10\x6e\x14\x1a\xd6\x0c\x1e\x94\xa0\xc1\x33\x25\xa7\x82\xef\xed\xb8\xd6\x69\x79\x83\x3e\xf6\x23\x1f\x1f\x13\xc6\xc8\xf4\x0c\x49\xbc\x34\xc6\xef\x98\x53\x70\xef\x74\xd8\x8d\x2f\x1e\x5f\x05\x6b\xda\xd0\x83\xd4\x71\xdc\xac\xac\x61\x2b\x1a\x8e\xa1\xbe\x99\x43\x08\x89\x84\xd3\x5c\xf7\x99\x4c\xfd\x3c\xb1\xe3\xf6\xb9\xe1\xa5\xf6\xdc\xb8\x28\xf6\x41\x95\xd6\x6b\x47\x68\x19\x86\x65\x59\xd1\xd8\xaf\x35\xf1\xa7\xfd\x2d\x6f\xad\x96\xd7\xd9\x15\x64\x99\xa5\x9b\xda\xa9\x84\x71\xcc\x85\xc7\x65\x8b\x31\xaa\xe9\x57\x34\x79\xf5\x8f\x2f\xc2\x76\x4f\xc5\x23\x5f\xf1\x21\xef\xbb\xc2\x7b\xbc\xf5\x7f\xf1\xf0\x41\xdb\xc4\x31\xb2\x9e\xbc\x21\xa8\xb0\xbe\xfe\x07\x5a\xdd\x05\x71\x7d\xec\xeb\x61\x67\x08\x56\x0c\x9c\x41\xf6\xc8\xe9\x22\x0b\x3a\x7d\x15\xa6\x86\xee\x2b\x5a\x03\xf2\xf4\x34\xd3\xa5\x9d\x36\x8a\x9a\x5c\x1c\x7f\xa3\x43\xad\xa7\x4b\x73\x7b\xca\x51\x24\x9a\x4e\x2d\xfc\x95\x6b\x98\x5f\x6b\xca\xc0\x19\x46\x19\xfd\x48\xcb\xb4\xfa\x3d\x4c\x4a\x9a\x53\x16\x03\xf7\x3f\x00\x7f\x2d\x0f\xe2\xfc\x51\xf7\xb3\x37\x76\x37\x77\x60\xfb\xeb\x64\xaa\x7f\x4f\xb6\x76\x04\xd9\xf2\x81\x41\xff\xae\xa6\xfd\x3b\xfa\xc5\x7f\x80\xb6\xfd\x9f\x53\xc8\xfa\x67\x02\x5d\xa9\x6a\x94\x9c\x1f\x21\x50\x90\x1d\x01\x00\x18\xc2\x00\x00\x04\xff\xdb\x92\x4e\x8e\xf6\x20\x4f\x7b\xbb\x29\xcd\x37\xca\x0b\xec\x40\xbf\xd1\xca\x26\x71\x41\xf6\x62\x67\x06\x4a\xd2\x85\x1c\x39\xf2\x2a\x56\x12\x26\xfc\x10\x6a\x8a\x37\x3b\x3c\x2f\xf2\xdc\xab\x32\x20\xe8\xb0\x8e\x63\x1e\x59\xf9\xf9\xd3\x71\x94\x60\x6d\x43\x12\x43\xca\xbb\x4c\xf0\x71\x78\xc6\xf7\xa0\x63\x1f\xa7\xa2\xda\xf0\xf8\x2f\x9f\x3b\xa7\xd7\xa4\x67\xe7\x1c\x8e\xba\x95\xcb\x13\x81\xd4\x6a\xef\xbc\x28\xd2\x65\x02\x07\x4d\x30\x9b\x23\xc6\x03\x48\xa9\xea\xb8\x40\xbb\x95\x69\xd6\x9f\x29\xb9\x35\x6d\x90\x04\xec\x48\x1b\x0a\x02\xa2\x6d\x6c\x36\x36\x78\x53\x77\xc9\x42\x7d\xe1\xe5\x04\x70\x5c\x22\xeb\x82\xea\xc6\x52\x92\xe0\x8e\x11\x2d\xb0\xf3\xe0\xb3\xc3\x74\x98\x9a\xf1\x51\x4d\xf7\x90\x25\x21\x36\x38\xc8\x5a\x53\xd8\x2d\x3b\x7c\xc6\x2f\xb3\xb9\x48\x2e\xda\xf8\x31\x9b\x68\x6b\x10\x76\x6a\x2a\x45\xd9\x29\x62\x89\xd9\x64\x38\xed\x13\xa8\x58\xa9\x79\xf8\xc2\xb1\x63\x05\x96\x4c\xb3\xde\xe3\x5f\x8b\xe5\x5b\xb1\x3e\xfd\x34\x92\x4f\x1d\xd8\x86\xf6\x3d\xca\x0a\x75\x99\xd6\x85\x91\x32\x88\xe7\x33\x41\x10\xf7\xce\x79\xd2\xf6\xac\x0c\xfd\xeb\x09\x40\xe9\x9d\xc3\x30\x96\x37\xae\xfc\x41\xd4\xe1\x96\x43\xb6\x18\x97\x5a\x5e\x1d\xf6\x47\x12\x67\x24\x52\x18\x48\x62\x09\xeb\x7a\xf9\x48\x6a\x09\x59\x5f\x6a\xa7\x43\x89\xed\xab\x50\x93\x5d\x56\x46\xbd\xc0\xce\xb8\x33\x91\xd2\xe8\xea\xf7\x3a\x30\x30\x43\xba\x90\x9c\xe4\x47\x80\xfb\x0e\xfa\x5b\xe9\x8c\x5c\x64\xaa\xa9\xb0\x9a\xd5\x37\x16\x05\x87\xe1\x39\xe9\xd3\xd8\xa6\xc8\x6f\xd2\x35\x89\x76\x84\x82\xda\x41\x7b\xb3\x98\x21\x87\xf2\xa2\x39\x1a\x09\x67\x88\xd4\xe3\xb4\xdc\x11\x75\xaf\x42\x2d\x18\x60\x75\xfe\x90\x81\xde\xb8\xc1\x6c\xd7\x45\xc2\x0d\xb1\x31\x31\x28\x74\xe7\x8e\x95\x6d\x38\xaa\x5d\x6a\x4d\x97\x62\x8c\x8d\x6c\xff\xe9\xb7\x41\xc4\x72\xa1\x86\x91\x86\x6e\x23\x6a\xcd\x2e\xfc\xdc\x33\x96\x08\x3d\xb5\xda\x0f\x08\x43\x88\x8d\x10\x7c\x12\x0a\xe4\x5a\x28\x7e\x7f\x74\xa2\x1f\x88\x0c\xc9\xe1\x94\x62\x5c\x22\x6c\xba\xb2\xd3\x36\xc0\xa5\xb7\x68\xf0\x5b\xde\xa2\x80\x31\xbb\xae\xcc\xc2\x90\xb9\x2e\x5c\xa4\x33\x64\x3b\x5c\xe3\x92\x5a\x2d\x12\x84\x9c\x32\x87\x79\x83\x9a\x2c\x72\xc1\xd4\x3c\x73\xbd\x95\xf0\x9a\x1f\x63\xc8\x52\xdf\x7d\x4e\xd8\x16\xa4\xaa\x07\x40\x2f\xbf\xe5\xfc\xa2\xa8\x7a\x3b\x75\x03\x6f\xea\xe6\x80\x98\x30\x1c\xc4\x5e\x94\x49\x89\xc2\xef\x80\xef\xfa\xac\xca\xdb\x60\xe4\xa9\x60\x22\x27\x26\x04\x83\x33\x52\x23\x04\x23\xa8\xa4\x62\xeb\x3d\xa6\xa8\x94\x0b\xbe\xad\x1b\x96\x7a\xc6\x79\x53\x93\x31\x0e\xcc\xba\x66\x89\x5d\x1b\x5b\x84\x25\xf5\x2a\x55\x28\x09\x86\x71\xa2\x8f\xa6\x05\xdc\xd7\x19\x52\x89\x22\x4e\xb0\x4e\xd6\x36\xe3\xc4\x51\x86\x98\x7d\x4d\xf7\xc8\x60\xde\x83\x44\xf1\xa1\x4c\x91\xe8\xaf\x65\xda\xdc\x7c\x5a\xf2\x29\xbb\xd1\x68\x14\x97\xdf\x21\x6a\x18\xf8\x56\xa7\x7a\xa3\xcf\x7c\x6a\xaa\x60\x58\xa0\x5c\x48\x46\xfa\x3d\x9b\xbd\xb7\x80\xad\x24\x55\xd4\x2f\xb3\xc0\xf6\x3d\x63\xcb\x65\x81\xae\xdd\xfc\x4a\xab\x81\xb8\x4c\xe0\x99\xd7\xf3\x19\xb5\x13\x28\x4c\xa4\x32\xe8\x9e\x3b\x81\xa3\xaf\xb2\x40\x12\x73\xb6\xbc\xa1\xcc\xe5\x9e\xe4\x1d\x53\x1e\x9b\xda\xe9\x27\xa0\xed\xc0\xfc\x27\x43\xef\xac\x87\xf6\x88\x3e\x5e\xbc\x62\xac\x07\x22\xf4\x42\x08\xd0\x35\x1b\xcb\xd3\x61\xee\x05\x47\xb5\x6e\x39\x58\x3b\x69\x40\xac\x70\x14\xe6\x5d\x39\x5f\x98\x62\xd0\xe0\x41\xef\x28\x63\xa8\xe8\x4a\xde\x0e\x0e\x9c\xba\x5a\x55\x37\x24\x8f\x45\x4b\x37\x9d\x11\xa4\xe7\x3d\xd6\x72\x28\xd1\xaa\xb3\x61\xd5\xd0\x77\xe8\xbd\xd0\x7a\x1b\xf2\x03\xe1\xe7\x6f\x4a\x7f\xe7\xac\xa5\x23\x00\x00\xf0\x06\x00\x00\xe2\xff\x3f\xff\x44\x27\x17\x47\x27\x73\x17\x57\x6b\x73\xb0\xe4\x97\x6a\xf4\x20\x76\x5c\xc0\x98\x90\xa1\xf3\xea\xe2\x2a\x92\x28\x1e\x19\x7f\x32\xb6\xd2\x13\xfe\xac\x6d\xdd\x77\x4e\xf1\xad\x0c\xd7\x57\x6e\x07\xd7\x9e\x53\x41\x21\xc9\xe8\xd2\xa9\xca\x4f\xf7\x8c\x9c\xa7\xee\x26\x64\xe8\x8d\x30\x66\xcf\x15\x67\x4c\x03\xf6\x84\xdb\xa8\x26\x67\x5b\x82\xa6\xd4\x20\x70\x7e\xb0\xa0\x3b\x9b\xe5\x46\x4b\x32\xb5\x4b\x5b\xcb\xb7\xd4\x5c\x09\x45\x9b\x32\xf2\xb7\x63\x6a\x15\x7a\x57\xd0\xd7\x4d\x55\x4b\x0f\x8f\x08\x2a\xf2\x70\xf0\x40\x84\xbf\x36\x4e\xfc\x33\x70\x01\x30\x51\xc0\xcf\x36\x8a\xdf\x60\x7f\x6e\xa4\xf8\x2d\xf2\x02\xe9\xff\xc2\x56\xf1\xc7\xc6\x7f\x66\x75\xf8\xad\xf1\x0f\xd1\xfe\xdf\x8c\x0f\x7f\x0d\x40\xf9\x09\xb0\xfb\x47\x23\xc4\x5f\x83\xf0\x7e\x02\x61\xc1\xfd\xa9\x31\xe2\xe7\x65\xfe\x6a\x8d\xf8\x2d\xea\x02\x05\xff\x0c\xfe\x1f\x18\x25\x7e\xed\xf0\xab\x1a\xff\x7b\x07\x66\x84\xbf\xad\xcd\xff\x5a\xfc\x57\x49\xf6\xf7\xe2\x41\x48\xff\xa5\x40\xfb\x6b\x8b\x5f\x15\xc3\xdf\x5b\x48\xa3\xfc\xd7\xfa\xe1\xaf\x4d\x7e\x15\xa8\x7e\x6f\x22\x84\xf6\x37\xe5\xaa\x5f\x4b\xff\x3a\x25\xfe\x5e\x9a\x80\xe4\x6f\xcf\x8c\xff\xdb\x9f\x0b\xe7\x0f\xa7\xef\xf1\x91\x92\xec\x4f\x86\x90\xbf\x06\x53\xfd\x04\x56\xf8\x77\xf0\x9f\x0c\x25\x7f\x5d\xed\xc5\x4f\xd5\x22\xfe\x83\x6a\x7f\x31\xa4\xfc\xbe\x95\x7f\x36\xa6\xfc\xbe\x95\x4b\xff\x6d\x8b\x7f\x0d\x2d\xbf\x92\xf6\xeb\x35\xfc\x7b\x27\x4b\xaa\xff\x93\x4b\x59\x45\x1e\x09\xf9\x9f\xfb\x83\x0b\x78\x8e\x04\x00\xf0\x52\xff\xe3\xd7\xff\x0b\x00\x00\xff\xff\x31\x93\xe5\x8d\x73\x26\x00\x00") + +func examplesStorageCassandraImageFilesKubernetesCassandraJarBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraImageFilesKubernetesCassandraJar, + "examples/storage/cassandra/image/files/kubernetes-cassandra.jar", + ) +} + +func examplesStorageCassandraImageFilesKubernetesCassandraJar() (*asset, error) { + bytes, err := examplesStorageCassandraImageFilesKubernetesCassandraJarBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/image/files/kubernetes-cassandra.jar", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraImageFilesLogbackXml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xc1\x4e\xc3\x30\x10\x44\xef\xfd\x8a\x95\xa5\xdc\xa8\x0d\x07\x2e\x95\x93\x0a\x15\x50\xb9\x50\xa9\x29\x1f\x60\xdc\x4d\x6a\x6a\x7b\xcb\xda\xa9\x2a\x21\xfe\x1d\x35\x21\x11\xdc\x3c\xd6\xcc\x1b\x8f\xf5\xf2\x12\x3c\x9c\x91\x93\xa3\x58\x8a\x3b\x79\x2b\x96\xd5\x4c\x5b\x8a\x8d\x6b\x3b\x36\xd9\x51\x84\x64\x4d\x2c\x45\xe6\x0e\x45\x35\x03\xd0\x1f\xe1\xb2\x9a\x0c\xc4\xaa\xbf\x34\xa7\x13\xc6\x3d\x32\x44\x13\xb0\x14\xf5\xee\x71\xf3\xb6\x13\x60\xbd\x49\xa9\x14\xf6\x20\x3f\x29\x49\x4f\xed\xbb\xb1\x47\x69\x89\x51\xae\x28\x26\xf2\xf8\xf0\x1b\xec\xd9\x00\x1a\xa3\xa5\x3d\xf2\xa0\x00\xf4\xc9\xe4\x8c\x1c\xab\x62\x7e\xef\xf1\x8c\x1e\x8a\xbd\xc9\xf8\xb5\x5e\x2f\x42\x58\xa4\x74\x53\xd7\xf5\x37\x14\x21\xb5\x45\xd4\x6a\x34\x0f\x28\xf5\x87\xa5\xd5\xf8\xc2\x5e\x31\x51\x86\x9e\x57\x8a\x97\xd7\xe7\xcd\xd8\x3e\x9a\xe6\x8c\x0d\x30\x36\xd3\x92\x61\xa5\xba\xe6\xfa\x93\xa7\xb6\x9d\xd6\x5a\x0a\x32\x1f\x5c\x3c\x9a\x8e\xd1\xbb\x2e\xc9\x7c\x60\xd7\x64\x31\x56\x3c\x6d\xb7\x9b\xed\x95\xa1\xd5\xbf\xbf\xad\x7e\x02\x00\x00\xff\xff\x90\xc0\x80\xbc\x81\x01\x00\x00") + +func examplesStorageCassandraImageFilesLogbackXmlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraImageFilesLogbackXml, + "examples/storage/cassandra/image/files/logback.xml", + ) +} + +func examplesStorageCassandraImageFilesLogbackXml() (*asset, error) { + bytes, err := examplesStorageCassandraImageFilesLogbackXmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/image/files/logback.xml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraImageFilesReadyProbeSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x41\x4f\xdb\x40\x10\x85\xef\xfb\x2b\x5e\x63\x0e\x80\xd2\x24\x70\xe8\xa1\x11\x07\x43\xd2\xd6\x02\x39\x08\x27\x45\x08\xa1\x6a\x6d\x8f\xed\x91\x9c\xdd\xed\xee\xb8\x26\x52\x7f\x7c\xe5\x10\x24\x68\x2f\xdd\xe3\xcc\x7b\x6f\xbf\x7d\x1b\x7d\x98\xe6\x6c\xa6\xb9\x0e\x8d\x52\x11\xae\xac\xdb\x79\xae\x1b\xc1\xf9\xec\xec\x13\xd6\x0d\xe1\xba\xcb\xc9\x1b\x12\x0a\x88\x3b\x69\xac\x0f\x13\x15\xa9\x08\x37\x5c\x90\x09\x54\xa2\x33\x25\x79\x48\x43\x88\x9d\x2e\x1a\x7a\xdd\x8c\xf1\x9d\x7c\x60\x6b\x70\x3e\x99\xe1\x78\x10\x8c\x0e\xab\xd1\xc9\x5c\x45\xd8\xd9\x0e\x5b\xbd\x83\xb1\x82\x2e\x10\xa4\xe1\x80\x8a\x5b\x02\x3d\x17\xe4\x04\x6c\x50\xd8\xad\x6b\x59\x9b\x82\xd0\xb3\x34\xfb\x6b\x0e\x21\x13\x15\xe1\xe1\x10\x61\x73\xd1\x6c\xa0\x51\x58\xb7\x83\xad\xde\xea\xa0\x65\x0f\x3c\x9c\x46\xc4\x7d\x9e\x4e\xfb\xbe\x9f\xe8\x3d\xec\xc4\xfa\x7a\xda\xbe\x08\xc3\xf4\x26\xb9\x5a\xa6\xd9\xf2\xe3\xf9\x64\xb6\xb7\x6c\x4c\x4b\x21\xc0\xd3\xcf\x8e\x3d\x95\xc8\x77\xd0\xce\xb5\x5c\xe8\xbc\x25\xb4\xba\x87\xf5\xd0\xb5\x27\x2a\x21\x76\xe0\xed\x3d\x0b\x9b\x7a\x8c\x60\x2b\xe9\xb5\x27\x15\xa1\xe4\x20\x9e\xf3\x4e\xde\x95\xf5\x4a\xc7\xe1\x9d\xc0\x1a\x68\x83\x51\x9c\x21\xc9\x46\xb8\x8c\xb3\x24\x1b\xab\x08\xf7\xc9\xfa\xdb\x6a\xb3\xc6\x7d\x7c\x77\x17\xa7\xeb\x64\x99\x61\x75\x87\xab\x55\xba\x48\xd6\xc9\x2a\xcd\xb0\xfa\x82\x38\x7d\xc0\x75\x92\x2e\xc6\x20\x96\x86\x3c\xe8\xd9\xf9\x81\xdf\x7a\xf0\x50\x23\x95\x43\x67\x19\xd1\x3b\x80\xca\xbe\x00\x05\x47\x05\x57\x5c\xa0\xd5\xa6\xee\x74\x4d\xa8\xed\x2f\xf2\x86\x4d\x0d\x47\x7e\xcb\x61\xf8\xcc\x00\x6d\x4a\x15\xa1\xe5\x2d\x8b\x96\xfd\xe4\x9f\x47\x4d\x94\xe2\x0a\x8f\x8f\x38\x3a\x36\xb6\x24\xb1\xb6\x45\x10\x2d\x5d\xc0\x6f\xd4\x9e\x1c\x8e\x6e\x57\x8b\x1f\xc9\xed\x09\x2e\x2e\x70\x3a\xda\xa4\xa3\x53\x3c\x3d\xcd\x87\x0c\xa3\x80\x83\x79\xb1\xbc\xdc\x7c\x7d\x3b\x07\xa8\x68\x2c\x06\xfd\x5c\x01\x15\x2b\x80\x9e\x59\x30\x9b\x2b\x6a\x03\xfd\x87\x35\xb5\x82\x8d\xfb\xcb\x7e\x36\x57\x15\xab\x3f\x01\x00\x00\xff\xff\xe4\xdf\x67\x81\x0c\x03\x00\x00") + +func examplesStorageCassandraImageFilesReadyProbeShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraImageFilesReadyProbeSh, + "examples/storage/cassandra/image/files/ready-probe.sh", + ) +} + +func examplesStorageCassandraImageFilesReadyProbeSh() (*asset, error) { + bytes, err := examplesStorageCassandraImageFilesReadyProbeShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/image/files/ready-probe.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraImageFilesRunSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x59\x7b\x93\xda\xc6\xb2\xff\xfb\xea\x53\x74\xc4\x56\x88\x73\x0d\x6c\x9c\xaa\x7b\xeb\x90\x22\x29\x59\x68\x59\x6c\x5e\x85\xb4\xb1\x9d\x90\xa8\x06\xa9\x81\xf1\x4a\x33\x3a\x33\xa3\xc5\x24\xe5\xef\x7e\x6a\x46\x3c\x24\x04\x7b\xec\xd8\xff\xac\xa6\xbb\x7f\xd3\xaf\xe9\xe9\x1e\x1a\xdf\x74\x96\x94\x75\x96\x44\x6e\x2c\xab\x01\x2e\xcf\x76\x82\xae\x37\x0a\x5e\xdd\xfe\xf0\x7f\x10\x6c\x10\xde\xe6\x4b\x14\x0c\x15\x4a\x70\x72\xb5\xe1\x42\xb6\xad\x86\xd5\x80\x11\x8d\x90\x49\x8c\x21\x67\x31\x0a\x50\x1b\x04\x27\x23\xd1\x06\x0f\x94\x97\xf0\x2b\x0a\x49\x39\x83\x57\xed\x5b\xf8\x4e\x33\xd8\x7b\x92\xfd\xe2\x27\xab\x01\x3b\x9e\x43\x4a\x76\xc0\xb8\x82\x5c\x22\xa8\x0d\x95\xb0\xa2\x09\x02\x7e\x8a\x30\x53\x40\x19\x44\x3c\xcd\x12\x4a\x58\x84\xb0\xa5\x6a\x63\xb6\xd9\x83\xb4\xad\x06\x7c\xd8\x43\xf0\xa5\x22\x94\x01\x81\x88\x67\x3b\xe0\xab\x32\x1f\x10\x65\x14\xd6\xff\x36\x4a\x65\xdd\x4e\x67\xbb\xdd\xb6\x89\x51\xb6\xcd\xc5\xba\x93\x14\x8c\xb2\x33\x1a\xba\xde\xc4\xf7\x5a\xaf\xda\xb7\x46\xe4\x81\x25\x28\x25\x08\xfc\x77\x4e\x05\xc6\xb0\xdc\x01\xc9\xb2\x84\x46\x64\x99\x20\x24\x64\x0b\x5c\x00\x59\x0b\xc4\x18\x14\xd7\xfa\x6e\x05\x55\x94\xad\x5f\x82\xe4\x2b\xb5\x25\x02\xad\x06\xc4\x54\x2a\x41\x97\xb9\xaa\x38\xeb\xa0\x1d\x95\x15\x06\xce\x80\x30\xb0\x1d\x1f\x86\xbe\x0d\xaf\x1d\x7f\xe8\xbf\xb4\x1a\xf0\x6e\x18\xdc\x4f\x1f\x02\x78\xe7\xcc\xe7\xce\x24\x18\x7a\x3e\x4c\xe7\xe0\x4e\x27\xfd\x61\x30\x9c\x4e\x7c\x98\xde\x81\x33\xf9\x00\x6f\x87\x93\xfe\x4b\x40\xaa\x36\x28\x00\x3f\x65\x42\xeb\xcf\x05\x50\xed\x46\x8c\xb5\xcf\x7c\xc4\x8a\x02\x2b\x5e\x28\x24\x33\x8c\xe8\x8a\x46\x90\x10\xb6\xce\xc9\x1a\x61\xcd\x9f\x50\x30\xca\xd6\x90\xa1\x48\xa9\xd4\xc1\x94\x40\x58\x6c\x35\x20\xa1\x29\x55\x44\x99\x95\x9a\x51\x6d\xcb\x92\xa8\xa0\x85\x96\xeb\xf8\xbe\x33\xe9\xcf\x9d\xd0\x9d\x4e\xee\xc2\xfe\x70\xde\xeb\xa0\x8a\x3a\x11\x91\x92\xb0\x58\x90\x32\xc7\xdd\xa0\x77\x53\x17\x38\xf1\xb6\x77\x24\x4d\x74\x9a\x6e\x11\x88\x40\x88\xb9\xd6\xcd\x57\x44\xe1\x2a\x4f\x7c\x54\xda\xd2\x8f\xb9\x54\x20\x51\xe9\x30\x00\xcf\x05\x48\xc4\x58\x5a\x74\x05\xbf\x43\xeb\x2f\xb0\x4b\x3b\xf8\x9e\xd7\xf7\x6d\xf8\xe3\x27\xad\x3b\xb3\x00\xee\xa7\x7e\x30\x71\xc6\x5e\xef\xe6\xbb\x0d\x97\x8a\x91\x14\xa1\xb5\x7a\x61\x01\x9c\x09\x9d\x33\xac\xa8\x56\x4b\x1f\x97\x15\x4f\x12\xbe\xd5\x7b\x3f\x11\xa1\x53\x27\x21\x0a\x75\x72\xe8\x88\x20\x44\x3c\x67\x0a\x05\x64\x44\x28\xa9\x13\xe6\xa6\x62\xbf\xd5\x30\xe1\xa0\x4c\x2a\x93\xf3\x22\x8b\x42\x12\xc7\x3a\x8a\x25\x47\xcd\x67\x6e\xe8\xf4\xfb\x73\xcf\xf7\x7b\xf6\xcd\xdf\x17\x09\xdd\xd6\x6d\xdb\xfc\xff\x6c\x97\x24\x27\x0f\xe3\x30\x98\xbe\xf5\x26\x67\x82\xa7\xf5\x6e\xeb\xc7\x57\x15\x11\x77\xf4\xe0\x07\xde\x3c\x34\x7e\xa9\x08\x95\x29\xdd\x5e\x33\x40\xa9\xc0\x4d\x72\xa9\x50\x34\x2b\x10\xa3\xa1\x1f\x78\x93\xa3\xca\x37\x7f\xcf\xa6\xfd\x70\x38\xeb\xb6\x6e\x0e\x0e\xff\x5c\xe2\x7e\x3d\x9f\x3a\x7d\xd7\xf1\x83\xaf\x17\x28\x3b\xe6\xbf\x08\xf5\x87\xfe\xdb\x70\x3a\x0b\x86\xe3\xe1\x6f\x8e\x3e\x42\xa1\x1f\xcc\x9d\xc0\x1b\x7c\xa8\x1a\x79\x9d\xaf\xdb\x92\x32\xae\xd8\x39\x1e\x0e\xe6\x05\xcf\x3b\x67\x18\x54\x71\xaa\xb4\x6e\xeb\x87\x8a\xa4\x37\xe9\xcf\xa6\xc3\x49\x10\xfa\x93\x61\xe0\xde\x57\x45\xcf\x88\xdd\x96\xaf\x4f\x33\xfa\x8c\xaa\x68\x53\x81\xe9\xbb\x67\xca\xbb\x15\xf2\xdc\x71\xdf\x9e\x25\x8c\xe3\xbe\xad\xb2\x0c\x27\x83\xb0\xef\x8d\x9c\x33\x37\x9c\xd6\xbb\xad\x1f\x6f\x6f\x6f\xab\x69\xe5\x3c\x04\xd3\xf0\xf5\x74\x1a\x68\xdf\xcc\xaa\x92\x55\x5a\xb7\xa5\x44\x8e\x15\xe1\xe2\x40\x55\x64\xcc\x52\x77\x45\x12\x59\x67\x0d\x67\xf3\xe9\xaf\xc3\xbe\x37\xaf\x8b\x1c\x49\xdd\x16\x17\xeb\x43\x85\x3f\x95\x8f\x84\x47\x44\x71\xd1\xde\xfb\x0f\x31\x9e\x09\xfe\x44\x63\x14\xff\xd4\x9a\x83\x8a\xfa\xf0\xe7\x82\x01\x5f\xad\xe0\xcd\xf8\x3d\x90\x5c\x6d\x4a\x88\xd3\x99\x37\x09\xdf\x8c\xdf\x57\xb1\x0e\xab\xdd\xd6\x01\xa6\x01\x12\x59\x0c\x03\x57\x17\x0c\x3f\xe8\x4f\x1f\x82\x12\xca\xc0\x0d\x8b\xb5\x2a\xcc\x71\xf9\x84\x63\x61\xb4\xe1\xba\x30\x0a\x53\x05\xdd\x83\x07\xf4\xed\x52\x16\xad\x1e\xcc\xcf\x85\x58\xbd\x02\x57\x64\x0e\x8b\x75\xee\xbb\x41\x95\xf1\x6e\x50\xe3\xa9\xba\x0f\xae\x7b\xb6\x26\x59\xab\x0a\x15\xe1\x1a\xf5\x19\xf9\x52\x91\xb8\x82\x51\xe2\xa8\x5b\x59\x2a\x7a\x70\xad\x1a\x5e\xf0\xe4\x78\xe6\xb8\xe6\xf8\x07\xf7\xf3\xe9\xc3\xe0\x7e\xf6\x10\x84\xe3\xd7\xe1\xcc\x9b\x87\xbe\xe7\x9e\x79\xf8\x79\xe6\x4b\x71\x72\x1f\xe6\x73\x6f\x12\x1c\x64\xa7\x73\xff\x3c\x68\x75\x8e\xe7\x70\xe6\x9e\xd3\xbf\x0a\x61\x88\xcf\x49\xbf\x9b\x0f\x03\xef\xaa\x78\x41\xbd\x20\xff\x30\xd1\x0e\x74\x1d\xf7\xde\x0b\xfd\xe1\x6f\x5e\x38\x9c\x84\xe3\xd7\x67\x30\x97\x99\x6a\x68\xfd\xaa\x4f\xfb\x75\xaf\x5d\xaf\xec\xf0\x65\x17\x40\x0d\xf1\xac\x50\xc3\x33\x45\xbc\x26\x3b\x70\xc3\x77\xce\xdc\x44\xdc\xf3\xef\xa7\xa3\xbe\xb1\xab\xea\xc3\x2b\x3c\x35\xac\xa1\x76\xd1\x64\xda\xf7\x4c\xb0\x75\x1a\x0f\xa7\x93\x0a\xd2\x45\x8e\x1a\xce\x5b\xef\xc3\xf3\xd1\xb8\xc4\x50\x43\xa9\x16\x99\xaf\xa9\x3f\x7b\xb2\x51\xf6\xce\x71\xbd\x4b\xb2\x47\x62\x4d\x7a\xec\x8d\x03\xe7\xf5\xc8\x0b\x9d\xd1\x68\xea\x16\xa1\x0b\x3e\xcc\xaa\x28\xd7\x98\xae\xa3\xb9\x23\xcf\x99\x3c\xcc\x4e\x41\xb8\x8c\x57\x63\xbb\x8e\x78\x37\x7a\xf0\xef\x8b\x53\x71\x76\x6c\x2f\xb3\xd4\x91\x2a\xbd\x05\x5c\x6f\x3b\x6a\x92\xa7\xbe\x0f\x2e\xb7\x83\x35\x09\xdd\x31\x40\xad\x85\xa8\x71\x1d\xdb\x05\xb8\xdc\x45\xd4\x25\xae\x54\xe5\xe7\x6a\xb1\xa6\x5d\x4e\x8e\x0a\xa5\x26\x67\xda\x0b\xa8\x35\x1c\x17\xf9\x8e\x3d\x45\x8d\xff\x48\xf9\x6c\xe9\xfb\x9f\xae\xa0\xef\xea\xe1\x08\x8c\x8b\xf4\x7c\x22\x51\xbd\x34\x93\xed\x80\x4b\x49\x33\xca\xd6\x33\xc1\x33\x14\x6a\x77\x47\x0f\xfd\x9b\x19\x4c\x7e\x2f\x8f\x01\x7d\x17\xbe\xfd\xb6\xbc\x60\xf0\xfe\x38\x4d\x29\x46\x4b\x3b\x8e\x7a\x15\x21\x1b\x7e\x86\x67\xa7\xa7\x96\x20\xd1\x63\x1c\xb5\xb3\x42\x07\x8a\xf2\x88\xa5\x29\xbd\xb3\x1d\x6d\xf8\xf9\x9f\x00\x3e\xd3\xd3\x3e\xe3\x05\xdb\x4c\x50\xc5\x8c\xc6\x2a\x33\xda\xd8\x79\x1f\xde\x7b\xce\xac\x3c\xa6\x49\x8c\xa1\x25\x28\xd8\xb2\xf3\xe7\x77\x8d\x17\xbf\xb4\xde\xa7\x9f\x7e\xbf\x6d\xfd\xeb\x8f\xff\x6d\x7f\xdf\xd1\x1f\x17\xe4\x3b\x76\x05\xf6\x68\xcd\xc7\xa7\xb4\xcd\x33\x33\xc7\xda\x97\xa1\x65\x19\x5a\xfe\x53\xe8\x6b\xf6\xcd\xbd\xd9\xc8\x71\xbd\x50\x17\xe3\xb2\x8d\xfb\xc8\xb4\xfa\xa7\xf6\x55\x60\x96\x90\x08\x0f\x03\x61\xef\x0a\x4a\xc7\x44\xee\xcb\x34\xd2\xc3\x66\x11\x45\x3d\x8b\xc6\x91\xf9\xf8\x09\x62\x6e\x81\x9e\x5f\x7b\xf6\x09\xe4\xe6\xef\x82\xf1\xcf\x3f\x3f\xdb\x86\x9a\xe8\x36\xf4\x9b\x27\x22\xcc\xb7\xb1\xcd\xbe\x79\x22\xc9\xc9\x8a\xff\x39\x78\xb3\xa9\xbd\xd9\xb4\x6f\x0a\x04\xbb\xd9\x7b\xd1\xfe\xbe\xb3\xf8\x01\x9a\x85\x40\xb3\xd3\xbc\xac\xef\x33\xa9\xa6\xf7\x5c\x51\x2b\xe6\x0c\x4d\xf7\x3d\xed\x4f\x61\xbb\x21\x0a\x30\x91\x08\x4c\xcf\xfc\xba\x89\x5e\x22\xa4\x3c\xa6\x2b\x8a\xb1\x31\x76\x47\xd2\x44\x9b\xba\xb0\x00\x96\x82\x93\x38\x22\x52\x1d\x3c\x7a\xb6\x5a\x1a\xbe\x0d\x25\x2a\x66\xdb\xd0\x4c\xfd\x7a\x21\xa6\xf2\x31\xd4\xfe\x4c\xe9\x5f\xe6\x29\x24\x94\x4a\x10\x85\xeb\x9d\x21\x23\x8b\x33\x4e\x99\x0a\xa5\xc9\x71\xb3\x96\x50\xa9\x90\x55\x60\x59\x9e\x86\x8a\x3f\x22\x2b\x3e\xcf\x77\x95\xba\x8b\xd7\xba\x98\xaf\x47\xdc\x85\x91\x1e\x6b\x42\x49\xff\xc2\x90\xb2\x30\x5d\x16\xca\x71\x16\xe5\x42\x20\x53\xa1\x40\x12\xcb\xf3\xc5\xad\xa0\x0a\x8b\xd5\x14\x53\x45\x96\x09\x86\x51\x82\x84\xe5\x59\xa8\x36\x02\xe5\x86\x27\x71\x95\x4c\x12\x33\x30\x69\xbb\xd4\x2e\xc3\x2a\x71\x95\xe4\x72\x53\xa0\x8a\xda\x66\x11\x4f\x33\x12\x29\x7e\xa4\x98\x4f\x03\xb4\x11\x3c\x5f\x6f\xb2\x5c\x85\xe9\x32\xcc\x50\x84\x12\xa3\x3d\x93\x79\x19\xb9\x6c\x1d\xd5\x24\xc6\x63\x34\xd0\xda\x37\x94\xb3\xab\x4e\x5e\x47\xe1\x96\x08\x76\xb2\xcb\x20\xc9\x72\x00\x0c\xe0\x8a\x44\x78\xf4\x79\x75\xe5\xda\x19\xd0\xf9\xf3\x15\x27\x00\xe0\x54\x52\xcc\x21\x68\xc0\x8b\x5f\xf4\x49\xd0\x38\x76\xb3\x6b\xce\xc1\xab\xab\xe7\xe0\x6e\x50\x49\xf3\xa2\x24\x90\x5c\xf1\x70\xc9\xb9\xd2\xc9\x96\x75\x9f\x1b\xa2\x6a\x35\xfc\x6e\x60\x99\x21\x53\x15\x2f\x7e\x87\x77\x4b\x25\x31\x59\xb5\x01\x82\x0d\x95\x40\x25\x70\x96\xec\x8e\xef\x82\x2b\x2a\xa4\x82\x8c\xc7\x2f\x81\xab\x0d\x8a\x2d\x95\xa8\xef\x3b\x05\x5b\x9a\x24\xfa\x84\x99\xd7\x50\xc5\x61\x8d\xaa\x78\x6d\x83\x95\xe0\xe9\x69\x8b\x6c\x3f\x65\xd7\xef\xba\xe2\x26\xee\xf5\xa0\x69\x46\xd7\x66\xf9\x9a\x2b\xf9\xad\x55\xc0\x76\x75\x0d\xde\xff\x09\x76\xd3\xbe\x29\x5e\x78\xec\xa6\xdd\x69\x9e\x9b\x69\xca\x80\xb9\x95\xb7\x08\x1b\xf2\x84\x7b\xcd\xf6\xb6\xa7\x6d\x80\x99\xe0\x4b\xb2\x4c\x76\xe5\x17\xc4\x2f\xdb\xf7\xfc\x09\xf1\x92\x02\xba\xbc\x56\xa0\xa2\x84\x48\x69\x8a\x47\x17\x2a\xfd\xc3\x19\xad\x86\x7f\x64\x34\x09\x72\x29\x9c\x2c\x86\x75\xa4\x23\x20\x55\xcc\x73\x55\xf7\xf3\xf1\x8d\xc0\xf8\x5a\x89\xfc\xaa\xab\xa1\xf5\x3e\xe1\xeb\x75\xd4\x5d\x74\x9e\x88\x58\x74\x12\xbe\x5e\x9c\xea\xf0\xa2\xb3\x8e\x16\xed\x84\xaf\x3b\x67\x9a\xd4\x2b\x36\xb2\xa7\xb6\xdc\xec\x5f\x46\x91\x99\x1c\x99\x8f\x87\xa6\x43\x7a\x33\x7e\xaf\xb5\xdd\x72\xf1\x08\x9c\x01\x67\x08\x19\x17\x6a\x9f\xe0\x6f\x7e\x1d\xeb\x81\xcb\xef\x2d\xec\xc5\xcd\xe1\x03\x5a\xfd\x8f\xe4\x89\xb4\x45\x4a\xdb\x12\xc5\x13\x8a\xf6\xe1\x05\xb6\xb7\xcf\x83\x85\xfd\x05\x3d\xcb\x5e\x2d\xab\xa1\xb3\xd5\xbc\x8e\xe8\x91\x6a\x38\x19\x40\x8a\x52\x92\x35\xca\xe2\x87\x86\x31\x5d\x0b\x53\xfb\xc0\x47\xf1\x44\x23\xb4\xea\x17\x72\x7a\xe0\x09\x15\x91\x8f\xe1\x96\x50\xa5\x2b\x8d\xc4\x88\xb3\x58\xf6\x9e\xe9\xc3\xaf\x2a\x5a\xba\xa1\x2f\x6c\x28\x28\x5b\x87\x31\x26\x64\x17\xa6\x55\xfc\x52\x67\xfd\x45\xd8\xf5\x14\x39\xbc\x46\x5d\xce\x10\xfc\xa4\x03\x04\x7a\x46\x1a\x99\x97\x2c\xc6\xcf\xf3\xa6\x1f\xf1\x74\xd1\x96\x39\x5b\xb4\x53\xc2\xc8\x1a\x53\x64\x6a\xd1\xfe\x98\x7e\x12\x98\x72\x85\x8b\x36\xc9\x35\x9a\xa2\x11\x51\xd8\xd3\x5b\x7c\xbd\x94\x29\x13\x5f\x9a\x7b\x5f\xad\x60\x46\xa4\xdc\x72\x11\x2f\xda\x2b\x9a\x60\x6f\xd1\x41\x15\x55\xb2\xff\x02\xef\x57\x9d\x84\x68\x93\xf2\x18\xfe\xff\xf6\x16\xaa\xef\xb4\x4e\xe0\x7c\xb6\xad\x68\xc3\xb7\x0c\x5a\x11\xb4\xe6\x70\x14\xbf\xc4\x59\x5d\x3b\xbe\xc8\xd9\x96\xb5\x8f\x93\x3b\x72\x7c\x7f\xe6\x04\xf7\xbd\xce\xe3\xf1\xf7\xbb\xd6\x29\x91\x3e\x12\x61\x59\x32\x2f\xed\xd2\x8a\x2a\x57\xcf\xfd\x74\xec\x99\x5f\x06\x4b\x1c\x2b\xdb\xfa\x4f\x00\x00\x00\xff\xff\xa4\xf9\xe5\x6b\x2f\x1c\x00\x00") + +func examplesStorageCassandraImageFilesRunShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraImageFilesRunSh, + "examples/storage/cassandra/image/files/run.sh", + ) +} + +func examplesStorageCassandraImageFilesRunSh() (*asset, error) { + bytes, err := examplesStorageCassandraImageFilesRunShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/image/files/run.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraJavaGitignore = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\x49\x2c\x4a\x4f\x2d\xe1\x02\x04\x00\x00\xff\xff\x8b\xd7\x9a\x86\x07\x00\x00\x00") + +func examplesStorageCassandraJavaGitignoreBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraJavaGitignore, + "examples/storage/cassandra/java/.gitignore", + ) +} + +func examplesStorageCassandraJavaGitignore() (*asset, error) { + bytes, err := examplesStorageCassandraJavaGitignoreBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/java/.gitignore", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraJavaPomXml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x51\x6f\xdb\x36\x10\x7e\xd7\xaf\xb8\x05\x7d\x68\x81\x88\xb2\xd3\x64\xeb\x36\xc1\x80\x97\x66\x9b\xb0\xc2\x06\xe2\x74\x45\x1f\x69\xea\x2c\x5d\x42\xf3\x58\x92\xb2\x6b\x14\xfb\xef\x83\x25\xd9\xb1\xec\xa4\xf1\x43\x50\xb4\x6f\xe2\xf1\x23\xef\xfb\xbe\x3b\x8a\x4c\x7f\x8a\xe3\x08\x2e\xd9\xae\x1c\x15\x65\x80\x97\x97\xaf\xe0\xac\xd7\xbf\x80\xbf\x98\x0b\x8d\x90\x19\x25\xa2\x08\xde\x91\x42\xe3\x31\x87\xca\xe4\xe8\x20\x94\x08\x43\x2b\x55\x89\x9b\x99\x53\xf8\x17\x9d\x27\x36\x70\x26\x7a\xf0\x72\x0d\x38\x69\xa7\x4e\x5e\xfd\x0e\x2b\xae\x60\x2e\x57\x60\x38\x44\x50\x79\x84\x50\x92\x87\x19\x69\x04\xfc\xac\xd0\x06\x20\x03\x8a\xe7\x56\x93\x34\x0a\x61\x49\xa1\xac\xb3\xb4\x7b\x08\xf8\xd8\xee\xc0\xd3\x20\xc9\x80\x04\xc5\x76\x05\x3c\x8b\x76\x61\x20\x43\x14\x41\x19\x82\xfd\x2d\x49\x96\xcb\xa5\x90\x35\x49\xc1\xae\x48\x74\x03\xf1\xc9\xbb\xec\xf2\x6a\x34\xb9\x8a\xcf\x44\x2f\x8a\xe0\xbd\xd1\xe8\x3d\x38\xfc\x54\x91\xc3\x1c\xa6\x2b\x90\xd6\x6a\x52\x72\xaa\x11\xb4\x5c\x02\x3b\x90\x85\x43\xcc\x21\xf0\x9a\xe6\xd2\x51\x20\x53\x9c\x82\xe7\x59\x58\x4a\x87\x11\xe4\xe4\x83\xa3\x69\x15\x3a\x0e\x6d\x48\x91\xef\x00\xd8\x80\x34\x70\x32\x9c\x40\x36\x39\x81\x3f\x86\x93\x6c\x72\x0a\x1f\xb2\x9b\xbf\xc7\xef\x6f\x22\xf8\x30\xbc\xbe\x1e\x8e\x6e\xb2\xab\x09\x8c\xaf\xe1\x72\x3c\x7a\x9b\xdd\x64\xe3\xd1\x04\xc6\x7f\xc2\x70\xf4\x11\xfe\xc9\x46\x6f\x4f\x01\x29\x94\xe8\x00\x3f\x5b\xb7\x66\xcf\x0e\x68\xed\x1d\xe6\x02\x26\xb8\x76\x17\xb7\x35\x83\x19\x37\x74\xbc\x45\x45\x33\x52\xa0\xa5\x29\x2a\x59\x20\x14\xbc\x40\x67\xc8\x14\x60\xd1\xcd\xc9\xaf\xeb\xe7\x41\x9a\x1c\x34\xcd\x29\xc8\x50\x8f\x6b\x41\x1d\x9b\x45\x14\xc7\x83\x28\xb5\x8e\x6f\x51\x85\x41\x04\x00\x90\xce\x39\x47\xdd\x36\xc1\xe0\x5c\xf4\x44\x2f\x4d\x3a\xb1\x06\x56\x38\xae\x6c\x96\x0f\x88\xc5\xdd\x1b\x2f\x94\xf4\x5e\x9a\xdc\xc9\x34\xd9\xcc\x34\x38\xe9\x02\xcd\xa4\x0a\x59\x3e\xb8\xab\xa6\xe8\x0c\x06\xf4\xf1\x0e\x7c\x07\xd0\xac\x58\xb4\x79\xfa\xa2\x27\xce\xd2\x64\xd1\x49\x3b\xad\x48\xb7\xc0\x7a\x6c\x75\x55\x90\xf1\xf7\x91\x9d\x68\x37\xb8\xcf\x66\x2e\x17\x68\xe2\x75\xaf\x92\x46\x17\x37\x4b\x0e\xe9\x74\x96\x6f\xb8\xbc\x16\x17\xa2\xbf\x47\xad\x03\x54\x6c\x66\x54\x54\xae\xb6\xfe\x70\xbe\xc6\x78\xae\x9c\xc2\x41\x5f\xbc\x49\x93\xf6\xfb\x61\x60\x90\xae\xc0\xd0\x00\xdb\xef\xc3\x8c\xc9\x57\x52\xa6\xc9\xbe\x21\x9b\x48\x6b\x5c\x9a\xb4\xbe\x36\x23\xeb\xd8\xa2\x0b\x84\x3b\xbe\xa6\x9a\x8b\xa9\x54\x77\xe2\xbe\x3c\x7d\xf1\x3a\x4d\xf6\xc3\xf7\x0b\xb6\x35\x16\xf7\xb6\xfd\x9a\x26\x87\xe1\x96\xc2\x6e\xd6\x26\x94\xa3\x45\x93\xa3\x51\x5d\x26\xdb\xf0\x6a\x4f\xe6\xa6\xf3\x6e\x2b\x43\x61\xaf\x11\x1f\x6a\x81\x16\xf7\x58\xc9\xb7\xe5\x3e\x17\xfd\xc7\xaa\x9d\x7a\xc5\x16\x07\x01\x7d\x48\x93\xe6\x7b\xc7\xe4\x87\x98\x3e\x4d\x9f\x5d\x21\x4a\x39\x57\xae\xde\xf4\x49\x15\x1b\x68\x2c\xb5\x3e\x42\x4c\x5d\xb5\x6f\xaa\xc5\xeb\xd9\xf9\xed\x11\x42\x6a\x5c\x2c\x2d\x1d\xa5\xe2\x17\x71\xf1\x75\x1d\xd6\xf1\x82\x72\xcc\x9f\x4d\x8b\x2a\xc5\x27\xf6\xa2\xed\xf8\x23\x04\xb5\xc8\x58\x69\xe9\x3d\xa9\x23\x64\xbd\xf8\xb2\x77\x9e\xfe\x7b\x16\x8d\xdf\x44\x24\x3b\xfc\x21\x14\xae\x5b\x52\x71\x8e\xa5\xac\xbc\xb8\x95\xea\xce\xb3\x39\xe6\x67\xd1\x20\x6b\x9d\xb1\xf4\xc7\x1d\xb5\x9f\x9f\x3a\x6c\xdf\x9d\xbc\xb9\xb4\x16\xdd\xf7\x2e\xb0\x7d\x0f\x3e\xf6\xea\x78\x48\xe0\x16\x7b\xe4\x7f\xf2\xc5\x97\x83\x9b\xea\x19\x5b\x75\x27\x54\x5f\x6e\xf5\xf5\xd7\xbc\xc2\xfe\x0f\x00\x00\xff\xff\x7d\x15\x14\x3c\xcb\x0b\x00\x00") + +func examplesStorageCassandraJavaPomXmlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraJavaPomXml, + "examples/storage/cassandra/java/pom.xml", + ) +} + +func examplesStorageCassandraJavaPomXml() (*asset, error) { + bytes, err := examplesStorageCassandraJavaPomXmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/java/pom.xml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraJavaSrcMainJavaIoK8sCassandraKubernetesseedproviderJava = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\x6d\x6f\xdb\xb6\xb7\x7f\x9f\x4f\x71\x66\xe0\x6e\x4a\xeb\xc9\xdd\xd6\x01\xbd\x49\x93\x3b\xd7\x71\x57\xdf\xa6\x71\x60\x25\xdd\x1d\x86\x21\xa0\xa5\x63\x9b\x0d\x4d\x6a\x24\x65\xd7\x2d\xf2\xdd\x2f\x0e\x45\xc9\x7a\x4a\x9a\x62\xc5\x5f\x2f\xea\x48\x24\x7f\x3c\xcf\xe7\xf0\xb0\x83\x27\x07\xf0\x04\x46\x2a\xdd\x69\xbe\x5c\x59\x08\x46\x87\xf0\xf3\xb3\x9f\x7e\x85\xdf\x95\x5a\x0a\x84\x89\x8c\xc3\x03\x70\x93\xce\x79\x8c\xd2\x60\x02\x99\x4c\x50\x83\x5d\x21\x0c\x53\x16\xaf\xb0\x18\xe9\xc3\x7b\xd4\x86\x2b\x09\x3f\x87\xcf\x20\xa0\x09\x3d\x3f\xd4\x3b\x3c\x86\x9d\xca\x60\xcd\x76\x20\x95\x25\xb8\xcc\x20\xd8\x15\x37\xb0\xe0\x02\x01\x3f\xc6\x98\x5a\xe0\x12\x62\xb5\x4e\x05\x67\x32\x46\xd8\x72\xbb\x72\xfb\x78\x94\x10\xfe\xf4\x18\x6a\x6e\x19\x97\xc0\x20\x56\xe9\x0e\xd4\x82\x00\x2b\x13\x81\x59\x4f\xf4\xca\xda\xf4\x68\x30\xd8\x6e\xb7\x21\x73\xc4\x86\x4a\x2f\x07\x22\x9f\x66\x06\xe7\x93\xd1\xf8\x22\x1a\xff\xf8\x73\xf8\xcc\x2f\xb8\x96\x02\x8d\x01\x8d\xff\x64\x5c\x63\x02\xf3\x1d\xb0\x34\x15\x3c\x66\x73\x81\x20\xd8\x16\x94\x06\xb6\xd4\x88\x09\x58\x45\x04\x6f\x35\xb7\x5c\x2e\xfb\x60\xd4\xc2\x6e\x99\x46\x82\x49\xb8\xb1\x9a\xcf\x33\x5b\x93\x57\x41\x1e\x37\xb5\x09\x4a\x02\x93\xd0\x1b\x46\x30\x89\x7a\xf0\x6a\x18\x4d\xa2\x3e\xfc\x31\xb9\x7a\x33\xbd\xbe\x22\xb0\x3f\x86\xb3\xd9\xf0\xe2\x6a\x32\x8e\x60\x3a\x83\xd1\xf4\xe2\x6c\x72\x35\x99\x5e\x44\x30\x7d\x0d\xc3\x8b\x3f\xe1\xed\xe4\xe2\xac\x0f\xc8\xed\x0a\x35\xe0\xc7\x54\x13\x07\x4a\x03\x27\x49\x62\x12\x42\x84\x24\x6b\xac\x68\x11\x16\x2a\x27\xc9\xa4\x18\xf3\x05\x8f\x41\x30\xb9\xcc\xd8\x12\x61\xa9\x36\xa8\x25\x97\x4b\x48\x51\xaf\xb9\x21\x8d\x1a\x60\x32\x01\xc1\xd7\xdc\x32\xeb\xde\x1d\x53\x0d\xb1\x93\xa5\x0c\x0e\x0e\x52\x16\xdf\x12\x10\x57\xe1\xed\x0b\x13\xc6\xcc\x18\x26\x13\xcd\x8e\x0f\x0e\xf8\x3a\x55\xda\x82\xd2\xcb\x42\x1d\xe5\x68\x18\x2b\xb9\xe0\xcb\x70\xe4\x7e\x8e\x1f\x3f\x35\xd3\x8e\xa4\x73\xc5\x12\xd4\x8f\x5a\xf7\x27\x5b\x8b\xaf\x5e\x9b\x5b\x28\xf1\x5e\xdf\x77\x5c\x7c\x7f\x78\xb9\x50\x31\xb3\x4a\x87\x11\x62\x72\xa9\xd5\x86\x7f\x71\xc3\x72\x05\xa9\x11\x1f\xbf\x2e\xb3\x5c\x98\xf0\xf5\xab\x6b\xcb\x05\xb7\x1c\x4d\x6d\x7a\xac\x12\x5c\xb1\xcc\x84\x1f\x58\x7c\x6b\x94\x0c\x99\x94\xca\x32\x8b\xe1\xff\x1a\x25\x27\x4b\xa9\x34\x5e\x6a\x95\xa2\xfe\xf2\xd2\x35\x4b\xc3\xe9\xfc\x03\xc6\xf6\x1d\x4b\xd3\x06\x5d\x46\x2c\x9e\x7f\x08\xcf\xd5\x72\xf9\xc0\xc0\x6b\x16\x5b\xa5\x77\x7b\xcb\xf8\xc0\x36\xec\x63\x28\xd1\x86\xc6\x88\xf0\xc9\x71\xf5\x7b\xc8\x55\x38\x99\xb6\xe5\xed\xc6\x68\xc9\x44\xa2\x1d\x26\x09\x99\x7f\x7b\xf0\x7a\x76\xde\xf1\x51\xde\x4a\xb5\x95\x6f\x94\xb1\xf7\xe1\x72\x15\x52\x84\x0a\x5f\x73\x81\x4d\xd8\x62\xec\x92\xd9\x55\x63\xcc\x60\x9c\x69\x6e\x77\xe1\x5b\xdc\xbd\x63\x92\x2d\x71\x8d\xf2\xbe\x4d\xca\xc9\x17\x2a\xca\xe2\xd5\x50\x2c\x95\xe6\x76\xb5\xfe\xd2\xf4\x88\xfe\xc0\x19\x93\x89\x5a\xdf\x33\x25\x46\x6d\xc3\xff\xfb\xf5\xd9\x7f\x8f\x48\xa3\x0b\x1e\x33\x8b\xf5\xa9\x64\x2f\xe1\x50\x6b\xb6\x3b\xe7\xc6\x76\x8c\x8d\x94\x10\x18\x3b\xd3\xef\x18\xbd\x67\xd1\x3b\x96\x1e\x1f\x1c\x0c\x9e\xb8\xa0\x1a\xa1\x58\x50\xc4\x8b\x29\xb4\xec\xe0\xf3\x6f\x82\xcb\x5b\xa8\x9a\xf4\x1d\xd8\x15\xb3\x10\x6b\x64\x16\x0d\x30\x10\xdc\x58\x50\x0b\x18\x15\x76\xed\xa6\x1b\x98\xef\x08\x30\x56\xeb\x75\x26\x89\x19\x8a\x53\x65\x9e\x78\x9b\xcd\x51\x4b\x24\x84\xe1\xe5\x84\xc2\x11\xbc\x4c\x4f\xdf\x33\xcd\x55\x66\x20\xda\x19\x8b\x6b\xa0\x57\x17\xcc\x63\x26\x61\x8e\x94\x88\x5c\x28\x8f\xbd\x57\xfb\xb4\x94\x7a\xca\x8e\x1c\x4a\x26\x4e\xe9\x97\x9e\x97\x82\x9f\xbe\xbd\x7e\x35\x9e\x5d\x8c\xaf\xc6\xd1\xcd\xe5\x74\x76\x75\xf3\xfc\xf9\x2f\x37\x57\xa3\xcb\x9b\xe1\xd9\xd9\x0c\x12\x5c\xb0\x4c\x58\x43\xa0\xb7\x25\x45\xa1\xff\x1c\x9a\x4d\x1c\xc6\x22\x33\x16\xb5\xf3\x71\xf1\x72\x20\xf8\xa3\xd0\xe9\xa5\x86\xfe\xfc\xf9\x2f\xad\xc5\xa3\x61\x14\x0d\x2f\xce\x66\xc3\x9b\x68\x3c\x7b\x3f\x19\x8d\x6b\x2b\xca\x30\xd1\x5a\x77\x39\x3d\xbb\xb9\x18\xbe\x1b\x47\x97\xc3\xc6\x9a\x1f\xfc\xcb\x0f\x5f\xde\xeb\xe6\xe2\xfa\xdd\x4d\x34\x1e\x9f\x45\x35\x84\x17\x60\x48\x79\x6d\x46\x5f\x44\x37\xc3\xd1\x68\x7a\x7d\x71\x75\x73\x35\x7d\x3b\xbe\xa8\xad\x22\x8d\xa6\xcc\xae\xca\x5c\xe5\x07\xc1\xaa\x5b\x94\x25\xd8\xcb\x41\xae\x9c\xc1\x41\x9a\xcd\x05\x8f\x21\x16\xcc\x98\x8a\x2d\x54\xed\xcc\xe5\x44\xe7\x8a\xa6\x66\x7f\xf0\xf9\xe0\x80\xa8\x4a\x35\xdf\x30\x8b\x60\x28\xcf\xc5\xb0\xe0\x92\x09\xc8\x63\x15\x88\xfc\xe7\x04\x6a\xb1\x2b\x5c\xa2\xcd\x3f\x04\xdd\x5b\x86\x8e\x9e\xc3\xe3\x7c\x03\xe7\x11\xf4\x3c\x29\xd9\x71\xb2\x21\x86\x17\x4c\x08\x98\xb3\xf8\x16\x94\xf4\x93\x06\x35\xaa\xc8\xd7\x5e\x56\xa2\xdc\x69\x81\xe1\x7c\xe3\xb8\xce\xc2\x95\xce\x8c\xcd\x43\x8f\xfe\xeb\x6f\xb0\xf4\x3a\x14\xa2\x31\x8b\x42\x9f\x64\x6b\x7c\x8f\x9a\x2f\x38\xd5\x29\x7e\x1e\x0d\x98\x36\xd1\x23\xe7\xa1\x20\x71\x9b\x3b\x64\xf1\xfd\xb7\x94\x69\xb6\x06\xf7\xaf\xa9\x13\x9f\x6b\xa5\x5b\x38\xc1\x3b\x96\xbe\x8c\xac\x76\x05\x54\xfe\x7b\xea\x41\x0e\x0b\x9d\x38\x0a\x06\xc5\xce\x35\xa9\x95\xe3\x55\x39\xc0\x89\x8f\x23\x67\x95\x8f\x41\xa1\x00\x8f\x76\x35\x3d\x9b\x1e\x01\x25\x7e\x67\x5a\xa3\x21\x50\xa4\x84\xed\x0a\x25\x70\x4b\x15\x1a\xdb\x30\x2e\x5c\xa0\xa0\xfa\x4c\x08\x48\x05\xb3\x0b\xa5\xd7\x26\x2c\x81\x0a\x61\xc1\x89\x93\x48\x43\xe4\x9f\xcb\x79\xf4\xd0\x04\x0a\xc4\xd5\x49\xc1\x61\x63\x52\x45\x60\x1b\xc5\x13\x88\x57\x18\xdf\x46\xa8\x37\xa8\xdd\x3a\x4c\x82\x46\x30\xff\xeb\x6f\x47\xb9\x29\xc4\x07\x2c\xb3\xab\xab\x5d\x8a\x87\xf0\xf9\xee\xcb\xd8\x23\xc1\x51\xda\x6f\x89\xdd\xc6\x58\xa2\x1d\xc6\x94\xc9\x30\x99\x18\x93\xa1\x36\xc4\x37\x68\xb4\x99\x96\x20\x33\x21\x8e\xa1\x0e\xb7\x7f\xbb\xab\xa8\xad\x66\x9a\x5e\xe4\x4d\xfb\x6d\x49\xd4\x53\x35\x57\x4a\x20\x93\xb0\xa1\x79\xbb\xc0\xf3\xb3\xf2\xab\xfb\x10\x45\xe7\x11\xba\x5a\x17\x4c\xfe\xdb\xa5\x1a\x4f\xb2\xd5\x19\x1e\xdf\x4f\x70\xfe\xa1\xe5\x39\x64\x43\xb7\xb5\x0c\x95\xa7\x1d\x97\x5d\x2b\x29\x8f\x2c\xbb\x4c\x3f\x7b\x07\xf3\x7b\x3f\x38\xab\xe6\x71\xed\x68\xb1\xc4\xc2\x19\xaa\xbe\x55\x91\x05\x9c\xd0\x9c\xb1\xdc\x4c\xb5\x77\x9e\xa0\xf7\x50\xae\xeb\xf5\xa1\xf7\x98\x14\xd7\x3b\x3c\x6e\x6e\xe7\xea\x85\xaf\xd8\x8e\x5e\x68\xbb\xe7\xcf\x7f\xe9\x40\x33\xa8\x37\x3c\xc6\x0b\xb6\xc6\x2e\xd0\x56\xa2\x22\xa4\x32\x17\x76\x52\x97\x10\x96\x49\x59\xdc\x09\x58\xcb\x96\x04\xe6\x59\xef\x82\xa2\x14\x76\xe2\xdf\x42\x0a\x20\xcc\x06\xbd\x01\x4b\xf9\x60\xf3\xd3\x40\x16\xbb\x98\xc1\x7f\x99\x01\xca\x24\x55\x5c\x5a\x33\xe8\xf5\x6b\x34\x74\x71\x8c\x49\xc4\x3f\xe1\x7b\xa6\x1f\xc5\xf1\x3e\x35\x13\xb9\x2f\xaa\x84\x4e\xa4\x45\xca\x6c\x05\x24\x9c\x14\x9f\xc2\x0d\x13\x19\x4e\x17\x41\x65\xb7\x36\x29\x2c\x8e\x55\x26\xed\x15\xa5\xe5\x4e\x95\x36\xd3\x3c\x51\x30\xd8\x30\x3d\xd0\x99\x1c\x18\x8c\x35\x5a\x33\xa8\xd8\x11\x57\x03\xaf\x50\x0f\x3d\x70\x29\xbf\x57\x8d\xe1\x6d\xeb\x36\x3e\xf8\x53\x58\x28\xeb\xd9\xda\x94\xa0\x42\xbb\xa5\x42\xb4\xe6\xc3\x9e\x1b\xbb\x67\x23\xca\x89\x18\x56\xf8\x0b\xaa\xcc\x56\xe9\x71\x08\xd1\xf9\x48\x49\x8b\x1f\x2d\xc4\xf6\x23\x29\xbd\xfc\x40\x65\xc2\x44\x1a\xcb\x64\x8c\x41\x2f\x8a\xce\xab\x0a\xa0\x27\xb6\x1f\x43\x2e\xb9\x0d\x28\x1e\xf6\xcb\x58\xd7\xf7\xa9\x76\x5f\xe8\x07\x87\xad\x6d\x73\xc2\x2f\x67\xd3\xab\x29\x9c\x40\x6f\x65\x6d\x6a\x8e\x06\x83\x5e\x7d\x87\xeb\xd9\x39\x64\xba\xc8\x55\xd7\xb3\xf3\x20\x5f\xf1\x34\x77\xfd\xa7\xd0\x3b\xea\xc1\xd3\xdc\x31\x9f\xe6\x66\xfb\xb4\xea\x58\x0d\x82\xf3\x72\x28\xe4\x72\xa1\x82\xde\xef\x68\x5d\x29\x5e\x1a\x30\x2c\xb4\x5a\x03\xe1\x65\x5a\x34\x56\xbe\x21\xfa\xae\x67\x24\x1a\x99\x1f\x2c\xa8\xf8\x26\x99\x07\xed\xa1\xc3\x4c\x8b\x50\xa5\x28\xf7\x9f\x82\xa6\x00\xca\x7c\x3e\xc3\xb5\xda\xf8\x02\x5e\xc9\x18\x6b\xb9\x3d\x2f\xea\x53\xb6\x64\x16\x13\x40\x3a\x8a\x6c\x57\xa8\xb1\xef\x9a\x1b\x1a\x53\xc1\x62\x6c\xe2\xba\xb3\x85\x50\x2c\x71\xa6\xb1\x47\x0b\xeb\xca\x53\x52\x86\x06\x6d\x2b\x1b\xd5\x52\x56\x93\xec\x62\x15\xe5\x1e\x15\xdf\xa2\xf5\x25\x65\x40\xb6\x40\xe6\x57\xfb\x78\xd8\x34\x18\x5a\xcd\x92\x64\x86\xff\x64\x68\xac\x3f\xb4\xef\x82\xde\x30\xb3\x2b\xa5\xf9\x27\xd7\x9e\x20\x57\x7b\x85\x4c\xa3\x76\xca\xb0\xde\x6c\xab\x40\xd5\x23\x3c\xac\xf3\x9f\xdc\x46\xaa\x23\x41\x63\xd5\xb8\xd4\xf4\x5e\xe7\x27\x7e\x79\xa8\x91\x25\xef\x29\x74\x04\x8e\x4a\x67\xfb\x69\x66\x23\xab\x91\xad\x83\xc3\xfe\x7e\x75\xbd\x3a\x2e\x1e\xbe\x80\x60\x0f\xfb\xdd\x89\x2b\x12\xba\x12\xf2\x60\x00\x6f\x50\xbb\x8e\x1a\x23\xed\xce\x05\xae\xc1\x2d\xeb\xef\xe9\x0a\x4d\x36\x37\x68\x4d\x71\xe2\x23\x30\xe0\x12\x16\x5c\x1b\x0b\x52\x25\x74\x16\x34\x68\xc2\x16\x7c\x8d\x8e\x12\xc6\xd3\x03\xdf\x7f\x0f\xdf\xb5\x46\x43\x6e\xc6\xeb\xd4\x92\xbe\xda\xe4\xd2\x43\xa7\x99\x20\x72\x93\x21\x5f\x03\x47\x6d\x5a\xbb\x98\xad\x52\x95\x4f\x23\xfd\x53\x64\xc3\x3a\x51\xcd\xc1\x0a\x4d\x0f\xc0\x96\xc4\xf9\x70\x09\x7e\x3d\x1c\x41\x13\xf0\x4b\x30\xf4\xb8\x70\x4c\x4b\x82\x4a\x08\x26\x53\x78\xb5\xa3\x68\x12\x78\xb0\x90\xa7\xad\x80\xd6\xcd\x74\x90\x23\x1a\xfe\x09\x83\x43\x38\x3d\x29\xf3\xd5\x63\xa8\x81\x66\xc4\x1a\x96\xe5\xbd\xcc\xd6\x7b\xf9\x1f\x39\x37\xa9\xee\xd4\xb0\xfb\xfb\x1e\x5f\x9e\x55\x9a\x25\x61\x26\xd7\x2a\xe1\x0b\xd7\x6d\xa0\x5c\x94\x33\xf0\x08\xbc\x76\x6d\xfd\xb8\xd1\xee\x91\xf6\xd7\xf6\x97\x6f\x22\x9a\x3b\x40\x61\xb0\x43\x19\x1e\x7d\xcb\xb4\x0c\x7a\xfb\xc0\xc1\x34\x82\x54\xb6\x72\xd2\xca\x0c\x85\xd9\xfa\xc1\x98\xcb\x7d\xd7\x22\xdc\xb1\xb5\x68\x66\x4e\x78\xa4\xf4\xab\x67\xc4\x26\xe5\xfb\xf2\x1d\x62\x66\xe3\x15\x04\x65\xef\x0d\xf0\x63\xd3\xc0\x6a\xfc\xf8\xf8\x5b\xef\xf6\x00\x4b\xb9\x71\xc7\x36\x58\x30\x2e\x30\xe9\x3f\x92\xb7\x3e\x6d\x57\x27\xee\x5f\xf0\x76\xb7\xf7\x2b\x17\x34\xaa\x0e\x74\x72\x02\xcf\x9a\x8c\x0d\x06\x30\x59\xc0\x16\x61\xa9\x28\x30\xda\x95\x3b\x97\x6f\x11\xd6\xee\x76\x68\x9e\x27\xd4\x3c\x6e\x72\x5f\xcd\xf4\x89\x8b\xbc\x7b\xc7\x4c\x2b\x7f\x56\x7b\x1a\xf9\x85\x43\xde\xed\xa0\xf9\x5b\x8a\xdc\x29\x33\x06\x93\xb6\x24\xc2\xfb\x25\x9e\x9f\xf2\xbf\x91\xf5\x7c\x1b\xe9\x7e\xad\xf7\x77\x1c\x0f\x29\x0d\x59\x46\xb5\xa7\x2b\x9d\x8a\x26\x69\xab\xfb\x7f\x17\x02\x5c\x51\x81\xc3\x4d\xde\xbb\x64\x94\xfb\x4a\x39\x17\x78\x5c\x92\x3a\x48\x77\x89\x92\x3f\x58\x58\x70\x99\x54\x9b\x26\xe5\x89\xb2\xd1\x69\x52\x16\x63\xaa\x8f\xda\xf5\x75\x57\x53\xc5\x2d\xda\xdb\x50\x7e\x33\xe2\x5a\xa9\x0f\x55\xda\x34\x0e\x27\xae\xac\xca\x57\x04\x35\xa9\x96\xd3\x5a\x9e\xd8\xb4\x57\xbb\xd2\x6a\x9b\x17\xfc\xc6\xa0\x76\xf7\x31\x5a\x2b\x1d\x60\x27\x60\x5e\x28\xff\xf5\xb7\x2b\x78\x5d\x9f\x48\xc9\x45\x48\x42\xb9\x29\x4e\xd2\xa1\x6b\x3e\xa1\x45\xed\x72\x55\xd0\x73\x22\xeb\x1d\x86\x26\x15\xdc\x06\xbd\x7e\xaf\x0f\x3f\xfe\x54\x41\xff\xb7\xe7\x90\xbc\x1c\xa8\x1c\xc1\x8f\x72\xea\x5a\xac\xb6\xa4\x08\x8f\x48\xb2\x04\x15\x5a\xcd\xe9\xd4\x70\x6f\xcc\xab\xc8\xba\xeb\x42\xa4\x23\x00\x42\xee\xdc\xe4\x7e\x0b\x66\x99\x08\xc3\x10\xce\xce\x60\xcb\x9d\x11\xea\x5b\x8a\x36\x96\x6a\x6b\xca\x1e\x90\xa5\x30\x47\xe2\xef\x13\x6a\xe5\x49\x7e\x38\x47\x44\xd5\xe6\x06\xc4\x2a\x13\x09\xd9\xb0\x50\xea\x36\x4b\x73\x31\x7d\xbe\xeb\xf5\xdd\x5f\xf7\x87\xf2\x6a\xf0\xfb\x72\xec\xfb\x4a\x01\x9f\xab\x98\xb9\xb2\xbe\x23\x0d\x3e\x28\xcc\x2e\x59\x7e\x05\xf3\xae\x9f\x42\x7c\x37\x03\xd9\x5d\x87\xc1\xff\x27\xc3\xd2\xe3\xc2\x8a\x6f\xac\xfb\x40\x51\x8d\x00\xb9\x33\x1b\xe8\xbe\x5d\x6d\x04\x1a\xef\x30\xc2\x5d\xdc\x8e\x5c\xc3\xff\xc4\x5f\xf0\x90\x72\xf6\x87\xa1\xd6\xe5\x6f\xbe\xa4\x2a\xbc\x8e\xab\x60\x0f\xec\x63\x54\xb9\x43\x5e\x62\xb7\xb4\xf7\x3f\xce\xd5\xef\xb9\x55\xf6\x31\xb2\xfa\x1c\x41\xe5\x76\x36\x7c\xd9\xb1\xe8\x34\x56\xd2\x58\x9d\xc5\x36\xa8\x10\xd0\x87\x5e\x5c\x9d\x5b\x9c\x4b\xab\xcc\x14\x5d\x42\xb7\x2a\x6c\x47\xd8\xbb\xce\x7b\x0e\x2f\xce\x66\xe7\xc6\x7f\xde\x30\x5d\x76\x80\x13\x5c\x1c\xb6\xf5\xb0\x61\xa2\x26\x7f\x94\x9b\x60\x53\x6b\x15\x51\xf9\xe1\x66\x75\x9f\xe5\x72\x80\x04\x17\x5d\x61\xdb\xf3\xb4\x61\xe2\x71\x3c\x74\xb5\x6d\xfc\xe8\x82\x0b\x3c\xac\x1a\x52\xdb\xeb\x8b\xb6\x34\x6e\x3d\x64\xe0\xae\x7e\xdd\x99\x76\x28\xc4\xab\x9d\x45\x13\xb8\x1b\x5f\x97\x20\x1c\x62\x35\x04\x94\xee\x5f\xb9\xab\x6e\x7b\x7d\xcd\xe3\x33\xe9\xea\x17\xab\x9c\xde\x8a\x9e\x4b\xd1\x57\xcb\x0f\xed\x54\x7b\xbb\xbd\x8e\xef\xc9\x80\xb3\x4c\x5a\xbe\xc6\x72\xcf\xa0\x77\xdd\x09\x6b\xea\xb8\xd0\x01\x7c\x57\x17\xf3\xfd\x25\xc1\x12\x6d\xbd\x1e\xa8\x70\xe9\xe5\x58\xbf\xa1\xaa\xe0\xfe\xd6\xf5\x1f\x0e\x02\xee\x3e\xf8\xc8\x09\x27\xae\xd5\x9e\x7b\x90\x57\x73\x7e\xbb\x57\x1c\x51\xf7\xdb\xf9\xa6\xb7\xd7\x33\x4f\xbf\xdd\x5e\xfe\xac\xde\xda\xca\x89\xa3\x14\x45\x79\x36\xfe\x76\x1b\xef\x4f\x4a\xdd\x7b\xe7\x84\x9d\xfa\xd3\x79\xb9\xf1\xdd\xc1\xff\x07\x00\x00\xff\xff\x5a\xcb\xf8\x0b\xd6\x25\x00\x00") + +func examplesStorageCassandraJavaSrcMainJavaIoK8sCassandraKubernetesseedproviderJavaBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraJavaSrcMainJavaIoK8sCassandraKubernetesseedproviderJava, + "examples/storage/cassandra/java/src/main/java/io/k8s/cassandra/KubernetesSeedProvider.java", + ) +} + +func examplesStorageCassandraJavaSrcMainJavaIoK8sCassandraKubernetesseedproviderJava() (*asset, error) { + bytes, err := examplesStorageCassandraJavaSrcMainJavaIoK8sCassandraKubernetesseedproviderJavaBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/java/src/main/java/io/k8s/cassandra/KubernetesSeedProvider.java", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraJavaSrcTestJavaIoK8sCassandraKubernetesseedprovidertestJava = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x61\x6f\xdb\x36\x10\xfd\xee\x5f\xf1\xe0\x4f\x52\xe0\xd1\x59\xd0\x01\xc5\x9c\x04\x73\x93\x74\x15\x9a\x3a\x43\xec\xae\xe8\x47\x9a\x3a\x4b\x4c\x28\x52\x23\x4f\x71\x8d\x20\xff\x7d\xa0\x64\x3b\x72\x90\x6e\xdd\xa4\x0f\x92\x78\xef\xde\xbd\x7b\x47\x6a\x7c\x34\xc0\x11\x2e\x5c\xbd\xf1\xba\x28\x19\xc9\x45\x8a\x93\xe3\x9f\x7f\xc1\xef\xce\x15\x86\x90\x59\x25\x06\x68\x41\xd7\x5a\x91\x0d\x94\xa3\xb1\x39\x79\x70\x49\x98\xd6\x52\x95\xb4\x8b\x8c\xf0\x27\xf9\xa0\x9d\xc5\x89\x38\x46\x12\x01\xc3\x6d\x68\x98\x4e\xb0\x71\x0d\x2a\xb9\x81\x75\x1c\xe9\x9a\x40\xe0\x52\x07\xac\xb4\x21\xd0\x37\x45\x35\x43\x5b\x28\x57\xd5\x46\x4b\xab\x08\x6b\xcd\x65\x5b\x67\xcb\x22\xf0\x75\xcb\xe1\x96\x2c\xb5\x85\x84\x72\xf5\x06\x6e\x15\x09\x7b\x40\x48\xde\x8a\x2e\x99\xeb\x5f\xc7\xe3\xf5\x7a\x2d\x64\x2b\x56\x38\x5f\x8c\x4d\x07\x0b\xe3\xeb\xec\xe2\x6a\x36\xbf\xfa\xe9\x44\x1c\x6f\x13\x3e\x5b\x43\x21\xc0\xd3\x5f\x8d\xf6\x94\x63\xb9\x81\xac\x6b\xa3\x95\x5c\x1a\x82\x91\x6b\x38\x0f\x59\x78\xa2\x1c\xec\xa2\xe0\xb5\xd7\xac\x6d\x31\x42\x70\x2b\x5e\x4b\x4f\x91\x26\xd7\x81\xbd\x5e\x36\x7c\xe0\xd7\x4e\x9e\x0e\x07\x00\x67\x21\x2d\x86\xd3\x39\xb2\xf9\x10\xef\xa6\xf3\x6c\x3e\xc2\x97\x6c\xf1\xe1\xe6\xf3\x22\x92\x7d\x99\xde\xde\x4e\x67\x8b\xec\x6a\x8e\x9b\x5b\x5c\xdc\xcc\x2e\xb3\x45\x76\x33\x9b\xe3\xe6\x3d\xa6\xb3\xaf\xf8\x98\xcd\x2e\x47\x20\xcd\x25\x79\xd0\xb7\xda\xc7\x0e\x9c\x87\x8e\x4e\x52\x2e\x30\xa7\xe8\x35\xf5\xa6\x88\x95\xeb\x24\x85\x9a\x94\x5e\x69\x05\x23\x6d\xd1\xc8\x82\x50\xb8\x07\xf2\x56\xdb\x02\x35\xf9\x4a\x87\x38\xd1\x00\x69\x73\x18\x5d\x69\x96\xdc\x7e\xb7\x4d\xbd\xb0\x3d\xee\x94\xf1\x60\x50\x4b\x75\x1f\x89\xb4\x13\xf7\x6f\x83\x50\x32\x04\x69\x73\x2f\x27\x83\x81\xae\x6a\xe7\x39\xce\x58\x14\xed\x06\x13\xca\x55\x95\xb3\x42\x39\x63\x48\xb1\xc8\xaa\xaa\xe1\x68\xf5\x27\x59\x4f\x76\x70\xe7\x8b\xdd\xf4\xf6\x64\xc2\x38\x25\xd9\x79\x31\x27\xca\xff\xf0\xee\x41\xe7\xe4\x0f\x32\xee\x1a\xab\x59\x64\x85\x75\x9e\x5e\x09\x2c\x28\xf0\xc1\x72\x30\xab\x37\x77\xe2\xda\x15\xc5\x0b\xa2\x7e\xe0\xbd\x54\xec\xfc\xe6\xb9\x95\x10\x0d\x51\x2d\xae\x94\x95\xf2\x14\x58\x7c\x92\xac\x4a\xf2\x41\x1c\x3d\xe3\xee\xe4\x83\x14\x96\x58\x64\x96\x78\x9a\xe7\x71\x46\x93\x83\x60\xc3\xda\x88\xa9\xf7\x72\x73\xad\x7b\xd2\x9e\x63\x1f\x64\x28\xfb\xb6\x3c\x47\xba\x84\x57\x24\x75\xad\x4e\x43\x20\xcf\xad\x9a\xba\x59\x1a\xad\xa0\x8c\x0c\x01\x1f\x9b\x25\x79\x4b\x4c\xa1\x6f\x62\x34\x06\x8f\x83\x01\x00\xd4\x5e\x3f\x48\xa6\x1d\xe5\x4a\x5b\x69\xd0\x39\x01\xd3\x3d\xce\x70\xe0\x8c\x28\x88\xbb\x85\xe4\xfb\xf4\xa2\xad\x9f\x4e\xba\x22\xbf\xc5\xa5\xee\xad\x9b\x56\x32\x2c\x65\x88\xa7\x6b\x49\xf0\x8d\x85\xb6\x41\xe7\x04\xb7\x82\xc4\x7d\xb3\x24\x28\xd3\x04\x26\x3f\x4c\x3b\x91\x5d\x4f\x0f\x4e\xe7\x28\x88\x63\xb1\x90\xa4\xe0\xd2\xbb\x75\xc0\x55\xfb\x67\x89\x7f\xa5\xc7\x16\x1d\xaf\xbe\x1e\xd4\xbb\x97\x33\x58\x5a\x7f\xc7\x94\x24\x86\xb6\x03\x38\x9d\xb3\x6f\x0f\x7c\xf7\x3c\x4f\xd2\x74\xb2\xa7\x8e\xa3\x38\xed\xcd\xf8\x1c\x21\xea\xc1\xd9\xbe\x8e\x78\xd6\xb8\x35\x20\x5e\xb2\x9d\xd1\xa2\x94\x9c\xb4\x09\x23\xe8\x90\x58\xc7\x09\x55\x35\x6f\x92\x34\x4d\x77\xe8\xa7\x97\xae\xf5\xfb\x67\x0a\x7c\x49\x2b\xd9\x98\x97\x3e\x1c\x18\xb1\x2f\xfb\x7a\xb7\xff\xdf\x93\x1f\xb3\xe4\x55\x4f\x0e\x65\xff\xab\xa3\xed\x36\xed\xe4\xed\x0f\xcd\xe9\x79\x3f\x71\x0f\x13\x32\xcf\x93\x1e\x43\xac\xf6\x6e\x33\x93\x15\x25\xc3\xb7\xe2\x4d\xbc\x87\xe9\x7f\x4f\x6c\xef\x83\xc4\x1f\x1a\xe2\x3f\x82\xf7\xa5\xfb\xc8\xee\xa4\x89\x9c\x96\x4d\x91\x0c\x3b\xef\x8c\x93\x39\xe5\x78\x7c\x1a\x8e\x3a\xbd\xbd\xed\x31\x78\xfa\x3b\x00\x00\xff\xff\x6d\x7a\x31\x1f\xd7\x07\x00\x00") + +func examplesStorageCassandraJavaSrcTestJavaIoK8sCassandraKubernetesseedprovidertestJavaBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraJavaSrcTestJavaIoK8sCassandraKubernetesseedprovidertestJava, + "examples/storage/cassandra/java/src/test/java/io/k8s/cassandra/KubernetesSeedProviderTest.java", + ) +} + +func examplesStorageCassandraJavaSrcTestJavaIoK8sCassandraKubernetesseedprovidertestJava() (*asset, error) { + bytes, err := examplesStorageCassandraJavaSrcTestJavaIoK8sCassandraKubernetesseedprovidertestJavaBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/java/src/test/java/io/k8s/cassandra/KubernetesSeedProviderTest.java", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraJavaSrcTestResourcesCassandraYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x55\xdd\x72\xd4\x38\x13\xbd\xd7\x53\xf4\x97\xb9\x00\xaa\x82\x67\x26\x05\x1f\xac\xf7\x2a\x04\x76\x99\x82\xca\x50\x71\x58\x8a\x2b\x95\x2c\xb5\x6d\x6d\x6c\x49\xdb\xdd\xce\x30\xfb\xf4\x5b\xf2\xfc\x30\xe1\x2f\xbe\x48\xa9\xfb\x74\xeb\xf4\xd1\x91\x66\x06\x57\x31\x6d\xc9\xb7\x9d\xc0\xe3\xab\x27\x70\xb1\x58\x3e\x87\x3f\x63\x6c\x7b\x84\x55\xb0\x85\x9a\xa9\x19\xbc\xf7\x16\x03\xa3\x83\x31\x38\x24\x90\x0e\xe1\x32\x19\xdb\xe1\x21\x73\x0e\x7f\x21\xb1\x8f\x01\x2e\x8a\x05\x3c\xce\x80\xb3\x7d\xea\xec\xc9\xef\xb0\x8d\x23\x0c\x66\x0b\x21\x8a\x9a\xc1\xc8\x08\xd2\x79\x86\xc6\xf7\x08\xf8\xc5\x62\x12\xf0\x01\x6c\x1c\x52\xef\x4d\xb0\x08\x1b\x2f\xdd\xb4\xcd\xbe\x49\x01\x9f\xf7\x2d\x62\x2d\xc6\x07\x30\x60\x63\xda\x42\x6c\xd4\xec\x14\x07\x46\x26\xc2\x9d\x48\x2a\xe7\xf3\xcd\x66\x53\x98\x89\x68\x11\xa9\x9d\xf7\x3b\x10\xcf\xdf\xaf\xae\xde\x5c\x57\x6f\x9e\x5e\x14\x8b\x09\xfe\x31\xf4\xc8\x0c\x84\xff\x8c\x9e\xd0\x41\xbd\x05\x93\x52\xef\xad\xa9\x7b\x84\xde\x6c\x20\x12\x98\x96\x10\x1d\x48\xcc\x5c\x37\xe4\xc5\x87\xf6\x1c\x38\x36\xb2\x31\x84\x6a\x06\xce\xb3\x90\xaf\x47\x79\x20\xd4\x81\x99\xe7\x07\x80\x18\xc0\x04\x38\xbb\xac\x60\x55\x9d\xc1\xab\xcb\x6a\x55\x9d\xc3\xa7\xd5\xed\xdb\xf5\xc7\x5b\x35\x83\x4f\x97\x37\x37\x97\xd7\xb7\xab\x37\x15\xac\x6f\xe0\x6a\x7d\xfd\x7a\x75\xbb\x5a\x5f\x57\xb0\xfe\x03\x2e\xaf\x3f\xc3\xbb\xd5\xf5\xeb\x73\x40\x2f\x1d\x12\xe0\x97\x44\x99\x7f\x24\xf0\x59\x42\x74\x05\x54\x98\x45\xc6\xaf\x87\x07\x4d\xdc\x11\xe2\x84\xd6\x37\xde\x42\x6f\x42\x3b\x9a\x16\xa1\x8d\xf7\x48\xc1\x87\x16\x12\xd2\xe0\x39\x1f\x24\x83\x09\x0e\x7a\x3f\x78\x31\x32\xad\xa7\x91\x1e\xca\xbd\x73\xc7\x27\x33\x15\xff\x4f\x65\x2f\x05\xf6\x87\xc9\xb1\x69\xd0\x0a\xe7\x51\x1f\xc5\xc2\x14\xb6\xf0\x05\x17\xef\xb1\x35\x76\x5b\x55\xb7\x59\xdb\x5b\x64\x79\x04\x35\x36\x91\x10\x6c\x67\x42\x9b\x59\xb0\xed\x70\x30\x9c\x75\x3e\xfa\x24\x6f\x65\xfb\x91\x05\x49\x07\x33\x60\x09\xb9\x16\xae\x76\x21\x35\x83\x01\x07\xc9\x2d\xb5\xe9\xfb\x68\x27\xce\x5a\xb6\x09\x4b\xe8\xd0\x24\x5d\x8f\x4d\x83\xc4\xea\xe7\xb0\xd8\x34\x13\x32\xd6\x7f\x67\xda\xca\xc6\x61\xf0\xd2\xc7\x56\xf3\x36\xd8\x12\x6a\x23\xb6\xfb\x26\xaa\xa7\xa0\xde\xf8\xe0\xe2\x46\xfb\xa0\x07\x2e\x61\x59\x2c\x4e\x61\xd8\x0e\x18\x44\xb3\xff\x17\x27\x44\x5d\xc2\xf3\x93\xbc\xf3\x84\x56\x22\x6d\x4b\x10\x43\x2d\xca\xdc\x1a\x66\x13\x1c\x99\xf9\x11\xa5\x3a\x1f\x84\x7f\x89\x9d\x10\x2a\x19\x12\x9f\x87\x42\x2a\x21\x52\x7b\xb0\xff\x11\x57\xb8\x4e\x8a\x57\x5b\xc1\x35\x39\x24\x74\x1f\xbe\x16\xa8\xde\xb3\x60\xd0\xc6\xb9\x6c\xa7\x12\x96\x17\x2f\x8a\x45\xb1\x28\x96\x8a\x25\x92\x69\x51\xa7\x48\x52\xc2\x8b\xc5\x72\xa1\x28\xd9\xfd\xf2\xb7\xe5\x8b\x85\x62\x31\x24\x3a\x18\xf1\xf7\xa8\x85\x4c\xe0\x5d\x52\x68\x44\xf5\x6d\xf8\x50\xb8\x78\x76\xa1\x6c\xec\xc7\x21\x68\x1f\x1c\x7e\x39\x8a\x74\x57\x97\xf0\x4c\xb1\xb9\x47\xa7\x6d\x1e\xe0\xd7\xb3\x9f\x02\x95\x33\x62\x74\xb6\xcc\xb1\xc4\x23\x97\x0a\x00\xe0\xe9\xf7\xa5\x19\xad\x9c\xe7\x3b\x6d\xac\x45\x66\x3d\x44\x87\x25\x0c\x83\x49\x8a\x11\x9d\x4e\x14\xef\xb3\xa5\x0f\x1d\x6c\x6f\x98\xf7\x16\xf4\xb1\xb8\x7b\xc9\x27\xe2\xbe\x1b\x6b\xa4\x80\x82\x5c\x21\xba\x0f\xfb\x52\x98\x4a\x01\x92\x21\x33\xa0\x20\xed\xe9\xec\xfe\x9e\x42\xde\x87\x4b\x38\x7b\x59\x3c\xcb\xdf\xf9\xcb\x62\xfa\xce\x14\x06\x97\xa2\xcf\xe6\x09\x5e\x6c\xf7\x93\x13\x9d\x7c\x1c\xa9\xa8\xf2\xe5\xc7\x6a\x82\x2a\xb7\x0d\x66\xf0\xf6\x58\x39\x9d\x43\x7e\xe0\x90\x45\xe7\x0b\xe6\xc6\xfe\xa7\x1e\x39\xe6\x8b\x9b\x38\x06\x77\x13\x6b\x1f\xaa\x43\xec\xfb\x2e\xda\xbb\x12\xee\x70\xcb\xc9\x58\x54\x8c\x74\x8f\xa4\x31\x58\xda\xa6\xe9\x7e\xc5\xe9\xdf\x7e\x68\x1f\x04\x29\x44\x87\x27\x88\x12\x42\x0c\x38\xa5\x73\x1b\x89\x84\x25\xd8\x18\x9a\x79\x71\x58\x3f\x48\xea\x64\x98\x37\x91\x5c\x09\x47\xd2\x13\x40\x68\x64\x79\x50\xff\x35\xf2\x0d\xe0\x87\x3d\x7c\xb0\x84\xf9\xba\x9a\x5e\xd7\xc6\xde\x8d\x89\xf7\xd2\xd9\x18\xec\x48\x94\x6f\x72\xfe\x9d\x32\xd9\x57\x9c\x4d\xba\x5f\x4d\xef\x48\x47\x71\x6c\xbb\x34\x8a\x1e\x6a\x9d\x90\x34\xa3\x2d\x61\xa1\x28\x6e\x76\xee\xd4\xa7\xee\xf9\xa1\xf4\x13\xac\x58\xbf\xbd\x3a\x98\xe7\xa4\xf8\xf4\x09\x59\xfe\x5f\x61\x98\x1e\xb2\x91\x91\xb4\xc3\xc6\x07\x74\xba\x19\x83\xdd\x89\xbd\xa3\xbd\xc7\xb0\x25\x9f\x04\xdd\xaf\xc1\xff\x05\x00\x00\xff\xff\x41\x9b\xe7\xdc\x0c\x08\x00\x00") + +func examplesStorageCassandraJavaSrcTestResourcesCassandraYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraJavaSrcTestResourcesCassandraYaml, + "examples/storage/cassandra/java/src/test/resources/cassandra.yaml", + ) +} + +func examplesStorageCassandraJavaSrcTestResourcesCassandraYaml() (*asset, error) { + bytes, err := examplesStorageCassandraJavaSrcTestResourcesCassandraYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/java/src/test/resources/cassandra.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageCassandraJavaSrcTestResourcesLogbackTestXml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x51\x8b\xe3\x36\x14\x85\xdf\xf5\x2b\x4e\x05\x03\xbb\x90\xc8\xd3\x81\x85\x32\x75\x02\xd9\x4c\x66\xc7\x74\x49\x60\x9c\x74\xd9\x47\x45\xbe\x96\xc5\xca\x92\x57\x92\x37\x1b\x4a\xff\x7b\xb1\x9d\x4c\x9b\x87\x3e\x1e\xeb\xdc\x73\x8f\xbf\x9b\xff\x32\x9f\x33\xac\x7d\x77\x0e\x46\x37\x09\xef\xd6\xef\xf1\x70\xff\xeb\x07\x7c\xf2\x5e\x5b\x42\xe1\x94\x60\x0c\x9f\x8d\x22\x17\xa9\x42\xef\x2a\x0a\x48\x0d\x61\xd5\x49\xd5\xd0\xf5\x65\x86\x3f\x29\x44\xe3\x1d\x1e\xc4\x3d\xde\x0d\x06\x7e\x79\xe2\xef\x7f\xc7\xd9\xf7\x68\xe5\x19\xce\x27\x86\x3e\x12\x52\x63\x22\x6a\x63\x09\xf4\x53\x51\x97\x60\x1c\x94\x6f\x3b\x6b\xa4\x53\x84\x93\x49\xcd\xb8\xe5\x92\x21\xf0\xf5\x92\xe0\x8f\x49\x1a\x07\x09\xe5\xbb\x33\x7c\xcd\xfe\x6b\x83\x4c\x8c\xa1\x49\xa9\x7b\xcc\xb2\xd3\xe9\x24\xe4\x58\x52\xf8\xa0\x33\x3b\x59\x62\xf6\xb9\x58\x6f\xb6\xe5\x66\xfe\x20\xee\x19\xc3\xc1\x59\x8a\x11\x81\xbe\xf7\x26\x50\x85\xe3\x19\xb2\xeb\xac\x51\xf2\x68\x09\x56\x9e\xe0\x03\xa4\x0e\x44\x15\x92\x1f\x6a\x9e\x82\x49\xc6\xe9\x19\xa2\xaf\xd3\x49\x06\x62\xa8\x4c\x4c\xc1\x1c\xfb\x74\x43\xe8\x5a\xca\xc4\x1b\x83\x77\x90\x0e\x7c\x55\xa2\x28\x39\x3e\xae\xca\xa2\x9c\xe1\x4b\xb1\x7f\xd9\x1d\xf6\x0c\x5f\x56\xaf\xaf\xab\xed\xbe\xd8\x94\xd8\xbd\x62\xbd\xdb\x3e\x15\xfb\x62\xb7\x2d\xb1\x7b\xc6\x6a\xfb\x15\x7f\x14\xdb\xa7\x19\xc8\xa4\x86\x02\xe8\x67\x17\x86\xf6\x3e\xc0\x0c\xec\xa8\x12\x28\x69\xa0\x4b\x6f\x37\x43\xed\xa7\x3a\xb1\x23\x65\x6a\xa3\x60\xa5\xd3\xbd\xd4\x04\xed\x7f\x50\x70\xc6\x69\x74\x14\x5a\x13\x87\xfb\x45\x48\x57\xc1\x9a\xd6\x24\x99\x46\x3d\xfe\xd0\x0d\x66\xc1\xe6\xf3\x25\x63\xb9\xf2\xae\x36\xba\x0f\xa3\x11\x15\x1d\x7b\xbd\xe0\xb5\xb4\x91\x38\xa2\x92\x6e\xc1\x53\xe8\x89\x2f\x19\x03\x72\xd9\x75\x34\xa2\x71\xb2\xa5\x05\x2f\xf7\x4f\xbb\xc3\x9e\x23\xc9\xa0\x29\x2d\x78\x79\x8e\x89\x5a\xe1\xfb\xc4\xa1\xac\x8c\x71\xc1\x55\x23\xbe\xfb\x28\xac\xd7\x47\xa9\xbe\x09\xe5\x03\x89\xb5\x77\xd1\x5b\x5a\x5d\xc2\xf8\x92\x01\x40\x4e\x4e\xf9\x8a\xc2\xa4\x80\xbc\x93\x29\x51\x70\xcb\xbb\xf9\x07\x4b\x3f\xc8\xe2\xae\x92\x89\xfe\x7a\x79\x79\x6c\xdb\xc7\x18\x67\x65\x59\xfe\x8d\xbb\x36\xea\x3b\x97\x67\x57\xf3\x14\x95\xdd\x64\xe5\xb5\xb1\x89\xc2\xff\x55\x1a\xbe\x1a\x25\x26\x93\xd8\x37\x81\x62\xe3\x6d\xf5\x3c\x6a\xfe\x56\x67\xec\xb0\x7c\xda\x7c\x3c\x7c\xca\xb3\x49\x5c\x96\x4d\x93\x83\xca\xb3\x2b\xa1\x89\x97\xf5\x5a\xbf\xd1\x32\x5e\x7c\xfb\x2d\x0a\x25\x63\x94\xae\x0a\x92\x63\x4c\x59\xf0\x31\x93\x67\xd3\x48\xf0\x3e\x5d\x1f\x8a\xed\xf3\xee\x4a\xe7\x1a\x3c\x0f\x54\x23\x50\xfd\x2f\xfd\x6c\xda\x3c\x0c\x0e\x07\xcd\x6e\x2e\xba\x64\xff\x04\x00\x00\xff\xff\x3b\xf9\x9d\x3f\x1e\x04\x00\x00") + +func examplesStorageCassandraJavaSrcTestResourcesLogbackTestXmlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageCassandraJavaSrcTestResourcesLogbackTestXml, + "examples/storage/cassandra/java/src/test/resources/logback-test.xml", + ) +} + +func examplesStorageCassandraJavaSrcTestResourcesLogbackTestXml() (*asset, error) { + bytes, err := examplesStorageCassandraJavaSrcTestResourcesLogbackTestXmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/cassandra/java/src/test/resources/logback-test.xml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageHazelcastHazelcastDeploymentYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x41\x4f\xc2\x40\x10\x85\xef\xfd\x15\x13\xee\x14\x1b\x63\x34\x7b\x6b\x2c\x26\x1e\x80\x46\x12\xaf\x64\x28\x83\x6c\x98\xee\xae\xbb\x53\xb4\xfe\x7a\xb3\x04\x57\x2a\x38\xa7\xdd\xf7\xcd\x7b\x93\x3c\x74\xfa\x95\x7c\xd0\xd6\x28\xa0\x4f\x21\x13\x9f\x61\x72\x28\xd6\x24\x58\x64\x7b\x6d\x36\x0a\x2a\x72\x6c\xfb\x96\x8c\x64\x2d\x09\x6e\x50\x50\x41\x06\x60\xb0\x25\x05\x3b\xfc\x22\x6e\x30\x48\x06\xc0\xb8\x26\x0e\x47\x78\x89\x83\xa3\xe6\x88\x84\x5a\xc7\x28\x74\xda\x1b\x64\xc6\x19\xa4\x5c\x4b\x8a\x5a\x4a\x8b\xd3\x58\x23\xa8\x0d\xf9\x5f\xd7\xf8\xaa\x2b\x8e\x6e\xf1\x8d\x14\xbc\x77\xd8\xe7\xda\x4e\x9c\xf6\x14\x26\x69\x6d\xbc\xef\xd6\xe4\x0d\x09\x05\x75\x9b\x3f\xac\x8a\xa1\xaf\xee\x98\x6b\xcb\xba\xe9\x15\x94\xfc\x81\x7d\x48\x9c\xcc\x41\xa5\xcf\xcf\xf9\x51\x35\x5f\xae\xaa\xc5\xac\x7c\x9e\x8f\x12\x04\x38\x20\x77\x91\x36\xdc\x05\x21\x9f\xb3\x6d\x90\x47\x17\xee\x7a\x51\xad\xe6\xe5\x6c\xba\xac\xcb\xc7\xe9\x5f\xfb\x93\xb7\xad\x3a\x13\x01\xb6\x9a\x78\xf3\x42\xdb\xa1\x7a\xd2\x6b\x94\x9d\x4a\x65\xe7\xf1\x40\x70\xd8\x50\xda\x75\xd6\xcb\x79\xeb\xff\x37\x78\x56\x78\x6d\xbd\x28\xb8\xbb\xbf\x29\xb2\xef\x00\x00\x00\xff\xff\x55\xd3\xaa\x57\x4c\x02\x00\x00") + +func examplesStorageHazelcastHazelcastDeploymentYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageHazelcastHazelcastDeploymentYaml, + "examples/storage/hazelcast/hazelcast-deployment.yaml", + ) +} + +func examplesStorageHazelcastHazelcastDeploymentYaml() (*asset, error) { + bytes, err := examplesStorageHazelcastHazelcastDeploymentYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/hazelcast/hazelcast-deployment.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageHazelcastHazelcastServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8c\x31\x0a\x02\x41\x10\x04\xf3\x79\x45\x7f\x40\xf0\x02\x11\xe6\x1b\x82\xf9\xb8\xd7\xe0\xe2\xde\xee\x32\x33\x5c\xe0\xeb\x45\x31\xd3\xac\xbb\xa0\xca\x66\xbd\xd2\xa3\x8e\xae\xd8\x17\x79\xd4\xbe\x2a\x2e\xf4\xbd\x16\xca\xc6\xb4\xd5\xd2\x54\x80\x66\x37\xb6\x78\x2f\xa0\xdb\x46\xc5\xdd\x9e\x6c\xc5\x22\xe5\x97\xc4\x64\x51\x08\x30\x87\xe7\xd7\x3a\x7c\x8e\xe2\x74\x3e\x2e\x02\x04\x1b\x4b\x0e\xff\x9f\x7c\x05\x00\x00\xff\xff\x0e\xde\x6c\xcd\x98\x00\x00\x00") + +func examplesStorageHazelcastHazelcastServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageHazelcastHazelcastServiceYaml, + "examples/storage/hazelcast/hazelcast-service.yaml", + ) +} + +func examplesStorageHazelcastHazelcastServiceYaml() (*asset, error) { + bytes, err := examplesStorageHazelcastHazelcastServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/hazelcast/hazelcast-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageMinioMinioDistributedHeadlessServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcc\x3d\x0a\x02\x31\x10\xc5\xf1\x3e\xa7\x78\x17\x10\x62\xe9\xdc\xc0\x46\x04\xc1\x7e\xcc\xbe\x62\x30\x5f\x24\xe3\x9e\x5f\x76\xd1\x46\xcb\xf9\xcd\xe3\xaf\xdd\xee\x1c\xd3\x5a\x15\xac\xc7\xf0\xb4\xba\x08\x6e\x1c\xab\x25\x86\x42\xd7\x45\x5d\x25\x00\x55\x0b\x05\xc5\xaa\xb5\x00\x64\x7d\x30\xcf\xcd\x01\xed\xfd\xfb\x98\x9d\x69\xc3\x94\x5f\xd3\x39\xce\x57\xc1\xa5\x55\x06\xa0\xb7\xe1\x9f\xfd\x61\x3f\x04\xa7\x18\xe3\x0e\xbf\xf1\xc9\xcc\xe4\x6d\xfc\xe5\xdf\x01\x00\x00\xff\xff\xa3\xed\x2b\xf4\xad\x00\x00\x00") + +func examplesStorageMinioMinioDistributedHeadlessServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageMinioMinioDistributedHeadlessServiceYaml, + "examples/storage/minio/minio-distributed-headless-service.yaml", + ) +} + +func examplesStorageMinioMinioDistributedHeadlessServiceYaml() (*asset, error) { + bytes, err := examplesStorageMinioMinioDistributedHeadlessServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/minio/minio-distributed-headless-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageMinioMinioDistributedServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xce\xb1\x0a\xc2\x40\x0c\xc6\xf1\xfd\x9e\xe2\x7b\x81\x42\x1d\xcd\xa8\xab\x43\x41\x71\x0f\xd7\x20\x87\xbd\x4b\xc8\x85\x82\x6f\x2f\xad\x9d\x1c\xf3\xff\x41\xf8\xd8\xca\x53\xbc\x17\x6d\x84\xf5\x94\xde\xa5\xcd\x84\xbb\xf8\x5a\xb2\xa4\x2a\xc1\x33\x07\x53\x02\x1a\x57\x21\xd4\xd2\x8a\x0e\xfd\xf0\x6e\x92\x37\x8b\x8f\x09\xe1\xa6\x3c\x5f\x78\xe1\x96\xc5\x13\x60\xea\xd1\x37\x05\x86\xfd\x20\x9c\xc7\x71\xdc\x03\x10\xec\x2f\x89\xe9\x3f\x9b\x6b\x68\xd6\x85\xf0\xb8\x4e\x09\xe8\xb2\x48\x0e\xf5\xdf\x1f\x36\x3b\x26\xa4\x6f\x00\x00\x00\xff\xff\xbd\x1a\x87\x76\xb8\x00\x00\x00") + +func examplesStorageMinioMinioDistributedServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageMinioMinioDistributedServiceYaml, + "examples/storage/minio/minio-distributed-service.yaml", + ) +} + +func examplesStorageMinioMinioDistributedServiceYaml() (*asset, error) { + bytes, err := examplesStorageMinioMinioDistributedServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/minio/minio-distributed-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageMinioMinioDistributedStatefulsetYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\xc1\x6a\xe3\x30\x10\xbd\xfb\x2b\x86\xf4\x1c\x27\x69\xf7\xb2\xba\x2d\x21\x2c\x65\x49\x5b\x9a\xb0\xcb\x9e\xca\x58\x9e\xc4\xa2\xb2\xa4\xd5\x8c\x0d\xdd\xaf\x5f\xe4\xc4\x89\x4d\xd2\x85\x52\x1d\x12\x18\xbd\xf7\xf4\x34\xa3\x67\x0c\xe6\x27\x45\x36\xde\x29\xc0\x10\x78\xd6\x2e\x0a\x12\x5c\x64\xaf\xc6\x95\x0a\x36\x82\x42\xbb\xc6\x6e\x48\xb2\x9a\x04\x4b\x14\x54\x19\x80\xc3\x9a\x14\xd4\xc6\x19\x9f\x71\x20\x9d\x6a\x4c\xb1\x35\x9a\x1e\x06\x5b\x00\x91\x82\x35\x1a\x59\xc1\x97\x0c\x40\xa8\x0e\x16\x85\x12\x1c\x60\x28\x98\x16\x3a\xe7\x05\xc5\x78\xc7\x7d\x09\x20\xf8\x32\x47\x1b\x2a\xcc\x5f\x9b\x82\xa2\x23\x21\xce\x8d\x9f\x19\x67\xc4\xa0\x35\x7f\xa9\x54\x30\x91\xd8\xd0\xe4\xc8\xb1\x58\x90\x1d\x28\x60\x08\x67\x3f\x00\xbd\xdd\xb4\xb4\x77\x82\xc6\x51\x3c\xc1\xa7\xa3\xab\xf5\x12\xe4\xda\xb3\x5e\x0f\x59\xdf\x3f\xdc\x3f\xbe\x7c\x5b\x2e\x57\x9b\xcd\xcb\x8f\xd5\xef\x13\x00\xa0\x45\xdb\x90\x82\x49\xa7\x32\x79\x87\xb9\x59\x2d\x9f\x57\xdb\xff\x31\x17\xb7\x77\x67\xb2\xa9\x71\xdf\x1b\x9b\x75\xbf\x2a\xb5\x92\xe5\x7c\xd1\xb8\xe7\xa1\xcd\x34\x10\x8a\x83\x42\x25\x12\xd4\xec\x40\x9e\xce\xf3\xee\x3f\x2f\x69\x87\x8d\x95\x9c\x5b\x9d\x6b\xdb\xb0\x50\xcc\xad\xd7\x68\x67\x69\x36\xef\xb1\x17\x9f\x62\xdf\x7e\x8a\x7d\xf7\x31\x76\xf0\x51\x46\x7d\x39\x4d\xfd\xc9\x47\x51\xf0\x75\x3e\x9f\x0f\x26\x50\x79\x96\x2b\x1b\x37\xb0\xad\x88\x09\x5a\x6f\x9b\x9a\xa0\xf6\x8d\x13\x06\x8c\x04\x21\xe5\x87\x85\x9c\xe4\xb0\x42\x5d\xa5\x27\x0b\xc6\x81\x54\x34\xca\xcf\x59\x69\x4f\x89\x3a\x92\xa2\x12\x0a\x64\x2a\xc1\x27\xa2\x61\xd8\x19\xb2\x65\x7e\x22\x1d\xb0\xeb\xee\xd4\xcb\xa7\x38\xba\x2f\x1c\x14\x9f\x50\x2a\x05\x7d\x2b\x7a\xfb\xc9\xb0\xf6\xae\xa5\x98\x8e\x14\xdf\x9b\xd0\x16\x4d\xcd\x50\xbc\x75\xb6\x53\x87\xa2\xb7\xb6\x7b\x3d\x37\x80\xae\x3c\xb9\x44\xe9\x10\x01\xa5\x62\xa8\xc9\xa5\xb8\xa6\x72\xe1\x5b\x4a\x76\x0f\x7a\xcb\x24\xb7\x3d\xa6\xbd\x33\x3c\xbd\x88\xfb\x85\xf5\xab\xf9\x3f\xe8\x5d\xfd\x04\xb0\xf8\x88\x7b\x9a\x6a\x8b\xcc\x0a\xd0\xbd\x49\x65\xdc\xfe\x22\xe5\xa8\x35\x31\xaf\x7d\x49\xa3\xd6\x3d\x13\x96\xbf\xa2\x11\x7a\x74\x9a\x8e\xf5\x48\xec\x9b\xa8\x87\xc0\x48\x7f\x1a\xe2\x61\xd7\x01\x8e\x27\x2b\x58\xcc\xbf\x9b\xec\x5f\x00\x00\x00\xff\xff\x72\xb1\x63\x5b\x44\x05\x00\x00") + +func examplesStorageMinioMinioDistributedStatefulsetYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageMinioMinioDistributedStatefulsetYaml, + "examples/storage/minio/minio-distributed-statefulset.yaml", + ) +} + +func examplesStorageMinioMinioDistributedStatefulsetYaml() (*asset, error) { + bytes, err := examplesStorageMinioMinioDistributedStatefulsetYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/minio/minio-distributed-statefulset.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageMinioMinioStandaloneDeploymentYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4d\x8f\xda\x30\x10\xbd\xf3\x2b\x46\xec\xb5\x74\xa1\x3d\x35\xb7\x8a\x45\xea\xaa\x85\x22\x58\x21\xf5\xb4\x1a\x92\x07\x58\xf8\x23\xb5\x27\x51\xf9\xf7\x95\x9d\x10\x4c\x3f\x73\x88\x6c\xcf\xbc\x37\x6f\xde\x0c\xd7\x6a\x07\x1f\x94\xb3\x05\xe1\x87\xc0\xc6\x63\x78\x6c\x67\x7b\x08\xcf\x46\x67\x65\xab\x82\x9e\x50\x6b\x77\x31\xb0\x32\x32\x10\xae\x58\xb8\x18\x11\x3d\xd0\xcb\x49\x05\xb2\x6c\x40\x8d\x55\xdf\x1b\xe8\x0b\xa9\x0a\x56\xd4\x41\x21\x90\x9c\x90\x43\x29\x65\x16\x64\x94\x55\x6e\x52\xdd\x02\xa1\x46\x19\xf9\x82\x78\x16\x1c\x2f\xf1\x4c\x24\x97\x1a\x05\x6d\x50\x7a\xb0\x60\x44\x24\x30\xb5\x66\x41\x17\xce\x85\xc4\x4f\xf3\x1e\x3a\x5c\x6f\x51\xdc\x97\xf8\x42\x2a\x50\x13\x50\x11\x07\x0a\xd0\x28\xc5\x79\x52\x36\x69\x0b\xf0\xad\x2a\xf1\x76\xc0\x70\x5d\xf7\xf2\xd2\xd3\x55\x57\x47\xb7\xc1\x01\x9e\xc4\x25\xe8\x7a\x37\xa7\x4e\x58\x45\x60\xaf\x15\x7c\x9f\xd8\x3a\xdd\x18\x0c\x42\x26\x7d\xd3\x41\x9c\xe7\x23\x86\x52\x75\x34\x3d\x08\xac\xec\x12\x60\xae\x59\x99\x9b\xfa\x58\x70\x15\x7d\x75\x87\xff\xd4\x8b\x5f\x19\xc1\xab\xcc\xdc\xba\x9d\xa4\xb7\x3e\xa7\x74\x56\x58\x59\xf8\xdf\x64\xdd\x9a\xed\x6a\xae\x1b\xad\xbb\xc1\x55\x38\x70\xa3\x85\x96\x31\x83\x94\xe1\x23\xe8\xe0\x9d\xa1\x27\x57\x9e\xe1\xe9\x53\xb3\x1f\x70\x29\xda\x93\x3d\xa6\x7f\x11\x07\x15\xe4\xe6\xac\x3f\x66\xb3\x99\x24\xeb\xb3\x16\x26\xf4\xf8\xab\x41\xb0\x6d\x3e\xcc\x4e\x06\x97\x25\x42\xa0\x33\x2e\xc4\xb6\xa2\x10\x97\x43\xe2\x35\x63\xea\x1a\x5b\x3e\xaf\x9e\xbf\xbe\x7e\x9c\xcf\x17\xdb\xed\xeb\xe7\xc5\xb7\xcc\xad\x96\x75\x83\x82\xc6\x49\xe8\xf8\x2f\xc8\xed\x62\xbe\x59\xbc\xfc\x0b\x39\x7b\xf7\xfe\x06\xae\x9d\x97\xbb\x06\x07\xcb\xd7\xce\x4b\x41\x1f\xa6\xd3\x69\x46\x74\x72\x41\xfe\x10\x78\xa0\xa5\x6b\xac\x24\xff\xbb\x3d\x22\x65\xfb\x8d\xab\x5d\x35\xe4\x75\xb1\x94\x7b\x57\xf4\x6e\xd5\xe8\x81\x4c\x13\x84\x0c\x4b\x79\xca\x29\x63\xd6\x1b\xe2\xbd\x6b\x91\x49\x32\x91\x6d\xcd\x72\x2a\x68\x7c\x1d\xc6\x78\xf4\x33\x00\x00\xff\xff\x40\x38\x26\xba\x1f\x04\x00\x00") + +func examplesStorageMinioMinioStandaloneDeploymentYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageMinioMinioStandaloneDeploymentYaml, + "examples/storage/minio/minio-standalone-deployment.yaml", + ) +} + +func examplesStorageMinioMinioStandaloneDeploymentYaml() (*asset, error) { + bytes, err := examplesStorageMinioMinioStandaloneDeploymentYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/minio/minio-standalone-deployment.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageMinioMinioStandalonePvcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xbd\x6e\xdc\x30\x10\x84\x7b\x3d\xc5\x00\xae\x25\xc5\xad\x5a\x17\xa9\x82\x18\x49\x70\xae\x57\xe2\xf8\xb4\x30\x45\xca\xdc\xe5\x05\xf7\xf6\x81\x7e\x2e\x48\x4a\x12\x3b\xdf\xfc\xc8\xaa\x17\x16\xd3\x9c\x06\xdc\x9e\x9b\x0f\x4d\x61\xc0\xeb\xf6\x63\xce\xe4\x97\x1c\xeb\xc2\x97\x28\xba\x34\x0b\x5d\x82\xb8\x0c\x0d\xf0\x84\x5f\xb3\x1a\x92\x2c\x44\x4d\xfa\x59\x19\xef\xd0\xc0\xe4\xfa\xae\x34\xf8\x4c\xbc\x5e\x5e\x3a\xbc\x69\x8c\x18\x89\x6a\x0c\xd0\x84\xc0\x35\xe6\xfb\xc2\xe4\x18\x19\xf3\xef\xae\xc1\x4e\x19\xb0\x68\xd2\xdc\xae\xb7\x76\xda\xdd\x00\x49\x29\xbb\xb8\xe6\x64\x9b\x25\x70\xdb\xc3\x74\x12\xd7\x59\xba\x8f\x3a\xb2\x24\x3a\xad\xd3\xdc\x9b\xe7\x22\x57\x6e\x5a\xb3\x01\x92\xee\x3e\x6b\xba\x36\x40\x94\x91\xf1\x04\xc8\xba\x3e\x7c\xfe\x11\xe8\xd2\xd8\xca\xe9\xa8\xf5\x83\x12\xb0\xe4\x42\xc8\x98\xab\x43\xa6\x89\x66\x58\x72\xa0\x61\x66\xe1\x80\xd9\x7d\x1d\xfa\xfe\xff\x00\x21\x4f\xd6\x57\x63\x69\xaf\x55\x03\xfb\xf5\xef\x84\xed\x11\xdb\xfa\xa7\x83\xd5\xee\xac\xad\xdf\xfe\xfc\xb6\xbd\x8e\x78\xed\xee\xfe\x56\xd4\xf9\x3d\x4d\x6c\x80\x42\xcb\xb5\x4c\x8f\x83\x73\x75\x3d\xf6\x2d\xfc\xac\x34\xc7\x7b\x2e\x38\xeb\x74\xf8\x39\xe7\x1a\xc3\xb6\xb8\xdc\x44\xa3\x8c\x91\xdb\xec\xdb\xfd\x14\xab\x39\x4b\xb7\xa3\x4e\xf1\x09\xc6\x03\x30\xe0\xf9\xcb\x57\x6d\xfe\x04\x00\x00\xff\xff\x57\xb6\xfb\xb5\x16\x02\x00\x00") + +func examplesStorageMinioMinioStandalonePvcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageMinioMinioStandalonePvcYaml, + "examples/storage/minio/minio-standalone-pvc.yaml", + ) +} + +func examplesStorageMinioMinioStandalonePvcYaml() (*asset, error) { + bytes, err := examplesStorageMinioMinioStandalonePvcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/minio/minio-standalone-pvc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageMinioMinioStandaloneServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xce\xb1\x0a\xc2\x40\x0c\xc6\xf1\xfd\x9e\xe2\x7b\x81\x42\x1d\xcd\xa8\xab\x43\x41\x71\x0f\xd7\x20\x87\xbd\x4b\xc8\x85\x82\x6f\x2f\xad\x9d\x1c\xf3\xff\x41\xf8\xd8\xca\x53\xbc\x17\x6d\x84\xf5\x94\xde\xa5\xcd\x84\xbb\xf8\x5a\xb2\xa4\x2a\xc1\x33\x07\x53\x02\x1a\x57\x21\xd4\xd2\x8a\x0e\xfd\xf0\x6e\x92\x37\x8b\x8f\x09\xe1\xa6\x3c\x5f\x78\xe1\x96\xc5\x13\x60\xea\xd1\x37\x05\x86\xfd\x20\x9c\xc7\x71\xdc\x03\x10\xec\x2f\x89\xe9\x3f\x9b\x6b\x68\xd6\x85\xf0\xb8\x4e\x09\xe8\xb2\x48\x0e\xf5\xdf\x1f\x36\x3b\x26\xa4\x6f\x00\x00\x00\xff\xff\xbd\x1a\x87\x76\xb8\x00\x00\x00") + +func examplesStorageMinioMinioStandaloneServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageMinioMinioStandaloneServiceYaml, + "examples/storage/minio/minio-standalone-service.yaml", + ) +} + +func examplesStorageMinioMinioStandaloneServiceYaml() (*asset, error) { + bytes, err := examplesStorageMinioMinioStandaloneServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/minio/minio-standalone-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageMysqlGaleraImageDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\xed\x6e\xdb\xb8\x12\xfd\xcf\xa7\x38\x90\x2f\xd2\xf6\x22\x92\x73\xdb\x24\x2d\x5a\xdc\x05\xdc\xc4\xc1\x1a\x4d\xe4\xac\xed\xa4\x0d\xba\x45\x40\x93\x63\x89\x88\x44\xaa\x24\x15\x47\xe8\xf6\xdd\x17\x94\xe4\xb4\x4e\x3f\xb0\xbb\x58\xff\x90\xa5\x99\xe1\x99\x33\x73\x38\x33\xc0\x91\xa9\x1a\xab\xb2\xdc\xe3\xe9\xde\xff\x0e\xb1\xc8\x09\x6f\xea\x25\x59\x4d\x9e\x1c\x46\xb5\xcf\x8d\x75\x09\x1b\xb0\x01\x4e\x95\x20\xed\x48\xa2\xd6\x92\x2c\x7c\x4e\x18\x55\x5c\xe4\xb4\xf1\xec\xe2\x92\xac\x53\x46\xe3\x69\xb2\x87\xc7\x21\x20\xea\x5d\xd1\x93\x57\x6c\x80\xc6\xd4\x28\x79\x03\x6d\x3c\x6a\x47\xf0\xb9\x72\x58\xa9\x82\x40\x77\x82\x2a\x0f\xa5\x21\x4c\x59\x15\x8a\x6b\x41\x58\x2b\x9f\xb7\x69\x7a\x90\x84\x0d\x70\xd5\x43\x98\xa5\xe7\x4a\x83\x43\x98\xaa\x81\x59\x7d\x1d\x07\xee\x5b\xc2\xe1\x97\x7b\x5f\xbd\x1c\x0e\xd7\xeb\x75\xc2\x5b\xb2\x89\xb1\xd9\xb0\xe8\x02\xdd\xf0\x74\x72\x34\x4e\xe7\xe3\xf8\x69\xb2\xd7\x1e\xb9\xd0\x05\x39\x07\x4b\x1f\x6b\x65\x49\x62\xd9\x80\x57\x55\xa1\x04\x5f\x16\x84\x82\xaf\x61\x2c\x78\x66\x89\x24\xbc\x09\x7c\xd7\x56\x79\xa5\xb3\x5d\x38\xb3\xf2\x6b\x6e\x89\x0d\x20\x95\xf3\x56\x2d\x6b\xbf\xd5\xac\x0d\x3b\xe5\xb6\x02\x8c\x06\xd7\x88\x46\x73\x4c\xe6\x11\x5e\x8f\xe6\x93\xf9\x2e\x1b\xe0\xed\x64\xf1\xeb\xf4\x62\x81\xb7\xa3\xd9\x6c\x94\x2e\x26\xe3\x39\xa6\x33\x1c\x4d\xd3\xe3\xc9\x62\x32\x4d\xe7\x98\x9e\x60\x94\x5e\xe1\xcd\x24\x3d\xde\x05\x29\x9f\x93\x05\xdd\x55\x36\xf0\x37\x16\x2a\xb4\x91\x64\xe8\xd9\x9c\x68\x8b\xc0\xca\x74\x84\x5c\x45\x42\xad\x94\x40\xc1\x75\x56\xf3\x8c\x90\x99\x5b\xb2\x5a\xe9\x0c\x15\xd9\x52\xb9\x20\xa6\x03\xd7\x92\x0d\x50\xa8\x52\x79\xee\x5b\xcb\x37\x45\x25\x8c\x9d\xcc\xa6\x67\xa8\x97\xb5\xf6\xf5\x4b\x6f\x6b\xe7\x1b\xc6\x06\xe0\x52\xc2\xd4\x36\xc8\x6d\x03\x10\x32\x6b\xea\x0a\x2b\x65\x9d\x0f\x1d\x2c\xf9\x0d\xc1\xd5\xb6\x65\xa8\x2c\x26\xc7\x0e\x19\x79\x70\xe7\x54\xa6\x49\x82\x0d\x20\x8c\x76\xca\x79\xd2\xbe\x68\x76\x61\x29\xe3\x56\xb6\x32\x99\x15\xd6\x39\xf7\x74\x4b\x16\x92\x2a\xd2\x92\xb4\x50\xd4\x23\x48\x49\x92\xcd\x2e\xd2\x2e\x65\x20\x12\x5b\x94\x8d\xfb\x58\x60\x67\xa7\x25\xd4\xdb\xe2\xac\x37\xb7\x4f\xc6\xc6\xe9\x25\xce\xc7\xb3\xa3\x69\x3a\xba\x7e\xb7\x98\x8d\x8e\x5f\x5f\x5f\x8e\x67\xf3\xc9\x34\xc5\x41\x72\xd8\xba\xcf\xae\xe6\xbf\x9d\x7e\x63\x5d\x8c\x67\x67\x28\x94\xae\xef\x58\x9b\x98\x57\x3e\x0e\x54\xea\x4a\x72\x4f\x68\x6d\xc7\xe3\xd7\x93\x51\x7a\x7d\x32\x9b\xa6\x8b\x71\x7a\xfc\x7f\x6d\xb4\xd2\x9e\x2c\x17\x5e\xdd\xd2\xfd\x11\xa5\x9d\xe7\x45\x81\xb8\x09\x52\x14\x88\x63\x6d\xe2\xde\x18\x5b\x12\xa6\x2c\x49\x4b\x17\x2a\xb1\x25\x62\xbb\xc2\xf0\x96\xdb\x61\xa1\x96\x43\x5e\xf9\x61\xa1\x9c\x77\xc3\xff\x7e\xa1\x71\x43\x0d\xb8\xbc\x45\x1c\xde\x1c\xd9\xd0\xb2\xf0\x96\x64\xba\xae\xb2\x44\x93\x47\x1c\x70\x6f\x5b\x3f\x5e\x1c\xec\x3d\x1f\x9f\x8c\x0e\x3a\x00\x12\xb9\x41\x24\x69\xb9\x19\x27\x4b\x95\x49\x2a\xb2\xc2\x68\x9e\x08\x53\x86\x9c\xe8\x44\x47\xc9\x95\x8e\xf0\x0b\x86\xe4\x45\xcb\xc5\x99\xda\x0a\x72\x49\xe0\x94\xc8\xe1\xe6\x58\xf8\xdc\x46\x8f\x9d\x15\x7f\x23\xc3\x5f\x4c\xc1\x06\xed\x45\x8d\xee\xfb\xd3\xaa\x1c\xc1\xf9\x7a\xb5\x42\x4e\xb6\x9d\xc8\x25\x09\xde\xad\x24\xea\xae\x41\xdc\x35\x89\x0d\x50\x19\xe7\x43\xe7\x21\x0d\x39\xfd\xc8\x23\xe7\x41\x28\x1d\xa6\xad\x50\x42\x79\xac\x79\x13\xee\xb2\x54\xae\x5d\x13\x01\x83\x0d\x3a\x98\xeb\x5e\xb3\x6b\xb9\x84\x30\x92\x2a\xee\x73\x2c\xc9\x29\x49\x2e\x00\x85\x59\xe3\x90\xdc\xf3\x25\x0f\x9b\xab\xb0\xc4\x65\xc3\x06\x88\x84\xd1\x2b\x95\xd5\x96\x64\x84\xc7\x8a\x76\x7b\xc2\x4a\x63\xbb\x92\xee\xf9\x24\xcc\x5a\xe1\xcc\x2e\xd6\x04\x47\x1e\x92\x96\x01\xa1\x15\xf9\x7e\xd0\x46\xe7\x0b\x70\x14\xca\xfb\x82\xf0\xb1\x56\xe4\xc9\xb6\x1a\x7c\xc2\xef\x0c\x0f\x7e\xad\x2e\x7d\x2b\xfb\x6e\x6c\xfe\x0e\x92\xc3\xef\x7b\x86\xa1\x92\x58\x2a\x0b\x47\x05\x09\x8f\x47\x8f\x5e\xfd\x5b\xd0\xd6\x18\x7f\x5d\x71\xe7\xd6\xc6\x4a\xdc\xbf\x6c\x67\xf8\x8c\x3f\x36\xa5\xc7\x8e\x7c\xdc\xd1\x68\x97\xd6\x97\xa0\x9d\x9d\x87\xa3\xb9\xb3\xf3\xcf\x06\xb3\xa5\x79\xe7\x2d\x97\xcb\x58\x14\xb5\xf3\x64\x63\x51\x28\xd2\x3e\x8e\xfe\xf3\x69\x6b\x4b\x7c\x8e\xb6\x1b\xf1\xa3\xd3\xa6\x2c\x8d\xfe\xde\xe9\x1f\x1c\xe8\x9b\xf4\xd3\x74\x3f\xdf\x12\x3f\x0f\xbc\xdf\x98\xe5\x4d\xd0\x35\xae\xbe\xe3\x12\xb9\x59\x6b\xc4\xb3\xee\xce\xbf\xec\xec\x0f\xc2\x18\xbb\x9c\x9e\x5e\x9c\x8d\x1f\xd8\x19\x3b\x9a\x9e\x5f\xa1\x6c\x12\xa1\x57\xdd\x44\x6f\xae\x75\xb0\x74\xde\xbe\xd6\x87\x21\x41\xe5\x44\x0e\xbf\xf2\xf6\x68\xd2\x88\x1b\xb2\x31\x69\x6f\x9b\xca\x28\xed\x13\x97\x63\xb8\xf5\xc9\xc6\xe9\x62\x76\x75\x3e\x9d\xa4\x0b\xbc\x8f\xb6\x7d\xd1\x07\xc6\xc6\xef\xce\xa7\xf3\x31\x9e\x3d\xdb\x3b\xc4\xfe\xfe\xfe\x3e\xf6\x0f\x0e\x9f\x87\xc7\x0b\x76\x74\x76\x8c\xf7\x51\x4b\x41\x46\x1f\xd8\x9f\x01\x00\x00\xff\xff\xe5\xd1\x26\x17\x45\x09\x00\x00") + +func examplesStorageMysqlGaleraImageDockerfileBytes() ([]byte, error) { + return bindataRead( + _examplesStorageMysqlGaleraImageDockerfile, + "examples/storage/mysql-galera/image/Dockerfile", + ) +} + +func examplesStorageMysqlGaleraImageDockerfile() (*asset, error) { + bytes, err := examplesStorageMysqlGaleraImageDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/mysql-galera/image/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageMysqlGaleraImageClusterCnf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcf\x31\x4b\x04\x31\x10\x05\xe0\x3e\xff\xc5\xdd\xbb\x6b\x84\x83\x34\x62\x63\x25\xd8\x58\x88\x84\x49\x32\x97\x0d\x9b\xcc\xac\x33\x93\x53\xff\xbd\x08\xab\x88\xc5\x54\xf3\xe0\x7d\xef\xa5\x7f\xea\x5b\xcb\xaf\xce\xbd\xab\xe0\x16\x36\xe1\x6b\xcd\x28\x7e\x1e\x2a\x73\xab\xf1\xfb\x0a\x34\x14\x08\xda\xfb\xa4\xbc\x07\x53\x1b\x6a\x28\x01\x72\x16\x54\xf5\x25\x71\xef\xe7\x79\x76\xb1\x52\xe3\x12\x2e\x2c\x1d\xcc\x3f\x3d\x3e\xbb\x8c\x17\x18\xcd\x82\x1a\x0b\x14\x0c\x48\xa5\x12\xfa\x07\x22\xbe\xbf\x73\x95\x88\x73\x0c\x30\x8c\x2b\xa5\xd0\x38\xad\xa1\x73\x46\x7f\xfa\x31\xa9\x5a\xe8\x68\x0b\x67\xff\x61\x02\x11\xd2\x3a\xb6\x9b\xeb\x69\x7f\x13\x67\xfc\x65\x1c\x4f\xb7\xd3\x61\x3a\x4c\xc7\x7f\x4c\x82\x8e\x7e\xdf\xb1\x8e\x88\x42\x68\xa8\x7f\x0a\x60\xd8\xe2\x55\x6d\x28\xca\x39\x2d\x40\x05\x6d\xa9\xea\xbe\x02\x00\x00\xff\xff\x2a\x02\xf2\xe9\x21\x01\x00\x00") + +func examplesStorageMysqlGaleraImageClusterCnfBytes() ([]byte, error) { + return bindataRead( + _examplesStorageMysqlGaleraImageClusterCnf, + "examples/storage/mysql-galera/image/cluster.cnf", + ) +} + +func examplesStorageMysqlGaleraImageClusterCnf() (*asset, error) { + bytes, err := examplesStorageMysqlGaleraImageClusterCnfBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/mysql-galera/image/cluster.cnf", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageMysqlGaleraImageDockerEntrypointSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\x6d\x77\xda\x46\x16\xfe\xae\x5f\x71\x23\xd8\x55\x92\x83\x44\xec\x9e\xfd\x62\x97\x6c\x89\x91\x53\x4e\x31\xb8\x08\x37\xcd\x69\x5a\x32\x48\x17\x98\x8d\x98\x51\x66\x46\xc6\xd4\xf6\x7f\xdf\x33\x33\x42\x08\x90\xb3\xee\xee\xfa\x43\x62\x6b\xae\xee\xcb\x73\x9f\xfb\x32\x6a\xbc\x68\xcf\x28\x6b\xcf\x88\x5c\x3a\x4e\x03\x2e\x78\xb6\x11\x74\xb1\x54\x70\xfa\xe6\xe4\x1f\x30\x59\x22\xfc\x94\xcf\x50\x30\x54\x28\xa1\x9b\xab\x25\x17\x32\x70\x1a\x4e\x03\x06\x34\x46\x26\x31\x81\x9c\x25\x28\x40\x2d\x11\xba\x19\x89\x97\xb8\x3d\x69\xc1\x2f\x28\x24\xe5\x0c\x4e\x83\x37\xf0\x52\x0b\xb8\xc5\x91\xfb\xea\xdc\x69\xc0\x86\xe7\xb0\x22\x1b\x60\x5c\x41\x2e\x11\xd4\x92\x4a\x98\xd3\x14\x01\xef\x62\xcc\x14\x50\x06\x31\x5f\x65\x29\x25\x2c\x46\x58\x53\xb5\x34\x66\x0a\x25\x81\xd3\x80\x8f\x85\x0a\x3e\x53\x84\x32\x20\x10\xf3\x6c\x03\x7c\x5e\x95\x03\xa2\x8c\xc3\xfa\x67\xa9\x54\x76\xd6\x6e\xaf\xd7\xeb\x80\x18\x67\x03\x2e\x16\xed\xd4\x0a\xca\xf6\xa0\x7f\x11\x0e\xa3\xd0\x3f\x0d\xde\x98\x57\x6e\x58\x8a\x52\x82\xc0\xaf\x39\x15\x98\xc0\x6c\x03\x24\xcb\x52\x1a\x93\x59\x8a\x90\x92\x35\x70\x01\x64\x21\x10\x13\x50\x5c\xfb\xbb\x16\x54\x51\xb6\x68\x81\xe4\x73\xb5\x26\x02\x9d\x06\x24\x54\x2a\x41\x67\xb9\xda\x03\x6b\xeb\x1d\x95\x7b\x02\x9c\x01\x61\xe0\x76\x23\xe8\x47\x2e\xbc\xeb\x46\xfd\xa8\xe5\x34\xe0\x43\x7f\xf2\xe3\xe8\x66\x02\x1f\xba\xe3\x71\x77\x38\xe9\x87\x11\x8c\xc6\x70\x31\x1a\xf6\xfa\x93\xfe\x68\x18\xc1\xe8\x12\xba\xc3\x8f\xf0\x53\x7f\xd8\x6b\x01\x52\xb5\x44\x01\x78\x97\x09\xed\x3f\x17\x40\x35\x8c\x98\x68\xcc\x22\xc4\x3d\x07\xe6\xdc\x3a\x24\x33\x8c\xe9\x9c\xc6\x90\x12\xb6\xc8\xc9\x02\x61\xc1\x6f\x51\x30\xca\x16\x90\xa1\x58\x51\xa9\x93\x29\x81\xb0\xc4\x69\x40\x4a\x57\x54\x11\x65\x9e\x1c\x05\x15\x68\x2e\x39\x0d\x98\xe8\x8c\xca\x58\xd0\x4c\x41\xc2\x51\x1a\x99\x39\x4f\x53\xbe\xa6\x6c\x71\x66\x85\x4e\x02\x88\x50\x49\xc8\x33\x48\x88\x22\x33\x22\x11\x32\x41\x6f\x69\x8a\x0b\x94\x1a\xf3\x59\x4e\xd3\x44\xbb\x41\x18\x44\x3f\x0f\x0a\x8d\x4e\x03\x4e\x03\xb8\xda\xe8\x27\x54\x02\x65\x54\x51\x92\xa6\x1b\x90\x8a\x08\x0d\x65\x41\x98\x9d\x0b\x04\xe6\x54\x48\x05\x8a\xae\x50\x5b\xfe\x2e\x80\x2b\x9e\xd0\xf9\x06\x56\x9b\x20\x66\x73\x1d\x1a\xc4\x69\x2e\x15\x0a\xf3\xb7\xe2\x20\x70\x9e\x62\xac\x80\xdc\x12\x9a\x9a\xb4\x33\x9e\xe8\x48\x38\xfc\x8b\x53\xa6\x43\x70\x1a\x40\xe7\x30\xbc\xb9\x9a\x0e\x47\xbd\x30\x32\x7c\xce\x88\x94\x98\xb4\x20\xc1\x39\xc9\x53\xa5\xc5\xbf\x73\xe8\x1c\x7e\x03\xff\x4f\x70\x9b\xa5\xb0\x0b\xbf\x9f\x6b\x54\x98\x03\x3b\x0d\x9d\xef\x9c\x39\x75\xac\xb8\xdb\xbc\x3f\x39\x7b\x73\x76\xf2\xe8\x42\x07\x3c\xdf\xab\xc8\x4b\x54\xe0\xfb\xb0\xda\xc8\xaf\x69\x02\x6e\xf3\x07\xd7\xbc\x66\xbc\xd1\x40\xc7\x7c\xb5\xd2\x11\x59\x5f\x34\x46\x9e\x95\xf5\xe0\x96\x12\xb8\xb8\xea\xb5\x8c\x2a\x98\xe1\x82\x32\xc8\x04\x8f\x51\x4a\xca\x16\x01\x6c\x6d\x9f\x18\xab\xdb\xb7\x76\xa6\x1b\x20\x90\x24\xd0\xeb\x4e\xba\xbd\xfe\x18\xe6\x82\xaf\x8c\x49\x9b\x8d\x98\xb3\x39\x5d\x38\xb0\x3d\xef\xb8\xcd\x97\xda\x3d\xf0\xfd\x5b\x14\x33\x2e\x11\x7c\x7f\x89\x69\x06\xa7\x6f\xdb\x09\xde\xb6\x59\x9e\xa6\xf0\x00\x64\xfd\x05\xbc\xe6\x09\x74\x3a\xe0\x6a\x2a\x24\x54\xb8\x70\xaf\xc9\xc0\x14\x34\x4f\xcf\x01\xef\xa8\x82\x47\xef\x95\xeb\x80\x71\x82\xb3\x74\x03\xf1\x12\xe3\x2f\x3a\x66\xb9\x91\x0a\x57\xa0\x74\x96\xa4\xc9\x42\x2c\x90\x68\x26\x18\xff\x4c\x14\x53\xca\xa4\x22\x69\x3a\x4d\x66\x26\xdb\x55\x62\x1b\x95\x1a\x54\x43\x9c\x82\x4f\x15\xc2\xc1\x0c\xe7\x5c\xa0\x05\x0a\x0d\x21\x15\xb7\xe4\xac\xd2\x12\xc0\x80\xf7\x02\x7c\x9d\x94\x02\x82\xb6\xb1\xee\xee\x41\x38\x27\x34\xd5\xb2\xb9\x44\x01\x09\x4d\x98\xa7\x40\xe6\x59\x96\x6e\x80\x80\xe0\x05\x8b\xd6\x5c\x24\xa0\x7d\x2b\xf4\x1a\xfe\x5c\x7d\x8c\x7e\x1e\x4c\xc7\xa3\xd1\x64\x7a\xdd\x8d\xa2\x0f\xa3\x71\xcf\x05\x9f\x54\x0f\xbb\x83\xc1\xe8\xc3\x34\xbc\xba\x9e\x7c\xac\xc8\xec\xec\xeb\x1f\x8c\x97\x1c\xde\xfe\xfd\x14\x3c\x14\x82\x8b\xb3\x5d\x01\x52\x5d\xd5\x05\x04\xf4\x4f\x4c\x0c\x58\x35\x56\x0d\xcc\x12\x95\x77\xa4\x11\xa0\x47\x13\xd3\xe3\xe7\x5c\x2c\xd0\x94\x00\x49\x12\xf0\xb1\x4e\x4f\x27\x08\x02\xf8\x67\xa9\x45\xe7\xf9\xc4\xfc\xa1\x19\xad\xff\x6f\x1c\xe7\xaf\xf8\x55\xee\x27\xde\x29\xdd\xf0\xc6\x39\x33\xdd\xeb\xe8\xcd\x20\x08\xb6\xa6\xe0\xf8\xd4\xf7\x0b\xf2\x75\xca\xf4\xb9\xa5\xb4\xd5\x7c\x49\x19\x95\x4b\x4c\x8e\x5e\xb6\x6a\x0b\x8f\xab\xbd\x67\x4d\xd3\x14\x66\x08\x22\x67\xc0\xcd\x38\xd3\x95\x67\xeb\xc5\x76\x25\xd3\xb6\x4c\x63\xd1\x1c\xcc\xb3\x42\x49\x26\xa8\x6e\xd0\xdc\x92\x59\x87\xb3\xcf\x73\x9d\x18\xa3\x1c\x99\xcc\x2d\x3b\x33\x14\x96\x54\x07\xec\x06\x50\xb8\xca\xa2\xaf\xe9\x25\x4d\xb1\xe3\xb5\xd5\x2a\xb3\xbc\xf4\x8d\x07\xbe\xee\x8b\x81\xfc\x9a\xda\x20\x62\xa2\xe0\x2d\xb8\xcd\xca\x3b\x2e\x7c\xff\xbd\x1f\x8e\xa2\x9f\x07\x4e\x2f\x1c\x84\x93\x10\x2e\xc7\xa3\x2b\x0b\x42\x60\x2c\x9e\x3b\x17\xe3\xb0\x3b\x09\xe1\x26\x0a\xc7\xe0\x69\x16\x7b\x3f\x78\x7f\xf3\xa0\xdf\x0b\x87\x93\xfe\x65\x3f\xec\xc1\xbb\x8f\xe0\x35\xef\x6b\x48\xf0\xe8\xc1\xb9\xf3\x5e\xcf\x37\xe8\x0e\x06\x30\x1a\xc2\xeb\xe0\x35\x4c\x46\x55\x3d\x7a\x10\x82\x95\x19\x5d\xeb\xd1\x07\xe7\x8e\xf5\xa8\x04\xbe\xe8\x5d\xd6\x80\x4e\xe0\xbb\x6e\x14\xd6\x52\xdf\x2d\x9c\xdd\x0a\x41\xff\x12\x86\xa3\x09\x84\xbf\xf6\xa3\x49\x04\x9f\x3e\x1f\x28\xf9\xf4\x19\xce\x5d\x78\x7b\x88\xca\x96\xa8\xf5\x1e\x68\x24\x4c\x71\x6e\x1f\x7c\xb3\x1a\xdd\x3d\xfc\x2a\x2a\xea\x61\xdc\xd7\xe8\x3d\xed\x5e\xe1\xd9\x33\xd1\xd9\x3a\xb3\x97\x8c\x1a\x38\x8a\xf4\x1c\xb9\xf9\x0d\x37\x0a\x9c\x76\x75\xdd\x4d\x12\x88\xa2\x09\xbc\x8c\x28\x5b\xa4\x08\x91\x22\x0a\x61\x22\x08\x93\x73\x14\xaf\x2c\x93\xe9\x1c\x2e\xec\x60\xd6\x15\x40\x25\xa8\x5c\x30\xb3\x2e\x55\x3a\x23\x03\xb7\xf9\xbe\x3b\x08\xc7\xdd\xe9\xc5\xe0\x26\x9a\x68\xdc\xab\x71\x15\x15\x49\xed\x1e\x52\x6b\xce\x5a\x7b\x19\x45\x93\x56\x39\x01\x92\x7c\x95\xe9\x1d\xea\x4e\x09\x32\x23\xf1\x97\x3c\x33\x52\xaf\x8a\x80\x3e\x44\xe3\xf0\x7a\x1a\x45\x13\x13\x7f\xa7\x79\xbf\xff\xe0\xcc\x77\xa5\x54\xee\x63\x15\x7e\xd3\xa6\x77\x62\x4f\x11\xa2\xa6\x41\xbf\x27\x29\x0a\xb2\x5d\x52\x74\x28\xc8\x74\x1f\xb0\x0d\xfa\x58\xa5\x96\x38\x68\xd1\xcf\x6c\xd2\x3b\x5d\x4f\x34\xe9\xbd\x36\x5d\xe6\x55\xa3\xac\x35\x48\x8b\xae\x34\xe8\xaa\x2d\xba\x1a\xd8\x22\xa3\xbb\x15\xef\x1b\xf4\x3f\xc0\xf2\xd1\xfb\xc1\x4b\x79\x4c\xd2\x25\x97\xaa\xa6\xa7\x1c\xc7\xff\xe8\x7d\x83\x8a\x55\x8e\x8f\xc3\xc1\xa8\xdb\x6b\xc1\x60\x74\xf1\x13\x4c\xba\xef\x06\x61\xd4\x82\x71\x78\x3d\xe8\x5f\x74\x4d\x9b\xb9\x18\xf4\x43\xdd\x74\x76\x4d\xe9\xdb\xde\x7d\xab\x51\x54\x66\xd4\xe5\xe0\x26\xfa\x11\xae\xc7\xfd\x5f\xfa\x83\xf0\x7d\x18\xc1\xb9\xf7\xc4\x7b\x95\x72\x31\xf4\x35\x83\x23\x45\x9d\xb2\x62\x41\x93\xe5\xca\x97\x52\x86\x40\xc4\xc2\x62\x5b\x2c\x8a\xc5\x0a\xa6\x69\xed\xeb\x37\x3b\x47\x46\x4c\x0e\x1d\x80\x78\xc9\xd7\x0c\xfc\xb1\x55\x7c\x66\xfe\x85\xca\x30\x2c\xd7\xcc\x0a\x0f\xcb\x82\x2c\x96\xca\x62\x4b\xda\xad\x48\x5b\x59\x89\xca\x8e\x31\xa5\x6b\x59\x3a\xba\x2a\xc9\x6e\x40\x52\xa6\x50\x64\x3c\x35\x8b\x1b\x65\x8a\x17\xbb\xac\x5e\x29\x4d\xc0\xd2\x79\x4e\xb5\xff\xff\x6b\xfd\xf9\x75\xfe\xfc\x1a\xff\x8b\x0b\x58\x4d\x7d\xef\x15\xf7\x5f\x2c\xec\xb2\xae\xef\xee\xee\xb6\x75\x5d\xd6\xb4\xa5\x69\xc3\x84\xdf\x2e\x17\x51\x7d\x59\xd4\xcd\x5a\x3f\x35\x57\x90\x04\x7c\xaa\xb5\xba\xf2\xe1\x8f\xb5\x14\x98\x4d\xa5\x54\x53\x92\xab\x65\x47\x4a\xa5\xc5\xce\xe2\x25\x61\x0b\xd4\xe9\x78\x38\x90\x38\xaa\xa0\xb3\xda\x1a\x7e\x70\xa1\x8d\x2a\xb6\xbb\x4a\x5b\x53\x21\x48\xda\x95\x7b\x9a\x53\x6e\xee\xf6\x6e\xa6\xc9\x4b\x92\x44\xdf\x7d\xcb\xbc\xe9\x8b\xd5\xb4\xdb\xeb\x8d\xc3\x28\xea\x7c\xa6\x99\x11\x00\xb9\xe4\x6b\x78\x80\x85\xc0\x0c\xfc\x10\xbc\x3f\x7e\x83\xdf\x5f\x53\x86\xca\x2b\x9f\xae\x4e\x60\x91\xf2\x19\x29\x2f\x28\xbb\x0b\x09\x3c\x6a\x31\x83\x01\x82\x27\xdb\x9f\xda\xc1\xeb\x76\xdb\xfb\xec\x54\x07\xd2\xb1\xf9\x7d\x0a\xd4\x41\xa8\xc3\x98\x16\x11\x74\x82\xd7\xcd\x87\x9a\xc7\x5b\xa4\xaa\x9a\xff\x33\x52\xbb\x1a\x2f\xaf\x89\xb6\x0e\xb7\x83\x22\xc1\x39\x35\x75\x2c\x80\x2a\x7b\xc1\xd2\x17\xc7\x85\xee\x2c\x67\xed\xb6\xd7\xb2\x75\xb5\x42\xc2\x24\xcc\x38\x57\x52\x09\x92\xd5\x90\xbe\xa8\xc9\x5d\xd0\x3e\x7f\xfa\x4c\xdf\xf8\xb6\x26\x0e\x67\x36\x9d\x03\xae\x32\xb5\x69\x99\x0c\x2b\x5e\x71\xa6\x90\x18\x8e\x26\xe1\x99\xf5\x2b\xa5\xb2\xf8\xd4\xa0\x83\xa1\x2b\x7d\x99\x5a\xe1\x6a\x86\x42\x2e\x69\x16\x6c\x9b\x68\xbf\x08\xcd\x86\xe1\x16\x9f\x8f\x34\xb1\x75\x99\xe9\x8b\xbd\xbd\x33\x72\x86\xc5\xd7\x24\x89\x41\x10\xb8\x4e\xdd\x08\x3f\x8a\x66\x7f\x8a\xd7\x0a\x75\x76\xe1\x1e\xac\x43\x29\xe7\x19\xa8\xa5\xe0\xf9\x62\x09\x2c\xd7\xae\x6b\x17\x0c\xb3\xad\x28\x17\x30\xbc\xb9\x02\xca\xe0\xb3\xc4\xaf\x70\x02\xbb\xcf\x09\x9f\xcf\x21\xe1\x85\x5d\x43\x8c\x28\x1c\xff\xd2\xbf\x08\xa7\x3f\x8e\xa2\x49\xc7\xbd\xfe\xf5\xc2\xc8\x35\xef\x87\x37\x57\x8f\x7b\x87\xae\x53\x6e\x88\x06\x72\x89\x6a\x6f\x63\xd1\x54\xbe\x7f\x71\xa4\xf3\xf1\x78\x67\x31\xaf\x1b\xf4\x95\x2d\xc5\xfe\x75\x31\x12\x74\x03\xa2\xaa\x14\x34\x8a\x9b\x2f\xf1\x2e\x13\xe0\x36\xb5\xb6\x61\xf7\x2a\x74\xe1\x0c\xdc\xec\x2e\xf6\x75\xc4\xd6\x51\xf7\x15\xf8\xf8\x15\xde\x1c\x99\xaa\x18\x33\x5f\x96\xcc\x3d\xaa\x24\xa5\xc1\xcc\x18\x35\x63\xb1\xf2\x96\xb5\x5c\x9b\x18\x78\xf1\x24\x15\xb7\x3f\x4f\x24\x74\x5b\x90\x07\x07\x8f\x2d\xb7\xf2\x76\xb9\x25\x15\x9b\x52\x96\x21\x4b\x0e\xe3\x31\x73\xa9\xf8\x1c\x87\x52\xef\x42\x53\x8d\xa1\xfd\x46\x4a\xd4\x61\x20\x36\x37\x56\xaa\x26\x1f\xff\x85\xcb\xf5\xa9\xde\x73\x93\xab\x25\x8a\x35\x95\x68\xdc\xea\x0d\xa3\xca\x29\xa6\x12\xff\x17\xf3\x07\xd9\xaf\x87\xaf\xfc\xb5\xf8\x25\xe1\x0c\x2b\x63\xab\x3e\xb9\xa6\xc9\xad\xed\x57\x65\x54\xb8\xbb\x3c\x3f\xb9\x78\x18\x65\xdb\xd5\xa5\xe8\xbd\xdb\x96\xf9\xd2\xb6\xe5\xe2\x74\xdb\x99\x5f\xe9\xca\x34\x3b\x8b\x7d\x6e\x35\x98\xfd\x25\x17\xe6\x8b\xa9\x59\x63\x5a\xb0\xdf\x97\x0f\x27\xc6\x71\xff\x24\x4f\x9f\x3d\x4d\xda\xba\xf1\x72\xe0\x70\x67\xfb\xe6\x43\xfd\xf1\x53\x69\x7a\xde\xb0\xb1\xbb\xa2\x20\x2c\xe1\x2b\x90\x28\x6e\x51\x40\xbf\x07\x0c\x31\xc1\xc4\xa9\xba\xd7\xfe\xc3\x1e\x7f\xf2\x69\xa2\xa7\x5e\xdb\xfe\xa9\xff\x6a\xde\x8f\xbb\xc3\xde\xe8\xea\xb1\xbd\x67\xd3\x7e\xb6\xd5\xfa\xe7\x94\x91\x34\xd5\x33\x42\x11\xa1\xec\xde\x0a\x0e\xde\x61\x6c\x3f\x8c\xfe\x3b\x00\x00\xff\xff\x35\x29\xb5\x0a\xe8\x18\x00\x00") + +func examplesStorageMysqlGaleraImageDockerEntrypointShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageMysqlGaleraImageDockerEntrypointSh, + "examples/storage/mysql-galera/image/docker-entrypoint.sh", + ) +} + +func examplesStorageMysqlGaleraImageDockerEntrypointSh() (*asset, error) { + bytes, err := examplesStorageMysqlGaleraImageDockerEntrypointShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/mysql-galera/image/docker-entrypoint.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageMysqlGaleraImageMyCnf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x6f\xdb\x30\x0c\xbd\xf3\x57\x6c\xd8\x59\x75\x92\x76\xc5\x76\xd0\x61\xdd\x2e\x43\x11\x60\x97\x9d\x8a\x40\x90\x25\xc6\x21\x2c\x53\x8e\x28\xb7\xc9\x7e\xfd\x20\x7f\xac\x5d\xd0\x02\xbd\xd8\xe0\x7b\x7c\x24\x1f\x4d\x3f\xb8\x40\xc8\x79\x07\x7d\x4c\x59\x5f\x5f\xaf\x6e\x41\xa2\x6b\x31\xeb\xea\xd1\xa6\x2a\x0d\x5c\x75\x67\x39\x06\x3f\xbf\xae\x0a\x0b\xf0\x30\x45\x46\xec\x1e\x77\xef\x51\x30\x39\xd4\xab\x7f\xc2\x1d\x0c\x82\x49\x8f\x01\xf4\xe4\xd5\x9e\x02\xbe\x55\xa0\x27\xff\x9e\x16\xcf\x0e\x6a\x2b\xe8\x29\xe9\x6a\x90\x04\xde\x66\x3b\x06\x45\x1a\xa8\x9e\x34\x90\xbb\x7e\x44\x73\xd7\x43\x70\xaa\x43\x11\xdb\xa0\xa8\x45\x57\xc9\xc1\x26\x9c\x93\xa5\xa5\x5e\xe1\x29\x63\x62\x1b\x54\x88\xae\x25\x6e\x00\x5a\x3c\x9b\x7a\xd8\xef\x31\xe9\xf5\xed\x16\x3a\x7b\x32\x36\x84\xf8\x84\xde\xf4\x76\x9c\xb7\xc0\xf9\x90\xd0\x7a\x23\xd9\xba\x56\xaf\xbf\x6e\xee\x17\xc4\x59\x77\x40\x23\xf4\x07\xf5\x17\x80\xee\x4c\x62\x3b\x95\xd0\xc5\x47\x4c\xfa\xee\xdb\xf7\xfb\xdf\xbf\xe0\x53\x29\xea\x22\x33\xba\x4c\x91\x45\xaf\x57\x2b\x38\x0e\x98\xce\xb3\x3c\x50\x47\x59\xaf\xb7\xff\x81\x63\xcd\xd2\x5b\x42\x7c\x32\x13\x13\x62\xa3\xd7\x17\x80\x79\x5e\x7b\x88\xcd\x64\x76\x7a\xaa\x92\x78\x15\x62\x03\x21\x72\x33\x2b\x32\x75\xa8\x37\x10\x62\xa3\x0a\x40\x28\x8a\x63\x56\x83\x10\x37\x8a\xd8\xe3\x09\x05\x40\x30\x3d\x62\x52\xe4\xf5\x7a\x73\x7d\xf3\xb9\xa4\x9b\x9a\xf8\xf5\x36\x35\xf1\xd8\x05\x4f\x3d\x25\x2c\x33\x89\xf1\xf6\x2c\xfa\x66\x5c\x67\x4d\x5c\xe4\x93\x9f\xd5\x6a\x0b\xe0\x71\x6f\x87\x90\x8d\xe4\x98\x6c\x83\x06\xb9\x21\x46\xfd\x93\x39\xfe\xb8\x03\x62\x8e\xbe\x1e\x6d\x99\x1e\x93\xc9\xb6\x0e\xb8\xa0\x8b\xe1\x17\xe5\x5e\x30\xd3\x87\x5c\xb8\xed\xa5\x48\x0c\xb1\x69\x52\x1c\x7a\xbd\x59\xb8\x59\xd2\xc7\x18\x0c\xb1\x64\xcb\x0e\xcb\xe4\xaf\xd0\x2f\x1c\xcc\xbf\xc0\xd0\xf5\x3b\x38\x0e\xe4\x5a\x38\x0e\x31\xa3\x62\xdb\xa1\xbc\x75\x44\xf0\x50\xae\xc3\x1d\xda\xdd\xe5\xd5\xc1\x47\x62\x17\x06\x5f\x2e\xfe\x43\x85\xd9\xcd\xfb\x75\x91\xf7\x57\xbe\x82\xbf\x01\x00\x00\xff\xff\x2d\x1f\x45\x09\xe2\x03\x00\x00") + +func examplesStorageMysqlGaleraImageMyCnfBytes() ([]byte, error) { + return bindataRead( + _examplesStorageMysqlGaleraImageMyCnf, + "examples/storage/mysql-galera/image/my.cnf", + ) +} + +func examplesStorageMysqlGaleraImageMyCnf() (*asset, error) { + bytes, err := examplesStorageMysqlGaleraImageMyCnfBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/mysql-galera/image/my.cnf", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageMysqlGaleraPxcClusterServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xcc\x3d\xae\xc2\x40\x0c\xc4\xf1\x7e\x4f\x31\x17\x88\xf4\x9e\x22\x51\xec\x35\x90\xe8\xcd\x66\x8a\x15\xfb\x85\xed\x44\x70\x7b\x94\x08\x0a\x0a\x4a\xfb\x37\xfa\xcb\xc8\x17\xaa\xe5\xde\x22\xb6\xff\x70\xcb\x6d\x89\x38\x53\xb7\x9c\x18\x2a\x5d\x16\x71\x89\x01\x68\x52\x19\x31\x1e\x69\x4a\x65\x35\xa7\x06\xa0\xc8\x95\xc5\x76\x05\xd6\x96\xfd\xdb\x6d\x30\xed\x36\xba\xfa\x7b\x34\x1d\x47\xc4\x3c\xff\x9d\x8e\xc7\xa7\x5b\x9f\x76\x2f\x01\x30\x16\x26\xef\xfa\xa3\xf9\x0a\x00\x00\xff\xff\x34\xcf\x6b\x31\xae\x00\x00\x00") + +func examplesStorageMysqlGaleraPxcClusterServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageMysqlGaleraPxcClusterServiceYaml, + "examples/storage/mysql-galera/pxc-cluster-service.yaml", + ) +} + +func examplesStorageMysqlGaleraPxcClusterServiceYaml() (*asset, error) { + bytes, err := examplesStorageMysqlGaleraPxcClusterServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/mysql-galera/pxc-cluster-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageMysqlGaleraPxcNode1Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x94\x51\x6f\xda\x30\x10\xc7\xdf\xf3\x29\x4e\x7d\xcf\x68\x05\x65\x95\xdf\x50\x41\x7b\x61\x82\xc5\xed\xaa\x3d\x45\x87\x39\x3a\xab\x8e\xed\xd9\x17\xd4\x7d\xfb\x29\x40\x8a\xc3\x02\xa8\x7e\xe3\xee\xff\xbb\xfb\xdf\x71\x0a\x7a\xfd\x93\x42\xd4\xce\x0a\xd8\xde\x65\x6f\xda\xae\x05\x48\x0a\x5b\xad\x28\xab\x88\x71\x8d\x8c\x22\x03\xb0\x58\x91\x00\xff\xae\x72\xeb\xd6\x74\x97\x01\x18\x5c\x91\x89\x4d\x0e\xa0\x89\xa5\xd9\xe8\x49\x35\x19\xef\x02\x1f\x24\xf9\xee\x87\x80\xe1\xf0\x76\xbc\x0b\xb4\x35\xab\xbf\xf1\x8f\xe9\x48\x46\xa3\xd1\xa8\x23\x89\x8c\x4c\x79\xb4\xe8\xe3\x6f\xc7\x39\x07\xb4\x71\x43\xa1\x0b\xdd\x8f\xbf\x76\xa0\x40\xde\x68\x85\xac\x9d\x6d\x88\xcd\x46\x2b\x38\x25\x1e\x3a\x84\xb6\x2a\x50\x45\x96\xd1\xe4\xfb\x96\x6d\xa7\x06\x8c\x64\x48\xb1\x0b\xbd\x13\x43\x96\xe7\x79\xd6\xbb\xcd\xe2\xe8\xe3\xd1\x59\x0e\xce\x18\x0a\x97\x76\x0b\x1f\xeb\x3b\x8c\x10\x05\x34\x0b\x67\xaa\xbc\x41\xa6\xbd\x81\xb4\x40\xf3\xd2\xbf\xa3\xd7\x60\x9b\xa8\xad\xe6\x7d\x42\x99\x3a\xf2\x61\x8d\x6d\xcb\xe6\x29\x67\x19\xb5\xa5\x90\x94\xcb\x21\x50\x74\x75\x50\x94\x04\x77\x7d\x75\xa5\x39\x0a\xe8\x04\x01\x94\xaf\x05\xdc\x7e\x19\x26\x61\x5d\xe1\x2b\x09\x50\xe8\x99\xdd\xa6\x1e\x78\x0a\xca\x59\x2c\xdf\x39\xe0\x7a\x55\x1e\xdc\x94\xf7\xe5\x58\xac\x88\x31\x21\xff\x3f\xbe\xf6\x25\x07\x76\x74\xfa\xe1\x7f\x79\x7a\x71\x67\x14\xc9\xc1\x9d\x53\x1c\xaf\xeb\xbc\xe2\x21\x51\x90\xdd\x9e\xda\xda\x4f\xf1\x6d\x32\x9f\x15\x93\xf2\x71\xfe\x2c\x9f\x66\xc5\xc9\xd6\xb6\x68\x6a\x12\x70\xc3\xa1\xa6\x9b\x5e\xfc\x45\x16\xb3\x65\x4b\x97\x93\xe9\xb4\x98\x49\xd9\x5f\xe5\x55\xb9\xaa\x12\x83\xc1\x85\x3a\x52\x3e\x95\xcf\xf2\x9c\x8d\x18\xf9\x0a\xbb\x9c\x48\xf9\xb2\x28\xa6\x9f\xe3\xbf\xff\x92\x3f\xe6\x17\xfa\x1e\xbf\x08\xfd\xe4\xe5\xae\xd7\xe8\x62\xb1\xb8\x66\x5c\xe5\x6f\x41\x33\x64\xff\x02\x00\x00\xff\xff\xf9\x7e\xc8\x8a\x1e\x05\x00\x00") + +func examplesStorageMysqlGaleraPxcNode1YamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageMysqlGaleraPxcNode1Yaml, + "examples/storage/mysql-galera/pxc-node1.yaml", + ) +} + +func examplesStorageMysqlGaleraPxcNode1Yaml() (*asset, error) { + bytes, err := examplesStorageMysqlGaleraPxcNode1YamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/mysql-galera/pxc-node1.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageMysqlGaleraPxcNode2Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x94\x51\x6f\xda\x30\x10\xc7\xdf\xfd\x29\x4e\x7d\xf7\x68\x07\x65\x95\xdf\x50\x41\x7b\x61\x82\xc5\xed\xaa\x3d\x45\xc6\x1c\x9d\x55\xc7\xf6\xec\x0b\xea\xbe\xfd\x14\x48\x9a\x84\x05\xd0\xee\xcd\xe7\xff\xef\xee\xef\xcb\x29\x2a\x98\x1f\x18\x93\xf1\x4e\xc0\xfe\x8e\xbd\x19\xb7\x15\x20\x31\xee\x8d\x46\x56\x20\xa9\xad\x22\x25\x18\x80\x53\x05\x0a\x08\xef\x9a\x3b\xbf\xc5\xcf\x0c\xc0\xaa\x0d\xda\x24\x80\x01\x00\x54\xc9\xee\x75\x0a\xa8\x2b\x2c\xf8\x48\x49\x1c\x24\xfc\x70\x10\x30\x1e\xdf\x4e\x0f\x89\xa6\x68\xf1\x27\xfd\xb6\x3d\xc9\x64\x32\x99\xf4\x24\x89\x14\x21\x4f\x4e\x85\xf4\xcb\x13\xa7\xa8\x5c\xda\x61\xec\x43\xf7\xd3\x2f\x3d\x28\x62\xb0\x46\x2b\x32\xde\x55\xc4\x6e\x67\x34\x9c\x12\x0f\x3d\xc2\x38\x1d\xb1\x40\x47\xca\xf2\x63\xcb\xa6\x53\x05\x26\xb4\xa8\xc9\x47\x31\xf4\x62\x60\x8c\x73\xce\x06\xe7\x99\xb5\x46\x1e\xbd\xa3\xe8\xad\xc5\x78\x69\xba\xf0\x31\xbf\xfa\x0d\x49\xc0\x1d\x03\x20\x2c\x82\x55\x84\x47\x07\xdd\x02\x55\xd4\x1f\xa4\x3e\x0d\x38\x6c\x2e\x4a\x67\xe8\x78\xa1\x6d\x99\xa8\x9e\x63\xd3\xb2\x0a\xed\x1d\x29\xe3\x30\x76\xca\x71\x88\x98\x7c\x19\x35\x76\x92\x87\xbe\xa6\x30\xd4\x2c\x42\x1b\x3a\x94\x02\x6e\x3f\x8d\x3b\x69\x53\xa8\x57\x14\xa0\x55\x20\xf2\xbb\x72\x14\x30\x6a\xef\x54\xfe\x4e\x51\x6d\x37\x79\xed\x26\xbf\xcf\xa7\x62\x83\xa4\x3a\xe4\xbf\xeb\xd7\x44\x67\xc3\x5a\xa7\x1f\xfe\xd7\xa7\x2b\x77\x46\xd1\xd9\xb8\x73\x8a\x76\xbd\xce\x2b\x1e\x3a\x0a\x74\xfb\x53\x5b\xc7\x57\x7c\x9d\x2d\x17\xd9\x2c\x7f\x5c\x3e\xcb\xa7\x45\x76\x32\xb5\xbd\xb2\x25\x0a\xb8\xa1\x58\xe2\xcd\x20\xfe\x22\xb3\xc5\xba\xa1\xf3\xd9\x7c\x9e\x2d\xa4\x1c\xae\xf2\xaa\x7d\x51\x88\xd1\xe8\x42\x1d\x29\x9f\xf2\x67\x79\xce\x46\x4a\x74\x85\x5d\xcf\xa4\x7c\x59\x65\xf3\xff\xe3\xbf\xfd\x94\xdf\x97\x17\xfa\xb6\xbf\x84\x61\xf2\x72\xd7\x6b\x74\xb6\x5a\x5d\x33\xae\xf9\x5b\x34\x04\xec\x6f\x00\x00\x00\xff\xff\x3f\x9a\x15\x51\x20\x05\x00\x00") + +func examplesStorageMysqlGaleraPxcNode2YamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageMysqlGaleraPxcNode2Yaml, + "examples/storage/mysql-galera/pxc-node2.yaml", + ) +} + +func examplesStorageMysqlGaleraPxcNode2Yaml() (*asset, error) { + bytes, err := examplesStorageMysqlGaleraPxcNode2YamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/mysql-galera/pxc-node2.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageMysqlGaleraPxcNode3Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x94\x51\x6f\xda\x30\x10\xc7\xdf\xfd\x29\x4e\x7d\xf7\x68\x05\x65\x95\xdf\x50\x41\x7b\x61\x82\xc5\xed\xaa\x3d\x45\xc6\x1c\x9d\x55\xc7\xf6\xec\x0b\xea\xbe\xfd\x14\x48\x9a\x84\x05\x50\xef\xcd\xe7\xff\xef\xee\xef\xcb\x29\x2a\x98\x9f\x18\x93\xf1\x4e\xc0\xfe\x8e\xbd\x19\xb7\x15\x20\x31\xee\x8d\x46\x56\x20\xa9\xad\x22\x25\x18\x80\x53\x05\x0a\x08\xef\x9a\x3b\xbf\xc5\x31\x03\xb0\x6a\x83\x36\x09\x60\x00\x00\x55\xb2\x7b\x9d\x02\xea\x0a\x0b\x3e\x52\x12\x07\x09\x3f\x1c\x04\x8c\xc7\xb7\xd3\x43\xa2\x29\x5a\xfc\x4d\x7f\x6c\x4f\x32\x99\x4c\x26\x3d\x49\x22\x45\xc8\x93\x53\x21\xfd\xf6\xc4\x29\x2a\x97\x76\x18\xfb\xd0\xfd\xf4\x6b\x0f\x8a\x18\xac\xd1\x8a\x8c\x77\x15\xb1\xdb\x19\x0d\xa7\xc4\x43\x8f\x30\x4e\x47\x2c\xd0\x91\xb2\xfc\xd8\xb2\xe9\x54\x81\x09\x2d\x6a\xf2\x51\x0c\xbd\x18\x18\xe3\x9c\xb3\xc1\x79\x66\xad\x91\x47\xef\x28\x7a\x6b\x31\x5e\x9a\x2e\x7c\xcc\xaf\x7e\x43\x12\x70\xc7\x00\x08\x8b\x60\x15\xe1\xd1\x41\xb7\x40\x15\xf5\x07\xa9\x4f\x03\x0e\x9b\x8b\xd2\x19\x3a\x5e\x68\x5b\x26\xaa\xe7\xd8\xb4\xac\x42\x7b\x47\xca\x38\x8c\x9d\x72\x1c\x22\x26\x5f\x46\x8d\x9d\xe4\xa1\xaf\x29\x0c\x35\x8b\xd0\x86\x0e\xa5\x80\xdb\x2f\xe3\x4e\xda\x14\xea\x15\x05\x68\x15\x88\xfc\xae\x1c\x05\x8c\xda\x3b\x95\xbf\x53\x54\xdb\x4d\x5e\xbb\xc9\xef\xf3\xa9\xd8\x20\xa9\x0e\xf9\xff\xfa\x35\xd1\xd9\xb0\xd6\xe9\x87\xff\xf5\xe9\xca\x9d\x51\x74\x36\xee\x9c\xa2\x5d\xaf\xf3\x8a\x87\x8e\x02\xdd\xfe\xd4\xd6\xf1\x15\xdf\x66\xcb\x45\x36\xcb\x1f\x97\xcf\xf2\x69\x91\x9d\x4c\x6d\xaf\x6c\x89\x02\x6e\x28\x96\x78\x33\x88\xbf\xc8\x6c\xb1\x6e\xe8\x7c\x36\x9f\x67\x0b\x29\x87\xab\xbc\x6a\x5f\x14\x62\x34\xba\x50\x47\xca\xa7\xfc\x59\x9e\xb3\x91\x12\x5d\x61\xd7\x33\x29\x5f\x56\xd9\xfc\x73\xfc\xf7\x5f\xf2\xc7\xf2\x42\xdf\xf6\x97\x30\x4c\x5e\xee\x7a\x8d\xce\x56\xab\x6b\xc6\x35\x7f\x8b\x86\x80\xfd\x0b\x00\x00\xff\xff\xce\x1c\x64\xd4\x20\x05\x00\x00") + +func examplesStorageMysqlGaleraPxcNode3YamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageMysqlGaleraPxcNode3Yaml, + "examples/storage/mysql-galera/pxc-node3.yaml", + ) +} + +func examplesStorageMysqlGaleraPxcNode3Yaml() (*asset, error) { + bytes, err := examplesStorageMysqlGaleraPxcNode3YamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/mysql-galera/pxc-node3.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageRedisImageDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x92\x41\x6f\x9b\x4e\x10\xc5\xef\xfb\x29\x9e\xe0\xf2\xff\x4b\x36\x4e\xd3\xaa\x87\xf4\x44\x1d\x47\x45\x49\x20\x32\xa4\x91\x55\xf5\xb0\x5e\xc6\x30\x2a\xde\xdd\xee\x2e\x21\xfe\xf6\x15\xd8\x91\x6c\x85\x0b\x9a\xf7\x1e\xc3\x6f\x67\x27\xc6\xd2\xd8\x83\xe3\xa6\x0d\xb8\xbe\xfa\xf4\x15\x55\x4b\xb8\xef\xb7\xe4\x34\x05\xf2\x48\xfb\xd0\x1a\xe7\x13\x11\x8b\x18\x0f\xac\x48\x7b\xaa\xd1\xeb\x9a\x1c\x42\x4b\x48\xad\x54\x2d\xbd\x3b\x33\xfc\x24\xe7\xd9\x68\x5c\x27\x57\xf8\x6f\x0c\x44\x27\x2b\xfa\xff\x9b\x88\x71\x30\x3d\xf6\xf2\x00\x6d\x02\x7a\x4f\x08\x2d\x7b\xec\xb8\x23\xd0\x9b\x22\x1b\xc0\x1a\xca\xec\x6d\xc7\x52\x2b\xc2\xc0\xa1\x9d\x7e\x73\x6a\x92\x88\x18\x9b\x53\x0b\xb3\x0d\x92\x35\x24\x94\xb1\x07\x98\xdd\x79\x0e\x32\x4c\xc0\xe3\xd3\x86\x60\x6f\x16\x8b\x61\x18\x12\x39\xc1\x26\xc6\x35\x8b\xee\x18\xf4\x8b\x87\x6c\xb9\xca\xcb\xd5\xfc\x3a\xb9\x9a\x3e\x79\xd6\x1d\x79\x0f\x47\x7f\x7b\x76\x54\x63\x7b\x80\xb4\xb6\x63\x25\xb7\x1d\xa1\x93\x03\x8c\x83\x6c\x1c\x51\x8d\x60\x46\xde\xc1\x71\x60\xdd\xcc\xe0\xcd\x2e\x0c\xd2\x91\x88\x51\xb3\x0f\x8e\xb7\x7d\xb8\x18\xd6\x3b\x1d\xfb\x8b\x80\xd1\x90\x1a\x51\x5a\x22\x2b\x23\x7c\x4f\xcb\xac\x9c\x89\x18\x2f\x59\xf5\xa3\x78\xae\xf0\x92\xae\xd7\x69\x5e\x65\xab\x12\xc5\x1a\xcb\x22\xbf\xcd\xaa\xac\xc8\x4b\x14\x77\x48\xf3\x0d\xee\xb3\xfc\x76\x06\xe2\xd0\x92\x03\xbd\x59\x37\xf2\x1b\x07\x1e\xc7\x48\xf5\x38\xb3\x92\xe8\x02\x60\x67\x8e\x40\xde\x92\xe2\x1d\x2b\x74\x52\x37\xbd\x6c\x08\x8d\x79\x25\xa7\x59\x37\xb0\xe4\xf6\xec\xc7\xcb\xf4\x90\xba\x16\x31\x3a\xde\x73\x90\x61\x52\x3e\x1c\x2a\x11\xe2\x6e\x5d\x3c\x42\x76\x96\x35\xdd\x7c\x4e\xbe\x08\xb1\x7e\xce\x21\xed\x1f\xc8\xba\xc6\x7c\xae\xcd\x5c\x4d\xcb\xe2\xa8\x66\x8f\x71\x8f\xb6\xd2\xb7\x42\x2c\x8b\xa7\xcd\x51\x9c\xef\xa5\x0f\xe4\x12\x65\xf4\x0e\x8b\x73\xe9\x58\x4c\xc6\x79\xde\x77\xf2\x95\x2e\xe2\x93\xf2\x31\xdd\xeb\xc4\xb7\x58\x1c\xdf\x42\x2c\x1f\x6f\xf1\x0b\xd1\xa9\x8e\xf0\x5b\x88\x55\x5e\xad\x37\x4f\x45\x96\x57\xa3\x33\x92\x45\x33\x44\x73\x35\x9a\xff\x02\x00\x00\xff\xff\x40\x7b\x43\x81\x26\x03\x00\x00") + +func examplesStorageRedisImageDockerfileBytes() ([]byte, error) { + return bindataRead( + _examplesStorageRedisImageDockerfile, + "examples/storage/redis/image/Dockerfile", + ) +} + +func examplesStorageRedisImageDockerfile() (*asset, error) { + bytes, err := examplesStorageRedisImageDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/redis/image/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageRedisImageRedisMasterConf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x7d\xeb\x73\x1b\x39\x92\xe7\x77\xfe\x15\x08\x69\x2f\x2c\x5d\x90\x14\xe5\xd7\xcc\x28\x3c\xde\x93\x2d\xb5\x5b\xd7\xb2\xe4\x90\xe4\xe9\xed\xfb\xe2\x00\xab\x40\x12\xab\x2a\xa0\x1a\x40\x89\xa2\x3f\xec\xdf\x7e\x91\x0f\x3c\x8a\x94\xec\xde\x3b\xcd\x44\x5b\x22\xab\x50\x40\x22\x91\xcf\x5f\x66\xed\x8b\x1b\x55\x6b\x2f\x2a\x6b\x16\x7a\xd9\x3b\x19\xb4\x35\x62\xa1\x1b\x25\xd4\xa3\x6c\xbb\x46\x8d\x46\xfb\xe2\xca\x06\x25\xac\x11\xbd\xd1\xc1\x9f\x88\xf5\x4a\x19\xd1\xaa\xd6\xba\x8d\xf0\xfa\xbb\x12\xda\x0b\xa3\x54\xad\xea\xb1\xd0\x01\xfe\xea\xac\xf7\x7a\xde\x28\x11\xac\xf0\x9d\xaa\xf4\x62\x33\xda\xc7\xef\x8c\x08\x2b\x25\x7a\xdf\xcb\x46\x2c\xac\x6b\x85\x5d\x88\xe3\x7b\xf1\xe6\xd3\x07\xf1\xfa\xb3\x90\xa6\x16\xde\xc2\x17\x61\x75\x32\xda\x1f\xed\xc3\x77\xff\x7c\x2f\x8e\x67\xb3\x99\x98\x6f\x82\xf2\xf8\xd1\x9c\x3e\x7b\xf9\x3a\x7f\xd6\xc6\xcb\x06\x57\xb6\xe9\xca\xff\x39\xbc\x7c\x59\x5c\x3e\xb8\x63\x39\xbc\x63\x70\xdb\x68\x9f\x28\x20\xa4\x53\xa2\x92\x5e\x09\x6d\xbc\x32\x5e\x07\xfd\xa0\x60\xde\xc7\x9f\x3e\x88\xe3\x4f\x73\x71\xbc\xfc\x80\xd7\xc8\xa6\xc1\xe5\x7a\xd9\xaa\xe9\x68\xb4\xff\xd3\x1f\x71\x71\xf5\xf1\xf2\xeb\xd9\xf9\xad\xf8\xf9\xb5\xfb\xb0\x33\x17\xa6\x6a\xfa\x1a\x36\x47\x09\xeb\x44\x6b\x9d\x12\x36\xac\x94\xe3\x1d\xc5\xad\xf4\x62\xa5\x9c\x9a\x0a\x71\xb7\xd2\x1e\xb6\xa7\xf7\x6a\xd1\x37\x42\x2f\xc4\xc6\xf6\xa3\x7d\xb1\x92\x0f\x4a\x48\xe1\x83\x34\xb5\x74\xb5\x08\xaa\xed\x1a\x19\x94\x08\x2b\x19\xc4\xd2\x2a\x0f\x1b\x09\xab\x21\x6e\xf1\xca\x3d\x28\xe7\xc5\xbc\x0f\x42\x36\xde\xe2\xee\x8f\xf6\xe1\xa2\xaa\xf7\xc1\xb6\xc0\x14\x52\x2c\xd4\x5a\x74\xca\x4d\xe8\x72\xe1\x55\x08\xda\x2c\xfd\x54\xa4\x69\xd3\xec\x2a\x69\x84\xa6\x4f\x46\xfb\x3c\x7d\xfc\x66\x0c\x44\xed\x3d\xcc\x43\x7b\xb1\xd6\x5e\x35\x9b\x29\xee\xc3\x95\x0d\xba\x52\xc2\x76\xc8\xaf\x7b\x7c\xf7\x9e\x58\x5b\xf3\x22\x88\xb9\x12\x4e\xad\x9d\x0e\x41\x19\x31\xdf\x88\xca\xb6\x2d\xb0\xd6\xde\xc7\xeb\xab\x5f\x2e\x3e\x89\x9b\xf3\xdf\x6f\x2e\xee\xce\xf7\x46\xfb\x62\xe1\x6c\x2b\x64\xdd\x6a\x03\xf4\xa3\xe5\xdd\x2a\x13\xb4\x51\xcd\x54\xdc\x6a\x53\x29\xfe\x54\x36\x6b\xb9\x41\xda\x79\xdc\xd4\x46\xfa\x20\x3a\x67\x2b\xe5\x3d\xae\xbe\xd1\x46\x09\xe9\xc5\x83\x6c\x7a\x05\x7c\x2d\xb7\x8e\x55\xad\x9d\xaa\x80\x57\xc6\x40\xf7\x17\xb5\x98\xab\x10\x94\x13\x5d\x1f\xe2\xfa\x81\x07\x65\xc0\xf1\xe7\x6a\xa9\x8d\xd1\x66\x09\x43\x21\x01\xf0\x58\xc2\x46\x3c\x58\x5d\x0b\xfb\xa0\x1c\xac\x11\xae\xe0\xcd\xae\x56\xd2\x2c\x15\x0c\xe0\x7a\x13\x34\x30\x1d\x10\xeb\x62\x01\x8c\x1a\x94\xac\xe1\xb9\xc8\x99\xda\x04\xe5\x94\x0f\xaa\x86\x23\xd9\x7b\x18\x24\x4e\x01\x1e\x01\x83\x3b\x5d\xab\xe1\x0a\x60\x77\x90\xe2\x3e\x1e\x74\x5e\x41\xa0\x6d\xe2\x11\x80\x08\x89\x42\x40\x15\x9a\x46\xfc\xf6\xa8\x93\x61\x75\x14\xec\x51\x63\x2b\xd9\x4c\xe1\x09\x4f\x7d\x8b\x7c\x40\xdf\xfe\xf4\xe4\x88\x4f\xe7\x57\xe7\x37\xa7\x97\xe2\xaf\x9c\x1b\x3a\x39\x1f\x36\xa2\x56\x0b\xd9\x37\x81\xf7\xb7\x06\x36\x37\x16\x69\x07\x2b\x90\xa2\x96\xaa\xb5\x66\x2a\xbe\x7a\x25\x5e\x6c\x94\x7f\xc1\x27\x06\xd9\x5d\xe8\x30\x8d\xa2\x11\x8f\x09\x8d\xb2\xd6\x4d\x23\x60\x5b\xe0\x00\x74\xba\xa6\x4d\xd3\x46\x1c\x3d\x48\x77\xe4\x7a\x73\xe4\xe0\xba\x29\x7c\x85\x72\x94\x1e\xa2\xbf\xab\x7a\x3a\x4a\xbf\x0b\x63\x61\x8e\xbf\xc3\x05\xae\x27\x2e\xc8\x17\x8e\xe3\xb3\xe0\x31\xfe\xe7\xcf\x99\x83\xf0\xe5\xc5\x4e\xc5\x1f\xb6\xc7\x13\xc7\x72\x19\xb8\x14\xcf\x6c\x1e\x05\xf6\x05\x19\x16\xc5\xc6\xa8\xd3\x35\x7e\xbc\x3b\x32\xcc\xf1\xb4\xaa\x54\x17\x80\x4f\x0c\x30\xb7\x35\x1e\x34\x05\x4a\x3d\x7c\x80\x56\xb5\xe8\xac\x0b\xe3\x44\x6e\xed\xc5\xdb\x57\x7f\xfb\xc7\x94\x38\x13\xbe\x13\x33\xf8\x30\x5f\x5f\x90\x12\x36\xa4\xd1\x1e\x0e\xb2\x35\x42\x8a\xbb\x8f\x5f\x84\xb7\xd5\xbd\x0a\xd3\x11\xde\x0a\x43\xc1\x3c\xe0\x0b\xba\xf0\xe0\x50\xcc\x65\x75\xdf\xd8\x25\xb3\xbf\x11\x2b\xbd\x5c\x09\xa7\xfe\xec\x95\x0f\x7e\x42\x32\xa9\xb2\xa6\x16\xca\x3c\x68\x67\x4d\xab\x4c\xf0\x79\x6b\x25\xdf\xc1\xc3\x08\x14\x0e\xb5\x72\x24\xe2\xe8\xf8\xf9\xc6\xae\x45\xd5\x68\xbc\xb3\x5c\xbd\xf6\xbe\x57\x7e\x5a\x70\x06\x10\xe3\x52\x9b\xfe\x51\xdc\x2b\x67\x54\x33\xda\xa7\xb5\x79\xdd\x28\x13\x9a\x8d\x08\xae\x37\x15\xc8\x5b\x1d\xe0\x01\x70\x7d\x12\x22\x47\x20\x62\x8e\xfc\xc6\x1f\x19\x15\x8e\x2a\xeb\xd4\x91\xb7\xad\x7c\x84\x47\x0a\x6f\x47\xfb\xa2\x95\xf7\x4a\xf8\xde\xa1\x6c\x70\x52\x7b\x25\xe6\x36\xac\x86\xc3\xe4\x7b\x40\x10\x86\xaa\xfb\xd6\xca\xc7\x6f\x7e\x63\xbe\xf1\x22\xf1\x08\xd2\x32\x61\x9c\xa5\xa2\x79\xd7\xca\x6b\xa7\x6a\xa1\x16\x0b\x55\x85\xe9\x28\x54\xdd\x24\x92\xe5\xcd\xf1\xf1\x93\x27\x89\xb6\xc1\x83\x1a\x1f\x50\x86\x64\x2d\xeb\x44\xa3\xc2\xda\xba\x7b\x92\x44\x0b\x59\x91\xe8\x7b\x90\xba\x91\x60\x38\x44\x1e\x42\xd5\x31\x15\x17\x3b\x66\x05\x33\x45\xb0\xe2\x3f\x7b\x1f\x92\x02\xec\x9b\xa0\xc1\x6a\xd9\x2f\x06\x66\xf9\x06\xe3\xed\xcd\xb5\xa9\xf7\x9e\x97\xcb\x0b\xdb\x34\x76\xad\xe0\xcc\xf0\x90\x40\x60\xd0\xaa\x17\x5f\x84\xac\x6b\x07\xc2\xde\x13\x5f\x9d\x93\x81\xe4\xc9\x50\x81\x81\xc5\xf1\x3f\x5e\x4e\x8f\xdf\xfe\x7d\x7a\x3c\x3d\x9e\xcd\xc4\xf1\x6c\x0a\xff\x3b\x1e\x8d\xf0\x4b\xfa\x6b\x06\x24\xbb\xe5\xb3\x07\x53\x02\x79\x87\xa4\x82\x3f\xbe\x1a\xfd\xc8\xfc\x4d\xbc\x83\x8c\x32\x07\x8b\x49\xd5\xc5\xb2\x17\x38\x31\x6d\x2a\xdb\xb2\xfc\x8f\x54\x9e\x8a\x3b\x38\xb6\x68\x93\xd9\xb8\x31\xa8\x48\x9f\x3c\x55\x20\xd2\xe1\x5c\xf5\xc5\x83\x51\x2e\xc1\x25\xe9\x44\x4e\xa3\xf1\xf3\xc8\x97\x1c\x85\xb6\x63\x39\x00\x9f\x0c\xbe\xec\x94\x6b\xc5\xdf\x66\xb8\xd0\x8f\x8d\x45\xf5\xad\x8a\x29\x0a\xb9\x00\x9d\x21\xf9\xf4\xc0\x4c\x75\xdd\x28\xa4\xc1\x95\xa0\x83\xe9\xc5\xc1\x0c\x96\x5b\x6b\x0f\xec\x70\x38\x02\x6d\x66\xfb\x20\x66\xf1\xac\xdf\x2b\xd5\xc9\x46\x3f\x64\x1d\x67\xac\x99\x7c\x57\xce\x8e\x51\x17\xdd\x5e\x7f\xfb\xed\xfc\xfc\xcb\xe9\xe5\xc5\xbf\xce\xd1\x0c\x55\xa6\xc6\x1b\x4f\x3f\xfe\x86\x2a\x2e\x9e\x5d\x6d\x84\x9c\x7b\x65\x2a\x34\x3e\x16\x68\x2c\xf4\x46\x93\x08\x9c\x6e\xdb\x4c\xb8\x51\x6b\x2b\x9c\x92\xde\x1a\xde\xfb\xe3\x43\x71\xa6\x82\xaa\x82\xa8\x41\xc9\x76\x4a\x39\xe0\x11\xf1\xf2\x50\xdc\xc1\xe1\xdc\x5e\x3f\x4c\x9b\x4e\x03\x32\x80\xd5\x26\xc0\x93\x1f\xb4\x5a\xc3\xbf\x7c\x34\x46\xfb\x42\x08\xa1\xfe\xec\x75\xd7\x22\x9d\xe8\x48\xb4\xba\xae\x1b\x5e\xf5\xb5\x21\xc1\x32\xde\x12\xb8\x74\xec\x0f\xb4\x89\xe4\x3c\x84\x25\xe0\xc3\x94\xd3\xb6\x4e\xec\x84\x54\x01\x8a\x0c\x75\x19\x92\xe7\x89\x9d\x43\x89\x60\x7b\x3c\xa0\x0b\xfc\x0b\xf6\x25\xdb\xff\x53\x9a\x13\x99\x70\x24\xec\x06\x8f\xad\x55\xa7\x60\x73\x79\x28\xba\x62\x78\x1a\x69\x61\xa7\x4c\x60\x94\x05\xb4\x1a\x3a\x22\xda\x47\xa3\x0f\xd4\xc8\x2c\xae\x8f\x04\x53\xe2\x09\xf1\x76\xe7\x98\xb1\x11\xfa\xa0\xdc\xdc\x7a\x1d\x36\xa2\x51\x0f\xaa\x81\x09\xe3\x0e\x83\x46\x9c\xb3\x1d\xbd\x38\x41\x7d\x39\xef\x97\xe2\x40\x8a\xc6\xe2\xe6\x68\x03\xee\x0a\x4e\x71\x5c\x32\x43\x0d\xc3\x58\xdc\xa1\xa3\xa0\x3c\x98\x63\x87\xa3\x7d\x7e\x8e\x12\x07\xad\x34\x1b\xe1\xa4\x53\xcd\x26\xd9\xdd\x66\x61\xc7\x68\x3c\xc3\x21\x93\xa2\x55\x1e\x84\x26\x33\x0a\x3d\x18\x67\x07\x03\x19\xb2\x74\x0f\x5a\x5b\x2b\x27\x03\x0c\xc3\x63\x8f\xc5\x1a\xf6\x0a\xb4\xd6\x5a\x12\x7f\x74\xce\xd6\x3d\x6d\x55\xe7\xec\x5c\xce\x9b\x0d\x8c\xb1\x96\x0e\x4d\x88\x03\x6b\xe8\xf6\x8d\xd0\x2d\x68\x4f\xb8\xed\x48\x54\x60\x45\x56\xb2\xc1\x89\xc8\xa5\x22\x07\xa7\xb1\xcb\xa5\xaa\x0f\x47\x8d\x5d\xe2\x64\x78\x26\xdb\x74\x05\x45\x80\xe6\x81\x01\x27\x47\x9c\x82\x3b\x00\x9f\xab\xb6\x0b\x1b\xe1\x83\x43\xf9\x44\xd4\x8d\x5c\xb7\xb0\x0e\x4f\x1b\x49\x24\x90\x6a\x76\x99\x24\x7e\x74\x42\x6c\x1f\xba\x3e\x94\x7a\x94\xad\x2f\x38\xdd\xf1\x2a\x38\xb2\x78\x1d\xee\x05\x4c\x19\x1e\x07\xa4\x4d\xe6\xd2\x18\x3e\xf6\x49\x90\x7a\x38\x4a\xc1\x8a\xa3\x5a\x3d\x1c\x99\xbe\x69\x60\x81\xb8\x80\xbd\x3d\x94\x2d\x56\x28\x62\xbb\x38\x1a\x6b\x64\xbf\xf1\x41\xb5\x44\x16\x37\x26\xad\xe3\x55\x10\x2f\xfc\xc6\x37\x76\x39\xa1\xbb\xea\x17\x70\xfd\x46\xf9\x31\xa8\x33\x53\x33\xb7\xca\x06\xb6\xbf\xab\xc9\xa9\x8a\x3e\x1a\xdd\x29\x3a\xe9\x64\xab\x02\x78\x54\x70\x24\x7b\x8d\x9b\xea\xf0\x4c\xe1\xc1\x1c\x3e\x81\x8d\xc3\x01\x73\xd3\x40\xba\x06\xcf\x25\x6c\x8a\x7b\xf0\x23\x81\x92\xfa\x99\x9b\x16\xb2\xd2\x0d\xdc\x24\x3e\xc3\x92\xe6\x4a\x7c\xbd\x3d\xbf\x01\x65\x3a\x57\x61\xad\x94\x11\x97\xd7\x1f\x4f\x2f\x67\x13\xfc\xe7\x6f\xc5\xd8\xf1\x4e\x34\x18\x1b\x3a\x71\x6c\x36\x98\xbe\x9d\x2b\x07\xe7\xa6\x96\x41\xce\x25\x28\x4d\x50\x4c\xc9\x52\x88\x1f\xc3\x31\x3e\xfb\x20\x66\xe8\x12\x91\x5d\xaa\x1a\x55\x05\xa0\x9e\xa8\xf5\x62\xa1\x1c\x2c\x00\xcf\x25\xe8\x29\xb0\xdd\x0a\x81\x34\x97\x5e\x47\xfd\x7e\x7b\x7e\x79\xfe\xf1\x4e\xbc\xab\xe7\xba\x7e\x0f\x4a\xcc\x01\x8f\xc1\x5f\xf0\x10\x19\xe7\x14\x57\x35\xc3\xed\x79\x91\xe6\xf7\x62\x72\x3c\x4a\x7f\x88\xe3\xb7\x7f\xc1\xeb\xb8\xbd\x3a\xfd\x72\xfb\xeb\xf5\xdd\xdd\xc5\xd5\xa7\x9f\xbb\x1e\x28\xd8\x6e\xc1\xd5\x06\x0a\x9d\x7d\x10\x68\x7a\xf8\x7b\xd2\x21\x42\x78\xf8\xea\x1d\x0b\xb4\xf7\xe2\x1d\x79\x73\xfe\x3d\x7f\xfd\x3b\x9a\x8c\xc5\xed\x7a\x91\xed\xbc\xa5\x7e\x00\x9d\x9d\xa8\x1e\xb5\x28\x1a\x7b\xf1\x7b\x1c\x26\x5f\x43\x5e\x8a\xed\x14\x09\x5e\x2f\xe4\x52\x82\x9f\x98\xa6\x57\x55\xbd\x73\x51\xf9\x83\xd3\x4e\x07\x9b\xcc\x1e\x31\x57\x60\x01\x93\xa7\xba\x92\x0f\x1a\x38\x36\x1e\x32\x60\x63\xf9\xa0\x4e\xf0\x3e\x52\xf7\xff\x98\xa1\xb0\x16\x07\xc7\x6f\x44\xab\xcd\x21\x4c\x5f\x06\xd1\x28\x70\x12\x8f\xc5\xbd\xda\xb0\xfb\x5a\x17\x37\xbd\x8a\x37\x3d\x75\xcf\x0c\x6e\xf2\x4f\xdc\x45\x6a\x61\xeb\xe2\xd9\x6c\xfb\x7a\xbc\x03\xa4\xcb\x49\xe2\x3d\x36\x37\x60\xf2\x64\x56\xc1\x4a\x51\xe6\x72\x14\x01\x23\x03\x4b\x90\x39\x68\xc8\xee\xc1\x2a\xf7\xd0\xc7\xf5\x89\x4c\x68\xd1\x60\x58\xa4\xb4\x57\x9d\x6a\xed\x43\x0e\x09\x75\x4e\x01\xc9\x7c\xb3\x49\xea\x4f\xd5\x48\x34\x1c\x04\x6d\x02\x0f\x4f\x95\x75\x0d\x4f\x94\xb4\xf5\xc9\x54\x15\x6b\x1d\x56\xf0\xa9\x36\xcb\x66\x4b\xda\x4a\xb7\xec\x61\xa6\x38\x12\xea\x15\x36\x1d\xc8\xba\x85\x4b\x78\x13\x07\xac\x07\xf2\x0f\x7f\x81\xad\x3a\xa6\x5f\x5f\xa1\x19\x4b\xbf\xbf\x9d\x11\x19\x9f\xb4\xf9\xc9\xa1\x09\xb6\x13\x12\x1d\x42\x78\x08\xfb\xa7\x7a\x21\x6e\xce\x3e\x08\x6f\x64\xe7\x57\x96\xc3\x67\x2c\xcb\x46\xfb\xe2\x20\x6d\x12\x1c\x72\x7c\x12\xae\xfe\x30\x31\x6f\x23\x41\xb1\xa2\x37\xb6\x74\xb6\x37\x44\x27\xb1\x90\xba\x21\x93\xe3\x6e\x15\x67\xd0\x46\x73\xab\xf7\x60\x62\xae\xe1\x51\x60\x06\x49\xb1\x02\x9d\xb2\x96\x9b\x43\xd2\x25\x70\xd2\xc9\x46\x0e\x20\x53\xbc\x46\xcd\x4d\xd6\x30\x1c\x4a\xd0\x9f\x9d\x72\xcd\x66\x4c\xb2\x7a\x0d\x6e\x15\xb0\x4e\xc5\xea\x11\x47\x31\x16\x27\x1d\x6d\x6a\x50\xd4\x14\xc2\x6c\x51\xf4\x68\x2f\x3d\x30\x24\x7e\xbf\x92\x5d\xa7\x4c\xb2\x56\xf1\xe0\x0c\x56\x04\x24\xe3\x78\x52\x24\xa7\x74\x41\x80\x29\x88\xbb\x0a\xa7\xb3\xa0\x36\x48\xc8\x3e\x58\x30\x49\x2a\x54\x2f\x12\x36\x37\x05\x05\xe0\x6a\x7a\xd8\xaf\x76\xad\xc0\xf4\x61\xf5\x89\xc1\x3e\xaf\x42\xdf\x91\x96\xa1\x85\x0a\x50\x96\xc1\xba\x14\x6f\x52\x83\x58\x1f\x2b\x33\xa6\x14\x18\xcb\x24\xb0\x5b\xb9\x21\xe3\x23\xdb\xea\x1c\xab\x52\x32\x80\x4b\x8a\xd6\xc0\x20\x3a\x32\xda\x07\x8e\x0f\xda\xf4\x78\x2e\xd0\x09\x94\x9e\x43\xc2\x0a\xc4\x98\xc6\xe7\x3b\x85\x74\x06\x3b\xa6\x51\xad\x27\x86\x87\xad\x01\xcd\x0a\x3e\x86\xf6\x9e\x42\x51\x65\xd4\x78\x3a\x02\x26\x9c\x10\x15\x26\xd6\x4c\xe6\x4b\x60\x96\x89\x72\xce\x3a\xd0\xcb\xe8\x95\xd8\xb6\x03\x4f\x2e\x1e\x18\x3b\xff\x4f\x55\x85\xa8\x47\x2e\xff\xcf\x2f\x1c\x9a\xe9\xdb\x4e\x4c\x5d\x3d\xcf\x4a\xec\xdf\x47\xfb\xe2\x17\xb4\xfa\x88\xf9\x61\x6d\x2f\x3c\xda\x01\xc1\x72\x90\x48\x7a\xa1\xe1\x43\xd9\xb4\xd6\x87\x18\x37\x94\x62\x8d\x1b\x02\x7b\x9f\x4c\x36\x96\x93\xc8\x30\xe2\xe3\x97\xaf\xf1\xa0\x46\xf9\xb3\xd2\x4d\x8d\x83\x53\x60\xe0\x85\xb1\x2f\xc0\xb8\x19\xed\x93\xa5\x28\x83\x84\x2f\x91\x59\xe0\x9c\x83\x9c\x52\x62\xae\xc1\x42\x19\x6c\x77\xc5\x0b\xd6\xc9\x9c\xf6\xa0\xe0\x41\x1e\x4e\x47\xae\x9e\xa7\xef\xad\x89\x34\xa2\xd0\xe7\x03\x6c\xb8\x35\xe2\x0d\x30\x05\x9c\x62\x29\x3e\xde\x7c\x7c\xfb\x5a\x54\x2b\x55\xdd\xfb\xbe\x45\xb7\xbc\x91\x95\xaa\x63\xdc\x12\x3c\x0a\xe6\x20\x30\xab\xd2\xf9\x84\xa3\xe9\x59\x0c\x81\x21\x4d\x6e\xb5\x53\xc0\x50\x4c\x8b\xca\x3a\xd7\x93\x75\x0f\x26\x5c\x88\x8e\x2c\xaa\x7d\xbc\x8b\xbc\xb4\x15\x91\xa3\x93\x1b\x71\x20\xe9\xfc\x1c\xcf\xfe\xc7\x21\xed\x1a\xd3\x0e\x98\xa2\xb1\x12\x85\x27\x4c\x3c\x07\x94\xb7\x85\xbd\x06\x7a\x82\xf9\xd8\xca\x47\xdd\xf6\x6d\xf9\x30\x96\xea\x69\x00\x51\x39\x25\x83\xaa\x89\x1b\x13\x11\x78\xa8\x3a\x46\xd2\xd3\x17\x76\x21\xc0\x25\xcd\xbe\x3c\x6c\x9d\x62\x1d\x10\xa7\x57\xd9\x9a\x54\xe6\xbd\xee\xc8\xe3\x82\xdb\x69\x63\xe2\x40\xbc\x2b\x77\x4c\x55\x30\xb6\xc9\xc4\xc1\x93\x07\x8c\x4a\x5a\x7b\x54\xcf\xd3\xf7\xf0\x31\xb0\x6f\xbc\x31\x4a\x12\x52\x22\xd6\x71\x2c\xfd\x8e\xd4\x7d\xd4\xdd\x31\x6e\xae\x8d\xd7\x35\x9f\xe6\x74\xc7\x98\x16\x1e\xca\x69\x24\xb7\x13\x84\xc4\x1c\x94\x5c\x8e\xb7\xbc\xc8\xd3\x79\xf1\x5c\xd4\x25\xcf\xe2\x14\x24\x64\x2d\xae\xc1\x4b\xf9\x05\x4c\x72\x9c\x13\xaa\xd2\xb9\x4a\xa4\x7f\x72\x62\x29\x2d\xc0\x92\x19\x85\x13\x9a\xe8\x29\xcc\x99\xae\xc5\xb8\xe6\x98\x9d\xaf\xec\xbb\x8c\x6a\xed\x04\x05\x35\x26\x2d\x0a\xee\x09\x9c\xb0\xbf\x90\xb7\x11\x37\xe7\x5f\x2e\x2f\x3e\x9e\xde\x5d\x5c\x5f\xfd\x3c\x02\x0d\xdb\xf1\x99\xc6\xbf\x6d\x80\x5f\x9c\xea\x9a\x14\x6f\xf8\x0a\xde\x0d\x7c\x0c\x67\xc8\x92\x42\x93\x2c\x3e\xc1\x3a\x03\xae\xc4\xcc\x42\xb7\x11\x76\x81\x72\x99\x9c\x89\x52\x5c\x4f\xc5\x29\x66\x5f\xc2\x4a\x9b\x25\x7a\x15\xbd\xa9\x95\x43\xaf\x49\x9c\xde\x9e\x7e\x81\x8d\xea\xa3\x54\x2e\x9f\x1f\xe3\x19\x3b\xdf\xe0\x39\xf4\x1b\x53\xad\x9c\x35\xb6\xf7\xe4\xc0\xc6\xb3\x94\x6c\x18\x70\x67\x49\xe9\x05\x4b\x01\x8c\x67\x8d\x02\x1d\x04\xa8\x44\x49\x6e\xcf\x5c\xe1\x86\xb0\x6d\x1f\x4f\x58\xb4\x0d\x68\x28\xb9\x6b\xe7\x02\xa5\x62\xac\x85\x29\x80\x1f\x51\xfe\x8d\x6d\x2f\x3e\xd0\x20\x47\xa4\x0b\x5a\x36\x20\x76\x78\x29\xfa\x3b\x2d\x2f\xf2\x35\x3d\x89\xd7\x40\x9a\x68\x40\x86\x46\x9b\x7b\xa0\x45\x03\xb2\x1d\xa4\x86\x14\x4e\x35\x12\x18\xb9\xd9\x08\xdf\x82\x81\x27\x5b\xdb\x63\x48\x87\x06\xc3\x4c\x0c\xc6\xdd\x4b\x75\x99\x49\xb6\xfd\x88\x18\x5f\xc5\xdc\xea\x81\x57\x8a\x03\xa6\x8f\x4c\x06\x9f\x02\xed\x45\x62\xe8\x30\x59\x84\xca\x14\x72\x9e\x43\x2e\xa8\xe5\xcc\x96\x5b\xf9\x0a\x48\x36\xdc\xe0\x68\x50\xa0\xf8\x4c\x19\x11\x0c\x8a\xa3\x45\x85\x41\xd5\x07\xb0\x82\x81\x57\x4f\x29\x90\x47\xb3\x8a\x01\x5d\x24\x31\x0e\x18\x77\x62\x60\xa5\x04\xb7\x21\x73\x98\x77\x9a\x98\x1c\xa8\xed\x79\x93\x4d\x3d\xd8\x1e\x95\xb6\xa6\x25\xee\x8c\xa7\xe3\x1d\xdd\xa6\xbb\xf7\xf1\xd7\xce\xba\xf0\x7e\x94\xed\xab\xb8\x8b\x5e\x74\xd2\xfb\xb5\x75\x35\x98\x13\x81\xf8\xeb\xa0\x88\x0a\x3b\xf5\x67\xaf\x9d\x82\xab\xf6\x76\x52\x5e\xd9\xe6\x46\x97\xe7\xf0\x89\x1c\x77\x12\xe9\x38\x37\x4c\x12\xf4\x61\x05\x64\xc2\xb0\xfe\x5c\x2d\x2c\x3a\xa3\x68\xd1\xc5\xa7\x96\x5b\xbe\xcd\x8d\x6c\x07\x96\xc6\x67\xb1\x20\x56\x24\x4e\x2d\x7a\xfe\xc2\xb3\x20\xc1\x0c\x07\x91\x89\xae\x85\x79\x44\xf2\x4c\x22\x15\xde\xa7\xe4\x92\xe4\x3b\x1b\x0b\x4e\xaf\x1e\xa4\x32\xb2\xa8\xa7\xdb\xc7\x60\x32\xa0\x8a\xdd\x9a\xfd\x68\x1f\xd3\x37\x01\x84\x35\x05\xa1\x96\x0e\x27\x9f\x67\x06\x32\x42\x56\x14\xc3\x5c\xdb\xc2\xb1\x07\xdb\x28\x05\x51\x35\x1f\x68\xca\x18\x4f\x7c\x90\x8d\x9a\x44\x4b\x7d\x60\x63\x1d\x84\x1c\x4b\x38\x2c\x9e\xc3\x94\x41\xb1\x03\xd3\x81\x59\x6e\x72\xb4\x37\xe5\x80\xc6\x71\xfb\x36\xb4\x4a\x10\x86\x14\xac\x20\xb3\x0a\xd7\x9a\xa4\x01\x4e\x01\x9e\x0f\xe7\xf7\x3f\x39\x4a\x42\x2e\x97\xe6\x23\xc8\xe1\xd5\x85\x76\xa0\x73\x86\xbb\x49\xfb\xf1\xf2\x2f\xae\x0f\x6c\xbc\xe1\x82\x78\x15\x30\xd1\x78\x44\x04\xd9\xb3\x7b\xb7\x7f\x5c\x7d\xa4\x15\x44\x5e\xcf\xf4\xdf\x8b\x49\x7b\x0c\xb5\x6a\x32\xcb\x38\x15\xce\x67\x0d\xad\x2c\x2b\x2e\xae\x7e\xb9\xc6\x73\x77\x7b\x79\xfa\xaf\xf3\xeb\x5f\x60\xc2\xcf\x4c\x94\xed\x90\x3f\x9e\x90\xfb\x34\xe1\xa4\xa3\xe0\xe1\x94\x1b\x64\x91\x6f\x1d\x08\x93\xa9\xf8\x9d\x93\xd6\x1c\x6e\xc0\x48\xcf\xd6\xbd\x40\x67\x8a\x17\x2e\xfa\x06\x4d\xa3\x60\x1d\x9b\xc9\xaa\x5b\xa9\x56\x39\xd9\xd0\xb6\x1c\xcc\x55\x25\xe1\x18\xa0\xae\xde\x4f\xe6\x8b\xcd\xcc\x1d\x2d\x1b\x25\xbd\x6e\xc0\x71\x05\x9f\xbe\xe6\x60\x01\x89\x9a\x6d\x5e\x3f\x64\x33\x1b\x26\x82\xf6\x07\x3d\x23\x39\x23\x7a\x91\xf2\x07\xa0\x68\x62\x1e\x3e\x58\x10\x0e\x71\x46\x76\x81\xb2\xb1\xd5\xfe\x89\x08\x77\x09\x2d\x78\x39\x7d\x0b\xae\x7e\x74\x2a\x0a\x0d\xe6\x94\xac\x27\xd6\x14\xb0\x07\x75\x82\x1f\x0a\x0c\xe5\x16\x57\x82\x9c\xae\x95\xd7\x4b\x43\x31\x56\x58\xef\x63\x67\x39\xe2\xda\x9b\xe0\x7a\x4c\xf7\xf3\xb4\xc9\xd3\x85\x05\xa3\x48\x37\x2a\x4c\xc5\x05\x78\x2d\xc8\xde\x32\xca\x49\xd4\x78\x72\x03\x52\x9e\x83\x43\xad\xf6\xbc\x36\xba\x99\x76\x0c\xd4\xc9\x2d\x9e\x38\xb9\x3d\x3d\x9c\x86\xa3\x60\x46\x5c\x61\xe4\x4a\x04\x5e\x68\x1f\x1c\xea\xcf\x92\x39\x7d\x5f\xad\xc0\x93\x22\xc4\xc6\x58\x9c\x9d\x7f\xf8\xfa\x69\xcb\xd5\x13\x77\x56\x48\xd1\xe8\x56\xc3\xc2\xd4\x63\x80\x13\x1e\x2d\x12\xdd\x76\xce\x62\x34\xc5\xab\xaa\x77\x3a\x80\xb9\xb4\x4b\x3a\x52\x02\x2f\x1c\x9a\xa8\x13\x9e\x00\xc6\x70\xfd\x4a\xd6\x76\x1d\xa7\x0a\x5c\x3a\x9c\xec\x91\xa8\xa5\x59\x2a\x67\x7b\x9f\x26\x3e\xe5\x63\x93\xb6\x2d\x9e\x97\x52\xcf\xe2\x99\xc5\x61\xd4\x72\x73\x42\xd1\x06\xeb\x52\x56\x1b\xf6\x79\xf2\xff\xf6\x03\x52\xfd\xf4\xe6\xea\xe2\xea\xd3\x89\x38\xbb\xb8\xfd\xed\xf2\xfc\xf6\x76\x60\x9b\x5e\xdc\x8a\xf3\xff\xf8\x72\x7e\x73\xf1\xf9\xfc\xea\xee\xf4\x52\x7c\xfc\x7a\x73\x73\x7e\x75\x77\xf9\xc7\xff\xcf\x33\x81\x2f\xd5\x3a\xf1\x22\xaa\xef\xa8\x45\xcc\x32\x7e\x8e\x56\x79\x64\xd4\x68\x98\xe5\x40\xc0\x8e\x46\x89\x91\x10\xe4\x47\xa7\x2a\xa5\x1f\xc8\x77\x21\xcd\x51\x81\x33\x87\x76\x09\xf8\x3f\x96\x52\x21\x98\xc7\x69\xc0\x0f\x93\x62\x6f\xd1\xa3\x2a\xd8\x92\xc5\x7b\x53\x71\x6a\x92\x3f\x87\x62\xdb\x49\xe3\x5b\x10\x1a\x75\xce\xc9\x25\x1b\x36\x8b\x62\x3f\x65\x2f\x85\x6f\x20\x6f\x19\x58\x8d\x22\x3b\x3f\xd1\x6d\x67\xda\xdf\x63\xe6\x5c\xd5\x27\x38\x0c\x1d\x7d\x7e\x10\xf9\x36\x18\xa5\x56\xeb\xb4\x76\xf2\x1a\x49\x7a\x62\x44\xe6\xec\x03\xc9\xed\xc1\x0f\x2e\x84\xc3\x56\x53\x71\x29\x71\xe2\xec\xa0\xa5\x05\x2e\x94\x73\x94\xd6\xa6\x9c\xb3\x8b\xf1\xc1\xe1\x4f\x7a\x72\xb9\x70\xa1\x4d\xe5\x54\xab\x4c\x00\x0b\x8e\x8d\x6d\x58\x4f\xa3\xbc\xff\xef\x2d\x86\x6c\x29\x50\x66\x69\x55\xdb\xb3\x48\x7b\x03\x67\xb0\xa1\xe8\x08\x9c\x0c\x4f\xbe\xa7\x45\x95\xd5\x57\xab\x68\x46\xe1\xf9\x91\x28\x53\xe8\xf0\xfc\x1e\x03\x45\x4c\xee\x92\xb1\xc6\x62\xbd\xc2\xb1\x89\x9a\x89\x46\x4b\x65\x30\xbb\x56\x8f\x29\x2c\x41\x0b\x1f\xed\xc7\xcc\xd5\x9f\xbd\xea\x11\x18\x52\x93\x87\x55\x67\x85\x91\x86\x91\x5e\x78\x6b\x4d\x44\x3f\x61\xf0\xdc\x04\x0e\xe2\x50\x66\x8e\x42\x8c\x83\xbb\x16\x20\x53\x56\x6c\x7c\x81\x01\x3d\xcd\x0b\x00\xfa\x0e\x7d\x30\x86\x71\x59\x8a\x83\x84\xc8\x8d\x0b\xe5\xc8\xb6\xc4\x43\x91\xcf\xa2\x73\x74\x6a\xa2\x06\x2c\x96\x41\x9b\x13\xef\x4e\x90\x14\x0a\x39\x46\x23\x2f\xae\xc1\x1a\x25\x82\x72\xad\x36\xb0\xb1\x4c\x66\x0c\x91\x3d\x39\x4b\xcc\x96\xd7\xe3\x81\xc9\x2a\x11\x38\x99\x8d\x6b\x90\x00\xa5\x9f\x84\x89\xe4\x41\xc6\x9a\xac\xe6\xa1\xcd\x9c\x56\xcb\x81\xb2\x95\xed\xd8\xe1\x8f\xc8\x8f\xbc\x75\x14\x3c\x00\x12\xa8\x14\x4a\x4e\xf7\xf3\xbe\x76\xd2\x81\xc0\x68\x08\x7f\x95\xb8\x07\xc1\x3d\xb0\x36\x92\x67\x0b\xe9\x83\x38\x68\xa4\x5b\x2a\x31\x97\xa6\x5e\xeb\x3a\xac\x0e\xa3\xc7\xe3\xc7\x4f\x92\x01\x66\x00\xdf\x32\x46\x6e\x3a\x82\xef\x26\xf1\xca\x09\x5a\x1d\x05\xcc\xeb\x39\x4a\x72\xa0\xfc\x29\x64\xed\xd0\x83\xac\x55\x23\x37\xcc\x14\x9c\xec\x26\xa2\x97\xb0\x1e\xdf\xc9\x35\x6f\x2d\xb2\x25\x65\xfb\x9d\x91\x40\x94\x24\x64\xc4\x83\x96\x7c\xea\x08\xf2\x34\x10\x82\x31\xa0\x07\xff\x4f\x59\x64\x8f\xe6\x8c\x45\xc3\xef\x29\xae\xa4\xd9\x63\xb4\xbd\xc4\x06\xc3\x3c\x47\xfb\x4f\xf1\xec\x78\x88\x7f\x61\xce\x8d\x38\x19\x70\x86\x71\xa6\xf1\x41\x63\xc1\x79\xe7\x14\xaf\x8e\x1c\x87\x74\x19\x10\xa1\x51\xa1\x3c\xe5\xcc\x23\x39\x0c\xc5\x77\x94\x88\xb4\xcc\x97\x64\x83\x14\xb6\x8c\xf6\xe2\x4d\x82\x21\x80\x49\xc2\xc1\x40\x02\x3c\x83\x0f\x88\xb9\xff\x94\x2f\xa6\xd8\xe5\x6c\x27\x45\x97\x48\x56\x1c\xc4\xd3\xdb\xd3\x2f\x4f\x31\xce\x84\xa6\xf8\x06\x03\xb5\xb4\x08\x44\x72\x7c\xb9\xb8\xfa\xe4\x13\x61\xf1\x94\x80\x29\xa7\x6a\xb5\xd0\x06\x97\x01\xee\xbb\x6c\xd8\xd6\x1b\x30\x13\xa6\xc5\x90\x7f\x30\xd2\x44\x17\x66\x31\x07\x93\xf8\xd6\x69\xb3\xfc\x86\x54\xfb\xc6\x88\x0e\x4a\x6f\x0f\x73\xbb\x14\x78\xd0\x5e\x1c\xcf\xc8\xfc\x22\x84\xc6\x3e\xba\xac\x5d\x33\x81\x51\x26\x64\x28\xf1\x28\xc7\xb3\x14\xdc\x4c\x29\x2a\x86\x79\x78\x15\xfc\x8e\xbb\x1c\xd1\x40\x0b\xeb\x92\x82\xfd\xd0\x37\xf7\x99\x88\x17\x47\xd7\xa2\xee\x31\xba\x0f\xf6\xd6\xf8\x07\x70\x1b\x9c\x09\x6b\xb5\xcf\xac\xf7\xe3\xf8\x3f\xbe\xc9\x8b\x03\x72\x16\x61\x45\xfe\x90\x63\x2a\x14\xd4\xfb\xf9\x10\x1c\xf5\x10\x07\x60\xa1\x81\x9d\x2b\x4e\x3f\xfe\x96\x87\x1a\xed\x73\x2a\x31\x1f\xb2\x18\x0f\x24\xb0\x1f\x41\x0b\xb5\xcf\xf4\x5e\xa2\xe2\x85\x13\x22\x4d\x86\xff\xc1\x1e\x24\x46\x86\x03\xf4\xcc\x26\xe4\x50\x83\x4c\xb3\x8f\xc7\xaf\x56\x14\x35\x19\xed\x0b\x85\xf8\x11\x14\xd7\x29\x40\x8f\x99\x60\x27\x17\x0b\x5d\xa5\xfc\x7a\x21\xfc\x23\x8b\x47\x4a\x47\x46\x88\x4f\x21\xb4\xce\x19\xc7\xe3\xef\x3e\x7e\xf9\x76\x75\x7d\x76\x7e\x79\xfa\x47\x02\x85\x14\x76\x00\xfb\x6d\xb0\xab\xff\x1e\x93\x69\x60\xf4\x13\x6e\x40\xec\x6d\x94\xdf\x2b\x93\x92\x3d\x2e\x08\x03\x73\xca\x15\xa1\xc3\xbb\x8f\x5f\x44\x27\xd1\xb2\x80\x09\x8e\xf6\x05\x8a\xdf\x24\xdf\x13\x3c\x0a\xdd\xcc\x68\x8c\xf8\xa9\xf8\xd0\x33\xdd\x31\xa8\x51\xd7\x49\xc6\x10\x28\x2f\x66\x66\xd0\x01\xc6\xf8\xe6\xd6\x2a\x74\xad\xc6\xa2\xef\xe0\xfb\xd7\x33\xd1\xea\xa6\xd1\x51\x16\xb0\x8b\x5f\x82\x45\xa3\x8b\x22\xd3\xf1\x7a\xc2\x99\xdc\x22\x81\xb1\x7b\x59\x25\x10\x4a\xe9\x27\x13\x8a\x81\x13\x44\xce\xd7\x7d\x05\xa6\x62\xcf\x52\x32\x53\x64\x00\x46\x8c\x9c\x34\x88\x1c\x17\x79\xe1\x35\xc1\xf3\xb1\x16\x80\xc0\x39\x6b\xcc\xe4\x9a\x6a\x43\xb1\x63\x6d\x08\x8a\x84\x50\xdb\xc8\x3d\x40\x07\x8c\x1e\xa2\x87\x5a\xc4\x9b\x0a\x56\x2a\xbc\x5e\x44\x57\xad\x6c\xe7\x85\x5c\xcb\xcd\x58\x84\x9e\x90\x4e\xb8\x3f\xc1\x32\x37\xb4\xa8\x18\xe7\xc0\x07\x4b\x6b\x6b\xa1\x6b\x25\xb3\x58\x05\xa6\x9b\x84\xaa\x9b\x18\x4b\x04\x63\x7c\x0d\x43\x59\x9e\x8b\xcc\x92\xcc\x4b\x10\x61\x50\x35\xf3\x1e\x4c\x7f\x76\x75\xaa\xaa\x6f\x7b\x4c\x5d\xc7\x98\x25\xed\x02\x25\xa9\xf2\x12\x6a\x0c\x0f\x70\xd0\x7b\x81\x8e\x60\x4b\xe2\x63\x9c\xb2\xa7\xeb\x22\x56\x87\xaa\xcd\x04\x3f\x8c\xa2\xa2\x7b\x3e\x16\x76\x11\xf0\x4a\x70\x7e\x62\x68\x43\xe7\x20\x2e\xd8\x11\x58\xb4\x11\x03\xe1\x78\x12\xe3\x55\xca\xd8\x7e\xb9\x62\x68\x53\x27\x7d\x8a\x8f\x82\xfc\x81\xe5\x33\x9c\xa7\xe0\x1d\x70\x83\xc0\x18\x06\xa3\x9a\x32\xde\x69\x2d\x59\x9f\x72\x42\xf2\x19\x62\x8e\x39\x17\x66\xe2\x35\x51\xb4\x14\xa1\xc3\xf9\xf6\xe0\x94\xde\x43\x61\x37\xff\x6f\xc5\xf9\x8b\x59\xe5\x9d\x43\x4f\x5d\x36\x88\x7b\x57\x75\xb2\x62\x38\xf9\x18\xe1\x09\x31\x9c\xb4\xb5\x42\x64\x23\x1e\x6c\x82\x21\xfb\xe3\x16\x53\x6e\x1c\x1d\x8f\x9c\xbb\x92\x88\xc8\xe5\x85\xe6\x95\x30\x2b\x6c\xed\x7c\xc8\x33\x8c\xa6\xec\x5c\x89\x85\x53\xaa\x9e\x3e\xad\x28\x93\x35\x48\xea\x32\xd9\xd6\xc9\xd0\x00\x4e\x42\x5b\x8b\x9c\x66\xd5\xc8\xce\x03\x8f\x45\xfb\x3a\x69\xaa\xb4\x01\x58\xc0\xc1\xac\x5b\x10\x7f\x5c\x48\xba\x48\xc5\xc8\xfa\x36\x4f\x93\x81\x9c\x09\x82\x3e\x13\xad\x92\x06\xf9\xd6\x20\x20\xc1\x29\x20\xac\x2a\xc7\x79\x82\xa4\x21\x34\xe2\xd5\xdb\x59\xb2\x10\x68\x3e\x9d\xd3\x16\x83\x3a\xb0\x43\x06\xed\x95\x65\x16\xef\x5d\x3f\x6f\xc0\xab\x42\x43\x2d\xe6\xce\xf0\x39\x18\xea\x64\x68\x61\xd2\xb0\x28\xcf\xd2\x95\xb1\xfc\x67\x68\x38\x93\x68\x95\x39\xc2\xdf\x39\xdb\xda\x80\xf1\x33\x4b\x71\xbe\x41\xce\x28\xe7\x1e\xf2\xa6\xc7\x04\x6c\x65\x1d\xb9\xc1\x91\x46\x31\x4e\x89\x09\x1c\x10\x94\x69\x79\xbc\x20\x2a\xd1\x03\x49\x8d\x5e\x3c\x55\xdd\x00\xcb\xd0\x2c\xd0\xb3\xc5\x62\x00\xf8\x2c\x85\x51\x07\x40\x8a\xb0\x72\x2a\x99\xbc\xf8\xa8\xf4\x90\xe3\xd9\x58\x1c\xcf\x66\x63\xf1\xf2\x4d\x5e\x3d\x6b\x84\x4e\x57\xf7\x04\x59\x34\xea\x89\xdb\x02\xc7\x5d\xe8\x0c\xaf\x53\xf6\x21\x82\x4e\x24\xd9\x1e\xb2\xc9\xb7\x11\x2b\x48\x70\x8d\xf2\x29\x97\x7e\x10\x18\x8a\x27\x99\xe2\x03\xce\x12\xe0\x38\xe6\x21\xbc\x2d\x62\xbb\xe5\x8c\x70\x68\x42\xe3\xe0\xd3\x11\xef\xd9\xd0\x39\xc3\x2a\x98\xad\x1d\x1e\x50\x70\x47\x83\x11\x4e\x2b\xf3\xd9\xf1\x6c\x16\x03\x7c\x05\x0d\x90\x31\xb7\xea\x13\x28\x2f\x98\x83\x48\xcf\xe6\x40\xf3\xf6\x34\x1c\x23\x01\xbf\xf1\x2a\x6e\x53\x71\xe4\x56\x0c\x6b\x10\x8d\x5c\xd2\xc5\xd6\x09\xf5\x67\x2f\x1b\x32\xf7\x3e\x0f\x0d\x6d\x38\x29\x69\x98\x78\xe4\xe7\x88\x04\xdb\xb3\xa6\xd1\x46\xed\xc1\xc9\x0f\x85\xdb\x03\x03\x97\x7e\x0e\xbb\xd5\x94\xed\x78\xf7\x4f\xf1\x04\xc4\x7c\xcc\x21\xb7\x0a\x15\x1d\xc5\xcf\x58\x30\x50\x79\x1c\x4c\x99\x82\x77\x65\x74\x0d\xa7\x95\x79\x07\xa1\x3f\xcd\x86\xa0\xb9\x64\x5e\xd2\x24\x0a\x67\x93\x85\x5c\x4a\x49\x7e\xfa\x7a\x7a\x73\x7a\x75\x77\x7e\x4e\xa3\x5c\x45\xcd\xc2\x46\x1f\x67\x1e\xe0\x61\x48\xec\x31\xc7\xf3\x19\x2a\xd3\x6a\xfe\x4e\x9b\xda\xa2\x31\x8e\xb1\x72\x30\xab\xc9\x54\xf1\x29\xee\xa6\x0d\x95\x7a\xc2\x43\x49\x41\xe6\x08\x03\xe6\x98\x63\xc9\xca\x38\x39\xca\x89\x46\x3b\x78\x4c\x5a\xd0\x2f\xb0\x73\x8c\xa2\x44\x25\x8e\xc9\xc7\xac\x68\x5e\x0d\x4e\x29\xed\xf8\xbb\x7f\x8a\xe3\xec\x33\xf6\x9e\xa1\x7b\xad\x36\x64\xc4\xfb\x49\xb0\x84\x7a\x12\xaf\x86\x9f\xb7\xf2\x71\x02\x23\x80\x33\x46\x66\x0d\x41\x18\xa9\x60\x26\x83\x91\xd1\x29\x65\x73\x88\x93\x59\x84\xe1\xda\x39\x17\x4f\x3d\x34\x27\xb0\x66\xe2\x20\x82\xbf\x22\x2c\xe6\x90\x0d\xec\x27\x66\x95\xef\x3b\x9e\xfd\xb5\x12\xd9\xdb\xf3\x8f\x5f\x6f\x2e\xee\xfe\xf8\xab\x25\xb2\x37\x4c\xde\x98\xaf\x09\x96\x4a\xb4\xc4\xe9\xd7\xbb\x5f\xc5\xbb\x2f\xa7\xb7\xb7\xbf\x5f\xdf\x9c\xbd\x8f\xf1\x26\x8e\x57\x12\x86\x68\x43\xc4\x41\xcc\x1a\x87\xf8\xb9\x8c\xb6\xd5\xcb\x55\x28\x92\x54\xda\x0c\x8b\xc9\xb4\x01\xab\xa8\x5a\xa1\x61\x5e\x5b\xe4\x1f\xcc\xc1\xc4\x12\xd7\xb8\xbd\x55\x19\x70\x5d\x01\xe7\xc5\x8a\x3f\x82\xa2\x30\xa2\x23\x1f\x05\xbf\xb2\x7d\x53\xc3\xe9\x4d\x98\x54\x85\x70\x79\xe4\x5d\x50\x9b\x6b\xe9\x6a\xc4\x7c\xc9\xa0\xe7\x04\xd1\xc6\xa0\x05\xe7\xa5\x5a\x8b\xb3\xe8\x94\x05\x0e\xe4\xb9\x51\xe1\x5b\x1f\x56\xe2\x40\x4d\x97\x53\x98\xcd\x06\x4b\x21\xc3\x4a\x69\x27\xec\xda\xc4\xb2\x5f\x76\x4e\x7f\xa7\xa2\x82\x13\x0e\xfd\xb0\x96\xf5\xa2\x73\x2a\x84\x0d\xc5\xcc\xa4\x81\x79\xa1\x83\x81\xf0\x01\xb0\xe5\x82\xdb\x90\xf7\x03\x6e\xfb\x9b\xd9\x7d\xca\xcd\x7b\x90\xfa\xcc\xe2\x29\xdd\xc4\x16\xfb\xdc\x3e\x72\x29\x0e\xdb\x10\x11\xe3\x43\xc4\x18\xed\xb3\x9b\x47\xc2\x23\x38\x6b\x96\x39\xe7\x9f\x1d\x5b\x9d\x3d\x5a\xbc\x52\x49\x8f\xd9\xe1\xb9\x53\xf2\x3e\xda\x1e\x09\x0a\x20\x16\xd6\xce\xa5\x53\x35\x63\x06\x5b\xca\x6d\x18\xd9\x6a\xb3\x2c\x3d\xf4\xdd\x38\x0a\x05\xa9\x64\xab\xc8\x66\xde\xce\x13\x51\x60\xc6\xaf\x70\xf0\xfd\x92\x71\xa6\x28\x1d\x72\x12\x75\xa5\x38\x05\x96\x8a\x98\x39\x37\x4a\x19\xab\x9a\xcc\x0f\x30\x1c\x11\xeb\x83\xc5\xdc\x0e\x85\xfd\xb2\x47\x84\x23\x7b\x10\x71\xe5\x94\x16\x9f\x17\x72\x8b\x4d\x86\xa0\x9c\x91\xcd\x04\x01\x05\xd6\x36\x20\xde\x52\x85\xca\xe0\x52\x0a\x95\x37\xf1\x3c\x0d\x6a\xe1\x4e\x98\x84\x65\x32\x2d\xce\x7f\xfe\xf7\xd7\xb3\x45\x35\x7b\x59\xbf\x79\xf9\x7a\xf6\xfa\xcd\xeb\x97\xff\xf8\xc7\xeb\xe3\xaa\x3a\x7e\xb3\x78\xf3\x0f\xf5\xfa\xb8\x9a\xff\x6d\xae\xde\x56\x6f\x5e\x16\x74\xdd\x01\x51\x17\x80\xec\x7b\x4a\x36\xc6\x87\xcc\x37\x69\x67\xa8\xcf\x00\xf2\x97\x34\x03\x64\xf4\x8f\xa6\xb7\xb7\x87\x5f\x7e\x21\x93\xd4\x24\x20\x19\xee\x67\x74\x84\xe2\x8e\xa6\x7d\x4c\x59\x2d\xaa\x96\xa1\xdd\x20\xa3\xe5\xf4\xfa\x17\x4e\xcd\xb8\x41\x8e\x29\x45\x12\x70\x27\x87\x79\xe5\xbf\x24\x01\xf7\xc5\xe5\xc5\xe7\x8b\xbb\xbf\xd4\x23\x60\xbf\xf4\x64\x5b\xf9\x58\xa8\xa4\xec\x81\xa4\x4c\x76\x60\xf0\x29\x7b\x21\xd3\x42\xe8\xc7\xc0\x20\xe9\xce\x52\x6a\xcf\x66\xb3\x38\xc2\x58\xac\x32\xd6\x78\x1b\x42\xcc\x7e\x28\x82\x04\x9f\x8a\x5f\xc7\x3c\x11\x95\x20\x93\x8a\xb6\x0c\x6a\x8e\x61\xdf\xac\x5a\xf1\x02\x36\x35\x86\xeb\x92\x5c\xc1\x99\xea\xfb\xd2\x5c\xcb\x8c\x46\x7e\x0a\xe9\xa5\xde\x8b\x57\x2f\xc5\x81\xf4\x09\xf9\x86\xb3\xf6\xdc\xc6\x00\x2f\xaf\x95\xaf\x9c\xee\x82\x75\x7e\x70\x68\xb0\x27\xc0\x61\xac\xc8\xe3\x53\x9b\x08\xe5\x94\xac\x56\xc3\xa2\x66\xaa\xad\xcb\x95\xb0\xeb\x41\x99\xac\x27\xbc\x16\xb3\x2f\xe2\x3c\x5e\x6c\x6d\x1d\x2f\x8d\x87\x7e\x11\x01\x3f\x8f\xf1\x8b\x84\xd3\x3f\xc3\x7e\x08\x24\xf4\x9d\x8a\x4d\x3b\x52\x7c\x30\xd3\x33\xbb\x8b\xd8\xec\x62\x1a\xd3\x12\x48\x5f\xba\xeb\x47\x2b\x4a\xa8\x2e\x2c\x72\xb8\x57\x1b\x34\x8f\xaa\xca\xba\xba\x28\xa1\x52\x0f\x9a\x8b\xd3\x6c\xa3\xab\x4d\xb6\xcd\x11\xe4\xd6\xca\x47\x7a\xd2\x84\xbe\x3e\x4c\xb1\x2d\xee\x51\x22\x61\x2d\xc5\x23\x76\x1f\x40\x37\x22\x78\x87\x39\x90\x9f\xa4\x31\x08\x93\x10\x36\x71\x22\x2f\xc6\xc3\xf2\x05\xe9\x02\x2d\x23\xe2\x6d\x88\xfe\x9e\x65\x4f\x04\x27\x50\x4c\x06\xb5\xf0\x16\x69\xc7\x54\x6f\x71\x7b\x7e\x37\x16\x97\x5f\xbe\xde\xfe\x9a\x20\x0b\xe0\xa1\xc1\xaf\xc4\x00\x9c\xf7\xa6\xec\x4a\x02\x29\x65\xd8\x40\x12\x30\x38\xdc\xa7\xf3\xbb\x5d\x53\xb8\x30\x9c\xd9\x04\xc1\x28\x11\x45\x0b\xb9\x65\x05\xfa\xc6\x97\x37\x5f\x45\x05\x3b\x46\xa0\x26\xf0\x65\x09\x74\x83\x9a\x62\xb0\xb9\xe8\xb7\x98\xac\x7e\x0a\x8c\x5c\x49\x35\x31\xd8\xa0\x04\x39\xb8\x28\x0b\x0c\x38\xc0\x15\x02\xf1\x0a\x1c\xe5\x62\x60\x86\x2c\xf1\x86\x03\x71\x62\xe6\x4a\x7f\x4f\xe0\x12\xae\xec\xa3\xd0\x42\x2c\x31\xc5\xfa\x41\xf4\x67\x56\xaa\x0c\xa3\xf9\x7e\x1e\x9c\xe4\x18\x75\xf2\x34\xd0\xb3\xe7\x87\x54\xc0\xe1\x39\xa6\x96\xf0\x8a\x11\xd3\x73\xc4\xd1\xa2\x54\xa6\x40\x26\x1b\x05\xaf\xc0\x2d\xb7\x1d\x43\xae\x89\xf9\x1c\x33\x34\x78\x67\xb0\xb3\xda\x60\xf8\xb1\x98\x3a\xea\x50\x8c\x8b\xe4\x8c\x81\xf6\x14\x9c\x43\x0a\x9c\x9d\x5f\x22\x8a\x13\x07\xe4\xc1\xe2\x23\x53\x7e\x5b\x35\x2a\x36\xdf\x58\x10\xaf\xc1\xe5\x43\x2c\x8c\xe8\x4d\xd0\x4d\x8a\x3d\xc7\xca\xba\x42\x5f\x82\x1e\x4c\x95\xdc\x17\x06\x0c\x27\x17\xa6\xd3\xe9\xb0\x2c\x64\x6b\xd7\x58\xd4\xf7\xcb\x25\xf5\x0a\xc9\x66\x97\x0a\x14\xa9\x40\xdb\x38\x33\x4f\xde\xd2\x48\xe6\x14\x47\xc3\xe0\xd6\xc2\x29\x25\x6e\x4e\x3f\xa7\x08\x34\x15\x55\x62\xf0\x8b\x83\x9b\x5b\xbb\x7e\x30\x8f\xe1\xf6\x41\x1c\x73\xe7\x7c\x0f\x18\xf4\x30\x49\x44\x9e\xcd\x3b\x94\x6a\x88\x7b\xfc\x7c\xfa\x1f\x9f\xcf\x3f\x5f\xdf\xfc\x21\xbe\x5c\x5f\x5e\x7c\xfc\xe3\x04\x94\xd6\x40\x0c\x50\xa8\x67\xcd\x85\xd0\x2c\x70\xa8\xe9\x51\x1c\x90\x20\x8f\x2c\x08\x8b\x9e\x1a\x1c\x25\x6a\xc1\xfe\x5c\x10\x64\x14\x6b\xe3\x1c\x03\x41\x1e\x6c\x23\x83\x6e\xd4\xa4\x71\xbd\x98\xbc\x8f\x83\x23\x42\x4f\xb1\xc8\x01\xa9\xff\xd8\x81\xcb\x02\x54\xe6\xe8\x3f\x1d\x63\xd9\x2c\xad\xd3\x61\x05\x4e\xb6\x6c\x1a\xe0\x83\xad\x91\xc0\x65\x81\x91\x76\x44\xe3\xf6\xed\x69\x26\x4e\x9a\xda\xb6\xe5\x10\x82\x3f\x7a\x7a\x46\xc5\xa3\x7f\x78\xeb\x38\xce\xa5\x7c\x58\x08\xcd\x73\xcb\x26\x55\x28\x9d\xf2\x21\x3e\x8d\x30\x01\xad\x36\xd6\x89\xbb\xbb\x4b\x2a\x87\x4e\x4a\x64\xf2\x5e\xd4\xa8\xde\xf8\x6a\xc2\x80\x8c\x23\x62\x08\xcf\x62\xd2\xa0\xd6\xec\xd4\x3b\x16\x88\x3a\x5e\xe5\x26\x4a\x1e\x2a\x63\x40\xde\xd2\xca\x0f\x94\xc4\x73\x03\x27\x18\x4b\x7e\xc0\x38\x65\x2f\x38\xc6\x63\xa8\xba\x17\xed\x1f\x3c\xf2\xc0\xf7\x71\x3d\xb1\x7e\x10\x7e\x4e\x43\x3c\xca\x2a\x56\x6a\xb2\x38\xf0\x19\x25\x07\x43\x9e\x20\x8f\x78\x15\xcc\x23\xfc\x57\x3d\x62\x86\xc7\xd4\x69\x24\x6d\x2a\x27\x6a\x55\x39\xe1\xba\xde\xaf\x44\x83\xff\xc5\xdf\x1f\xe9\x8f\x47\xd1\x68\xe3\x95\x0b\xa2\x81\xb1\x5c\x67\x3b\xba\xc8\xcb\x3a\x8f\xe3\xd1\xd8\xe1\x7f\x18\x8d\xd9\x1b\x4c\xd0\xe2\x3f\xfc\x51\xad\x17\x0b\xfa\x2f\x7d\xf0\x5d\xd6\xb5\xf8\x0e\x93\xc0\xf0\x1b\xfd\x7c\x2f\xee\xf8\x5e\x0c\xb8\x82\xe7\xaf\x68\x31\xab\x16\xff\xa0\x3b\x05\xff\x03\xeb\x28\xc6\x59\xaa\x80\xa0\xdc\xf8\x1f\xf3\x28\xd4\xa3\xaa\x84\xb7\x2e\x14\xc9\xfc\x98\xa6\x3f\x19\xca\x04\xb6\x32\x06\x47\x12\xe4\x03\x1e\x14\xf0\xb3\xb4\xd1\xad\x6c\x80\xf1\xf2\xc1\xc9\x58\xcb\xce\xa9\x0a\x73\xa5\xf9\x2b\xcc\xac\x74\x9d\xb3\x8f\xba\x95\xa4\x88\x8a\x6f\x0f\x06\xe1\x64\x4c\x9e\xe0\x3c\x0e\x07\x45\x49\x51\x82\x78\xb1\x56\xb9\x7b\x18\x75\x34\x41\xdd\x88\x2e\xa6\xaa\xee\xb7\x1c\xc5\x45\x51\x94\x56\x5a\x9a\x70\x29\x87\x7e\x49\x6b\x21\x6f\x0c\x82\xba\x64\xcd\x48\x0e\x83\x33\x06\xa5\xc2\xce\x34\xb9\x2a\xbb\x70\x6b\x69\x3e\x38\x1b\xf4\xbb\xa3\xa2\xca\x19\x89\x1f\x16\xfa\xe4\x0d\xa0\x81\xbc\x78\xf5\x33\xaf\x47\x9c\x7e\xf9\x72\x7e\x75\x26\xae\xaf\x2e\xff\x10\x9f\xaf\xcf\xce\x7f\xe6\xfa\x3c\x59\xa2\x5a\x56\xaf\x34\x1b\xac\x8e\xf2\x49\x63\x02\x0f\x25\x0c\x1d\x05\x1a\x6c\xad\xc8\x6e\xc4\x08\x04\xc7\xfe\xb4\xa1\x9c\xa3\xec\x52\x22\x8b\x4b\x61\xc0\xbc\xc1\xb8\x52\x46\x86\xe1\x63\xa3\x5f\x83\x29\x13\x29\x3a\xd0\x99\xa0\xe4\xe4\x92\x70\xce\x4e\x79\xe4\x4f\x4c\x23\xa0\xb3\x01\xee\x08\x02\xa6\x17\x31\x08\x89\x01\xc9\x83\xb2\x94\x83\xcd\xa5\xad\xda\x61\xae\x1b\x3e\xfc\x41\x49\x15\xe5\x4b\x64\x83\xae\x0b\x02\x59\x8b\xa2\x4e\x5a\x34\x32\x44\xe7\xec\x83\xa6\x86\x64\x6d\x5f\xad\x62\xce\xa1\xee\x9d\x9c\x73\xbf\x80\x01\x03\x66\x3e\x28\x4b\xfc\xc5\x02\x93\x8b\x74\xd4\x46\xfb\x64\xe8\x53\xde\x8e\x13\x32\x45\x9f\xba\xc3\x6c\xe8\x63\x41\x42\xee\xec\xc3\x41\xa1\x4c\x10\x6d\x30\xe5\x52\x3b\x49\xe5\x2a\xea\x01\x9c\x3a\x34\x96\x65\xf4\x37\x4b\x4a\xa3\xe9\x9b\xaa\xa5\x39\x64\xb9\x18\xc4\x4d\xd6\x18\x34\x7a\x66\xf3\x74\xf0\xaa\x59\x30\xd2\x93\x37\x1c\xcf\x0f\x09\x7b\xb3\x8c\x96\x0c\x39\x1a\x54\x7b\xc0\x61\xbc\xed\x6c\xcf\xf5\x2f\x28\x5f\x6e\xce\x3e\x0c\x48\xcf\x88\xb4\xd8\xe4\x61\xdb\x19\x4f\xe0\xc7\x1c\x2b\x48\x75\x2e\x30\x64\x86\x8a\x01\x1f\xa3\x2b\xd3\x77\xa5\x28\x68\xac\xac\xe3\xd5\xc3\xbc\xcd\x82\x92\xb7\x69\xe9\x3b\x5b\x2d\x96\xbd\x74\xd2\x04\x15\xf1\x5f\x1c\x25\x21\xe9\xb2\x0a\xa1\x3b\x39\xe2\x6e\x40\xda\x1e\x05\xdb\xe9\xca\x1f\x95\x6b\x5b\xc4\xde\x84\x45\x17\x95\xe9\x68\x44\xba\xaa\xc4\x49\xdf\x15\x41\x16\x54\xc4\xc4\xbe\x78\x09\xfa\xe0\x07\xcc\x5d\x27\x62\x2f\xdf\x3d\x95\x76\xb1\x77\x18\xc7\x4b\x85\x89\xdb\x57\x24\x8c\x11\xf0\xe4\xc1\x21\x62\x85\xb1\x74\x87\xc8\x70\x9d\xf6\xf2\x96\xf6\x12\x2b\x18\x02\xb9\x58\xc4\x32\xc8\xd2\x2c\x26\xb0\xff\x12\xc3\x31\x17\x88\x36\xc3\x24\x6a\x5c\x29\x95\x75\x98\x5d\x47\x66\x2a\x6e\xc1\x12\xbe\xbe\x8d\xf6\x04\x8e\xbf\x68\x7a\xbf\x02\x8e\x2e\x9e\x30\x26\x9b\x99\xc2\xf3\xf1\x7a\x3c\x13\xec\x6e\xd7\x58\x6e\x40\x20\xb1\xfd\x94\xdd\xf2\x7d\x47\x80\x7b\x12\xfb\x19\x8f\x0c\x87\x9b\xb5\xa0\xb1\x27\x6c\x3c\x21\x31\xd8\x68\x6a\x38\x50\x74\x7d\x4b\xf3\xc9\x58\x16\x34\x64\x74\x20\xe4\xc1\x54\xfc\x82\x99\xad\x29\x2a\x38\x44\x39\xf3\x39\x27\x68\x0e\xa5\x70\x88\x62\x6c\x7d\x96\xfb\xd8\xd8\xe5\x54\xdc\x36\x76\x3d\x16\xb7\x72\x41\x19\x43\xba\xc7\xab\x2a\x8e\x84\x57\xa2\x76\x02\xde\x1f\x24\x85\xa8\x7c\xdb\xb6\xda\x0f\x30\x7b\x09\x8d\xb7\x17\xc7\xda\x1b\x13\x16\x17\x4b\xb4\xa3\xaf\x8c\x28\x04\x8c\xdd\x57\x69\x98\x88\x59\x22\xa4\x14\xa3\x0b\xa8\xe8\x47\x2e\x14\x88\x3a\x84\xcb\x11\x66\x07\x34\xe2\xb0\xa0\x92\x3d\x28\x38\xc0\x4e\x35\xf2\x31\xa2\x4f\x46\xfb\x11\x8a\x13\x81\x8c\x91\xc0\x3b\x62\x23\x93\x7b\xc0\x2b\x48\x77\x02\x12\x22\xe5\xc7\x14\xe2\xe7\xb6\x91\x45\x99\x32\xb9\x49\xc5\x44\x9a\xd4\x23\x02\x06\xd5\xb5\x92\x04\xb3\x45\x8e\xc2\xa5\x35\xd6\xe7\xa4\xf2\x40\x70\x3f\xa9\x10\x5e\xf8\xd4\xc1\x01\x7b\x1c\x8d\x09\x9f\x63\x93\x14\x0f\x4e\xba\x0d\xf5\xde\xda\x23\xae\xd8\x8b\x37\xd2\xee\x35\x76\xcd\xe0\x93\xb9\x0e\x48\x59\x17\x13\x9e\x71\xc7\x68\x3f\x3f\xe3\xf9\x51\x41\xea\xc6\x8b\xae\x14\x35\x43\x33\x43\xba\xa0\x2b\x0c\x3a\x47\x19\x24\x11\x6d\xf9\x7d\x5a\xd9\xf6\xa8\xb3\x3e\x70\x35\x6f\xb1\xa0\x49\xad\xda\x8d\x0f\xd4\xd5\x6c\x15\xda\x26\xc6\x98\x7a\xe3\x7b\xa7\x78\xfe\x89\x83\xa6\x20\x33\x58\xac\x10\x87\xe3\xca\x46\xe5\x47\xf1\xe2\xad\x2b\x0b\x6c\x6f\x94\xd1\xa5\x32\x2c\xe2\x92\xdc\x21\xc0\xba\x34\xd4\x98\x21\xda\xb9\x41\x04\x6c\xdd\xb0\x45\xc4\x81\xdc\xe9\x88\x61\x1d\x3e\x06\xf1\x18\xf9\x2b\x6a\x85\x0a\x7b\x46\xda\x89\xf9\x86\xb3\xc9\xd4\xdd\xea\xe2\xe8\x7a\xd0\xfe\x85\xc4\x8f\x36\xc4\x2f\x84\x47\x1b\x58\x75\x3e\x89\x1b\xcc\x47\x34\x16\x76\xc7\x12\xd2\x21\x32\x45\x29\x67\xb7\xfa\x21\xa6\x06\x75\x0b\xfd\x98\xd0\x24\xa0\xfa\x29\x3c\x0b\x96\xa7\xf4\xd4\x0d\xa2\x98\x2e\xd1\x0f\x73\x27\x59\xaa\x81\x94\x93\x1c\x57\xc3\x79\x60\x0c\xc1\x89\xc2\xda\x23\x59\x74\xf0\x92\xa7\x12\x43\x20\xc9\x1a\x6f\x75\xd0\x4b\x6a\xcd\x44\x3a\x1f\x14\x2c\x35\x71\x28\xb3\x0f\xb1\xd8\x72\x1b\x7a\x93\x22\x82\x30\x85\xce\x91\x2d\x12\x17\x8f\xa1\xa8\xb9\xa2\x2e\x58\x58\x9b\x12\xfb\xb8\x49\x6d\x72\xbf\x0f\xac\x4a\x00\x93\xe6\xc3\xa7\xdb\xd3\x7f\x9d\xc3\x56\x7e\xf8\xc4\x7d\x6a\x59\xbd\x17\xa5\x7d\x45\x34\xb0\xc8\x87\xf1\x20\x5c\x0f\x4e\x00\x6f\xe0\x32\x19\xf1\xd4\xaa\xd4\xe9\x76\x91\x72\x76\x31\xf6\x06\x4a\x53\xfa\xa8\x37\x23\x1b\x1b\xb5\x37\x05\x72\x75\x4e\x56\xd4\x27\x2c\x28\xd7\x22\x40\x60\xf8\x7c\x8c\x16\x01\x83\x95\x6d\x1a\xc1\x8e\x23\xc1\xf9\x2a\xe7\xaf\xed\x42\x70\x5f\xcd\x40\x7d\x09\x7c\x10\xbe\x52\x46\x3a\x6d\xc5\x41\x51\x8a\x1d\x45\x12\x71\x60\xec\x20\x7c\x38\x40\x3d\x62\xe4\x8a\x91\x85\x39\x9a\xc7\xa1\xb8\x02\x06\x38\x15\xd7\x29\x11\xd8\x28\xac\x37\x04\x47\x6b\x20\xa5\xd9\x22\xf2\xa8\x97\xc8\x4d\x7a\x1e\xc0\x5b\xd8\xc2\xa3\x91\xb1\x93\x82\x6c\x13\x6b\x26\x74\xee\x62\x2f\xd7\xd3\x54\x5a\x1d\x3f\x7f\xc6\xc4\x99\xa6\x93\x05\xa6\x3a\x93\x71\x58\x43\x1d\x47\x08\x65\xff\x35\xdd\x82\x47\xa2\x43\xb3\x41\x46\x23\xa3\x76\xc0\x43\xeb\x52\x16\xa5\x02\xf3\xa5\xb3\x6b\x1f\x0b\x83\x8a\x9e\xad\xca\x81\x0f\x28\x97\x6a\x08\xf9\x5f\xd9\x35\xaa\x23\xeb\xee\xfd\x49\x4a\x96\xb4\xaa\x9d\xc7\x02\x82\x32\x84\x9b\x92\x60\x64\x19\xd0\xa6\x72\x3f\x9f\xb8\x8a\x03\xbd\x00\x49\x10\xff\x5c\x49\xcf\x76\x36\x38\x35\x3a\xe6\x53\x9c\x42\x9b\x76\x5c\x3e\x82\xf9\x16\x2d\xea\x90\x6c\x5e\x06\x74\x1d\x16\xf3\xc6\x78\x68\x6c\x55\x8e\x89\x71\x47\x91\xe4\x32\x25\x44\xa0\x4e\x36\xa9\xcb\x0f\x89\xab\x13\x8a\x71\x27\x77\x92\x49\x35\xe6\xa9\x26\x4c\x04\xc7\x72\x55\x4d\x9d\xf1\x46\xfb\xb9\xc9\x6c\x6e\x8d\x2e\x64\x0a\x36\xf8\x88\x96\x1d\x10\x8f\xa0\x3b\xa9\xa5\x35\x9d\x3c\x0a\x41\xe6\x12\x59\x6a\x4b\x9b\x84\xfd\x70\x84\xa2\xaf\x4e\x31\x5d\x2a\xec\x92\x5e\x0d\xc2\x99\x04\xce\x0d\xb9\xa6\x9b\x33\xfa\x08\xa1\xe6\xe2\xd5\x34\xf1\x62\xb0\xd8\xeb\xa4\x8c\x73\xe4\x9e\x40\xaa\x68\x2e\x70\x7a\xfd\x0b\xe6\x61\x89\x4c\x09\x66\x32\x82\x2b\x26\xd2\x2e\xe2\xd1\x99\x14\xa3\x1f\xcf\x66\xbb\xdf\x23\xa0\x04\x48\xf6\xf6\x35\x63\x2e\x4d\x5e\x33\x27\xca\x17\xa8\x04\x89\x84\xb1\xd1\xee\xa0\x59\x0d\x97\x09\x24\xa7\x2f\xd6\xe9\xf7\x5d\x2e\xc3\x1f\x1c\x1d\x34\x9f\x96\x2a\x78\xf4\xa9\x80\x60\xb2\xba\x27\x07\x9e\x22\x1b\x45\xcf\x9b\x4d\xac\x0e\x4c\x23\xb0\xc5\x47\x99\x84\x74\xd0\xd9\x59\x1c\xed\x8b\xca\x49\xbf\x52\x7e\x2c\x14\x23\xe7\xc0\xfb\x40\xfc\xaf\x11\xea\x31\xbc\xa6\x46\x34\xd1\xdb\x14\x98\xb7\xe3\x7a\x34\x4b\x5e\x29\xbb\x11\xff\xc4\x5d\x50\xb1\x46\x43\x1c\xc4\xe4\x6c\x04\xaf\xbf\x08\x83\xc9\xf1\x5c\xd0\xd3\xcd\xf3\x40\xc7\x79\x4e\x05\xbc\xcf\x39\xbd\xc4\x26\x54\xed\x94\xbc\xdd\xc3\xd2\x27\x01\x93\x54\x69\xd4\x4b\xea\x11\xb1\x08\x1c\x56\xc6\x18\x2a\xd3\x46\xfb\xec\x60\x23\x0a\x4b\xd6\xa0\x8e\xda\xbe\x4a\x9e\x91\x2c\x34\x72\xd9\x03\x40\x18\xbb\xa6\x86\x61\x94\xc4\xd3\x5b\xe2\x47\x7b\xe2\x03\x4a\xb8\x3d\xc3\x09\xcf\x03\x6b\x83\xb3\xe8\x24\x62\xc7\x73\x0a\xe8\x27\x15\x04\xfc\x08\x53\x9d\xe4\x21\xb3\x69\xb7\x81\x8d\x94\xc5\xd3\xca\x19\x31\xf7\x50\x48\x6e\x27\x5d\x4e\x95\x53\x42\xb5\x9a\x00\x5b\x12\x45\x76\xb0\xec\x43\xc7\xf4\x96\x8b\xa2\x16\xcd\x0e\x6c\xc0\x9a\xe1\x2e\x9c\x47\x4b\x09\x43\x9e\x95\xb1\x2c\x46\xe9\x49\xbc\xbd\x83\x3d\xe1\x86\x5f\xd4\x62\x82\x4a\x8a\x60\x3e\xd3\x6c\xd0\x3e\x3b\x2a\x4e\x8a\x61\x34\x9e\x08\x0e\x56\xde\x60\x3f\x06\xbd\x37\xc0\x44\x47\xfb\x1e\xce\xf6\x9e\xe8\x03\x19\x28\x8c\xc7\xc2\x14\x0c\x3e\x7c\x50\xdc\xb6\xdd\xf0\x67\x7b\xc7\x13\x64\xba\x38\xfe\xdc\x5f\xaa\xb0\xc1\xb0\x97\xee\x56\xd1\x5c\x86\xc9\xec\xb2\xea\x74\x90\x82\x25\xdc\x78\xd7\x35\x5a\xf9\xe8\xaa\x3d\x95\x14\x97\x75\x11\x13\x48\xf6\x44\x9a\x6a\xc4\xd9\x70\x88\x31\xbe\x8b\x62\xb0\x82\xe9\xe8\x09\x3e\xa3\xa0\xc9\x4f\xd1\x22\x5f\x4f\xc5\xed\xc7\x9b\x8b\x2f\x7f\xa9\x4d\x25\x75\x27\xa2\x48\x7a\x9f\x8a\xad\xe8\x75\x06\x97\xbd\x14\x04\x81\xc0\x38\x68\x51\xb9\x32\x68\x6b\x17\xfb\x68\x6d\x0d\xf1\x34\x72\x00\x99\x1a\x51\x34\x69\xe8\x1c\x42\xd3\xa6\x18\x24\x99\x10\xe9\x01\x11\xea\x81\xc3\xa7\xe4\x7a\x4c\xe3\x33\x90\x1c\xf7\xe0\xcf\x5e\x39\xad\xb6\x78\xbc\xa8\x63\x95\xe4\xb8\xc4\x90\x1d\xcf\x44\x3d\x56\x4a\xd5\xfe\x47\x8b\x42\x16\x20\x99\x4b\x34\x16\xbf\x5d\x5c\x5e\x52\x33\x8d\x5f\xbf\xde\x9d\x5d\xff\x7e\x25\xae\xae\xd1\xa4\x2f\xf3\x36\x19\x53\xc5\x42\x07\xfb\x86\xa4\x52\x87\xd4\x9e\x19\x71\xc3\x71\x3a\x5c\x41\x5d\x23\xb3\x6c\x54\x88\x0e\x05\xa9\xd1\x0c\x50\x44\x94\x3c\xee\x0b\xe9\x75\x0a\xf4\x83\x1a\x91\x1b\xea\x6c\xd0\x07\x51\xdb\x75\xd9\x62\x3d\x85\x63\x25\xe2\xe8\x06\x43\x8a\x35\x5a\xc9\xb2\x01\x4e\xde\x50\x94\x3b\x95\x92\xf3\xdc\xa2\x6e\xc0\xc3\x5f\x5b\xe5\x41\xbb\xc4\x56\x47\x6b\xc9\xe9\x61\xc2\x50\x85\xde\x49\x6a\x84\x46\x15\xc5\x5c\x5a\x92\x47\x9b\x46\xa4\x6a\x2a\x96\xc4\xe8\xad\x51\x4b\x8a\x58\xe7\x86\xd0\xbd\xc9\xed\x1f\xe2\xbe\x44\x4d\xc8\x5d\x8f\xfd\x74\xd4\xf4\x12\x6b\xcd\x26\x94\xa8\x7e\x43\xe0\x98\x9f\xfe\x88\xdb\xcb\xeb\xdf\xc5\xe5\xf5\xa7\xbf\x0a\x35\xcd\x95\xf0\xb7\x8d\x5d\x8b\xcb\x58\x17\xe4\x53\x3c\x11\xb8\x3d\xf2\x22\x6e\x27\xb1\x18\x76\x2c\x28\xfb\xa8\x0d\xb9\x8c\xb6\x74\x8b\xf3\x12\x14\x3a\xbe\x39\x03\xe8\x07\x7e\x7c\x99\xe1\xe4\xb6\xd2\xb2\xb9\xd7\x65\x70\x9b\x70\x42\xe3\x08\x35\x62\xab\x15\xce\x4a\x09\x2a\x18\x33\x06\x90\x42\x8e\xb1\x30\x24\xc3\x30\x52\x70\x94\x66\x16\xbb\x85\x13\xcf\x1c\x94\x6d\x71\x80\xfb\xc8\xac\x5a\x96\xf8\xb9\x72\xd3\xa8\x97\xdd\x4a\x45\x7f\x1e\x54\x2d\x78\xf3\x1c\x8d\x83\xa3\x81\x2d\xe9\xb9\x62\x98\x7c\xdc\xd8\xce\x27\xc9\x73\x25\xf1\xbd\x27\x6c\x7b\xec\x76\xa9\x21\xd0\x88\x5d\xe3\x46\x10\x39\xd6\xb6\x68\xc0\x7c\xc2\xa5\xee\x4d\xe3\x93\x31\xb8\x2e\x1c\xc3\xe1\x1e\x8c\x49\x0c\x56\xce\x66\xd0\xbc\xe5\x2d\xcd\x66\xf0\x22\xb5\x12\x8a\xcb\xe6\xf7\x2b\x10\x66\x70\x9c\xca\x23\x69\x4d\x69\x32\xa9\xac\x42\x99\x65\x58\xf1\x09\xc1\x5a\x32\x9a\xff\x34\x8a\x2e\x02\x90\xd1\xd0\x68\x56\x20\x14\x11\x47\x6c\x6a\xc5\x29\x14\x72\xd3\x6c\x89\xc3\x1f\xed\x53\x59\x35\xbb\xe3\x70\x53\x6e\x64\xb2\x53\x8f\x1b\x65\xb8\x7a\xc4\x56\x91\xb4\xc2\xe1\xe2\xbd\x4d\xaf\x60\x82\x0b\xff\xec\xf5\x83\x6c\xa8\xd1\x44\xb0\x45\x22\xa7\x0c\x06\x15\xc7\x9a\x01\x6e\x03\x0c\x7a\x5c\xec\x38\xd5\x98\xc9\x5c\x51\x84\xee\x06\x36\x13\x8f\x05\x28\xd4\xb1\xdb\x2e\x38\x62\xcc\xcb\x99\x8e\x60\x98\xc6\x2e\x27\x58\xa3\x85\xb0\x95\x09\x3a\x72\x09\x28\x57\xbe\x34\x21\x81\x0f\x09\xf1\x88\xe4\x9f\x8a\xff\xcd\x95\x10\xd4\x54\x76\x00\xaa\xad\xac\xf1\x7d\xab\x0a\xeb\xff\x8f\x14\x0f\xae\x1a\xa9\xdb\x08\x41\x8a\x85\x46\xbb\x6c\x08\xa2\x06\x24\xcd\xcd\xf9\xed\xf9\x5d\x9e\x2f\xc2\xe4\x95\x11\xc7\x2f\xff\xfe\x57\x34\xfd\xe9\xdd\xf9\xd5\xc7\x3f\xc4\xe7\xeb\xab\x8b\xbb\xeb\x9b\x9f\x88\xad\xa1\xc4\x8a\x01\x94\xa2\x0f\xac\xef\xe7\xd1\xc0\xe7\x4c\x6d\xd1\x90\xbb\x14\x32\xf9\x85\x43\x03\xe7\xaf\xb2\x0d\x26\xb3\xd1\xec\xc1\x26\x79\x24\x37\x92\x05\xef\x6d\x8f\x7b\x87\x9e\x7c\x9c\x00\x5a\x1a\xc3\x7e\x87\x74\x9a\xff\xa5\xa9\xf2\x30\xae\x32\x9d\x26\x2a\x58\x4f\x89\x25\x94\xb9\x09\xb2\xcc\x4e\x3e\xea\x25\x02\xf4\x4a\x6a\x2f\xa3\x4d\x10\x4b\x27\xbb\x15\x95\xe0\xdb\x79\x90\x1a\x36\x0c\x73\x27\x39\xb1\xc0\x14\x88\x99\x0b\x5f\x36\xcc\xa6\xa8\x1b\x30\x0e\x07\x29\xe9\x50\x48\x4e\x5a\x60\x71\x0e\x9a\xd2\x3b\x85\xd9\x19\x6e\x39\xa8\xff\x2d\xca\x6b\x68\xb1\x99\x2e\x13\xde\x98\x09\xc8\x47\xbf\xb2\x4d\xfd\x6c\x9a\x9d\xe4\x82\x0e\x45\x65\xb8\x8f\x9d\x1c\xe8\x05\x19\x61\xa5\xb6\x37\x1c\xa5\x4d\xef\x0c\xf8\x8b\x8b\xc5\x4e\xcd\xc7\x13\xec\x81\xed\x37\xb9\xef\x29\xc5\x69\x28\x68\xd0\x5a\x1f\x9a\x4d\x81\xd5\x02\x2b\x64\xc1\x75\x10\xe4\x74\x16\x01\x3b\x7a\x5d\x0e\x09\x41\x66\x18\x7a\xdb\x51\x90\x18\x0a\xda\xee\xfd\xaa\xdb\x4e\x56\x61\x5c\x46\x3c\x29\xbd\xd0\x22\xf8\x87\xb3\xa8\xad\x92\x1e\xb3\xe2\x98\xa6\x11\x73\xbd\x44\x6f\x8b\xda\xe3\x18\x4c\x45\x17\x2b\x41\xef\x94\x9a\x83\x0d\x33\xb0\x91\xab\xb3\xbb\xc2\x4c\x37\xda\x4f\x2f\x13\xbb\x3d\xbf\xfb\xc1\x1e\xbd\x2b\xf7\xf7\xfd\x1e\x10\x22\xbe\x2a\xe3\xf9\x9b\x7e\x66\x9d\x88\x73\x0c\x31\x1b\x1b\xf4\x22\x56\xd3\xfe\xfc\xac\x67\x4f\x1c\x6f\xdc\x88\x2f\xfd\xfc\xe8\xb6\x9f\x67\xfc\x37\xf6\x04\x45\x3f\x32\x7a\xe2\xf4\x5e\xb0\x04\xd4\xf2\x9d\xac\x72\x47\xdf\x58\xe6\x83\x2f\xcf\xaa\x7a\x2e\x44\x91\xe1\xb9\x8c\x70\x39\x5f\x9f\x2a\xa1\xca\x6a\xc5\x7b\xb5\xc1\x47\xc4\x49\x0c\x56\x58\x36\x43\xa1\xf4\x08\x4d\x3c\xa7\x34\x80\x5b\xce\xce\x2f\xf3\x11\x15\xd6\xe0\xbc\xf7\x16\xd6\xee\x51\x13\xb9\xe4\xfb\x9d\x45\x9c\xe4\x6c\x0c\x46\x00\x70\x44\x7c\xfd\x45\xf4\xbc\x72\x19\x29\x1c\x47\x26\x17\x25\x50\xbf\x7c\xfd\x70\x79\x71\xfb\xab\xf8\xf6\x2d\xce\xf9\x7f\xcd\xbe\x7d\x3b\x59\x58\x2b\x6a\x7c\xc3\xd3\xe0\x02\x5c\x0e\x5e\x50\x63\xd5\xa1\x7d\xa6\x78\x84\xd1\x3f\xc9\x9d\xf7\x3b\xaf\x16\xe3\xad\x23\x84\xa1\xe4\x73\x8d\x90\x70\x89\x6f\x26\x02\xd6\x00\xc5\x07\x7f\xd2\x9b\x75\x94\xa1\x6c\x17\x36\x93\x8f\x08\x88\x6a\x25\x11\x2c\xcb\xed\x33\xc4\x6f\x08\xa8\xfa\x6d\x48\xfe\x71\x41\x00\x54\x52\xc5\x62\xdf\xd5\xf3\xf7\xdf\xbe\x89\xce\xa9\x85\x7e\x04\x8e\x10\xe7\x71\x08\xca\x7f\xfc\x68\x08\x22\xc7\xee\x10\x4b\x1c\xe2\x93\x32\xca\x61\x2b\x00\xf6\x97\x0e\x8c\x35\x93\xb0\xe9\x52\xcc\xb5\x3a\x24\xbb\xf6\xec\xfc\x72\x2c\xce\xff\xe3\xcb\xc5\xcd\xf9\x58\xdc\x9c\x5f\x9d\x7e\x3e\x1f\x8b\xe9\x14\xc7\xfa\x37\x1c\xeb\x96\xdf\x3f\x52\x74\x3d\x6c\xf0\x8b\x4b\xed\xc3\xe0\x63\x4f\xd7\xab\xe1\xa7\x2b\xfc\xf4\x57\xe9\x57\x83\x8f\xbf\xd3\xc5\xd6\x61\x01\xf7\xd6\x3d\x8f\xf8\xe5\x39\x82\x12\xeb\xb8\x8f\x07\xfc\x6f\x6a\x34\x55\xf6\xd1\x90\xc8\xa4\x04\x63\xf4\x87\x30\x86\xa2\x31\x18\x11\xfc\xec\x18\xdc\x17\x00\xee\xd6\x19\x40\x3c\x00\xe2\xe2\x70\xa7\x84\x2a\x6c\xb4\x24\xcc\xe1\xf2\xdf\x1a\xbf\xfa\xfe\x58\x74\x18\xc0\x50\xcc\xe9\x6f\xe7\x7b\xb1\x27\x3a\xe5\x75\x62\x8d\x02\x3d\x99\x21\x8a\xa0\x16\xf7\x88\x11\x27\x91\x21\x26\x74\xc5\x9e\x08\xd8\xe6\x1b\x04\x37\xbf\x85\x00\x5f\x2c\xc9\x11\x56\xee\xd1\x66\x5b\x6c\x4c\x08\x63\x45\x2b\xae\x78\x77\x57\x66\x4e\xf6\x65\x07\x2f\x37\x28\xf2\x4d\x5b\xf2\x44\xc4\x76\x0a\x28\x23\x78\xae\xb1\x30\x09\x0d\x73\x7e\xaf\x8b\xc6\xca\xb4\x9a\xe8\x18\xc1\x43\xfe\x47\x2d\x62\xb6\xdb\x94\x11\x8b\x1b\xd9\x52\xc2\x98\x0f\xd1\xd3\x24\x11\xe7\xcd\x72\x30\x17\xf1\xf2\x44\x14\x6f\x58\xf3\xc1\x29\xd9\xa6\x28\x1e\xb3\x0d\x82\xf5\xc0\x00\xab\x9c\x9e\x33\x8c\xb7\x5a\x49\x43\xaf\x8f\x2b\x7f\x10\xea\xb2\x25\x65\xe2\x28\x3f\x9f\xdb\x23\x7d\xfd\x61\xd8\x9b\x71\x40\xd9\x01\x59\x07\x45\x84\x68\x55\x79\xd6\xea\xfc\x0e\xd0\x61\xfb\xff\xe8\xda\xc4\xbf\x57\x92\x81\xe0\xf6\x41\xb9\x95\x92\xf5\x13\xef\xf7\xc1\xe1\xf0\x48\xc6\x2c\x43\xf9\x82\x08\xbb\x10\xbf\x01\xb7\x9c\x8f\xc1\x54\xe7\x65\xe4\x36\x35\x8d\x7e\xc0\x74\xcb\xe8\x99\x05\xe3\x4b\x7e\x7e\x62\x46\x9f\x9e\xfd\xeb\xf4\xea\xe3\xf9\x59\x2c\x0d\xfb\xc9\xf5\xa0\x5b\x7f\xa5\x58\x39\xbd\xd9\xa2\xb2\x35\xd2\x9e\xa2\xb6\x6c\xfa\xab\xc5\x42\x57\xd8\x83\x96\x80\x25\xc1\xf5\x15\x92\x24\x26\x06\x36\xdc\x3c\x1e\x3c\x3c\xec\x22\x9d\xeb\x7d\x94\x09\x4e\x47\x23\x29\xc4\x8e\x1a\x1e\xbb\x4b\xb9\x4d\x8e\x04\xb0\xe7\x29\xd3\xeb\x5e\x92\x49\x81\x07\xc9\xab\xfc\x41\x7a\xe3\x55\x81\x20\x7c\x0a\xca\x99\xac\x4a\x3f\x1d\xad\xa4\x5f\xa1\x47\xf2\x5d\x77\x70\x88\x26\x3c\x2f\xf1\xe6\xf8\xe5\xee\x97\x64\x7b\xbe\x7d\x4d\x2f\x13\x68\x75\x23\x1d\xc5\xe2\x56\x9c\xdf\xa0\x55\xc2\xb5\x1c\x12\x6b\xbc\x4d\xd4\xa3\x02\x49\x6e\x1d\xb0\x2e\x1a\x78\x91\x19\xeb\xa9\xcf\x3e\xa3\x17\xc8\x2c\x21\x73\x9d\x6f\x71\x0a\xbc\x54\x65\x42\xb2\x1d\xd0\x82\xef\x3d\x4b\x4d\xce\xc4\xc1\x73\xc9\x44\x1c\x2e\x1b\x5d\x40\x7f\x32\xc2\x95\x3c\xb7\xe4\x9d\x2f\x07\x4b\x56\x68\x44\xd1\x8b\x75\x79\x52\xb8\x38\x36\xa9\x12\xb6\xb1\x92\x5e\x9d\xa4\x0e\x2f\x6a\x5b\x42\xda\x05\xb7\x0e\x43\xf1\xc7\x92\x8f\xd3\x36\xb1\xa4\x1f\x7b\x5f\x60\x10\xc4\xc9\x5a\x3f\x8a\xe3\x59\x34\x72\x1c\x37\xf5\xb2\x0b\xf1\xf6\x35\xe1\x6e\xa8\x43\x6c\xbc\x69\xba\xe3\xe7\x0f\xbd\x0a\x4e\xb9\xe7\x36\x5c\x5c\x05\x66\xb6\x53\xbd\x5c\x5f\x55\xfa\x7f\xe9\xcd\xbd\x71\xfd\xb1\x34\x84\x80\x2c\x91\x1a\xd3\x91\x57\x44\x47\x6d\x02\xfc\x5a\xd2\xf8\x69\xe6\xa1\xf6\x2f\x1a\x1b\x39\xfb\xa4\x85\x0b\x36\xca\xa9\xb3\xcc\x50\x08\x58\x2a\xf1\xd7\xbb\xfc\x83\x26\x66\xdc\xa3\x6d\x96\x29\x83\x31\xe4\x02\xa8\x46\x51\xb1\x37\xfa\xac\x79\x22\x38\x8f\xfc\x7e\xa4\x5d\xb6\xfa\x1e\x57\xbc\xcd\x56\xe0\xe7\xef\x7c\x59\xb2\xd5\xaf\x9b\x4e\xb9\x4b\xbb\xbc\xb4\x4b\x98\xb6\xf3\x6a\x9b\xd5\x31\x7d\x40\x4f\xa2\x23\x11\x77\x2c\xbe\xdd\x17\xf7\xea\xf8\x2d\x5f\x08\x42\x58\xb9\x18\x4b\x32\x83\x07\x64\x81\xf0\xf4\xa3\x2a\x67\xc1\xe8\x1c\xd4\x86\xc6\x56\x7f\x95\x35\x0f\xca\x85\xa2\x26\x56\xd4\xca\xec\x8c\x31\xec\x12\x33\xf0\x93\x8f\xdf\x72\x20\x29\xd8\x10\xcb\xdc\x1a\xcc\xc6\x92\xb7\x29\x39\x22\x4e\xda\x3a\xe2\x45\x76\x1f\x41\x3e\x69\xae\x7e\x4c\x92\xb8\x70\xf2\x53\x85\x53\xf2\x98\xff\x4b\xbc\xc2\xc7\x17\xfc\xbc\x8a\x2f\xdf\x9a\x2b\xa3\x16\x3a\xf8\x0c\x41\x60\xb3\x39\xc9\xf8\xc4\x45\x31\x18\xed\xa3\x3c\xc5\xb0\xbb\xb5\x04\xaa\xfe\xf2\xcb\xe9\xd9\xd9\x18\x63\x8c\xba\x5a\xc1\x63\xaf\x0f\xae\x0e\x73\x9c\x96\xc9\x9e\x4e\x0a\x4e\x96\xa6\xc8\xe2\x1b\xdf\xf7\x5a\x53\xb6\xe3\xbf\xb8\x1a\x17\x99\x15\xdf\x26\xc3\x4d\x55\x60\x33\x2a\xe5\x0c\xe1\x96\x69\xae\xba\x50\x27\xa9\xbf\x39\xc6\x3b\xa3\xf0\xa1\x8e\x2b\x66\x53\xb2\x04\x67\x50\x2a\xe9\x6a\x6d\x24\xa6\xe9\x58\x14\xcc\xc4\x44\x1c\xbf\x81\xc7\xa3\xcc\x99\x8e\x56\x4d\x33\xa1\xf9\x23\x33\x13\xb7\xbd\xe2\x70\xdb\x29\x35\xd4\x77\x0a\xce\x33\xd0\x05\xb3\x8c\xc7\x65\x34\x84\x0d\xe4\xe3\xd9\x56\x8f\x34\xbb\xc0\xb5\x71\xb4\xa9\x3c\xd4\x2b\xd5\x74\xc5\x90\x09\x64\x45\xee\x13\x7c\x2c\xa8\xf6\xe6\x20\x70\xe9\x43\x2b\xbb\x8e\x8c\xab\x6e\x82\x2f\x39\x1c\xed\x93\xe5\x15\x2c\xbf\x26\xe7\x90\x68\x5e\xdc\xac\xc1\x86\x6b\x13\x73\xd1\xe0\x38\x7d\x04\xb7\xd7\xba\x0a\xd3\xea\x70\xe8\x94\x36\xf2\xfb\x26\xcf\xec\x84\xa6\x86\xef\x6a\x4f\x9e\x2a\x68\x23\xd7\x9b\x58\x07\x90\x1f\x18\xd1\x65\x18\xc0\xe5\x11\xc6\x79\x84\xbc\xde\x3d\x1f\x54\xe7\xf7\xe8\xad\x49\x31\x1e\x85\x16\xbe\xce\x12\x3a\x56\x62\xe3\x1b\x57\x29\xec\x1f\xef\xc7\xb7\x78\x3e\x60\x6f\x2a\xaa\x1a\x4c\xef\xb2\x1a\x1c\x1f\x86\xd7\x8c\xf6\x63\x20\x33\x4f\xf5\x49\x38\x6e\xa9\x08\xca\xed\x3d\x9e\xe1\x1e\xfa\x01\xb8\xb7\x3c\x6f\x58\x41\xcc\xef\xd5\xa0\x59\xe6\x2d\xad\xa9\x66\x4a\x92\x59\xb4\x70\x4a\x91\x6f\x80\x33\x44\xfe\x8f\x6e\xf5\x74\x08\xf0\x3c\xe1\x56\x11\x7b\x34\x74\x5e\xbd\xb1\x7b\x83\x52\x48\x2c\x8e\x8d\x41\x2a\xce\x66\x93\xb0\xc7\x30\x3b\x9f\x15\x3a\x5e\x58\x20\x12\x56\xac\xd9\xf1\x25\x1b\x45\x4b\x87\xd2\x87\xa7\x98\x70\xd7\x6c\xd8\xd9\xc0\x4e\x5b\x16\xff\x25\xc3\x66\x90\xa8\x7c\x39\xe4\x7c\xec\x4e\xc7\xaf\xe2\x7d\x6a\x09\xd8\xeb\x6e\x37\xd2\x86\xad\xd4\x71\x39\x83\x65\x70\x43\x1c\x4e\xd1\x61\x61\x26\xd3\x4f\x7a\xd9\x6d\x13\xf1\x89\x67\xc5\xf8\x31\xbf\x5a\x61\x08\x5c\x26\x4d\xf7\xe4\x8b\x3f\x8b\x5e\x62\x9c\xf9\xcb\x3d\xe9\x07\x5d\xc2\x9d\xa2\xf7\x23\x0d\xd3\xe6\xcc\xc3\xd8\x5f\x84\x33\xe6\xa9\x77\x1a\xbd\x34\x56\x1c\x48\x4e\xb6\x58\x13\x3f\xd2\xb1\x57\xc3\x56\xd4\x8b\x71\x30\x39\x82\x1f\xdf\x80\xea\xb9\x83\x49\x54\x98\x31\x8e\x41\x4d\x4c\xa8\x9d\x33\x9e\xa0\xb6\xa8\xb6\x21\x55\xcb\x8b\x06\x81\x9a\x02\xe6\xcd\x26\x25\x40\xb7\x61\xf9\x1c\xba\x29\x08\x11\x31\xfa\xae\x95\x58\x2e\xc9\xbf\xe5\x37\x16\x83\x2a\x07\xca\xc4\x40\x7f\x26\x20\x75\xc5\x82\x9b\xb8\x59\x5d\xfa\xa6\xeb\xe7\xbe\x9f\xc3\x37\x71\x9c\xe8\x5e\x72\x36\xaf\xf4\xb2\xf8\x62\xf6\x38\xc1\xdf\xea\x64\x08\xca\x99\x22\x2e\x6e\x82\x7c\x2c\x52\x2d\x38\xe8\x84\xb8\x60\x42\x5c\xc0\xf9\xd6\xfc\x02\x95\x58\x70\x12\x0d\x22\x5a\xe8\x0f\x6e\x7d\x87\xc4\x79\x2f\xde\xd1\x71\x84\xcf\xde\x8b\x77\xde\x2e\xc2\xf0\x8f\x18\x60\x65\x6b\xa2\x78\xb3\x74\xdb\xaa\x5a\xd3\x7b\x73\x07\x0d\x04\x53\xab\xe2\x3c\x72\x81\x50\xe0\x16\x02\x51\xbb\xa7\xe7\x95\x20\x06\xc2\xc7\x80\x38\xca\x9f\xed\x36\xaa\x48\x5e\x5c\x6e\x85\x2b\x0e\xb8\xfe\x1f\x0b\xd1\xb0\x6d\xec\xad\x7d\xaa\x73\xdb\xd6\xdc\x5e\xbd\x14\xad\x5a\x4a\xd2\xa4\xa9\xa7\x6a\x39\x37\x32\xec\xf2\x45\x47\x45\xd3\xa8\x71\x91\xf9\x25\x87\x79\x89\x0c\x5a\xd0\xa4\x20\x16\xc5\xec\xb7\xe1\x9c\x5b\xb5\xd9\xb8\xea\xc1\xb4\xc8\xc2\xc8\xaf\xed\x5a\x62\x7c\x72\xf8\x90\x45\x39\x11\x22\x9c\x1f\x4e\x9b\x72\x01\x99\x44\x18\x2d\xa8\x6c\xab\x22\x52\x39\x17\x9c\x1f\xcf\x86\xbd\xb5\x8a\x40\xc6\xd6\xa9\x89\x52\x25\x02\x06\x62\x20\x03\x5d\x6f\x12\x97\xdc\xa9\x2c\xbd\x4a\x84\x6d\x37\xe9\x31\x7b\x4e\xef\x91\xc4\xd2\xd8\xb5\xdc\x1c\x8e\x73\x6e\x3c\xbe\xd0\x9c\xd3\xd1\x63\xea\xf7\x80\x44\x2c\x8b\x0e\xd3\x54\xb0\xf1\x0b\x9a\xba\x08\xee\x60\xdc\x33\xa5\xc0\xe3\xeb\x60\x78\x2c\x45\xdd\xc7\xc9\xef\x05\xab\x98\xe5\x0b\xc8\xc6\x08\x64\xa7\x22\xa4\xe2\x6d\x79\x29\x69\x93\xc8\xc4\xe7\x39\x75\x4f\xcd\x1d\x5b\xd0\x96\xc6\x17\x6e\xb0\x30\x70\xbe\x6c\xb2\x5a\x92\x44\x64\x02\x2c\x40\x0d\xa4\x96\x79\xf1\x2d\xb4\xc8\xae\xf1\x04\x64\xbe\x64\x79\x98\x43\x48\x9b\xe4\x56\x82\xfc\x8c\x69\xa9\xe9\xe8\x07\x82\x80\x37\x73\x06\xff\xfb\xd1\x75\xb4\xba\x97\x6f\xde\xb6\x73\x04\x85\x8a\xb7\x3f\xbc\x9c\xe9\xf2\xea\x65\x3b\x17\x7f\xa7\xab\x8b\x4c\x49\xd3\xa4\xe6\x92\xd8\xe7\x65\xd1\x1b\x7e\x0f\x7a\xee\x50\x88\x16\x72\x51\x6d\x11\xa4\xbf\xf7\xd4\x06\x04\x45\x9b\xf5\x5b\x2f\xe8\x2f\x1b\xb8\xe8\xd4\xca\x7a\x2c\xba\xde\x2d\xe9\xd5\xac\x45\x04\x30\xea\x43\xec\xdb\xf9\x90\x11\x0f\x31\x07\x92\x5f\x7b\xc9\x68\x38\x8a\xd8\x4a\xec\x5c\x3f\xc8\x4b\x66\x9f\x42\x52\x1f\x86\x3f\xfb\xdc\x8a\x97\x17\x8c\x2f\x1b\x8c\xe5\x18\x38\x46\xd9\x54\x75\xbb\xa3\x40\x96\x71\x7b\xab\xef\x7b\x64\x2f\xef\x1c\x42\xfc\x6a\xd0\xe4\x4d\xdc\x48\x9d\xfc\x4a\xf2\x65\x52\x9f\x66\xb4\x33\xc1\xba\x1f\x80\xe9\xd8\x5c\xe5\x32\xdb\xdd\xba\xc8\xf8\xde\x57\xae\x47\xe1\xd7\x4a\x76\xd6\x78\xcd\x8d\x1b\x48\x6c\x70\x15\x7e\xcb\x7d\x09\x3c\x91\x1a\xa3\x74\x5b\x83\xb2\x6b\x44\x5b\xc3\x25\x2e\xf8\xe2\x49\x69\xea\x26\x12\xb3\xa5\x6e\x71\xaa\xd2\x7e\xd0\x58\x16\xfd\x1f\xc4\xaf\x70\x27\xec\x63\x1c\xed\xcd\x6c\x96\xfb\x23\x25\x10\x03\xfc\x71\x4c\x6e\x6e\xac\x50\xe3\x26\x49\x45\xab\x62\xf1\x39\x07\x5b\xb9\xfb\x5b\xac\x45\x89\x74\xb6\x0b\x10\x85\xa8\x92\xa4\x8e\xe6\x76\x6a\xb3\x36\x9b\x51\x2c\x63\xbb\x49\x1d\x89\x1c\xd4\xdf\x45\x7b\xe6\x28\x7e\x34\x06\x52\x57\xdf\xb9\x3d\x3b\xa3\x4d\xa8\xae\x84\x11\xd8\x7e\x80\x64\x1c\x47\xe1\xbe\x83\xa1\xcd\xb9\x3b\x96\xe0\x43\x8c\x26\x96\x4c\xa4\x9c\xc8\xab\x97\xe2\xf3\x87\xd4\x6c\x38\x65\x3b\xa6\xa9\x06\x81\x40\xef\x58\x80\x59\xa2\x0d\xda\xd8\xd6\x31\x82\xe6\x43\x7c\x3d\x08\xd7\x9e\x16\x6f\x31\xa1\x0c\xe2\x83\xd5\x35\x41\xfb\xd3\xda\x7d\xa7\xef\x95\x27\xb8\x65\x84\x99\x17\x77\x4e\xa8\x2a\x06\xcc\xdf\xff\x1b\x00\x00\xff\xff\x77\x55\xfa\xde\x3c\x8d\x00\x00") + +func examplesStorageRedisImageRedisMasterConfBytes() ([]byte, error) { + return bindataRead( + _examplesStorageRedisImageRedisMasterConf, + "examples/storage/redis/image/redis-master.conf", + ) +} + +func examplesStorageRedisImageRedisMasterConf() (*asset, error) { + bytes, err := examplesStorageRedisImageRedisMasterConfBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/redis/image/redis-master.conf", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageRedisImageRedisSlaveConf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\xbd\x5b\x53\x23\x39\xb6\x2f\xfe\xee\x4f\xa1\x80\x3d\x51\xf0\x0f\xdb\x98\xba\xcd\x34\x51\xd3\xfb\x4f\x15\x74\x35\xa7\x29\xa8\x00\x6a\x7a\xf7\x79\xa9\x90\x33\x65\x5b\x43\xa6\x94\x2d\x29\x31\xae\x87\xfd\xd9\x4f\xac\x8b\x2e\x69\x43\x55\xef\x73\x98\x89\x2e\xb0\x33\x95\xd2\xd2\xd2\xba\xfe\xd6\xca\x7d\x71\xa3\x6a\xed\x45\x65\xcd\x42\x2f\x7b\x27\x83\xb6\x46\x2c\x74\xa3\x84\x7a\x94\x6d\xd7\xa8\xd1\x68\x5f\x5c\xd9\xa0\x84\x35\xa2\x37\x3a\xf8\x13\xb1\x5e\x29\x23\x5a\xd5\x5a\xb7\x11\x5e\x7f\x53\x42\x7b\x61\x94\xaa\x55\x3d\x16\x3a\xc0\x5f\x9d\xf5\x5e\xcf\x1b\x25\x82\x15\xbe\x53\x95\x5e\x6c\x46\xfb\xf8\x9d\x11\x61\xa5\x44\xef\x7b\xd9\x88\x85\x75\xad\xb0\x0b\x71\x7c\x2f\xde\x7c\x7c\x2f\x5e\x7f\x12\xd2\xd4\xc2\x5b\xf8\x22\xac\x4e\x46\xfb\xa3\x7d\xf8\xee\x9f\x3f\x8b\xe3\xd9\x6c\x26\xe6\x9b\xa0\x3c\x7e\x34\xa7\xcf\x5e\xbe\xce\x9f\xb5\xf1\xb2\xc1\x95\x6d\xba\xf2\xff\x1b\x5e\xbe\x2c\x2e\x1f\xdc\xb1\x1c\xde\x31\xb8\x6d\xb4\x4f\x14\x10\xd2\x29\x51\x49\xaf\x84\x36\x5e\x19\xaf\x83\x7e\x50\x30\xef\xe3\x8f\xef\xc5\xf1\xc7\xb9\x38\x5e\xbe\xc7\x6b\x64\xd3\xe0\x72\xbd\x6c\xd5\x74\x34\xda\xff\xe1\x8f\xb8\xb8\xfa\x70\xf9\xe5\xec\xfc\x56\xfc\xf8\xda\x7d\xd8\x99\x0b\x53\x35\x7d\x0d\x9b\xa3\x84\x75\xa2\xb5\x4e\x09\x1b\x56\xca\xf1\x8e\xe2\x56\x7a\xb1\x52\x4e\x4d\x85\xb8\x5b\x69\x0f\xdb\xd3\x7b\xb5\xe8\x1b\xa1\x17\x62\x63\xfb\xd1\xbe\x58\xc9\x07\x25\xa4\xf0\x41\x9a\x5a\xba\x5a\x04\xd5\x76\x8d\x0c\x4a\x84\x95\x0c\x62\x69\x95\x87\x8d\x84\xd5\x10\xb7\x78\xe5\x1e\x94\xf3\x62\xde\x07\x21\x1b\x6f\x71\xf7\x47\xfb\x70\x51\xd5\xfb\x60\x5b\x60\x0a\x29\x16\x6a\x2d\x3a\xe5\x26\x74\xb9\xf0\x2a\x04\x6d\x96\x7e\x2a\xd2\xb4\x69\x76\x95\x34\x42\xd3\x27\xa3\x7d\x9e\x3e\x7e\x33\x06\xa2\xf6\x1e\xe6\xa1\xbd\x58\x6b\xaf\x9a\xcd\x14\xf7\xe1\xca\x06\x5d\x29\x61\x3b\xe4\xd7\x3d\xbe\x7b\x4f\xac\xad\x79\x11\xc4\x5c\x09\xa7\xd6\x4e\x87\xa0\x8c\x98\x6f\x44\x65\xdb\x16\x58\x6b\xef\xc3\xf5\xd5\x2f\x17\x1f\xc5\xcd\xf9\xef\x37\x17\x77\xe7\x7b\xa3\x7d\xb1\x70\xb6\x15\xb2\x6e\xb5\x01\xfa\xd1\xf2\x6e\x95\x09\xda\xa8\x66\x2a\x6e\xb5\xa9\x14\x7f\x2a\x9b\xb5\xdc\x20\xed\x3c\x6e\x6a\x23\x7d\x10\x9d\xb3\x95\xf2\x1e\x57\xdf\x68\xa3\x84\xf4\xe2\x41\x36\xbd\x02\xbe\x96\x5b\xc7\xaa\xd6\x4e\x55\xc0\x2b\x63\xa0\xfb\x8b\x5a\xcc\x55\x08\xca\x89\xae\x0f\x71\xfd\xc0\x83\x32\xe0\xf8\x73\xb5\xd4\xc6\x68\xb3\x84\xa1\x90\x00\x78\x2c\x61\x23\x1e\xac\xae\x85\x7d\x50\x0e\xd6\x08\x57\xf0\x66\x57\x2b\x69\x96\x0a\x06\x70\xbd\x09\x1a\x98\x0e\x88\x75\xb1\x00\x46\x0d\x4a\xd6\xf0\x5c\xe4\x4c\x6d\x82\x72\xca\x07\x55\xc3\x91\xec\x3d\x0c\x12\xa7\x00\x8f\x80\xc1\x9d\xae\xd5\x70\x05\xb0\x3b\x48\x71\x1f\x0f\x3a\xaf\x20\xd0\x36\xf1\x08\x40\x84\x44\x21\xa0\x0a\x4d\x23\x7e\x7b\xd4\xc9\xb0\x3a\x0a\xf6\xa8\xb1\x95\x6c\xa6\xf0\x84\xa7\xbe\x45\x3e\xa0\x6f\x7f\x78\x72\xc4\xc7\xf3\xab\xf3\x9b\xd3\x4b\xf1\x57\xce\x0d\x9d\x9c\xf7\x1b\x51\xab\x85\xec\x9b\xc0\xfb\x5b\x03\x9b\x1b\x8b\xb4\x83\x15\x48\x51\x4b\xd5\x5a\x33\x15\x5f\xbc\x12\x2f\x36\xca\xbf\xe0\x13\x83\xec\x2e\x74\x98\x46\xd1\x88\xc7\x84\x46\x59\xeb\xa6\x11\xb0\x2d\x70\x00\x3a\x5d\xd3\xa6\x69\x23\x8e\x1e\xa4\x3b\x72\xbd\x39\x72\x70\xdd\x14\xbe\x42\x39\x4a\x0f\xd1\xdf\x54\x3d\x1d\xa5\xdf\x85\xb1\x30\xc7\xdf\xe1\x02\xd7\x13\x17\xe4\x0b\xc7\xf1\x59\xf0\x18\xff\xe3\xe7\xcc\x41\xf8\xf2\x62\xa7\xe2\x0f\xdb\xe3\x89\x63\xb9\x0c\x5c\x8a\x67\x36\x8f\x02\xfb\x82\x0c\x8b\x62\x63\xd4\xe9\x1a\x3f\xde\x1d\x19\xe6\x78\x5a\x55\xaa\x0b\xc0\x27\x06\x98\xdb\x1a\x0f\x9a\x02\xa5\x1e\x3e\x40\xab\x5a\x74\xd6\x85\x71\x22\xb7\xf6\xe2\xed\xab\xbf\xff\x34\x25\xce\x84\xef\xc4\x0c\x3e\xcc\xd7\x17\xa4\x84\x0d\x69\xb4\x87\x83\x6c\x8d\x90\xe2\xee\xc3\x67\xe1\x6d\x75\xaf\xc2\x74\x84\xb7\xc2\x50\x30\x0f\xf8\x82\x2e\x3c\x38\x14\x73\x59\xdd\x37\x76\xc9\xec\x6f\xc4\x4a\x2f\x57\xc2\xa9\x3f\x7b\xe5\x83\x9f\x90\x4c\xaa\xac\xa9\x85\x32\x0f\xda\x59\xd3\x2a\x13\x7c\xde\x5a\xc9\x77\xf0\x30\x02\x85\x43\xad\x1c\x89\x38\x3a\x7e\xbe\xb1\x6b\x51\x35\x1a\xef\x2c\x57\xaf\xbd\xef\x95\x9f\x16\x9c\x01\xc4\xb8\xd4\xa6\x7f\x14\xf7\xca\x19\xd5\x8c\xf6\x69\x6d\x5e\x37\xca\x84\x66\x23\x82\xeb\x4d\x05\xf2\x56\x07\x78\x00\x5c\x9f\x84\xc8\x11\x88\x98\x23\xbf\xf1\x47\x46\x85\xa3\xca\x3a\x75\xe4\x6d\x2b\x1f\xe1\x91\xc2\xdb\xd1\xbe\x68\xe5\xbd\x12\xbe\x77\x28\x1b\x9c\xd4\x5e\x89\xb9\x0d\xab\xe1\x30\xf9\x1e\x10\x84\xa1\xea\xbe\xb6\xf2\xf1\xab\xdf\x98\xaf\xbc\x48\x3c\x82\xb4\x4c\x18\x67\xa9\x68\xde\xb5\xf2\xda\xa9\x5a\xa8\xc5\x42\x55\x61\x3a\x0a\x55\x37\x89\x64\x79\x73\x7c\xfc\xe4\x49\xa2\x6d\xf0\xa0\xc6\x07\x94\x21\x59\xcb\x3a\xd1\xa8\xb0\xb6\xee\x9e\x24\xd1\x42\x56\x24\xfa\x1e\xa4\x6e\x24\x18\x0e\x91\x87\x50\x75\x4c\xc5\xc5\x8e\x59\xc1\x4c\x11\xac\xf8\x77\xef\x43\x52\x80\x7d\x13\x34\x58\x2d\xfb\xc5\xc0\x2c\xdf\x60\xbc\xbd\xb9\x36\xf5\xde\xf3\x72\x79\x61\x9b\xc6\xae\x15\x9c\x19\x1e\x12\x08\x0c\x5a\xf5\xe2\xb3\x90\x75\xed\x40\xd8\x7b\xe2\xab\x73\x32\x90\x3c\x19\x2a\x30\xb0\x38\xfe\xe9\xe5\xf4\xf8\xed\x3f\xa6\xc7\xd3\xe3\xd9\x4c\x1c\xcf\xa6\xf0\xbf\xe3\xd1\x08\xbf\xa4\xbf\x66\x40\xb2\x5b\x3e\x7b\x30\x25\x90\x77\x48\x2a\xf8\xe3\x8b\xd1\x8f\xcc\xdf\xc4\x3b\xc8\x28\x73\xb0\x98\x54\x5d\x2c\x7b\x81\x13\xd3\xa6\xb2\x2d\xcb\xff\x48\xe5\xa9\xb8\x83\x63\x8b\x36\x99\x8d\x1b\x83\x8a\xf4\xc9\x53\x05\x22\x1d\xce\x55\x5f\x3c\x18\xe5\x12\x5c\x92\x4e\xe4\x34\x1a\x3f\x8f\x7c\xc9\x51\x68\x3b\x96\x03\xf0\xc9\xe0\xcb\x4e\xb9\x56\xfc\x7d\x86\x0b\xfd\xd0\x58\x54\xdf\xaa\x98\xa2\x90\x0b\xd0\x19\x92\x4f\x0f\xcc\x54\xd7\x8d\x42\x1a\x5c\x09\x3a\x98\x5e\x1c\xcc\x60\xb9\xb5\xf6\xc0\x0e\x87\x23\xd0\x66\xb6\x0f\x62\x16\xcf\xfa\xbd\x52\x9d\x6c\xf4\x43\xd6\x71\xc6\x9a\xc9\x37\xe5\xec\x18\x75\xd1\xed\xf5\xd7\xdf\xce\xcf\x3f\x9f\x5e\x5e\xfc\xeb\x1c\xcd\x50\x65\x6a\xbc\xf1\xf4\xc3\x6f\xa8\xe2\xe2\xd9\xd5\x46\xc8\xb9\x57\xa6\x42\xe3\x63\x81\xc6\x42\x6f\x34\x89\xc0\xe9\xb6\xcd\x84\x1b\xb5\xb6\xc2\x29\xe9\xad\xe1\xbd\x3f\x3e\x14\x67\x2a\xa8\x2a\x88\x1a\x94\x6c\xa7\x94\x03\x1e\x11\x2f\x0f\xc5\x1d\x1c\xce\xed\xf5\xc3\xb4\xe9\x34\x20\x03\x58\x6d\x02\x3c\xf9\x41\xab\x35\xfc\xcb\x47\x63\xb4\x2f\x84\x10\xea\xcf\x5e\x77\x2d\xd2\x89\x8e\x44\xab\xeb\xba\xe1\x55\x5f\x1b\x12\x2c\xe3\x2d\x81\x4b\xc7\xfe\x40\x9b\x48\xce\x43\x58\x02\x3e\x4c\x39\x6d\xeb\xc4\x4e\x48\x15\xa0\xc8\x50\x97\x21\x79\x9e\xd8\x39\x94\x08\xb6\xc7\x03\xba\xc0\xbf\x60\x5f\xb2\xfd\x3f\xa5\x39\x91\x09\x47\xc2\x6e\xf0\xd8\x5a\x75\x0a\x36\x97\x87\xa2\x2b\x86\xa7\x91\x16\x76\xca\x04\x46\x59\x40\xab\xa1\x23\xa2\x7d\x34\xfa\x40\x8d\xcc\xe2\xfa\x48\x30\x25\x9e\x10\x6f\x77\x8e\x19\x1b\xa1\x0f\xca\xcd\xad\xd7\x61\x23\x1a\xf5\xa0\x1a\x98\x30\xee\x30\x68\xc4\x39\xdb\xd1\x8b\x13\xd4\x97\xf3\x7e\x29\x0e\xa4\x68\x2c\x6e\x8e\x36\xe0\xae\xe0\x14\xc7\x25\x33\xd4\x30\x8c\xc5\x1d\x3a\x0a\xca\x83\x39\x76\x38\xda\xe7\xe7\x28\x71\xd0\x4a\xb3\x11\x4e\x3a\xd5\x6c\x92\xdd\x6d\x16\x76\x8c\xc6\x33\x1c\x32\x29\x5a\xe5\x41\x68\x32\xa3\xd0\x83\x71\x76\x30\x90\x21\x4b\xf7\xa0\xb5\xb5\x72\x32\xc0\x30\x3c\xf6\x58\xac\x61\xaf\x40\x6b\xad\x25\xf1\x47\xe7\x6c\xdd\xd3\x56\x75\xce\xce\xe5\xbc\xd9\xc0\x18\x6b\xe9\xd0\x84\x38\xb0\x86\x6e\xdf\x08\xdd\x82\xf6\x84\xdb\x8e\x44\x05\x56\x64\x25\x1b\x9c\x88\x5c\x2a\x72\x70\x1a\xbb\x5c\xaa\xfa\x70\xd4\xd8\x25\x4e\x86\x67\xb2\x4d\x57\x50\x04\x68\x1e\x18\x70\x72\xc4\x29\xb8\x03\xf0\xb9\x6a\xbb\xb0\x11\x3e\x38\x94\x4f\x44\xdd\xc8\x75\x0b\xeb\xf0\xb4\x91\x44\x02\xa9\x66\x97\x49\xe2\x47\x27\xc4\xf6\xa1\xeb\x43\xa9\x47\xd9\xfa\x82\xd3\x1d\xaf\x82\x23\x8b\xd7\xe1\x5e\xc0\x94\xe1\x71\x40\xda\x64\x2e\x8d\xe1\x63\x9f\x04\xa9\x87\xa3\x14\xac\x38\xaa\xd5\xc3\x91\xe9\x9b\x06\x16\x88\x0b\xd8\xdb\x43\xd9\x62\x85\x22\xb6\x8b\xa3\xb1\x46\xf6\x1b\x1f\x54\x4b\x64\x71\x63\xd2\x3a\x5e\x05\xf1\xc2\x6f\x7c\x63\x97\x13\xba\xab\x7e\x01\xd7\x6f\x94\x1f\x83\x3a\x33\x35\x73\xab\x6c\x60\xfb\xbb\x9a\x9c\xaa\xe8\xa3\xd1\x9d\xa2\x93\x4e\xb6\x2a\x80\x47\x05\x47\xb2\xd7\xb8\xa9\x0e\xcf\x14\x1e\xcc\xe1\x13\xd8\x38\x1c\x30\x37\x0d\xa4\x6b\xf0\x5c\xc2\xa6\xb8\x07\x3f\x12\x28\xa9\x9f\xb9\x69\x21\x2b\xdd\xc0\x4d\xe2\x13\x2c\x69\xae\xc4\x97\xdb\xf3\x1b\x50\xa6\x73\x15\xd6\x4a\x19\x71\x79\xfd\xe1\xf4\x72\x36\xc1\x7f\xfe\x5e\x8c\x1d\xef\x44\x83\xb1\xa1\x13\xc7\x66\x83\xe9\xdb\xb9\x72\x70\x6e\x6a\x19\xe4\x5c\x82\xd2\x04\xc5\x94\x2c\x85\xf8\x31\x1c\xe3\xb3\xf7\x62\x86\x2e\x11\xd9\xa5\xaa\x51\x55\x00\xea\x89\x5a\x2f\x16\xca\xc1\x02\xf0\x5c\x82\x9e\x02\xdb\xad\x10\x48\x73\xe9\x75\xd4\xef\xb7\xe7\x97\xe7\x1f\xee\xc4\xbb\x7a\xae\xeb\x9f\x41\x89\x39\xe0\x31\xf8\x0b\x1e\x22\xe3\x9c\xe2\xaa\x66\xb8\x3d\x2f\xd2\xfc\x5e\x4c\x8e\x47\xe9\x0f\x71\xfc\xf6\x2f\x78\x1d\xb7\x57\xa7\x9f\x6f\x7f\xbd\xbe\xbb\xbb\xb8\xfa\xf8\x63\xd7\x03\x05\xdb\x2d\xb8\xda\x40\xa1\xb3\xf7\x02\x4d\x0f\x7f\x4f\x3a\x44\x08\x0f\x5f\xbd\x63\x81\xf6\xb3\x78\x47\xde\x9c\xff\x99\xbf\xfe\x1d\x4d\xc6\xe2\x76\xbd\xc8\x76\xde\x52\x3f\x80\xce\x4e\x54\x8f\x5a\x14\x8d\xbd\xf8\x3d\x0e\x93\xaf\x21\x2f\xc5\x76\x8a\x04\xaf\x17\x72\x29\xc1\x4f\x4c\xd3\xab\xaa\xde\xb9\xa8\xfc\xc1\x69\xa7\x83\x4d\x66\x8f\x98\x2b\xb0\x80\xc9\x53\x5d\xc9\x07\x0d\x1c\x1b\x0f\x19\xb0\xb1\x7c\x50\x27\x78\x1f\xa9\xfb\x9f\x66\x28\xac\xc5\xc1\xf1\x1b\xd1\x6a\x73\x08\xd3\x97\x41\x34\x0a\x9c\xc4\x63\x71\xaf\x36\xec\xbe\xd6\xc5\x4d\xaf\xe2\x4d\x4f\xdd\x33\x83\x9b\xfc\x13\x77\x91\x5a\xd8\xba\x78\x36\xdb\xbe\x1e\xef\x00\xe9\x72\x92\x78\x8f\xcd\x0d\x98\x3c\x99\x55\xb0\x52\x94\xb9\x1c\x45\xc0\xc8\xc0\x12\x64\x0e\x1a\xb2\x7b\xb0\xca\x3d\xf4\x71\x7d\x22\x13\x5a\x34\x18\x16\x29\xed\x55\xa7\x5a\xfb\x90\x43\x42\x9d\x53\x40\x32\xdf\x6c\x92\xfa\x53\x35\x12\x0d\x07\x41\x9b\xc0\xc3\x53\x65\x5d\xc3\x13\x25\x6d\x7d\x32\x55\xc5\x5a\x87\x15\x7c\xaa\xcd\xb2\xd9\x92\xb6\xd2\x2d\x7b\x98\x29\x8e\x84\x7a\x85\x4d\x07\xb2\x6e\xe1\x12\xde\xc4\x01\xeb\x81\xfc\xc3\x5f\x60\xab\x8e\xe9\xd7\x57\x68\xc6\xd2\xef\x6f\x67\x44\xc6\x27\x6d\x7e\x72\x68\x82\xed\x84\x44\x87\x10\x1e\xc2\xfe\xa9\x5e\x88\x9b\xb3\xf7\xc2\x1b\xd9\xf9\x95\xe5\xf0\x19\xcb\xb2\xd1\xbe\x38\x48\x9b\x04\x87\x1c\x9f\x84\xab\x3f\x4c\xcc\xdb\x48\x50\xac\xe8\x8d\x2d\x9d\xed\x0d\xd1\x49\x2c\xa4\x6e\xc8\xe4\xb8\x5b\xc5\x19\xb4\xd1\xdc\xea\x3d\x98\x98\x6b\x78\x14\x98\x41\x52\xac\x40\xa7\xac\xe5\xe6\x90\x74\x09\x9c\x74\xb2\x91\x03\xc8\x14\xaf\x51\x73\x93\x35\x0c\x87\x12\xf4\x67\xa7\x5c\xb3\x19\x93\xac\x5e\x83\x5b\x05\xac\x53\xb1\x7a\xc4\x51\x8c\xc5\x49\x47\x9b\x1a\x14\x35\x85\x30\x5b\x14\x3d\xda\x4b\x0f\x0c\x89\xdf\xaf\x64\xd7\x29\x93\xac\x55\x3c\x38\x83\x15\x01\xc9\x38\x9e\x14\xc9\x29\x5d\x10\x60\x0a\xe2\xae\xc2\xe9\x2c\xa8\x0d\x12\xb2\x0f\x16\x4c\x92\x0a\xd5\x8b\x84\xcd\x4d\x41\x01\xb8\x9a\x1e\xf6\xab\x5d\x2b\x30\x7d\x58\x7d\x62\xb0\xcf\xab\xd0\x77\xa4\x65\x68\xa1\x02\x94\x65\xb0\x2e\xc5\x9b\xd4\x20\xd6\xc7\xca\x8c\x29\x05\xc6\x32\x09\xec\x56\x6e\xc8\xf8\xc8\xb6\x3a\xc7\xaa\x94\x0c\xe0\x92\xa2\x35\x30\x88\x8e\x8c\xf6\x81\xe3\x83\x36\x3d\x9e\x0b\x74\x02\xa5\xe7\x90\xb0\x02\x31\xa6\xf1\xf9\x4e\x21\x9d\xc1\x8e\x69\x54\xeb\x89\xe1\x61\x6b\x40\xb3\x82\x8f\xa1\xbd\xa7\x50\x54\x19\x35\x9e\x8e\x80\x09\x27\x44\x85\x89\x35\x93\xf9\x12\x98\x65\xa2\x9c\xb3\x0e\xf4\x32\x7a\x25\xb6\xed\xc0\x93\x8b\x07\xc6\xce\xff\xad\xaa\x10\xf5\xc8\xe5\xff\xfe\x85\x43\x33\x7d\xdb\x89\xa9\xab\xe7\x59\x89\xfd\xe7\x68\x5f\xfc\x82\x56\x1f\x31\x3f\xac\xed\x85\x47\x3b\x20\x58\x0e\x12\x49\x2f\x34\x7c\x28\x9b\xd6\xfa\x10\xe3\x86\x52\xac\x71\x43\x60\xef\x93\xc9\xc6\x72\x12\x19\x46\x7c\xf8\xfc\x25\x1e\xd4\x28\x7f\x56\xba\xa9\x71\x70\x0a\x0c\xbc\x30\xf6\x05\x18\x37\xa3\x7d\xb2\x14\x65\x90\xf0\x25\x32\x0b\x9c\x73\x90\x53\x4a\xcc\x35\x58\x28\x83\xed\xae\x78\xc1\x3a\x99\xd3\x1e\x14\x3c\xc8\xc3\xe9\xc8\xd5\xf3\xf4\xbd\x35\x91\x46\x14\xfa\x7c\x80\x0d\xb7\x46\xbc\x01\xa6\x80\x53\x2c\xc5\x87\x9b\x0f\x6f\x5f\x8b\x6a\xa5\xaa\x7b\xdf\xb7\xe8\x96\x37\xb2\x52\x75\x8c\x5b\x82\x47\xc1\x1c\x04\x66\x55\x3a\x9f\x70\x34\x3d\x8b\x21\x30\xa4\xc9\xad\x76\x0a\x18\x8a\x69\x51\x59\xe7\x7a\xb2\xee\xc1\x84\x0b\xd1\x91\x45\xb5\x8f\x77\x91\x97\xb6\x22\x72\x74\x72\x23\x0e\x24\x9d\x9f\xe3\xd9\xdf\x0e\x69\xd7\x98\x76\xc0\x14\x8d\x95\x28\x3c\x61\xe2\x39\xa0\xbc\x2d\xec\x35\xd0\x13\xcc\xc7\x56\x3e\xea\xb6\x6f\xcb\x87\xb1\x54\x4f\x03\x88\xca\x29\x19\x54\x4d\xdc\x98\x88\xc0\x43\xd5\x31\x92\x9e\xbe\xb0\x0b\x01\x2e\x69\xf6\xe5\x61\xeb\x14\xeb\x80\x38\xbd\xca\xd6\xa4\x32\xef\x75\x47\x1e\x17\xdc\x4e\x1b\x13\x07\xe2\x5d\xb9\x63\xaa\x82\xb1\x4d\x26\x0e\x9e\x3c\x60\x54\xd2\xda\xa3\x7a\x9e\xbe\x87\x8f\x81\x7d\xe3\x8d\x51\x92\x90\x12\xb1\x8e\x63\xe9\x77\xa4\xee\xa3\xee\x8e\x71\x73\x6d\xbc\xae\xf9\x34\xa7\x3b\xc6\xb4\xf0\x50\x4e\x23\xb9\x9d\x20\x24\xe6\xa0\xe4\x72\xbc\xe5\x45\x9e\xce\x8b\xe7\xa2\x2e\x79\x16\xa7\x20\x21\x6b\x71\x0d\x5e\xca\x2f\x60\x92\xe3\x9c\x50\x95\xce\x55\x22\xfd\x93\x13\x4b\x69\x01\x96\xcc\x28\x9c\xd0\x44\x4f\x61\xce\x74\x2d\xc6\x35\xc7\xec\x7c\x65\xdf\x65\x54\x6b\x27\xf6\xa6\x47\x7b\x7f\x21\x53\x23\x6e\xce\x3f\x5f\x5e\x7c\x38\xbd\xbb\xb8\xbe\xfa\x71\xcc\x19\x36\xe0\x13\xaa\x82\xc9\x6d\x03\x1c\xe2\x54\xd7\xa4\x08\xc3\x17\xf0\x67\xe0\x63\x38\x35\x96\x54\x98\x64\x81\x09\xf6\x18\xf0\x21\xe6\x12\xba\x8d\xb0\x0b\x94\xc4\xe4\x3e\x94\x02\x7a\x2a\x4e\x31\xdf\x12\x56\xda\x2c\xd1\x8f\xe8\x4d\xad\x1c\xfa\x49\xe2\xf4\xf6\xf4\x33\x6c\x4d\x1f\xe5\x70\xf9\xfc\x18\xc1\xd8\xf9\x06\x4f\x9e\xdf\x98\x6a\xe5\xac\xb1\xbd\x27\x97\x35\x9e\x9e\x64\xb5\x80\x03\x4b\x6a\x2e\x58\x0a\x59\x3c\x6b\x06\xe8\x20\x40\x09\x4a\x72\x74\xe6\x0a\xb7\x80\xad\xf9\x78\xa6\xa2\x35\x40\x43\xc9\x5d\xcb\x16\x28\x15\xa3\x2b\x4c\x01\xfc\x88\x32\x6e\x6c\x6d\xf1\x11\x06\xc9\x21\x5d\xd0\xb2\x01\x41\xc3\x4b\xd1\xdf\x68\x79\x91\x93\xe9\x49\xbc\x06\xd2\x3d\x03\x32\x34\xda\xdc\x03\x2d\x1a\x90\xe6\x20\x27\xa4\x70\xaa\x91\xc0\xba\xcd\x46\xf8\x16\x4c\x3a\xd9\xda\x1e\x83\x38\x34\x18\xe6\x5e\x30\xd2\x5e\x2a\xc8\x4c\xb2\xed\x47\xc4\x88\x2a\x66\x53\x0f\xbc\x52\x1c\x22\x7d\x64\x32\xf8\x14\x5a\x2f\x52\x41\x87\xc9\x06\x54\xa6\x90\xec\x1c\x64\x41\xbd\x66\xb6\x1c\xc9\x57\x40\xb2\xe1\x06\x47\x13\x02\x05\x66\xca\x81\x60\x18\x1c\x6d\x28\x0c\xa3\x3e\x80\xdd\x0b\xbc\x7a\x4a\xa1\x3b\x9a\x55\x0c\xe1\x22\x89\x71\xc0\xb8\x13\x03\xbb\x24\xb8\x0d\x19\xc0\xbc\xd3\xc4\xe4\x40\x6d\xcf\x9b\x6c\xea\xc1\xf6\xa8\xb4\x35\x2d\x70\x67\x3c\x1b\x7f\xa3\x9b\x26\xba\xfb\x5b\xfa\xbd\xb3\x2e\xfc\x4d\x8c\xb2\x49\x15\xb7\xd1\x8b\x4e\x7a\xbf\xb6\xae\x06\x0b\x22\x10\x83\x1d\x14\x81\x60\xa7\xfe\xec\xb5\x53\x70\xd5\xde\x4e\x96\x2b\x9b\xd9\xe8\xe5\x1c\x3e\x91\xd6\x4e\x52\x1c\xa7\x87\x79\x81\x3e\xac\x80\x4e\x18\xc9\x9f\xab\x85\x45\xff\x13\x8d\xb8\xf8\xd4\x72\xcf\xb7\xd9\x91\x4d\xbf\xd2\xde\x2c\x16\xc4\xba\xc3\xa9\x45\xcf\x5f\x78\x96\x24\x98\xd4\xa0\x53\x4c\xd7\xc2\x3c\xc4\xbb\x48\x20\xa6\xc2\xcf\x29\x9f\x24\xf9\xce\xc6\x82\x9f\xab\x07\xd9\x8b\x2c\xdd\xe9\xf6\x31\x58\x09\xa8\x55\xb7\x66\x3f\xda\xc7\x8c\x4d\x00\xf9\x4c\x71\xa7\xa5\xc3\xc9\xe7\x99\x81\x90\x90\x15\x85\x2d\xd7\xb6\xf0\xe5\xc1\x1c\x4a\x71\x53\xcd\x27\x9a\x92\xc4\x13\x1f\x64\xa3\x26\xd1\x38\x1f\x98\x55\x07\x21\x87\x0f\x0e\x8b\xe7\x30\x65\x50\xee\xc0\x74\x60\x96\x9b\x1c\xe0\x4d\x69\x9f\x71\xdc\xbe\x0d\xad\x12\xa4\x21\xc5\x27\xc8\x92\xc2\xb5\x26\x71\x80\x53\x80\xe7\xc3\x01\xfe\x37\x07\x46\xc8\xcb\xd2\x7c\x06\x39\xa2\xba\xd0\x0e\xd4\xcc\x70\x37\x69\x3f\x5e\xfe\xc5\xf5\x81\x59\x37\x5c\x10\xaf\x02\x26\x1a\xcf\x88\x20\x13\x76\xef\xf6\x8f\xab\x0f\xb4\x82\xc8\xeb\x99\xfe\x7b\x31\x4f\x8f\xd1\x55\x4d\x96\x18\x67\xbf\xf9\xb0\xa1\x61\x65\xc5\xc5\xd5\x2f\xd7\x78\xf0\x6e\x2f\x4f\xff\x75\x7e\xfd\x4b\x3a\x68\xbb\x13\x65\xd3\xe3\x8f\x27\x04\x3f\x4d\x38\x29\x29\x78\x38\xa5\x03\x59\xe6\x5b\x07\xd2\x64\x2a\x7e\xe7\x3c\x35\x47\x18\x30\xb8\xb3\x75\x2f\xd0\x99\x42\x84\x8b\xbe\x41\x6b\x28\x58\xc7\x96\xb1\xea\x56\xaa\x55\x4e\x36\xb4\x2d\x07\x73\x55\x49\x38\x06\xf0\xd7\x68\x3f\x59\x2c\x36\x33\x77\x34\x66\x94\xf4\xba\x01\x5f\x15\xdc\xf8\x9a\xe3\x03\x24\x6b\xb6\x79\xfd\x90\x2d\x6b\x98\x08\x9a\x1c\xf4\x8c\xe4\x7f\xe8\x45\x4a\x19\x80\xa6\x89\xa9\xf7\x60\x41\x38\xc4\x19\xd9\x05\x0a\xc7\x56\xfb\x27\x82\xda\x25\x9a\xe0\xe5\xf4\x2d\x78\xf7\xd1\x8f\x28\x54\x98\x53\xb2\x9e\x58\x53\x20\x1d\xd4\x09\x7e\x28\x30\x7a\x5b\x5c\x09\x82\xba\x56\x5e\x2f\x0d\x85\x55\x61\xbd\x8f\x9d\xe5\x20\x6b\x6f\x82\xeb\x31\xc3\xcf\xd3\x26\xe7\x16\x16\x8c\x32\xdd\xa8\x30\x15\x17\xe0\xa8\x20\x7b\xcb\x28\x27\x51\xe5\xc9\x0d\x88\x79\x8e\x07\xb5\xda\xf3\xda\xe8\x66\xda\x31\xd0\x27\xb7\x78\xe2\xe4\xf6\xf4\x70\x1a\x8e\xe2\x17\x71\x85\x91\x2b\x11\x6b\xa1\x7d\x70\xa8\x40\x4b\xe6\xf4\x7d\xb5\x02\xe7\x89\x40\x1a\x63\x71\x76\xfe\xfe\xcb\xc7\x2d\xef\x4e\xdc\x59\x21\x45\xa3\x5b\x0d\x0b\x53\x8f\x01\x4e\x78\x34\x49\x74\xdb\x39\x8b\x01\x14\xaf\xaa\xde\xe9\x00\xf6\xd2\x2e\xe9\x48\x09\xbc\x70\x68\x95\x4e\x78\x02\x18\xb6\xf5\x2b\x59\xdb\x75\x9c\x2a\x70\xe9\x70\xb2\x47\xa2\x96\x66\xa9\x9c\xed\x7d\x9a\xf8\x94\x8f\x4d\xda\xb6\x78\x5e\x4a\x45\x8b\x67\x16\x87\x51\xcb\xcd\x09\x05\x18\xac\x4b\x89\x6c\xd8\xe7\xc9\xff\xdd\x0f\x48\xf5\xd3\x9b\xab\x8b\xab\x8f\x27\xe2\xec\xe2\xf6\xb7\xcb\xf3\xdb\xdb\x81\x71\x7a\x71\x2b\xce\xff\xeb\xf3\xf9\xcd\xc5\xa7\xf3\xab\xbb\xd3\x4b\xf1\xe1\xcb\xcd\xcd\xf9\xd5\xdd\xe5\x1f\xff\x2f\xcf\x04\xbe\x54\xeb\xc4\x8b\xa8\xbf\xa3\x16\x31\xcb\xf8\x39\x1a\xe2\x91\x51\xa3\x65\x96\x7d\xff\x1d\x8d\x12\x83\x1f\xc8\x8f\x4e\x55\x4a\x3f\x90\xbb\x42\x9a\xa3\x02\xff\x0d\x0d\x13\x70\x79\x2c\x65\x3f\x30\x75\xd3\x80\xeb\x25\xc5\xde\xa2\x47\x55\xb0\x25\x8b\xf7\xa6\xe2\xd4\x24\x17\x0e\xc5\xb6\x93\xc6\xb7\x20\x34\xea\x9c\x86\x4b\x46\x6c\x16\xc5\x7e\xca\x8e\x09\xdf\x40\x0e\x32\xb0\x1a\x05\x73\x7e\xa0\xdb\xce\xb4\xbf\xc7\x64\xb9\xaa\x4f\x70\x18\x3a\xfa\xfc\x20\x72\x67\x30\x30\xad\xd6\x69\xed\xe4\x28\x92\xf4\xc4\x20\xcc\xd9\x7b\x92\xdb\x83\x1f\x5c\x08\x47\xaa\xa6\xe2\x52\xe2\xc4\xd9\x27\x4b\x0b\x5c\x28\xe7\x28\x93\x4d\x69\x66\x17\x43\x82\xc3\x9f\xf4\xe4\x72\xe1\x42\x9b\xca\xa9\x56\x99\x00\x26\x1c\x5b\xdb\xb0\x9e\x46\x79\xff\x3f\x5b\x0c\xd9\x52\xa0\xcc\xd2\xaa\xb6\x67\x91\xf6\x06\xce\x60\x43\x01\x11\x38\x19\x9e\xdc\x4d\x8b\x2a\xab\xaf\x56\xd1\x8c\xc2\xf3\x23\x51\xa6\xd0\xe1\xf9\x3d\xc6\x86\x98\xdc\x25\x63\x8d\xc5\x7a\x85\x63\x13\x35\x13\x8d\x96\xca\x60\x42\xad\x1e\x53\x24\x82\x16\x3e\xda\x8f\xc9\xaa\x3f\x7b\xd5\x23\x16\xa4\x26\x17\xab\xce\x0a\x23\x0d\x23\xbd\xf0\xd6\x9a\x08\x78\xc2\x78\xb9\x09\x1c\xb7\xa1\x64\x1c\x45\x15\x07\x77\x2d\x40\xa6\xac\xd8\xf8\x02\x0b\x7a\x9a\x17\x00\xf4\x1d\x3a\x61\x8c\xdc\xb2\x14\xfa\x08\x91\x1b\x17\xca\x91\x6d\x89\x87\x22\x9f\x45\xe7\xe8\xd4\x44\x0d\x58\x2c\x83\x36\x27\xde\x9d\x50\x28\x14\x65\x8c\x46\x5e\x5c\x83\x35\x4a\x04\xe5\x5a\x6d\x60\x63\x99\xcc\x18\x15\x7b\x72\x96\x98\x20\xaf\xc7\x03\x93\x55\x22\x56\x32\x1b\xd7\x20\x01\x4a\x47\x09\x73\xc7\x83\x24\x35\x59\xcd\x43\x9b\x39\xad\x96\x63\x63\x2b\xdb\xb1\x8f\x1f\xc1\x1e\x79\xeb\x28\x5e\x00\x24\x50\x29\x7a\x9c\xee\xe7\x7d\xed\xa4\x03\x81\xd1\x10\xe4\x2a\x71\x0f\xe2\x79\x60\x6d\x24\xcf\x16\xd2\x07\x71\xd0\x48\xb7\x54\x62\x2e\x4d\xbd\xd6\x75\x58\x1d\x46\x97\xc7\x8f\x9f\x24\x03\xcc\x00\xbe\x65\x58\xdc\x74\x04\xdf\x4d\xe2\x95\x13\xb4\x3a\x0a\x64\xd7\x73\x94\xe4\xd8\xf8\x53\x60\xda\xa1\x0b\x59\xab\x46\x6e\x98\x29\x38\xbf\x4d\x44\x2f\x91\x3c\xbe\x93\x6b\xde\x5a\x64\x4b\x4a\xf0\x3b\x23\x81\x28\x49\xc8\x88\x07\x2d\xf9\xd4\x11\xca\x69\x20\x04\x63\x0c\x0f\xfe\x9f\x12\xc7\x1e\xcd\x19\x8b\x86\xdf\x53\x5c\x49\xb3\xc7\x00\x7b\x09\x07\x86\x79\x8e\xf6\x9f\xe2\xd9\xf1\x10\xf2\xc2\x9c\x1b\xa1\x31\xe0\x0d\xe3\x4c\xe3\x83\xc6\x82\x53\xcd\x29\x44\x1d\x39\x0e\xe9\x32\x20\x42\xa3\x42\x79\xca\x99\x47\x72\xe4\x89\xef\x28\x41\x68\x99\x2f\xc9\x06\x29\x6c\x19\xed\xc5\x9b\x84\x3c\x00\x93\x84\xe3\x7f\x84\x71\x06\x1f\x10\xd3\xfd\x29\x45\x4c\xe1\xca\xd9\x4e\x56\x2e\x91\xac\x38\x88\xa7\xb7\xa7\x9f\x9f\x62\x9c\x09\x4d\xf1\x0d\xc6\x66\x69\x11\x08\xde\xf8\x7c\x71\xf5\xd1\x27\xc2\xe2\x29\x01\x53\x4e\xd5\x6a\xa1\x0d\x2e\x03\xfc\x77\xd9\xb0\xad\x37\x60\x26\xcc\x84\x21\xff\x60\xa8\x89\x2e\xcc\x62\x0e\x26\xf1\xb5\xd3\x66\xf9\x15\xa9\xf6\x95\x41\x1c\x94\xd1\x1e\xa6\x73\x29\xf2\xa0\xbd\x38\x9e\x91\xf9\x45\xa0\x8c\x7d\x74\x59\xbb\x66\x02\xa3\x4c\xc8\x50\xe2\x51\x8e\x67\x29\x9e\x99\xb2\x52\x8c\xec\xf0\x2a\xf8\x1d\x77\x39\x02\x80\x16\xd6\x25\x05\xfb\xbe\x6f\xee\x33\x11\x2f\x8e\xae\x45\xdd\x63\x40\x1f\xec\xad\xf1\x77\x10\x36\x38\x13\xd6\x6a\x9f\x58\xef\xc7\xf1\xbf\x7f\x93\x17\x07\xe4\x2c\xc2\x8a\xfc\x21\x07\x55\x28\xaa\xf7\xe3\x21\x38\xec\x21\x0e\xc0\x42\x03\x3b\x57\x9c\x7e\xf8\x2d\x0f\x35\xda\xe7\xec\x61\x3e\x64\x31\x20\x48\xf8\x3e\x42\x13\x6a\x9f\xe9\xbd\x44\xc5\x0b\x27\x44\x9a\x8c\xf8\x83\x3d\x48\x8c\x0c\x07\xe8\x99\x4d\xc8\xa1\x06\x99\x66\x1f\x8f\x5f\xad\x28\x6a\x32\xda\x17\x0a\x21\x23\x28\xae\x53\x4c\x1e\x93\xbf\x4e\x2e\x16\xba\x4a\x29\xf5\x42\xf8\x47\x16\x8f\x94\x8e\x8c\x10\x9f\x42\x00\x9d\x33\x0e\xc1\xdf\x7d\xf8\xfc\xf5\xea\xfa\xec\xfc\xf2\xf4\x8f\x84\x03\x29\xec\x00\xf6\xdb\x60\x57\xff\x33\xe6\xcf\xc0\xe8\x27\xa8\x80\xd8\xdb\x28\xbf\x57\xe6\x21\x7b\x5c\x10\x46\xe6\x94\x2b\x62\x87\x77\x1f\x3e\x8b\x4e\xa2\x65\x01\x13\x1c\xed\x0b\x14\xbf\x49\xbe\x27\x44\x14\xba\x99\xd1\x18\xf1\x53\xf1\xbe\x67\xba\x63\x50\xa3\xae\x93\x8c\x21\x1c\x5e\x4c\xc6\xa0\x03\x8c\x01\xce\xad\x55\xe8\x5a\x8d\x45\xdf\xc1\xf7\xaf\x67\xa2\xd5\x4d\xa3\xa3\x2c\x60\x17\xbf\xc4\x87\x46\x17\x45\xa6\xe3\xf5\x84\x33\xb9\x45\x02\x63\xf7\xb2\x4a\x20\x60\xd2\x0f\x26\x14\x03\x27\x08\x96\xaf\xfb\x0a\x4c\xc5\x9e\xa5\x64\xa6\xc8\x00\x7f\x18\x39\x69\x10\x3a\x2e\x52\xc1\x6b\x42\xe4\x23\xfc\x9f\xf0\x38\x6b\x4c\xde\x9a\x6a\x43\xc1\x63\x6d\x08\x7d\x84\xe8\xda\xc8\x3d\x40\x07\x0c\x1f\xa2\x87\x5a\xc4\x9b\x0a\x56\x2a\xbc\x5e\x04\x54\xad\x6c\xe7\x85\x5c\xcb\xcd\x58\x84\x9e\xc0\x4d\xb8\x3f\xc1\x32\x37\xb4\xa8\x18\xe7\xc0\x07\x4b\x6b\x6b\xa1\x6b\x25\xb3\x58\x05\xa6\x9b\x84\xaa\x9b\x18\x4b\x04\x63\x48\x0d\xa3\x57\x9e\x0b\xcd\x92\xcc\x4b\xa8\x60\x50\x35\xf3\x1e\x4c\x7f\x76\x75\xaa\xaa\x6f\x7b\xcc\x56\xc3\x01\x44\x4a\xe3\x2e\x50\x5e\x2a\x2f\xa1\xc6\xf0\x00\x47\xbd\x17\xe8\x08\xb6\x24\x3e\xc6\x29\x61\xba\x2e\x62\x75\xa8\xda\x4c\xf0\xc3\x30\x2a\xba\xe7\x63\x61\x17\x01\xaf\x04\xe7\x27\x86\x36\x74\x8e\xe2\x82\x1d\x81\x75\x1a\x31\x12\x8e\x27\x31\x5e\xa5\x8c\xed\x97\x2b\x46\x33\x75\xd2\xa7\xf8\x28\xc8\x1f\x58\x3e\x23\x78\x0a\xde\x01\x37\x08\x8c\x61\x30\xaa\x29\xc9\x9d\xd6\x92\xf5\x29\xe7\x20\x9f\x21\xe6\x98\xd3\x5f\x26\x5e\x13\x45\x4b\x11\x3a\x9c\x6f\x0f\x4e\x19\x3d\x14\x76\xf3\xff\x51\xa0\xbf\x98\x55\xde\x39\xf4\xd4\x65\x83\x50\x77\x55\x27\x2b\x86\xf3\x8d\x11\x91\x10\xc3\x49\x5b\x2b\x44\x36\xe2\xc1\x26\x18\xb3\x3f\x6e\x31\xcb\xc6\xe1\xf1\xc8\xb9\x2b\x89\x20\x5c\x5e\x68\x5e\x09\xb3\xc2\xd6\xce\x87\x3c\xc3\x68\xca\xce\x95\x58\x38\xa5\xea\xe9\xd3\x8a\x32\x59\x83\xa4\x2e\x93\x6d\x9d\x0c\x0d\xe0\x24\xb4\xb5\xc8\x69\x56\x8d\xec\x3c\xf0\x58\xb4\xaf\x93\xa6\x4a\x1b\x80\x35\x1b\xcc\xba\x05\xf1\xc7\x85\xa4\x8b\x54\x8c\xac\x6f\xf3\x34\x19\xbb\x99\x50\xe7\x33\xd1\x2a\x69\x90\x6f\x0d\x62\x10\x9c\x02\xc2\xaa\x72\x9c\x27\x48\x1a\x42\x23\x5e\xbd\x9d\x25\x0b\x81\xe6\xd3\x39\x6d\x31\xa8\x03\x3b\x64\xd0\x5e\x59\x66\xf1\xde\xf5\xf3\x06\xbc\x2a\x34\xd4\x62\xf2\x0c\x9f\x83\xa1\x4e\x46\x13\x26\x0d\x8b\xf2\x2c\x5d\x19\x2b\x7e\x86\x86\x33\x89\x56\x99\x23\xfc\x9d\xb3\xad\x0d\x18\x3f\xb3\x14\xe7\x1b\x24\x8d\x72\xee\x21\x6f\x7a\xcc\xb9\x56\xd6\x91\x1b\x1c\x69\x14\xe3\x94\x98\xc1\x01\x41\x99\x96\xc7\x0b\xa2\xaa\x3c\x90\xd4\xe8\xc5\x53\xa1\x0d\xb0\x0c\xcd\x02\x3d\x5b\xc4\xff\xc3\x67\x29\x8c\x3a\xc0\x4e\x84\x95\x53\xc9\xe4\xc5\x47\xa5\x87\x1c\xcf\xc6\xe2\x78\x36\x1b\x8b\x97\x6f\xf2\xea\x59\x23\x74\xba\xba\x27\x94\xa2\x51\x4f\xdc\x16\x38\xee\x42\x67\x78\x9d\xb2\x0f\x11\x67\x22\xc9\xf6\x90\x4d\xbe\x8d\x58\x41\x82\x6b\x94\x4f\xb9\xf4\x83\xc0\x50\x3c\xc9\x14\x1f\x70\x96\x30\xc6\x31\x0f\xe1\x6d\x11\xdb\x2d\x67\x84\x43\x13\x00\x07\x9f\x8e\x10\xcf\x86\xce\x19\x16\xbe\x6c\xed\xf0\x80\x82\x3b\x1a\x8c\xa0\x59\x99\xcf\x8e\x67\xb3\x18\xe0\x2b\x68\x80\x8c\xb9\x55\x92\x40\x89\xc1\x1c\x44\x7a\x36\x09\x9a\xb7\xa7\xe1\x18\x09\xf8\x8d\x57\x71\x9b\x8a\x23\xb7\x62\x24\x83\x68\xe4\x92\x2e\xb6\x4e\xa8\x3f\x7b\xd9\x90\xb9\xf7\x69\x68\x68\xc3\x49\x49\xc3\xc4\x23\x3f\x47\xf0\xd7\x9e\x35\x8d\x36\x6a\x0f\x4e\x7e\x28\xdc\x1e\x18\xb8\xf4\x73\xd8\xad\xa6\x6c\xc7\xbb\x7f\x8a\x27\x50\xe5\x63\x0e\xb9\x55\xa8\xe8\x28\x7e\xc6\x82\x81\x2a\xe2\x60\xca\x14\xbc\x2b\xa3\x6b\x38\xad\xcc\x3b\x88\xf6\x69\x36\x84\xc6\x25\xf3\x92\x26\x51\x38\x9b\x2c\xe4\x52\x4e\xf2\xe3\x97\xd3\x9b\xd3\xab\xbb\xf3\x73\x1a\xe5\x2a\x6a\x16\x36\xfa\x38\xf3\x00\x0f\x43\x62\x8f\x39\x9e\xcf\xe8\x98\x56\xf3\x77\xda\xd4\x16\x8d\x71\x8c\x95\x83\x59\x4d\xa6\x8a\x4f\x71\x37\x6d\xa8\xba\x13\x1e\x4a\x0a\x32\x47\x18\x30\xc9\x1c\xab\x54\xc6\xc9\x51\x4e\x34\xda\x81\x60\xd2\x82\x7e\x81\x9d\x63\xe0\x24\x2a\x71\x4c\x3e\x66\x45\xf3\x6a\x70\x4a\x69\xc7\xdf\xfd\x53\x1c\x67\x9f\xb1\xf7\x8c\xd6\x6b\xb5\x21\x23\xde\x4f\x82\x25\xa0\x93\x78\x35\xfc\xbc\x95\x8f\x13\x18\x01\x9c\x31\x32\x6b\x08\xb5\x48\x35\x32\x19\x7f\x8c\x4e\x29\x9b\x43\x9c\xcc\x22\xd8\xd6\xce\xb9\x78\xea\xa1\x39\x81\x35\x13\x07\x11\xef\x15\x91\x30\x87\x6c\x60\x3f\x31\xab\x7c\xdf\xf1\xec\xaf\x55\xc5\xde\x9e\x7f\xf8\x72\x73\x71\xf7\xc7\x5f\xad\x8a\xbd\x61\xf2\xc6\x7c\x4d\xb0\x54\x95\x25\x4e\xbf\xdc\xfd\x2a\xde\x7d\x3e\xbd\xbd\xfd\xfd\xfa\xe6\xec\xe7\x18\x6f\xe2\x78\x25\xc1\x86\x36\x44\x1c\x84\xa9\x71\x88\x9f\x2b\x67\x5b\xbd\x5c\x85\x22\x49\xa5\xcd\xb0\x7e\x4c\x1b\xb0\x8a\xaa\x15\x1a\xe6\xb5\x45\xfe\xc1\x1c\x4c\xac\x6a\x8d\xdb\x5b\x95\x01\xd7\x15\x70\x5e\x2c\xf2\x43\xa0\x36\x17\xcc\x16\x47\xc1\xaf\x6c\xdf\xd4\x70\x7a\x13\x0c\x55\x21\x42\x1e\x79\x17\xd4\xe6\x5a\xba\x1a\x61\x5e\x32\xe8\x39\xa1\xb2\x31\x68\xc1\x79\xa9\xd6\xe2\x2c\x3a\x65\x81\x03\x79\x6e\x54\xeb\xd6\x87\x95\x38\x50\xd3\xe5\x14\x66\xb3\xc1\xea\xc7\xb0\x52\xda\x09\xbb\x36\xb1\xd2\x97\x9d\xd3\xdf\xa9\x8e\xe0\x84\x43\x3f\xac\x65\xbd\xe8\x9c\x0a\x61\x43\x31\x33\x69\x60\x5e\xe8\x60\x20\x7e\x00\x6c\xb9\xe0\x36\xe4\xfd\x80\xdb\xfe\x66\x76\x9f\x72\xf3\x1e\xa4\x3e\xb3\x78\x4a\x37\xb1\xc5\x3e\xb7\x8f\x5c\x7d\xc3\x36\x44\x84\xf5\x10\x31\x46\xfb\xec\xe6\x91\xf0\x08\xce\x9a\x65\xce\xf9\x67\xc7\x56\x67\x8f\x16\xaf\x54\xd2\x63\x76\x78\xee\x94\xbc\x8f\xb6\x47\x82\x02\x88\x85\xb5\x73\xe9\x54\xcd\x30\xc1\x96\x72\x1b\x46\xb6\xda\x2c\x4b\x0f\x7d\x37\x8e\x42\x41\x2a\xd9\x2a\xb2\x99\xb7\xf3\x44\x14\x98\xf1\x2b\x1c\x7c\xbf\x64\x9c\x29\x4a\x87\x9c\x44\x5d\x29\x4e\x81\xa5\xba\x65\xce\x8d\x52\xc6\xaa\x26\xf3\x03\x0c\x47\x04\xfb\x60\xfd\xb6\x43\x61\xbf\xec\x11\xd4\xc8\x1e\x44\x5c\x39\xa5\xc5\xe7\x85\xdc\x62\x93\x21\x28\x67\x64\x33\x41\x40\x81\xb5\x0d\x88\xb7\x54\x94\x32\xb8\x94\x42\xe5\x4d\x3c\x4f\x83\xf2\xb7\x13\x26\x61\x99\x4c\x8b\xf3\x9f\xff\xe3\xf5\x6c\x51\xcd\x5e\xd6\x6f\x5e\xbe\x9e\xbd\x7e\xf3\xfa\xe5\x4f\x3f\xbd\x3e\xae\xaa\xe3\x37\x8b\x37\x3f\xa9\xd7\xc7\xd5\xfc\xef\x73\xf5\xb6\x7a\xf3\xb2\xa0\xeb\x0e\x6e\xba\xc0\x60\xdf\x53\xb2\x31\x3e\x64\xbe\x49\x3b\x43\xad\x05\x90\xbf\xa4\x19\x80\xa1\xbf\x37\xbd\xbd\x3d\xfc\xf2\x33\x99\xa4\x26\x61\xc7\x70\x3f\xa3\x23\x14\x77\x34\xed\x63\xca\x6a\x51\x81\x0c\xed\x06\x19\x2d\xa7\xd7\xbf\x70\x6a\xc6\x0d\x72\x4c\x29\x92\x80\x3b\x39\xcc\x2b\xff\x25\x09\xb8\x2f\x2e\x2f\x3e\x5d\xdc\xfd\xa5\xb6\x00\xfb\xa5\x27\xdb\xca\xc7\x42\x25\x65\x0f\x24\x65\xb2\x03\xe3\x4d\xd9\x0b\x99\x16\x42\x3f\x06\x06\x49\x77\x96\x52\x7b\x36\x9b\xc5\x11\xc6\x62\x95\xe1\xc5\xdb\xa8\x61\xf6\x43\x11\x17\xf8\x54\xfc\x3a\xe6\x89\xa8\xea\x98\x54\xb4\x65\x1c\x73\x0c\xfb\x66\xd5\x8a\x17\xb0\xa9\x31\x5c\x97\xe4\xa2\xcd\x54\xd2\x97\xe6\x5a\x66\x34\xf2\x53\x48\x2f\xf5\x5e\xbc\x7a\x29\x0e\xa4\x4f\xd0\x37\x9c\xb5\xe7\xce\x05\x78\x79\xad\x7c\xe5\x74\x17\xac\xf3\x83\x43\x83\x6d\x00\x0e\x63\x11\x1e\x9f\xda\x44\x28\xa7\x64\xb5\x1a\xd6\x31\x53\x39\x5d\x2e\x7e\x5d\x0f\x2a\x63\x3d\x01\xb6\x98\x7d\x11\xe7\xf1\x62\x6b\xeb\x78\x69\x3c\xf4\x8b\x08\xf8\x79\x8c\x5f\x24\x68\xfe\x19\xb6\x40\x20\xa1\xef\x54\xec\xd3\x91\xe2\x83\x99\x9e\xd9\x5d\xc4\xfe\x16\xd3\x98\x96\x40\xfa\xd2\x5d\xdf\x5b\x51\x82\x75\x61\x5d\xc3\xbd\xda\xa0\x79\x54\x55\xd6\xd5\x45\xd5\x94\x7a\xd0\x5c\x8f\x66\x1b\x5d\x6d\xb2\x6d\x8e\x28\xb7\x56\x3e\xd2\x93\x26\xf4\xf5\x61\x8a\x6d\x71\x5b\x12\x09\x6b\x29\x1e\xb1\xfb\x00\xba\x11\xc1\x3b\xcc\x81\xfc\x24\x8d\x41\x98\x84\xb0\x89\x13\x79\x31\x1e\x56\x2c\x48\x17\x68\x19\x11\x6f\x43\xf4\xf7\x2c\x7b\x22\x38\x81\x62\x32\xa8\x85\xb7\x48\x3b\xa6\x12\x8b\xdb\xf3\xbb\xb1\xb8\xfc\xfc\xe5\xf6\xd7\x04\x59\x00\x0f\x0d\x7e\x25\x06\xe0\xbc\x37\x65\x57\x12\x48\x29\xc3\x06\x92\x80\xc1\xe1\x3e\x9e\xdf\xed\x9a\xc2\x85\xe1\xcc\x26\x08\x46\x89\x28\x5a\xc8\x5d\x2a\xd0\x37\xbe\xbc\xf9\x22\x2a\xd8\x31\x02\x35\x81\x2f\x4b\xa0\x1b\xd4\x14\x83\xcd\x45\xbf\xc5\x64\xf5\x53\x60\xe4\x4a\xaa\x89\xc1\x06\x25\xc8\xc1\x45\x59\x53\xc0\x01\xae\x10\x88\x57\xe0\x28\x17\x03\x33\x64\x89\x37\x1c\x88\x13\x33\x57\xfa\x5b\x02\x97\x70\x31\x1f\x85\x16\x62\x55\x29\x96\x0c\xa2\x3f\xb3\x52\x65\x18\xcd\xf7\xf3\xe0\x24\xc7\xa8\x93\xa7\x81\x9e\x3d\x3f\xa4\x02\x0e\xcf\x31\xb5\x04\x58\x8c\x98\x9e\x23\x8e\x16\xa5\xca\x04\x32\xd9\x28\x78\x05\x6e\xb9\xed\x18\x65\x4d\xcc\xe7\x98\xa1\xc1\x3b\x83\x9d\xd5\x06\xc3\x8f\xc5\xd4\x51\x87\x62\x5c\x24\x67\x0c\xb4\xa7\xe0\x1c\x52\xe0\xec\xfc\x12\x61\x9c\x38\x20\x0f\x16\x1f\x99\xf2\xdb\xaa\x51\xb1\xdf\xc6\x82\x78\x0d\x2e\x1f\x62\x61\x44\x6f\x82\x6e\x52\xec\x39\x16\xd3\x15\xfa\x12\xf4\x60\x2a\xde\xbe\x30\x60\x38\xb9\x30\x9d\x4e\x87\x95\x20\x5b\xbb\xc6\xa2\xbe\x5f\x2e\xa9\x3d\x48\x36\xbb\x54\xa0\x48\x05\xda\xc6\x99\x79\xf2\x96\x46\x32\xa7\x38\x1a\x06\xb7\x16\x4e\x29\x71\x73\xfa\x29\x45\xa0\xa9\x8e\x12\x83\x5f\x1c\xdc\xdc\xda\xf5\x83\x79\x0c\xb7\x0f\xe2\x98\x3b\xe7\x7b\xc0\xa0\x87\x49\x22\xf2\x6c\xde\xa1\x54\x43\xdc\xe3\xa7\xd3\xff\xfa\x74\xfe\xe9\xfa\xe6\x0f\xf1\xf9\xfa\xf2\xe2\xc3\x1f\x27\xa0\xb4\x06\x62\x80\x42\x3d\x6b\xae\x7d\x66\x81\x43\x7d\x8e\xe2\x80\x04\x79\x64\x41\x58\xb4\xd1\xe0\x28\x51\x0b\xf6\xe7\x82\x20\xa3\x58\x0e\xe7\x18\x08\xf2\x60\x1b\x19\x74\xa3\x26\x8d\xeb\xc5\xe4\xe7\x38\x38\x22\xf4\x14\x8b\x1c\x90\xfa\x8f\x1d\xb8\x2c\x40\x65\x8e\xfe\xd3\x31\x96\xcd\xd2\x3a\x1d\x56\xe0\x64\xcb\xa6\x01\x3e\xd8\x1a\x09\x5c\x16\x18\x69\x47\x34\x6e\xdf\x9e\x66\xe2\xa4\xa9\x6d\x5b\x0e\x21\xf8\xa3\xa7\x67\x54\x3c\xfa\xbb\xb7\x8e\xe3\x5c\xca\x87\x85\xd0\x3c\xb7\x6c\x52\x85\xd2\x29\x1f\xe2\xd3\x08\x13\xd0\x6a\x63\x9d\xb8\xbb\xbb\xa4\x0a\xe8\xa4\x44\x26\x3f\x8b\x1a\xd5\x1b\x5f\x4d\x18\x90\x71\x44\x0c\xe1\x59\x4c\x1a\xd4\x9a\x9d\x12\xc7\x02\x51\xc7\xab\xdc\x44\xc9\x43\x95\x0b\xc8\x5b\x5a\xf9\x81\x92\x78\x6e\xe0\x04\x63\xc9\x0f\x18\xa7\xec\x05\xc7\x78\x0c\x15\xf4\xa2\xfd\x83\x47\x1e\xf8\x3e\xae\x27\x96\x0c\xc2\xcf\x69\x88\x47\x59\xc5\xe2\x4c\x16\x07\x3e\xa3\xe4\x60\xc8\x13\xe4\x11\xaf\x82\x79\x84\xff\xaa\x47\xcc\xf0\x98\x3a\x8d\xa4\x4d\xe5\x44\xad\x2a\x27\x5c\xd7\xfb\x95\x68\xf0\xbf\xf8\xfb\x23\xfd\xf1\x28\x1a\x6d\xbc\x72\x41\x34\x30\x96\xeb\x6c\x47\x17\x79\x59\xe7\x71\x3c\x1a\x3b\xfc\x0f\xa3\x31\x7b\x83\x09\x5a\xfc\x87\x3f\xaa\xf5\x62\x41\xff\xa5\x0f\xbe\xc9\xba\x16\xdf\x60\x12\x18\x7e\xa3\x9f\x6f\xc5\x1d\xdf\x8a\x01\x57\xf0\xfc\x15\x2d\x66\xd5\xe2\x1f\x74\xa7\xe0\x7f\x60\x1d\xc5\x38\x4b\x15\x10\x94\x1b\xff\x63\x1e\x85\x7a\x54\x95\xf0\xd6\x85\x22\x99\x1f\xd3\xf4\x27\x43\x99\xc0\x56\xc6\xe0\x48\x82\x7c\xc0\x83\x02\x7e\x96\x36\xba\x95\x0d\x30\x5e\x3e\x38\x19\x6b\xd9\x39\x55\x61\xae\x34\x7f\x85\x99\x95\xae\x73\xf6\x51\xb7\x92\x14\x51\xf1\xed\xc1\x20\x9c\x8c\xc9\x13\x9c\xc7\xe1\xa0\x0e\x29\x4a\x10\x2f\xd6\x2a\x37\x0c\xa3\x26\x26\xa8\x1b\xd1\xc5\x54\xd5\xfd\x96\xa3\xb8\x28\xea\xd0\x4a\x4b\x13\x2e\xe5\xd0\x2f\x69\x2d\xe4\x8d\x41\x50\x97\xac\x19\xc9\x61\x70\xc6\xa0\x54\xd8\x8c\x26\x17\x62\x17\x6e\x2d\xcd\x07\x67\x83\x7e\x77\x54\x54\x39\x23\xf1\xdd\xda\x9e\xbc\x01\x34\x90\x17\xaf\x7e\xe4\xf5\x88\xd3\xcf\x9f\xcf\xaf\xce\xc4\xf5\xd5\xe5\x1f\xe2\xd3\xf5\xd9\xf9\x8f\x5c\x9f\x27\xab\x52\xcb\xf2\x95\x66\x83\x05\x51\x3e\x69\x4c\xe0\xa1\x84\xa1\xa3\x40\x83\xad\x15\xd9\x8d\x18\x81\xe0\xd8\x9f\x36\x94\x73\x94\x5d\x4a\x64\x71\x2d\x0c\x98\x37\x18\x57\xca\xc8\x30\x7c\x6c\xf4\x6b\x30\x65\x22\x45\x07\x3a\x13\x94\x9c\x5c\x12\xce\xd9\x29\x8f\xfc\x89\x69\x04\x74\x36\xc0\x1d\x41\xc0\xf4\x22\x06\x21\x31\x20\x79\x50\xd6\x72\xb0\xb9\xb4\x55\x2e\xcc\xa5\xc2\x87\xdf\xa9\xa2\xa2\x7c\x89\x6c\xd0\x75\x41\x20\x6b\x51\xc7\x49\x8b\x46\x86\xe8\x9c\x7d\xd0\xd4\x83\xac\xed\xab\x55\xcc\x39\xd4\xbd\x93\x73\x6e\x11\x30\x60\xc0\xcc\x07\x65\x55\xbf\x58\x60\x72\x91\x8e\xda\x68\x9f\x0c\x7d\xca\xdb\x71\x42\xa6\x68\x4d\x77\x98\x0d\x7d\x2c\x48\xc8\xcd\x7c\x38\x28\x94\x09\xa2\x0d\xa6\x5c\x6a\x27\xa9\x5e\x45\x3d\x80\x53\x87\xc6\xb2\x8c\xfe\x66\x49\x69\x34\x7d\x53\x81\x34\x87\x2c\x17\x83\xb8\xc9\x1a\x83\x46\xcf\x6c\x9e\x0e\x5e\x35\x0b\x46\x7a\xf2\x86\xe3\xf9\x21\x61\x6f\x96\xd1\x92\x21\x47\x83\x6a\x0f\x38\x8c\xb7\x9d\xed\xb9\xfe\x05\xe5\xcb\xcd\xd9\xfb\x01\xe9\x19\x91\x16\xfb\x3a\x6c\x3b\xe3\x09\xfc\x98\x63\x05\xa9\xce\x05\x86\xcc\x50\x31\xe0\x63\x74\x65\xfa\xae\x14\x05\x8d\x95\x75\xbc\x7a\x98\xb7\x59\x50\xf2\x36\x2d\x7d\x67\xab\xc5\xb2\x97\x4e\x9a\xa0\x22\xfe\x8b\xa3\x24\x24\x5d\x56\x21\x74\x27\x47\xdc\x00\x48\xdb\xa3\x60\x3b\x5d\xf9\xa3\x72\x6d\x8b\xd8\x8e\xb0\x68\x9c\x32\x1d\x8d\x48\x57\x95\x38\xe9\xbb\x22\xc8\x82\x8a\x98\xd8\x17\x2f\x41\x1f\xfc\x80\xb9\xeb\x44\xec\xe5\xbb\xa7\xd2\x2e\xf6\x0e\xe3\x78\xa9\x16\x71\xfb\x8a\x84\x31\x02\x9e\x3c\x38\x44\xac\x30\x96\xee\x10\x19\xae\xd3\x5e\xde\xd2\x5e\x62\x05\x43\x20\x17\x8b\x58\x06\x59\x9a\xc5\x04\xb6\x5c\x62\x38\xe6\x02\xd1\x66\x98\x44\x8d\x2b\xa5\xb2\x0e\xb3\xeb\xc8\x4c\xc5\x2d\x58\xc2\xd7\xb7\xd1\x9e\xc0\xf1\x17\x4d\xef\x57\xc0\xd1\xc5\x13\xc6\x64\x33\x53\x78\x3e\x5e\x8f\x67\x82\xdd\xed\x1a\xcb\x0d\x08\x24\xb6\x9f\xb2\x5b\xbe\xef\x08\x70\x4f\x62\x3f\xe3\x91\xe1\x70\xb3\x16\x34\xf6\x84\x8d\x27\x24\x06\x1b\x4d\x0d\x07\x8a\xae\x6f\x69\x3e\x19\xcb\x82\x86\x8c\x0e\x84\x3c\x98\x8a\x5f\x30\xb3\x35\x45\x05\x87\x28\x67\x3e\xe7\x04\xcd\xa1\x14\x0e\x51\x8c\xad\xcf\x72\x1f\x1b\xbb\x9c\x8a\xdb\xc6\xae\xc7\xe2\x56\x2e\x28\x63\x48\xf7\x78\x55\xc5\x91\xf0\x4a\xd4\x4e\xc0\xfb\x83\xa4\x10\x55\x6c\xdb\x56\xfb\x01\x66\x2f\xa1\xf1\xf6\xe2\x58\x7b\x63\xc2\xe2\x62\x55\x76\xf4\x95\x11\x85\x80\xb1\xfb\x2a\x0d\x13\x31\x4b\x84\x94\x62\x74\x01\x15\xfd\xc8\x85\x02\x51\x87\x70\x39\xc2\xec\x80\x46\x1c\x56\x54\xb2\x07\x05\x07\xd8\xa9\x46\x3e\x46\xf4\xc9\x68\x3f\x42\x71\x22\x90\x31\x12\x78\x47\x6c\x64\x72\x0f\x78\x05\xe9\x4e\x40\x42\xa4\xfc\x98\x42\xfc\xdc\x29\xb2\xa8\x4c\x26\x37\xa9\x98\x48\x93\xda\x42\xc0\xa0\xba\x56\x92\x60\xb6\xc8\x51\xb8\xb4\xc6\xfa\x9c\x54\x1e\x08\xee\x27\x15\xc2\x0b\x9f\x9a\x36\x60\x5b\xa3\x31\xe1\x73\x6c\x92\xe2\xc1\x49\xb7\xa1\x76\x5b\x7b\xc4\x15\x7b\xf1\x46\xda\xbd\xc6\xae\x19\x7c\x32\xd7\x01\x29\xeb\x62\xc2\x33\xee\x18\xed\xe7\x27\x3c\x3f\x2a\x48\xdd\x78\xd1\x95\xa2\x66\x68\x66\x48\x17\x74\x85\x41\xe7\x28\x83\x24\xa2\x2d\xbf\x4d\x2b\xdb\x1e\x75\xd6\x07\x12\x4a\x93\x62\x41\x93\x5a\xb5\x1b\x1f\xa8\x91\xd9\x2a\xb4\x4d\x8c\x31\xf5\xc6\xf7\x4e\xf1\xfc\x13\x07\x4d\x41\x66\xb0\x58\x21\x0e\xc7\x95\x8d\xca\x8f\xe2\xc5\x5b\x57\x16\xd8\xde\x28\xa3\x4b\x65\x58\xc4\x25\xb9\x29\x80\x75\x69\xa8\x31\x43\xb4\x73\x4f\x08\xd8\xba\x61\x57\x88\x03\xb9\xd3\x04\xc3\x3a\x7c\x0c\xe2\x31\xf2\x57\xd4\xfd\x14\xf6\x8c\xb4\x13\xf3\x0d\x67\x93\xa9\xa1\xd5\xc5\xd1\xf5\xa0\xe3\x0b\x89\x1f\x6d\x88\x5f\x08\x8f\x36\xb0\xea\x7c\x12\x37\x98\x8f\x68\x2c\xec\x8e\x25\xa4\x43\x64\x8a\x52\xce\x6e\xb5\x40\x4c\x3d\xe9\x16\xfa\x31\xa1\x49\x40\xf5\x53\x78\x16\x2c\x4f\xe9\xa9\x01\x44\x31\x5d\xa2\x1f\xe6\x4e\xb2\x54\x03\x29\x27\x39\xae\x86\xf3\xc0\x18\x82\x13\x85\xb5\x47\xb2\xe8\xe0\x25\x4f\x25\x86\x40\x92\x35\xde\xea\xa0\x97\xd4\x8d\x89\x74\x3e\x28\x58\xea\xdb\x50\x66\x1f\x62\xb1\xe5\x36\xf4\x26\x45\x04\x61\x0a\x9d\x23\x5b\x24\x2e\x1e\x43\x51\x73\x45\x8d\xaf\xb0\x36\x25\xb6\x6e\x93\xda\xe4\x16\x1f\x58\x95\x00\x26\xcd\xfb\x8f\xb7\xa7\xff\x3a\x87\xad\x7c\xff\x91\x5b\xd3\xb2\x7a\x2f\x4a\xfb\x8a\x68\x60\x91\x0f\xe3\x41\xb8\x20\x9c\x00\xde\xc0\x65\x32\xe2\xa9\x55\xa9\xd3\xed\x22\xe5\xec\x62\xec\x0d\x94\xa6\xf4\x51\x6f\x46\x36\x36\x6a\x6f\x0a\xe4\xea\x9c\xac\xa8\x35\x58\x50\xae\x45\x80\xc0\xf0\xf9\x18\x2d\x02\x06\x2b\x3b\x33\x82\x1d\x47\x82\xf3\x55\xce\x5f\xdb\x85\xe0\x56\x9a\x81\x5a\x11\xf8\x20\x7c\xa5\x8c\x74\xda\x8a\x83\xa2\x16\x3b\x8a\x24\xe2\xc0\xd8\x34\xf8\x70\x80\x7a\xc4\xc8\x15\x23\x0b\x73\x34\x8f\x43\x71\x05\x0c\x70\x2a\xae\x53\x22\xb0\x51\x58\x6f\x08\x8e\xd6\x40\x4a\xb3\x45\xe4\x51\x2f\x91\x9b\xf4\x3c\x80\xb7\xb0\x85\x47\x23\x63\x27\x05\xd9\x26\xd6\x4c\xe8\xdc\xc5\xf6\xad\xa7\xa9\xb6\x3a\x7e\xfe\x8c\x89\x33\x4d\x27\x0b\x4c\x75\x26\xe3\xb0\x88\x3a\x8e\x10\xca\x96\x6b\xba\x05\x8f\x44\x87\x66\x83\x8c\x46\x46\xed\x80\x87\xd6\xa5\x2c\x4a\x15\xe6\x4b\x67\xd7\x3e\x16\x06\x15\x6d\x5a\x95\x03\x1f\x50\x2e\xd5\x10\xf2\xbf\xb2\x6b\x54\x47\xd6\xdd\xfb\x93\x94\x2c\x69\x55\x3b\x8f\x05\x04\x65\x08\x37\x25\xc1\xc8\x32\xa0\x4d\xe5\x16\x3e\x71\x15\x07\x7a\x01\x92\x20\xfe\xb9\x92\x9e\xed\x6c\x70\x6a\x74\xcc\xa7\x38\x85\x36\xed\xb8\x7c\x04\xf3\x2d\x5a\xd4\x21\xd9\xbc\x0c\xe8\x3a\x2c\xe6\x8d\xf1\xd0\xd8\x9d\x1c\x13\xe3\x8e\x22\xc9\x65\x4a\x88\x40\x9d\x6c\x52\x97\x1f\x12\x57\x27\x14\xe3\x4e\xee\x24\x93\x6a\xcc\x53\x4d\x98\x08\x8e\xe5\xaa\x9a\x9a\xe1\x8d\xf6\x73\x5f\xd9\xdc\x0d\x5d\xc8\x14\x6c\xf0\x11\x2d\x3b\x20\x1e\x41\x77\x52\x17\x6b\x3a\x79\x14\x82\xcc\x25\xb2\xd4\x89\x36\x09\xfb\xe1\x08\x45\x2b\x9d\x62\xba\x54\xd8\x25\xbd\x1a\x84\x33\x09\x9c\x1b\x72\x4d\x37\x67\xf4\x11\x42\xcd\xc5\xab\x69\xe2\xc5\x60\xb1\xbd\x49\x19\xe7\xc8\x6d\x80\x54\xd1\x5d\xe0\xf4\xfa\x17\xcc\xc3\x12\x99\x12\xcc\x64\x04\x57\x4c\xa4\x5d\xc4\xa3\x33\x29\x46\x3f\x9e\xcd\x76\xbf\x47\x40\x09\x90\xec\xed\x6b\xc6\x5c\x9a\xbc\x66\x4e\x94\x2f\x50\x09\x12\x09\x63\x6f\xdd\x41\x7f\x1a\x2e\x13\x48\x4e\x5f\xac\xd3\xef\xbb\x5c\x86\x3f\x38\x3a\x68\x3e\x2d\x55\xf0\xe8\x53\x01\xc1\x64\x75\x4f\x0e\x3c\x45\x36\x8a\x36\x37\x9b\x58\x1d\x98\x46\x60\x8b\x8f\x32\x09\xe9\xa0\xb3\xb3\x38\xda\x17\x95\x93\x7e\xa5\xfc\x58\x28\x46\xce\x81\xf7\x81\xf8\x5f\x23\xd4\x63\x78\x4d\xbd\x67\xa2\xb7\x29\x30\x6f\xc7\xf5\x68\x96\xbc\x52\x76\x23\xfe\x89\xbb\xa0\x62\x8d\x86\x38\x88\xc9\xd9\x08\x5e\x7f\x11\x06\x93\xe3\xb9\xa0\xa7\x9b\xe7\x81\x8e\xf3\x9c\x0a\x78\x9f\x73\x7a\x89\x4d\xa8\xda\x29\x79\xbb\x87\xa5\x4f\x02\x26\xa9\xd2\xa8\x97\xd4\x23\x62\x11\x38\xac\x8c\x31\x54\xa6\x8d\xf6\xd9\xc1\x46\x14\x96\xac\x41\x1d\xb5\x7d\x95\x3c\x23\x59\x68\xe4\xb2\x07\x80\x30\x76\x4d\x3d\xc2\x28\x89\xa7\xb7\xc4\x8f\xf6\xc4\x07\x94\x70\x7b\x86\x13\x9e\x07\xd6\x06\x67\xd1\x49\xc4\x26\xe7\x14\xd0\x4f\x2a\x08\xf8\x11\xa6\x3a\xc9\x43\x66\xd3\x6e\x03\x1b\x29\x8b\xa7\x95\x33\x62\xee\xa1\x90\xdc\x4e\xba\x9c\x2a\xa7\x84\x6a\x35\x01\xb6\x24\x8a\xec\x60\xd9\x87\x8e\xe9\x2d\x17\x45\x2d\x9a\x1d\xd8\x73\x35\xc3\x5d\x38\x8f\x96\x12\x86\x3c\x2b\x63\x59\x8c\xd2\x93\x78\x7b\x07\x7b\xc2\x3d\xbe\xa8\xc5\x04\x95\x14\xc1\x7c\xa6\xd9\xa0\x7d\x76\x54\x9c\x14\xc3\x68\x3c\x11\x1c\xac\xbc\xc1\x7e\x0c\x7a\x6f\x80\x89\x8e\xf6\x3d\x9c\xed\x3d\xd1\x07\x32\x50\x18\x8f\x85\x29\x18\x7c\xf8\xa0\xb8\x6d\xbb\xc7\xcf\xf6\x8e\x27\xc8\x74\x71\xfc\xb9\xa5\x54\x61\x83\x61\xfb\xdc\xad\xa2\xb9\x0c\x93\xd9\x65\xd5\xe9\x20\x05\x4b\xb8\xf1\xae\x6b\xb4\xf2\xd1\x55\x7b\x2a\x29\x2e\xeb\x22\x26\x90\xec\x89\x34\xd5\x88\xb3\xe1\x10\x63\x7c\xfd\xc4\x60\x05\xd3\xd1\x13\x7c\x46\x41\x93\x1f\xa2\x45\xbe\x9c\x8a\xdb\x0f\x37\x17\x9f\xff\x52\x67\x4a\x6a\x4f\x44\x91\xf4\x3e\x15\x5b\xd1\x1b\x0c\x2e\x7b\x29\x08\x02\x81\x71\xd0\xa2\x72\x65\xd0\xc9\x2e\xb6\xce\xda\x1a\xe2\x69\xe4\x00\x32\x35\xa2\x68\xd2\xd0\x39\x84\xa6\x4d\x31\x48\x32\x21\xd2\x03\x22\xd4\x03\x87\x4f\xc9\xf5\x98\xc6\x67\x20\x39\xee\xc1\x9f\xbd\x72\x5a\x6d\xf1\x78\x51\xc7\x2a\xc9\x71\x89\x21\x3b\x9e\x89\x7a\xac\x94\xaa\xfd\xf7\x16\x85\x2c\x40\x32\x97\x68\x2c\x7e\xbb\xb8\xbc\xa4\x66\x1a\xbf\x7e\xb9\x3b\xbb\xfe\xfd\x4a\x5c\x5d\xa3\x49\x5f\xe6\x6d\x32\xa6\x8a\x85\x0e\xf6\x0d\x49\xa5\x0e\xa9\x23\x33\xe2\x86\xe3\x74\xb8\x82\xba\x46\x66\xd9\xa8\x10\x1d\x0a\x52\xa3\x19\xa0\x88\x28\x79\xdc\x17\xd2\xeb\x14\xe8\x07\x35\x22\x37\xd4\xd9\xa0\x0f\xa2\xb6\xeb\xb2\xab\x7a\x0a\xc7\x4a\xc4\xd1\x0d\x86\x14\x6b\xb4\x92\x65\x03\x9c\xbc\xa1\x28\x77\x2a\x25\xe7\xb9\x45\xdd\x80\x87\xbf\xb6\xca\x83\x76\x89\xbd\x8e\xd6\x92\xd3\xc3\x84\xa1\x0a\xbd\x93\xd4\xfb\x8c\x2a\x8a\xb9\xb4\x24\x8f\x36\x8d\x48\xd5\x54\x2c\x89\xd1\x5b\xa3\x96\x14\xb1\xce\x3d\xa0\x7b\x93\xdb\x3f\xc4\x7d\x89\x9a\x90\x1b\x1d\xfb\xe9\xa8\xe9\x25\xd6\x9a\x4d\x28\x51\xfd\x86\xc0\x31\x3f\xfc\x11\xb7\x97\xd7\xbf\x8b\xcb\xeb\x8f\x7f\x15\x6a\x9a\x2b\xe1\x6f\x1b\xbb\x16\x97\xb1\x2e\xc8\xa7\x78\x22\x70\x7b\xe4\x45\xdc\x4e\x62\x31\xec\x58\x50\xb6\x4e\x1b\x72\x19\x6d\xe9\x16\xe7\x25\x28\x74\x7c\x59\x06\xd0\x0f\xfc\xf8\x32\xc3\xc9\x9d\xa4\x65\x73\xaf\xcb\xe0\x36\xe1\x84\xc6\x11\x6a\xc4\x56\x2b\x9c\x95\x12\x54\x30\x66\x0c\x20\x85\x1c\x63\x61\x48\x86\x61\xa4\xe0\x28\xcd\x2c\x36\x08\x27\x9e\x39\x28\xdb\xe2\x00\xf7\x91\x59\xb5\x2c\xf1\x73\xe5\xa6\x51\xfb\xba\x95\x8a\xfe\x3c\xa8\x5a\xf0\xe6\x39\x1a\x07\x47\x03\xbb\xd0\x73\xc5\x30\xf9\xb8\xb1\x9d\x4f\x92\xe7\x4a\xe2\xab\x4e\xd8\xf6\xd8\xed\x52\x43\xa0\x11\xbb\xc6\x8d\x20\x72\xac\x6d\xd1\x73\xf9\x84\x4b\xdd\x9b\xc6\x27\x63\x70\x5d\x38\x86\xc3\x3d\x18\x93\x18\xac\x9c\xcd\xa0\x79\xcb\x5b\x9a\xcd\xe0\x45\x6a\x25\x14\x97\xcd\xaf\x54\x20\xcc\xe0\x38\x95\x47\xd2\x9a\xd2\x64\x52\x59\x85\x32\xcb\xb0\xe2\x13\x82\xb5\x64\x34\xff\x69\x14\x5d\x04\x20\xa3\xa1\xd1\xac\x40\x28\x22\x8e\xd8\xd4\x8a\x53\x28\xe4\xa6\xd9\x12\x87\x3f\xda\xa7\xb2\x6a\x76\xc7\xe1\xa6\xdc\xc8\x64\xa7\x1e\x37\xca\x70\xf5\x88\xdd\x21\x69\x85\xc3\xc5\x7b\x9b\xde\xba\x04\x17\xfe\xd9\xeb\x07\xd9\x50\xa3\x89\x60\x8b\x44\x4e\x19\x0c\x2a\x8e\x35\x03\xdc\x06\x18\xf4\xb8\xd8\x71\xaa\x31\x93\xb9\xa2\x08\xdd\x0d\xec\x1f\x1e\x0b\x50\xa8\x49\xb7\x5d\x70\xc4\x98\x97\x33\x1d\xc1\x30\x8d\x5d\x4e\xb0\x46\x0b\x61\x2b\x13\x74\xe4\x12\x50\xae\x7c\x4f\x42\x02\x1f\x12\xe2\x11\xc9\x3f\x15\xff\x8b\x2b\x21\xa8\x8f\xec\x00\x54\x5b\x59\xe3\xfb\x56\x15\xd6\xff\x1f\x29\x1e\x5c\x35\x52\xb7\x11\x82\x14\x0b\x8d\x76\xd9\x10\x44\x0d\x48\x9a\x9b\xf3\xdb\xf3\xbb\x3c\x5f\x84\xc9\x2b\x23\x8e\x5f\xfe\xe3\xaf\x68\xfa\xd3\xbb\xf3\xab\x0f\x7f\x88\x4f\xd7\x57\x17\x77\xd7\x37\x3f\x10\x5b\x43\x89\x15\x03\x28\x45\xeb\x57\xdf\xcf\xa3\x81\xcf\x99\xda\xa2\x07\x77\x29\x64\xf2\x3b\x86\x06\xce\x5f\x65\x1b\x4c\x66\xa3\xd9\x83\x5d\xf2\x48\x6e\x24\x0b\xde\xdb\x1e\xf7\x0e\x3d\xf9\x38\x01\xb4\x34\x86\x0d\x0f\xe9\x34\xff\x4b\x53\xe5\x61\x5c\x65\x3a\x4d\x54\xb0\x9e\x12\x4b\x28\x73\x13\x64\x99\x9d\x7c\xd4\x4b\x04\xe8\x95\xd4\x5e\x46\x9b\x20\x96\x4e\x76\x2b\x2a\xc1\xb7\xf3\x20\x35\x6c\x18\xe6\x4e\x72\x62\x81\x29\x10\x33\x17\xbe\xec\x91\x4d\x51\x37\x60\x1c\x0e\x52\xd2\xa1\x90\x9c\xb4\xc0\xe2\x1c\x34\xa5\x77\x0a\xb3\x33\xdc\x72\x50\xff\x5b\x94\xd7\xd0\x62\x33\x5d\x26\xbc\x31\x13\x90\x8f\x7e\x65\x9b\xfa\xd9\x34\x3b\xc9\x05\x1d\x8a\xca\x70\x1f\x3b\x39\xd0\x3b\x31\xc2\x4a\x6d\x6f\x38\x4a\x9b\xde\x19\xf0\x17\x17\x8b\x9d\x9a\x8f\x27\xd8\x03\x3b\x6e\x72\xab\x53\x8a\xd3\x50\xd0\xa0\xb5\x3e\x34\x9b\x02\xab\x05\x56\xc8\x82\xeb\x20\xc8\xe9\x2c\x02\x76\xf4\x86\x1c\x12\x82\xcc\x30\xf4\x82\xa3\x20\x31\x14\xb4\xdd\xee\x55\xb7\x9d\xac\xc2\xb8\x8c\x78\x52\x7a\xa1\x45\xf0\x0f\x67\x51\x5b\x25\x3d\x66\xc5\x31\x4d\x23\xe6\x7a\x89\xde\x16\xb5\xc7\x31\x98\x8a\x2e\x56\x82\xde\x29\x35\x07\x1b\x66\x60\x23\x57\x67\x77\x85\x99\x6e\xb4\x9f\xde\x1f\x76\x7b\x7e\xf7\x9d\x3d\x7a\x57\xee\xef\xcf\x7b\x40\x88\xf8\x76\x8c\xe7\x6f\xfa\x91\x75\x22\xce\x31\xc4\x6c\x6c\xd0\x8b\x58\x4d\xfb\xe3\xb3\x9e\x3d\x71\xbc\x71\x23\x3e\xf7\xf3\xa3\xdb\x7e\x9e\xf1\xdf\xd8\x14\x14\xfd\xc8\xe8\x89\xd3\xab\xc0\x12\x50\xcb\x77\xb2\xca\x4d\x7c\x63\x99\x0f\xbe\x2f\xab\xea\xb9\x10\x45\x86\xe7\x32\xc2\xe5\x7c\x7d\xaa\x84\x2a\xab\x15\xef\xd5\x06\x1f\x11\x27\x31\x58\x61\xd9\x0c\x85\xd2\x23\x34\xf1\x9c\xd2\x00\x6e\x39\x3b\xbf\xcc\x47\x54\x58\x83\xf3\xde\x5b\x58\xbb\x47\x4d\xe4\x92\xef\x77\x16\x71\x92\xb3\x31\x18\x01\xc0\x11\xf1\x8d\x17\xd1\xf3\xca\x65\xa4\x70\x1c\x99\x5c\x94\x40\xfd\xfc\xe5\xfd\xe5\xc5\xed\xaf\xe2\xeb\xd7\x38\xe7\xff\x7f\xf6\xf5\xeb\xc9\xc2\x5a\x51\xe3\x4b\x9d\x06\x17\xe0\x72\xf0\x82\x1a\xab\x0e\xed\x33\xc5\x23\x8c\xfe\x49\xee\xbc\xdf\x79\x9b\x18\x6f\x1d\x21\x0c\x25\x9f\x6b\x84\x84\x4b\x7c\x19\x11\xb0\x06\x28\x3e\xf8\x93\x5e\xa6\xa3\x0c\x65\xbb\xb0\x7f\x7c\x44\x40\x54\x2b\x89\x60\x59\x6e\x9f\x21\x7e\x43\x40\xd5\x6f\x43\xf2\x8f\x0b\x02\xa0\x92\x2a\x16\xfb\xae\x9e\xff\xfc\xf5\xab\xe8\x9c\x5a\xe8\x47\xe0\x08\x71\x1e\x87\xa0\xfc\xc7\xf7\x86\x20\x72\xec\x0e\xb1\xc4\x21\x3e\x2a\xa3\x1c\xb6\x02\x60\x7f\xe9\xc0\x58\x33\x09\x9b\x2e\xc5\x5c\xab\x43\xb2\x6b\xcf\xce\x2f\xc7\xe2\xfc\xbf\x3e\x5f\xdc\x9c\x8f\xc5\xcd\xf9\xd5\xe9\xa7\xf3\xb1\x98\x4e\x71\xac\xff\xc0\xb1\x6e\xf9\x95\x23\x45\xd7\xc3\x06\xbf\xb8\xd4\x3e\x0c\x3e\xf6\x74\xbd\x1a\x7e\xba\xc2\x4f\x7f\x95\x7e\x35\xf8\xf8\x1b\x5d\x6c\x1d\x16\x70\x6f\xdd\xf3\x88\x5f\x9e\x23\x28\xb1\x8e\xfb\x78\xc0\xff\xa6\x46\x53\x65\x1f\x0d\x89\x4c\x4a\x30\x46\x7f\x08\x63\x28\x1a\x83\x11\xc1\xcf\x8e\xc1\x7d\x01\xe0\x6e\x9d\x01\xc4\x03\x20\x2e\x0e\x77\x4a\xa8\xc2\x46\x4b\xc2\x1c\x2e\xff\xa3\xf1\xab\x6f\x8f\x45\x87\x01\x0c\xc5\x9c\xfe\x76\xbe\x17\xdb\xa0\x53\x5e\x27\xd6\x28\xd0\x93\x19\xa2\x08\x6a\x71\x8f\x18\x71\x12\x19\x62\x42\x57\xec\x89\x80\x9d\xbd\x41\x70\xf3\x8b\x07\xf0\x5d\x92\x1c\x61\xe5\x1e\x6d\xb6\xc5\xc6\x84\x30\x56\xb4\xe2\x8a\xd7\x75\x65\xe6\x64\x5f\x76\xf0\x3e\x83\x22\xdf\xb4\x25\x4f\x44\x6c\xa7\x80\x32\x82\xe7\x1a\x0b\x93\xd0\x30\xe7\x57\xb9\x68\xac\x4c\xab\x89\x8e\x11\x3c\xe4\xbf\xd7\x22\x66\xbb\x4d\x19\xb1\xb8\x91\x2d\x25\x8c\xf9\x10\x3d\x4d\x12\x71\xde\x2c\x07\x73\x11\x2f\x4f\x44\xf1\x52\x35\x1f\x9c\x92\x6d\x8a\xe2\x31\xdb\x20\x58\x0f\x0c\xb0\xca\xe9\x39\xc3\x78\xab\x95\x34\xf4\xc6\xb8\xf2\x07\xa1\x2e\x5b\x52\x26\x8e\xf2\xe3\xb9\x3d\xd2\xd7\xef\x87\xbd\x19\x07\x94\x1d\x90\x75\x50\x44\x88\x56\x95\x67\xad\xce\xaf\xfd\x1c\x76\xfc\x8f\xae\x4d\xfc\x7b\x25\x19\x08\x6e\x1f\x94\x5b\x29\x59\x3f\xf1\x4a\x1f\x1c\x0e\x8f\x64\xcc\x32\x94\xef\x84\xb0\x0b\xf1\x1b\x70\xcb\xf9\x18\x4c\x75\x5e\x46\x6e\x53\xd3\xe8\x07\x4c\xb7\x8c\x9e\x59\xf0\xde\x8f\x1b\x7a\x8b\xd3\xb3\x7f\x9d\x5e\x7d\x38\x3f\x8b\xa5\x61\x3f\xb8\x1e\x74\xeb\xaf\x14\x2b\xa7\x97\x59\x54\xb6\x46\xda\x53\xd4\x96\x4d\x7f\xb5\x58\xe8\x0a\x7b\xd0\x12\xb0\x24\xb8\xbe\x42\x92\xc4\xc4\xc0\x86\xfb\xc5\x83\x87\x87\x6d\xa4\x73\xbd\x8f\x32\xc1\xe9\x68\x24\x85\xd8\x51\xc3\x63\x77\x29\xb7\xc9\x91\x00\xf6\x3c\x65\x7a\xc3\x4b\x32\x29\xf0\x20\x79\x95\x3f\x48\x2f\xb9\x2a\x10\x84\x4f\x41\x39\x93\x55\xe9\xa7\xa3\x95\xf4\x2b\xf4\x48\xbe\xe9\x0e\x0e\xd1\x84\xe7\x25\xde\x1c\xbf\xdc\xfd\x92\x6c\xcf\xb7\xaf\xe9\xfd\x01\xad\x6e\xa4\xa3\x58\xdc\x8a\xf3\x1b\xb4\x4a\xb8\x96\x43\x62\x8d\xb7\x89\x7a\x54\x20\xc9\xad\x03\xd6\x45\x03\x2f\x32\x63\x3d\xb5\xd6\x67\xf4\x02\x99\x25\x64\xae\xf3\x2d\x4e\x81\x97\xaa\x4c\x48\xb6\x03\x5a\xf0\xbd\x67\xa9\xc9\x99\x38\x78\x2e\x99\x88\xc3\x65\xa3\x0b\xe8\x4f\x46\xb8\x92\xe7\x96\xbc\xf3\xe5\x60\xc9\x0a\x8d\x28\x7a\x97\x2e\x4f\x0a\x17\xc7\x26\x55\xc2\x36\x56\xd2\xab\x93\xd4\xe1\x45\x6d\x4b\x48\xbb\xe0\xd6\x61\x28\xfe\x58\xf2\x71\xda\x26\x96\xf4\x63\xef\x0b\x0c\x82\x38\x59\xeb\x47\x71\x3c\x8b\x46\x8e\xe3\xa6\x5e\x76\x21\xde\xbe\x26\xdc\x0d\x75\x88\x8d\x37\x4d\x77\xfc\xfc\xa1\x57\xc1\x29\xf7\xdc\x86\x8b\xab\xc0\xcc\x76\xaa\x97\xeb\xab\x4a\xff\x2f\xbd\xac\x37\xae\x3f\x96\x86\x10\x90\x25\x52\x63\x3a\xf2\x8a\xe8\xa8\x4d\x80\x5f\x4b\x1a\x3f\xcd\x3c\xd4\xfe\x45\x63\x23\x67\x9f\xb4\x70\xc1\x46\x39\x75\x96\x19\x0a\x01\x4b\x25\xfe\x7a\x97\x7f\xd0\xc4\x8c\x7b\xb4\xcd\x32\x65\x30\x86\x5c\x00\xd5\x28\x2a\xf6\x46\x9f\x35\x4f\x04\xe7\x91\x5f\x89\xb4\xcb\x56\xdf\xe2\x8a\xb7\xd9\x0a\xfc\xfc\x9d\x2f\x4b\xb6\xfa\x75\xd3\x29\x77\x69\x97\x97\x76\x09\xd3\x76\x5e\x6d\xb3\x3a\xa6\x0f\xe8\x49\x74\x24\xe2\x8e\xc5\x17\xfa\xe2\x5e\x1d\xbf\xe5\x0b\x41\x08\x2b\x17\x63\x49\x66\xf0\x80\x2c\x10\x9e\x7e\x54\xe5\x2c\x18\x9d\x83\xda\xd0\xd8\xea\xaf\xb2\xe6\x41\xb9\x50\xd4\xc4\x8a\x5a\x99\x9d\x31\x86\x5d\x62\x06\x7e\xf2\xf1\x5b\x0e\x24\x05\x1b\x62\x99\x5b\x83\xd9\x58\xf2\x36\x25\x47\xc4\x49\x5b\x47\xbc\xc8\xee\x23\xc8\x27\xcd\xd5\x8f\x49\x12\x17\x4e\x7e\xaa\x70\x4a\x1e\xf3\x7f\x8b\x57\xf8\xf8\x82\x9f\x57\xf1\x7d\x5b\x73\x65\xd4\x42\x07\x9f\x21\x08\x6c\x36\x27\x19\x9f\xb8\x28\x06\xa3\x7d\x94\xa7\x18\x76\xb7\x96\x40\xd5\x9f\x7f\x39\x3d\x3b\x1b\x63\x8c\x51\x57\x2b\x78\xec\xf5\xc1\xd5\x61\x8e\xd3\x32\xd9\xd3\x49\xc1\xc9\xd2\x14\x59\x7c\xe3\x2b\x5e\x6b\xca\x76\xfc\x37\x57\xe3\x22\xb3\xe2\x0b\x64\xb8\xa9\x0a\x6c\x46\xa5\x9c\x21\xdc\x32\xcd\x55\x17\xea\x24\xf5\x37\xc7\x78\x67\x14\x3e\xd4\x71\xc5\x6c\x4a\x96\xe0\x0c\x4a\x25\x5d\xad\x8d\xc4\x34\x1d\x8b\x82\x99\x98\x88\xe3\x37\xf0\x78\x94\x39\xd3\xd1\xaa\x69\x26\x34\x7f\x64\x66\xe2\xb6\x57\x1c\x6e\x3b\xa5\x86\xfa\x4e\xc1\x79\x06\xba\x60\x96\xf1\xb8\x8c\x86\xb0\x81\x7c\x3c\xdb\xea\x91\x66\x17\xb8\x36\x8e\x36\x95\x87\x7a\xa5\x9a\xae\x18\x32\x81\xac\xc8\x7d\x82\x8f\x05\xd5\xde\x1c\x04\x2e\x7d\x68\x65\xd7\x91\x71\xd5\x4d\xf0\xbd\x86\xa3\x7d\xb2\xbc\x82\xe5\x37\xe3\x1c\x12\xcd\x8b\x9b\x35\xd8\x70\x6d\x62\x2e\x1a\x1c\xa7\x8f\xe0\xf6\x5a\x57\x61\x5a\x1d\x0e\x9d\xd2\x46\x7e\xdb\xe4\x99\x9d\xd0\xd4\xf0\xf5\xec\xc9\x53\x05\x6d\xe4\x7a\x13\xeb\x00\xf2\x03\x23\xba\x0c\x03\xb8\x3c\xc2\x38\x8f\x90\xd7\xbb\xe7\x83\xea\xfc\x1e\xbd\x28\x29\xc6\xa3\xd0\xc2\xd7\x59\x42\xc7\x4a\x6c\x7c\xc9\x2a\x85\xfd\xe3\xfd\xf8\xe2\xce\x07\xec\x4d\x45\x55\x83\xe9\xf5\x55\x83\xe3\xc3\xf0\x9a\xd1\x7e\x0c\x64\xe6\xa9\x3e\x09\xc7\x2d\x15\x41\xb9\xbd\xc7\x33\xdc\x43\x3f\x00\xf7\x96\xe7\x0d\x2b\x88\xf9\xc5\x1a\x34\xcb\xbc\xa5\x35\xd5\x4c\x49\x32\x8b\x16\x4e\x29\xf2\x0d\x70\x86\xc8\xff\xd1\xad\x9e\x0e\x01\x9e\x27\xdc\x2a\x62\x8f\x86\xce\xab\x37\x76\x6f\x50\x0a\x89\xc5\xb1\x31\x48\xc5\xd9\x6c\x12\xf6\x18\x66\xe7\xb3\x42\xc7\x0b\x0b\x44\xc2\x8a\x35\x3b\xbe\x65\xa3\x68\xe9\x50\xfa\xf0\x14\x13\xee\x9a\x0d\x3b\x1b\xd8\x69\xcb\xe2\xbf\x64\xd8\x0c\x12\x95\x2f\x87\x9c\x8f\xdd\xe9\xf8\xed\xbb\x4f\x2d\x01\x7b\xdd\xed\x46\xda\xb0\x95\x3a\x2e\x67\xb0\x0c\x6e\x88\xc3\x29\x3a\x2c\xcc\x64\xfa\x49\x2f\xbb\x6d\x22\x3e\xf1\xac\x18\x3f\xe6\x57\x2b\x0c\x81\xcb\xa4\xe9\x9e\x7c\xd7\x67\xd1\x4b\x8c\x33\x7f\xb9\x27\xfd\xa0\x4b\xb8\x53\xf4\x4a\xa4\x61\xda\x9c\x79\x18\xfb\x8b\x70\xc6\x3c\xf5\x4e\xa3\xf7\xc4\x8a\x03\xc9\xc9\x16\x6b\xe2\x47\x3a\xf6\x6a\xd8\x8a\x7a\x31\x0e\x26\x47\xf0\xe3\x4b\x4f\x3d\x77\x30\x89\x0a\x33\xc6\x31\xa8\x89\x09\xb5\x73\xc6\x13\xd4\x16\xd5\x36\xa4\x6a\x79\xd1\x20\x50\x53\xc0\xbc\xd9\xa4\x04\xe8\x36\x2c\x9f\x43\x37\x05\x21\x22\x46\xdf\xb5\x12\xcb\x25\xf9\xb7\xfc\x92\x62\x50\xe5\x40\x99\x18\xe8\xcf\x04\xa4\xae\x58\x70\x13\x37\xab\x4b\xdf\x74\xfd\xdc\xf7\x73\xf8\x26\x8e\x13\xdd\x4b\xce\xe6\x95\x5e\x16\x5f\xcc\x1e\x27\xf8\x5b\x9d\x0c\x41\x39\x53\xc4\xc5\x4d\x90\x8f\x45\xaa\x05\x07\x9d\x10\x17\x4c\x88\x0b\x38\xdf\x9a\x5f\xa0\x12\x0b\x4e\xa2\x41\x44\x0b\xfd\xce\xad\xef\x90\x38\x3f\x8b\x77\x74\x1c\xe1\xb3\x9f\xc5\x3b\x6f\x17\x61\xf8\x47\x0c\xb0\xb2\x35\x51\xbc\x4c\xba\x6d\x55\xad\xe9\x55\xb9\x83\x06\x82\xa9\x55\x71\x1e\xb9\x40\x28\x70\x0b\x81\xa8\xdd\xd3\xf3\x4a\x10\x03\xe1\x63\x40\x1c\xe5\xcf\x76\x1b\x55\x24\x2f\x2e\xb7\xc2\x15\x07\x5c\xff\x8f\x85\x68\xd8\x36\xf6\xd6\x3e\xd5\xb9\x6d\x6b\x6e\xaf\x5e\x8a\x56\x2d\x25\x69\xd2\xd4\x53\xb5\x9c\x1b\x19\x76\xf9\xa2\xa3\xa2\x69\xd4\xb8\xc8\xfc\x92\xc3\xbc\x44\x06\x2d\x68\x52\x10\x8b\x62\xf6\xdb\x70\xce\xad\xda\x6c\x5c\xf5\x60\x5a\x64\x61\xe4\x37\x75\x2d\x31\x3e\x39\x7c\xc8\xa2\x9c\x08\x11\xce\x0f\xa7\x4d\xb9\x80\x4c\x22\x8c\x16\x54\xb6\x55\x11\xa9\x9c\x0b\xce\x8f\x67\xc3\xde\x5a\x45\x20\x63\xeb\xd4\x44\xa9\x12\x01\x03\x31\x90\x81\xae\x37\x89\x4b\xee\x54\x96\x5e\x25\xc2\xb6\x9b\xf4\x98\x3d\xa7\x57\x47\x62\x69\xec\x5a\x6e\x0e\xc7\x39\x37\x1e\xdf\x61\xce\xe9\xe8\x31\xf5\x7b\x40\x22\x96\x45\x87\x69\x2a\xd8\xf8\x05\x4d\x5d\x04\x77\x30\xee\x99\x52\xe0\xf1\x75\x30\x3c\x96\xa2\xee\xe3\xe4\xf7\x82\x55\xcc\xf2\x05\x64\x63\x04\xb2\x53\x11\x52\xf1\x82\xbc\x94\xb4\x49\x64\xe2\xf3\x9c\xba\xa7\xe6\x8e\x2d\x68\x4b\xe3\x0b\x37\x58\x18\x38\x5f\x36\x59\x2d\x49\x22\x32\x01\x16\xa0\x06\x52\xcb\xbc\xf8\xe2\x59\x64\xd7\x78\x02\x32\x5f\xb2\x3c\xcc\x21\xa4\x4d\x72\x2b\x41\x7e\xc6\xb4\xd4\x74\xf4\x1d\x41\xc0\x9b\x39\x83\xff\x7d\xef\x3a\x5a\xdd\xcb\x37\x6f\xdb\x39\x82\x42\xc5\xdb\xef\x5e\xce\x74\x79\xf5\xb2\x9d\x8b\x7f\xd0\xd5\x45\xa6\xa4\x69\x52\x73\x49\xec\xf3\xb2\xe8\x0d\xbf\xfa\x3c\x77\x28\x44\x0b\xb9\xa8\xb6\x08\xd2\xdf\x7b\x6a\x03\x82\xa2\xcd\xfa\xad\x77\xf2\x97\x0d\x5c\x74\x6a\x65\x3d\x16\x5d\xef\x96\xf4\x36\xd6\x22\x02\x18\xf5\x21\xf6\xed\x7c\xc8\x88\x87\x98\x03\xc9\x6f\xba\x64\x34\x1c\x45\x6c\x25\x76\xae\x1f\xe4\x25\xb3\x4f\x21\xa9\x0f\xc3\x9f\x7d\x6e\xc5\xcb\x0b\xc6\xf7\x0b\xc6\x72\x0c\x1c\xa3\x6c\xaa\xba\xdd\x51\x20\xcb\xb8\xbd\xd5\xb7\x3d\xb2\x97\x77\x0e\x21\x7e\x35\x68\xf2\x26\x6e\xa4\x4e\x7e\x25\xf9\x32\xa9\x4f\x33\xda\x99\x60\xdd\x0f\xc0\x74\x6c\xae\x72\x99\xed\x6e\x5d\x64\x7c\xd5\x2b\xd7\xa3\xf0\x9b\x24\x3b\x6b\xbc\xe6\xc6\x0d\x24\x36\xb8\x0a\xbf\xe5\xbe\x04\x9e\x48\x8d\x51\xba\xad\x41\xd9\x35\xa2\xad\xe1\x12\x17\x7c\xd7\xa4\x34\x75\x13\x89\xd9\x52\xb7\x38\x55\x69\x3f\x68\x2c\x8b\xfe\x0f\xe2\x57\xb8\x13\xf6\x31\x8e\xf6\x66\x36\xcb\xfd\x91\x12\x88\x01\xfe\x38\x26\x37\x37\x56\xa8\x71\x93\xa4\xa2\x55\xb1\xf8\x94\x83\xad\xdc\xfd\x2d\xd6\xa2\x44\x3a\xdb\x05\x88\x42\x54\x49\x52\x47\x73\x3b\xb5\x59\x9b\xcd\x28\x96\xb1\xdd\xa4\x8e\x44\x0e\xea\xef\xa2\x3d\x73\x14\x3f\x1a\x03\xa9\xab\x6f\xdc\x9e\x9d\xd1\x26\x54\x57\xc2\x08\x6c\x3f\x40\x32\x8e\xa3\x70\xdf\xc1\xd0\xe6\xdc\x1d\x4b\xf0\x21\x46\x13\x4b\x26\x52\x4e\xe4\xd5\x4b\xf1\xe9\x7d\x6a\x36\x9c\xb2\x1d\xd3\x54\x83\x40\xa0\x77\x2c\xc0\x2c\xd1\x06\x6d\x6c\xeb\x18\x41\xf3\x21\xbe\x1e\x84\x6b\x4f\x8b\xb7\x98\x50\x06\xf1\xc1\xea\x9a\xa0\xfd\x69\xed\xbe\xd3\xf7\xca\x13\xdc\x32\xc2\xcc\x8b\x3b\x27\x54\x15\x03\xe6\xef\xff\x09\x00\x00\xff\xff\x96\xf7\x4e\x83\x2f\x8d\x00\x00") + +func examplesStorageRedisImageRedisSlaveConfBytes() ([]byte, error) { + return bindataRead( + _examplesStorageRedisImageRedisSlaveConf, + "examples/storage/redis/image/redis-slave.conf", + ) +} + +func examplesStorageRedisImageRedisSlaveConf() (*asset, error) { + bytes, err := examplesStorageRedisImageRedisSlaveConfBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/redis/image/redis-slave.conf", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageRedisImageRunSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x55\x5d\x6f\xdb\x36\x14\x7d\xd7\xaf\x38\x95\x5d\x34\x05\xac\x0f\x67\x43\xf6\x11\xa4\x83\x97\x38\xa8\xd0\xcc\x1e\x2c\xb7\x41\xd1\x15\x01\x2d\x5d\x59\x44\x25\x52\x23\xa9\x38\x46\xea\xff\x3e\x50\xb2\x12\x3b\x49\x83\xee\x6d\x0f\x8b\x1f\x62\x93\xe7\x9e\x7b\xee\xc7\x91\x7a\x2f\x82\x05\x17\xc1\x82\xe9\xdc\x71\x7a\x38\x95\xd5\x5a\xf1\x65\x6e\x70\x18\x0e\x7f\xc4\x3c\x27\xbc\xab\x17\xa4\x04\x19\xd2\x18\xd5\x26\x97\x4a\xfb\x4e\xcf\xe9\xe1\x82\x27\x24\x34\xa5\xa8\x45\x4a\x0a\x26\x27\x8c\x2a\x96\xe4\xd4\xdd\x0c\xf0\x81\x94\xe6\x52\xe0\xd0\x0f\x71\x60\x01\xee\xf6\xca\x7d\x7d\xec\xf4\xb0\x96\x35\x4a\xb6\x86\x90\x06\xb5\x26\x98\x9c\x6b\x64\xbc\x20\xd0\x4d\x42\x95\x01\x17\x48\x64\x59\x15\x9c\x89\x84\xb0\xe2\x26\x6f\xd2\x6c\x49\x7c\xa7\x87\x8f\x5b\x0a\xb9\x30\x8c\x0b\x30\x24\xb2\x5a\x43\x66\xbb\x38\x30\xd3\x08\xb6\x7f\xb9\x31\xd5\xaf\x41\xb0\x5a\xad\x7c\xd6\x88\xf5\xa5\x5a\x06\x45\x0b\xd4\xc1\x45\x74\x3a\x9e\xc4\x63\xef\xd0\x0f\x9b\x90\xf7\xa2\x20\xad\xa1\xe8\xef\x9a\x2b\x4a\xb1\x58\x83\x55\x55\xc1\x13\xb6\x28\x08\x05\x5b\x41\x2a\xb0\xa5\x22\x4a\x61\xa4\xd5\xbb\x52\xdc\x70\xb1\x1c\x40\xcb\xcc\xac\x98\x22\xa7\x87\x94\x6b\xa3\xf8\xa2\x36\x7b\xcd\xea\xd4\x71\xbd\x07\x90\x02\x4c\xc0\x1d\xc5\x88\x62\x17\xbf\x8f\xe2\x28\x1e\x38\x3d\x5c\x46\xf3\xb7\xd3\xf7\x73\x5c\x8e\x66\xb3\xd1\x64\x1e\x8d\x63\x4c\x67\x38\x9d\x4e\xce\xa2\x79\x34\x9d\xc4\x98\x9e\x63\x34\xf9\x88\x77\xd1\xe4\x6c\x00\xe2\x26\x27\x05\xba\xa9\x94\xd5\x2f\x15\xb8\x6d\x23\xa5\xb6\x67\x31\xd1\x9e\x80\x4c\xb6\x82\x74\x45\x09\xcf\x78\x82\x82\x89\x65\xcd\x96\x84\xa5\xbc\x26\x25\xb8\x58\xa2\x22\x55\x72\x6d\x87\xa9\xc1\x44\xea\xf4\x50\xf0\x92\x1b\x66\x9a\x93\x47\x45\xf9\x8e\x93\xd5\x22\xb1\xb7\x28\x58\x2d\x92\xbc\x64\xda\x90\x3a\x78\x8d\x5b\x07\xe0\x19\x3e\x7d\xc2\x0b\x78\x84\x40\x51\xca\xb5\xd7\x5e\x7b\x29\x33\x0c\x9f\x3f\x1f\x5b\x2e\xe1\xd8\x81\x51\x92\x4b\xb8\x33\x0b\x42\x0b\x42\x03\x4a\x25\x69\xf1\xca\x80\x6e\xb8\x36\x83\xf6\x6c\x25\xed\xc9\x82\xac\x5a\xcd\xb5\x21\x61\x5e\xb8\x0d\x4b\xf9\x25\xe5\xea\x89\x5c\x0e\x90\x71\x07\x68\x2f\x34\xa9\x6b\x7a\x00\x6b\x7f\xf8\x89\x14\x19\x3c\xaf\x52\xd2\x50\x62\x28\xf5\x4a\x99\x12\x84\x74\x36\x8f\x2a\xd5\x24\x0c\x17\x54\x6c\x6b\x5d\xe5\x76\xa1\x8d\xaa\xe9\x18\xa9\x6c\xd5\x34\xcc\x27\xfd\x83\x36\x51\x52\x70\x78\x39\xfa\xb7\xb3\xf1\x59\x14\x5f\xc5\xe3\xc9\x3c\x9a\x8c\x2f\xae\xe2\xf1\xec\x43\x74\x3a\xbe\x7a\x3b\x8d\xe7\x1b\x78\xd5\xb7\x11\x7f\x4e\x67\x16\xe1\x25\xfa\x1a\xdd\x25\x96\x64\xba\x52\x59\x9a\x2a\x6f\xb1\xf6\x04\x2b\x09\xe5\x7a\xdb\xc7\xaf\x30\x0a\xaf\x06\xaf\x60\x3f\x5f\x91\xd4\x06\x5e\x6a\xbf\x7b\xd9\xf0\x75\x23\xb4\x9d\x93\x27\xd0\xbf\x6d\x63\x36\xfb\xc3\xb9\x2b\xc5\xed\x00\x41\xf0\x97\xbb\x69\x7b\x4e\x85\xa6\x7d\x54\xff\x20\x97\xda\x34\x22\x3c\xde\x66\xc8\xb8\xd3\xfc\x7f\xd0\x89\x2e\x5b\x34\x39\x9f\xee\x28\x71\xfb\xbf\xb9\x38\x39\x81\x1b\xba\x0f\x85\x2c\x14\xb1\x2f\x1d\xe5\xfd\xe2\x9c\x4a\x21\x28\xb1\x8e\xb4\xfe\xdc\x16\x9e\x31\x5e\x50\xea\x03\x97\xac\x31\xab\xef\xfb\xad\x64\x5d\x10\x55\x18\x86\x0e\x90\x4a\x41\x56\x5a\x37\xcd\x2b\xbb\x01\x27\xdd\xaf\x66\x1f\xec\x75\x9b\xa5\x3b\x46\x29\x05\x37\x52\xdd\xf7\xf8\xbe\x94\xa3\x1f\x7e\xfa\x05\x87\x2e\xde\xa0\x7f\xbb\x47\xba\x79\x4c\x93\xca\x95\xf0\x58\x66\x47\x57\xf2\xa2\xe0\x9a\x12\x29\x52\x7d\x4f\x7b\x14\x86\x61\xe8\xe2\xcd\xf7\x90\xd9\x6a\xad\x8f\x3d\xc3\x4b\x92\xb5\xb9\x67\x19\xfe\xfc\x2f\x68\x2a\xa6\x58\x51\x50\xe1\xe9\xb5\x48\x76\xa4\x0c\x9f\x8f\x5f\x70\x91\x22\xf4\x9b\xcf\xd3\xc8\x1d\xfb\x6d\x53\x3d\x84\x7c\xaf\xf1\x0a\x76\x4d\xff\xbb\xee\xce\x75\xed\x00\xce\x9b\x65\xb7\xdb\x9f\xd9\x51\xb4\x01\xdb\x7d\xef\x36\xfe\x28\xec\x42\x6e\xb8\xc1\x70\x6b\x23\xfc\x87\x9d\x69\x8d\x99\xc2\xe3\x70\x75\xf0\x72\xdb\x6f\x5e\xbd\x0c\xee\x04\x06\x6e\xf7\x1c\x6f\xd6\x62\xe7\x31\xfe\x64\x6c\x25\x95\x79\x19\x58\x8f\x3e\x1b\xf8\xd4\x7b\xe2\x21\xec\x5b\xdb\xda\x35\xea\xf6\x8f\x51\x3c\x1f\xcf\x36\x6d\xbf\xec\x8a\xee\xb5\x6c\xf7\x75\xe9\x6c\x27\x12\x3a\xf6\x39\x79\x47\xd0\x2d\xdb\xf3\x14\x9d\x87\xf6\x49\x76\xac\xe2\xfc\x13\x00\x00\xff\xff\x73\xd3\xa4\x71\xfc\x09\x00\x00") + +func examplesStorageRedisImageRunShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageRedisImageRunSh, + "examples/storage/redis/image/run.sh", + ) +} + +func examplesStorageRedisImageRunSh() (*asset, error) { + bytes, err := examplesStorageRedisImageRunShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/redis/image/run.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageRedisRedisControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x50\xcd\x4a\xc4\x30\x10\xbe\xe7\x29\x86\xbd\x77\xd7\x22\x28\xe6\xaa\x57\x61\xf1\xe0\x55\xc6\xec\x50\x07\x93\x4c\x98\x4c\x0b\x22\xbe\xbb\xc4\xb2\xdd\xd6\xfd\x6e\xfd\x7e\xa7\xc1\xc2\xaf\xa4\x95\x25\x7b\x98\x7a\xf7\xc9\xf9\xe4\xe1\x85\x4a\xe4\x80\xc6\x92\x1f\x25\x9b\x4a\x8c\xa4\x2e\x91\xe1\x09\x0d\xbd\x03\xc8\x98\xc8\x83\xd2\x89\xab\xab\x85\x42\xe3\x74\x4e\x55\x0f\xbd\x03\xa8\x14\x29\x98\x68\x53\xb6\x7e\x00\xa3\x54\x22\x1a\xcd\xda\xba\xb7\x21\xe2\x3b\xc5\x7a\xfe\xfa\x9f\x05\x38\xef\x35\x04\xc9\x86\x9c\x49\x17\x7f\x77\xe5\x6f\xe0\x84\x03\x79\x18\x82\xee\x59\x0e\x83\xc8\x10\xe9\xed\x12\x3e\xfc\xb9\xfd\xd4\x2f\x81\x22\x6a\xab\x1b\xba\xcb\xd2\x51\xd4\x3c\xdc\xdd\xde\x3f\x2c\xaa\x52\x95\x51\x03\xad\x02\x00\x91\x13\xdb\x86\x01\x08\x65\xf4\xb0\xbb\xd9\xf7\xbb\x85\x9e\x24\x8e\x89\x9e\x65\xcc\xdb\xbd\xd4\x98\x23\xda\x87\x87\xf9\xba\x2e\x61\x35\xd2\xae\x3d\xd5\xaa\x74\xfe\xdb\x15\x39\x17\x6e\xba\xae\x3c\x0d\x94\x8a\x7d\x3d\xb1\x7a\xf8\xfe\x71\xee\x37\x00\x00\xff\xff\x8d\x06\xee\x76\x08\x02\x00\x00") + +func examplesStorageRedisRedisControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageRedisRedisControllerYaml, + "examples/storage/redis/redis-controller.yaml", + ) +} + +func examplesStorageRedisRedisControllerYaml() (*asset, error) { + bytes, err := examplesStorageRedisRedisControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/redis/redis-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageRedisRedisMasterYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x51\x41\x6b\xf3\x30\x0c\xbd\xe7\x57\x88\xde\xd3\x7e\xfd\x06\x1b\xd3\x6d\xb0\x1e\x06\x6b\x29\x6b\xd9\x75\xb8\x89\xc8\x4c\x6d\x2b\xc8\x76\x60\x8c\xfd\xf7\x91\xc6\x49\x9d\x9d\x06\xcb\x49\x91\xf4\xde\xf3\x7b\x52\xad\x7e\x25\xf1\x9a\x1d\x42\xb7\x2e\xce\xda\xd5\x08\x7b\xae\x0b\x4b\x41\xd5\x2a\x28\x2c\x00\x8c\x3a\x91\xf1\x7d\x05\xe0\x94\x25\x04\xa1\x5a\xfb\xcb\xff\xa5\x2a\x3d\xb9\xa0\x1d\x19\x84\x45\x90\x48\x8b\x61\xc4\x86\x10\xac\xf2\x81\xa4\x98\x21\xcb\xd4\xf4\x2d\x55\x3d\x6d\xc5\x2e\x28\xed\x48\x92\x48\x99\x96\x27\x6c\xff\x69\xab\x1a\x42\x68\x2a\x59\x6a\x5e\x35\xcc\x8d\xa1\xb7\x2b\x72\x75\x61\xc6\x6e\x9d\xd6\xc9\x75\x98\xca\x2b\xe1\xf6\xe1\x70\xdc\xbc\x4c\x6d\x80\x4e\x99\x48\xb3\x57\x03\xb4\x2c\xc1\xe7\xd8\x49\x64\xcf\x12\x10\x6e\x6f\xee\xee\xd3\x54\xc8\x73\x94\x8a\xb2\x75\xa3\xad\xce\xe1\x00\x55\x1b\x11\x16\xff\x96\xeb\x51\xa0\x63\x13\x2d\x6d\x39\xba\xb9\x8e\xed\x3b\x7b\x15\xde\x11\x56\x79\x4e\x65\x7f\x88\x8c\x70\xf0\x32\x35\x47\x73\xe3\x11\xe6\x79\x9d\xe3\x89\xc4\x51\xa0\xdf\x25\x74\xd8\xec\x8e\x4f\xbb\xcd\xf3\x1f\x33\xfa\x9f\x42\x1a\xac\xfe\x38\x6b\x66\x87\x6c\x1b\x3e\x1e\xb5\x20\x7c\x7e\x15\xdf\x01\x00\x00\xff\xff\x58\xe9\xff\x4f\x8d\x02\x00\x00") + +func examplesStorageRedisRedisMasterYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageRedisRedisMasterYaml, + "examples/storage/redis/redis-master.yaml", + ) +} + +func examplesStorageRedisRedisMasterYaml() (*asset, error) { + bytes, err := examplesStorageRedisRedisMasterYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/redis/redis-master.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageRedisRedisSentinelControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\x41\x4b\xc3\x40\x10\x85\xef\xfb\x2b\x86\xde\x6b\x89\x82\xe2\x5e\xa5\x07\x41\x8a\xa8\x78\x95\x31\x79\x84\xc5\xc9\x4e\x98\x9d\xe6\xf7\x4b\x6c\x93\xb4\x96\xce\x6d\x79\xfb\xcd\xf7\x86\xfb\xf4\x09\x2b\x49\x73\xa4\xa1\x0a\x3f\x29\x37\x91\xde\xd0\x4b\xaa\xd9\x93\xe6\x27\xcd\x6e\x2a\x02\x0b\x1d\x9c\x1b\x76\x8e\x81\x28\x73\x87\x48\x86\x26\x95\x75\x41\xf6\x94\x21\xa1\xf4\xa8\xc7\xd0\x0e\x78\x89\x54\x05\xa2\x02\x41\xed\x6a\x63\x42\xff\x90\x48\x2b\xb7\x3d\x56\x81\xc8\xd1\xf5\xc2\x8e\xc3\xb7\x53\xd7\x38\xc2\xdf\x90\x32\xbd\xae\xf8\xa7\xf0\xaa\xe3\x18\xab\x20\xd2\x19\x35\x35\x1f\xa7\xd6\xec\x9c\x32\x6c\xd6\xad\x8f\xba\x0b\x51\xea\xb8\x45\xa4\xb6\xb6\x9b\xa4\x9b\x56\xb5\x15\x7c\x2d\xfc\xe6\xaf\x48\x1c\xaa\x19\x40\x1e\x96\x1b\x96\xc5\xef\xdb\xdd\xc7\xf3\x6e\xfb\x72\x12\x11\x0d\x2c\x7b\x5c\x94\xef\xd5\xbc\x9c\xef\x98\x85\xaf\x6a\x1e\xe9\xf6\xfe\xee\xe1\x31\xfc\x06\x00\x00\xff\xff\x39\x74\x85\x32\xd8\x01\x00\x00") + +func examplesStorageRedisRedisSentinelControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageRedisRedisSentinelControllerYaml, + "examples/storage/redis/redis-sentinel-controller.yaml", + ) +} + +func examplesStorageRedisRedisSentinelControllerYaml() (*asset, error) { + bytes, err := examplesStorageRedisRedisSentinelControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/redis/redis-sentinel-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageRedisRedisSentinelServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8c\xc1\xaa\xc2\x40\x0c\x45\xf7\xf3\x15\xa1\xfb\x2e\xde\x13\x14\xf3\x15\x82\xe0\x3e\xb6\x17\x09\x4e\x67\x4a\x12\xfb\xfd\xd2\xa9\x0a\xdd\x25\x87\x7b\x8e\xcc\x7a\x83\xb9\xd6\xc2\xb4\xfc\xa5\xa7\x96\x91\xe9\x0a\x5b\x74\x40\x9a\x10\x32\x4a\x08\x27\xa2\x2c\x77\x64\x5f\x2f\xa2\x22\x13\x98\x1c\x25\xb4\x20\x37\x64\x35\x37\xb4\x89\xdf\x89\x61\x54\xef\x7f\x43\x9f\x31\xac\x85\xb9\x5a\x7c\x52\x7d\x7b\x98\xfe\x8f\x87\xd3\xb9\x11\xa2\x10\x7b\x20\x2e\x3b\xee\xc8\x18\xa2\xda\x66\xed\xbb\x4c\x5d\xd8\x0b\x5d\x7a\x07\x00\x00\xff\xff\x2c\xb2\xac\x7e\xcd\x00\x00\x00") + +func examplesStorageRedisRedisSentinelServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageRedisRedisSentinelServiceYaml, + "examples/storage/redis/redis-sentinel-service.yaml", + ) +} + +func examplesStorageRedisRedisSentinelServiceYaml() (*asset, error) { + bytes, err := examplesStorageRedisRedisSentinelServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/redis/redis-sentinel-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageRethinkdbAdminPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x51\xc1\x4e\xc3\x30\x0c\xbd\xf7\x2b\xfc\x03\xed\x5a\x24\xd0\xc8\x6d\x62\xe3\x36\xa8\x40\xe2\x5a\x79\x8d\xd7\x45\x4b\xe2\x2a\x4d\x2b\x21\xc4\xbf\xa3\xa4\xdd\xba\x4d\xc0\x2d\x79\x7e\xef\xf9\xd9\xc6\x56\x7d\x90\xeb\x14\x5b\x01\x43\x91\x1c\x95\x95\x02\x4a\x96\x89\x21\x8f\x12\x3d\x8a\x04\x40\xe3\x8e\x74\x17\x5e\x00\x72\x27\xc0\x91\x3f\x28\x7b\x94\xbb\x88\x38\xd6\x24\x00\xa5\x51\x36\x01\xb0\x68\xe8\x82\x91\x8e\x78\xd7\x52\x1d\xf4\x35\x5b\x8f\xca\x92\x8b\x6e\x29\x28\x83\x0d\x09\x68\x6a\x97\x29\x5e\x34\xcc\x8d\xa6\x6a\x26\x2d\xce\x3e\xa2\xc8\x8a\x87\x2c\xaf\x8a\xd8\xf2\xa6\x49\xc4\xc8\x0e\x63\xc2\x74\x2a\x97\xaf\xeb\xea\x65\xb5\xdd\xbc\x97\xab\xa7\x4d\xac\x00\x0c\xa8\x7b\x7a\x76\x6c\xc4\x04\x00\xec\x15\x69\xf9\x46\xfb\x19\x99\xb0\x12\xfd\x41\xc0\x69\x0f\x59\x30\xed\x5a\xac\x29\xf2\x5a\x76\xbe\x3b\xf5\x3b\x07\x2e\xd9\x79\x01\xcb\x7c\x99\x4f\x66\x63\x92\xb8\x83\x34\x48\x7e\x17\xdc\x2d\xf3\xe2\xfe\x4a\x21\x9d\x1a\xc8\xfd\x27\x79\xbc\x95\xd4\xba\xef\xfc\xa5\x66\x60\xdd\x1b\xda\x72\x6f\xe7\xa4\x26\xfc\xc6\xc1\x16\x61\xaa\x79\xc1\x55\xf8\x5e\x19\xce\x37\xec\x3c\x3b\x6c\xc2\xe0\xa3\xe7\x74\xbc\xbf\x69\x00\x64\x5a\xff\xb9\x56\x4e\xc0\xd7\x77\xf2\x13\x00\x00\xff\xff\x3c\xe8\x5e\x5e\x65\x02\x00\x00") + +func examplesStorageRethinkdbAdminPodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageRethinkdbAdminPodYaml, + "examples/storage/rethinkdb/admin-pod.yaml", + ) +} + +func examplesStorageRethinkdbAdminPodYaml() (*asset, error) { + bytes, err := examplesStorageRethinkdbAdminPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/rethinkdb/admin-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageRethinkdbAdminServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8d\x31\xaa\xc3\x30\x10\x44\x7b\x9d\x62\x2e\x60\xf0\xef\x8c\xca\x5f\xa7\x08\x04\xd2\xaf\xa5\x21\x11\x96\x25\xb1\x5a\x0c\xb9\x7d\xb0\xdd\xb8\x48\xf7\x78\xec\xce\x93\x96\x9e\xd4\x9e\x6a\xf1\xd8\xfe\xdc\x92\x4a\xf4\x78\x50\xb7\x14\xe8\x56\x9a\x44\x31\xf1\x0e\xc8\x32\x33\xf7\x9d\x80\x38\x7b\x28\xed\x9d\xca\x12\x67\x07\x14\x59\x79\x31\x83\xc4\x35\x15\xd7\x1b\xc3\x7e\xdf\xaa\xda\xf9\x38\x1c\xec\x31\x8d\xd3\x78\x0c\xc1\x44\x5f\xb4\xfb\xd5\xda\xa7\xd1\xe3\x56\x25\xfe\x4b\x96\x12\xa8\x0e\xe8\xcc\x0c\x56\xf5\x77\x1f\xd0\x9a\xe9\x71\x76\xbf\x01\x00\x00\xff\xff\x5c\x8d\xb4\x2e\xd3\x00\x00\x00") + +func examplesStorageRethinkdbAdminServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageRethinkdbAdminServiceYaml, + "examples/storage/rethinkdb/admin-service.yaml", + ) +} + +func examplesStorageRethinkdbAdminServiceYaml() (*asset, error) { + bytes, err := examplesStorageRethinkdbAdminServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/rethinkdb/admin-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageRethinkdbDriverServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcd\x41\x0a\xc2\x30\x10\x85\xe1\x7d\x4e\xf1\x2e\x50\xb0\x82\x20\x39\x85\x20\xb8\x9f\x36\x0f\x1d\xda\x26\x61\x32\xe4\xfc\xd2\xe2\x42\xc1\xdd\xcc\x07\x3f\x4f\xaa\x3e\x68\x4d\x4b\x8e\xe8\x63\x58\x34\xa7\x88\x3b\xad\xeb\xcc\xb0\xd1\x25\x89\x4b\x0c\xc0\x2a\x13\xd7\xb6\x5f\x40\x9a\x22\x8c\xfe\xd2\xbc\xa4\x29\x00\x59\x36\x7e\xc9\x90\x4c\x3b\x2d\xb4\xca\x79\x0f\x6a\x31\xff\x94\xc3\xf1\x44\x9c\xaf\xa7\xf1\x72\x08\xe0\x62\x4f\xfa\xed\xc7\x1b\x57\xce\x5e\xec\xdf\xde\x3b\x00\x00\xff\xff\x6a\xf3\xb8\xcf\xb3\x00\x00\x00") + +func examplesStorageRethinkdbDriverServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageRethinkdbDriverServiceYaml, + "examples/storage/rethinkdb/driver-service.yaml", + ) +} + +func examplesStorageRethinkdbDriverServiceYaml() (*asset, error) { + bytes, err := examplesStorageRethinkdbDriverServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/rethinkdb/driver-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageRethinkdbGenPodSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x6d\x6f\xdb\x36\x17\xfd\xce\x5f\x71\x2a\x05\xe8\xf3\x00\x96\xfc\x52\x74\xe8\x94\x78\x80\x97\xb8\x98\xd1\x46\x0e\x62\xb7\x45\x91\x15\x03\x25\x5d\x5b\x44\x28\x52\x23\xa9\x38\x9e\xe1\xff\x3e\x50\x96\x93\x78\xdd\x30\xcc\x1f\x6c\xdf\xb7\x73\x0e\xcf\x25\xc3\x57\xfd\x4c\xa8\x7e\xc6\x6d\xc9\x58\x88\x4b\x5d\x6f\x8d\x58\x97\x0e\xa3\xc1\xf0\x2d\x96\x25\xe1\x43\x93\x91\x51\xe4\xc8\x62\xd2\xb8\x52\x1b\x1b\xb3\x90\x85\xf8\x28\x72\x52\x96\x0a\x34\xaa\x20\x03\x57\x12\x26\x35\xcf\x4b\x3a\x56\x7a\xf8\x4c\xc6\x0a\xad\x30\x8a\x07\xf8\x9f\x6f\x08\xba\x52\xf0\xff\x73\x16\x62\xab\x1b\x54\x7c\x0b\xa5\x1d\x1a\x4b\x70\xa5\xb0\x58\x09\x49\xa0\xc7\x9c\x6a\x07\xa1\x90\xeb\xaa\x96\x82\xab\x9c\xb0\x11\xae\x6c\x69\x3a\x90\x98\x85\xf8\xda\x41\xe8\xcc\x71\xa1\xc0\x91\xeb\x7a\x0b\xbd\x7a\xd9\x07\xee\x5a\xc1\xfe\x53\x3a\x57\x27\xfd\xfe\x66\xb3\x89\x79\x2b\x36\xd6\x66\xdd\x97\x87\x46\xdb\xff\x38\xbb\x9c\xa6\x8b\x69\x34\x8a\x07\xed\xc8\x27\x25\xc9\x5a\x18\xfa\xbd\x11\x86\x0a\x64\x5b\xf0\xba\x96\x22\xe7\x99\x24\x48\xbe\x81\x36\xe0\x6b\x43\x54\xc0\x69\xaf\x77\x63\x84\x13\x6a\xdd\x83\xd5\x2b\xb7\xe1\x86\x58\x88\x42\x58\x67\x44\xd6\xb8\x13\xb3\x8e\xea\x84\x3d\x69\xd0\x0a\x5c\x21\x98\x2c\x30\x5b\x04\xf8\x79\xb2\x98\x2d\x7a\x2c\xc4\x97\xd9\xf2\x97\xf9\xa7\x25\xbe\x4c\x6e\x6f\x27\xe9\x72\x36\x5d\x60\x7e\x8b\xcb\x79\x7a\x35\x5b\xce\xe6\xe9\x02\xf3\xf7\x98\xa4\x5f\xf1\x61\x96\x5e\xf5\x40\xc2\x95\x64\x40\x8f\xb5\xf1\xfa\xb5\x81\xf0\x36\x52\xe1\x3d\x5b\x10\x9d\x08\x58\xe9\x83\x20\x5b\x53\x2e\x56\x22\x87\xe4\x6a\xdd\xf0\x35\x61\xad\x1f\xc8\x28\xa1\xd6\xa8\xc9\x54\xc2\xfa\x65\x5a\x70\x55\xb0\x10\x52\x54\xc2\x71\xd7\x66\xbe\x3b\x54\xcc\x98\x25\x87\x48\x83\x8c\xa1\x47\xe1\x8e\xa1\xd2\x8d\xb2\xf4\x14\xd6\xa2\xa6\x15\x17\x92\xb1\x04\x67\xbb\xcf\xd3\xdb\xc5\x6c\x9e\x26\xe3\x61\x3c\xfc\x21\x1e\xec\x19\x33\xc4\x0b\xad\xe4\x16\xe9\xe4\x7a\x3a\x3e\xdb\x0d\xa3\x3d\x13\x2b\xdc\xdd\x21\xfa\x03\xc1\xd9\xce\xa7\xf7\x01\xbe\x7d\x3b\xf7\xec\x8a\x01\x94\x97\x1a\x11\x21\xf8\x75\xf0\xe6\xcd\xdd\xf0\xfc\xcd\xb0\x4a\x79\x45\xa8\x1a\xeb\x90\x3d\x1d\x92\x8a\xb6\x3e\xa8\x02\x3f\xf3\x28\x1c\x86\x6c\x25\x18\x9b\x5c\x5d\xcf\xd2\x71\x10\x74\x2c\x1d\x03\xc6\x63\x04\xbc\xa8\x84\x3a\xe1\xea\x9a\x8d\x96\x94\xe0\x50\x6e\x41\xd2\xf9\xd5\xd4\x63\x84\x98\x2b\x82\x22\x2a\xac\xbf\x1d\x92\x67\x24\xc1\xa1\x74\xf1\xe2\x32\x5b\xaf\xee\x9e\xb6\xfd\x07\x2e\x1b\x42\xcd\x85\xe9\x81\x85\x10\x31\xc5\x3d\xbc\xbe\x6f\x32\xca\x9d\xec\x86\xfd\xa8\xc5\x85\xff\x89\x14\xaf\xe8\x27\xf8\xef\xf1\xd9\x6e\xb4\x7f\xdd\x49\x7e\xd5\x59\x33\x8a\x4e\x8d\x39\x88\xf2\x93\x0b\x92\x94\x3b\x6d\x12\xec\xda\x71\x6f\xfd\x68\x8f\xfd\x41\x7c\xce\x1d\x2e\x2e\x30\x9d\xbf\x67\xbc\x16\xdd\x0b\x4e\xf0\x30\x64\xf7\x42\x15\x09\x6e\x74\xc1\x2a\x72\xbc\xe0\x8e\x27\x0c\x07\x61\xd6\xff\x03\xce\x76\xad\x25\xfb\x36\x28\xb2\x04\x86\x5c\x29\xd4\x7d\x91\x31\x74\x54\x4f\x99\xa8\xf3\x36\x7a\xda\xfb\xbe\x6b\xb2\x35\xcf\x5f\x76\x32\xbf\x33\x4f\x90\x6b\xe5\x5f\x39\x99\x96\x2e\x82\xa8\xf8\xda\x3b\xaf\x5c\xc5\x95\x24\xd3\x7f\x1a\x49\x4e\x40\xbf\xe3\x6e\x73\xb5\x36\xae\xd3\x1d\x3d\x43\xdf\x68\xe3\x12\xbc\x1b\xbc\x1b\xb4\x95\xe3\x68\xbb\xdd\xc8\x8f\x74\xe9\xda\x68\xa7\x73\x2d\x13\x2c\x2f\x6f\xfe\x1e\x64\xf4\x6e\x30\x7c\x7b\x82\x52\x18\xf1\x40\xe6\xbf\xc2\xfc\xf8\x57\x98\x5c\x36\xd6\xfd\x1b\xce\x83\x96\x4d\x45\xd7\xba\x51\xcf\xa7\xac\x7c\x74\xc3\x5d\x99\xa0\xef\xf7\xf7\x6c\xd8\x6f\x3e\x3c\x21\x79\x5e\x94\x75\xda\xf0\x35\x31\xbf\x5f\x7f\x8b\xbc\xa5\x86\xac\xe3\xc6\xdd\x68\x29\xf2\x6d\x82\x89\xdc\xf0\xad\x65\x47\xd6\x6e\x3f\xa5\xb6\x07\xb6\xa3\xc8\x17\xcc\x45\xd6\x3f\x5d\xc7\x3f\xb1\xfa\x8b\xf8\x67\x00\x00\x00\xff\xff\xd3\x59\x68\x03\xa5\x06\x00\x00") + +func examplesStorageRethinkdbGenPodShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageRethinkdbGenPodSh, + "examples/storage/rethinkdb/gen-pod.sh", + ) +} + +func examplesStorageRethinkdbGenPodSh() (*asset, error) { + bytes, err := examplesStorageRethinkdbGenPodShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/rethinkdb/gen-pod.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageRethinkdbImageDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x92\x5f\x4f\xeb\x46\x10\xc5\xdf\xf7\x53\x1c\xc5\x12\xea\x9f\xc4\x1b\x50\xc5\x03\x95\x2a\xa5\x01\x54\x0b\x48\xaa\x38\x14\x21\xf5\x65\x6d\x4f\xec\xa1\x9b\x5d\x67\xff\xe0\xe4\xdb\x57\x76\x12\x01\xf7\x5e\xbf\xcd\xfc\xce\x8c\x8f\xcf\x38\xc1\xdc\xb6\x07\xc7\x75\x13\x70\x35\xbd\xbc\xc6\xba\x21\x3c\xc4\x82\x9c\xa1\x40\x1e\xb3\x18\x1a\xeb\x7c\x2a\x12\x91\xe0\x91\x4b\x32\x9e\x2a\x44\x53\x91\x43\x68\x08\xb3\x56\x95\x0d\x9d\xc9\x18\xff\x90\xf3\x6c\x0d\xae\xd2\x29\x7e\xea\x05\xa3\x13\x1a\xfd\xfc\xbb\x48\x70\xb0\x11\x5b\x75\x80\xb1\x01\xd1\x13\x42\xc3\x1e\x1b\xd6\x04\xda\x97\xd4\x06\xb0\x41\x69\xb7\xad\x66\x65\x4a\x42\xc7\xa1\x19\x5e\x73\x5a\x92\x8a\x04\xaf\xa7\x15\xb6\x08\x8a\x0d\x14\x4a\xdb\x1e\x60\x37\x9f\x75\x50\x61\x30\xdc\x3f\x4d\x08\xed\x8d\x94\x5d\xd7\xa5\x6a\x30\x9b\x5a\x57\x4b\x7d\x14\x7a\xf9\x98\xcd\xef\x16\xf9\xdd\xe4\x2a\x9d\x0e\x23\xcf\x46\x93\xf7\x70\xb4\x8b\xec\xa8\x42\x71\x80\x6a\x5b\xcd\xa5\x2a\x34\x41\xab\x0e\xd6\x41\xd5\x8e\xa8\x42\xb0\xbd\xdf\xce\x71\x60\x53\x8f\xe1\xed\x26\x74\xca\x91\x48\x50\xb1\x0f\x8e\x8b\x18\xbe\x84\x75\x76\xc7\xfe\x8b\xc0\x1a\x28\x83\xd1\x2c\x47\x96\x8f\xf0\xe7\x2c\xcf\xf2\xb1\x48\xf0\x92\xad\xff\x5a\x3e\xaf\xf1\x32\x5b\xad\x66\x8b\x75\x76\x97\x63\xb9\xc2\x7c\xb9\xb8\xcd\xd6\xd9\x72\x91\x63\x79\x8f\xd9\xe2\x15\x0f\xd9\xe2\x76\x0c\xe2\xd0\x90\x03\xed\x5b\xd7\xfb\xb7\x0e\xdc\xc7\x48\x55\x9f\x59\x4e\xf4\xc5\xc0\xc6\x1e\x0d\xf9\x96\x4a\xde\x70\x09\xad\x4c\x1d\x55\x4d\xa8\xed\x3b\x39\xc3\xa6\x46\x4b\x6e\xcb\xbe\x3f\xa6\x87\x32\x95\x48\xa0\x79\xcb\x41\x85\xa1\xf3\xdd\x47\xa5\x42\xdc\xaf\x96\x4f\x70\x14\x1a\x36\xff\x55\xc5\xcd\x65\x7a\x79\x9d\x4e\x85\x10\xab\xe7\x05\x54\x1b\x26\x35\x05\xc4\xb6\x52\x81\x70\x71\x81\x7f\x45\x7f\x9d\x73\x9f\x8d\x0f\x4a\x6b\x4c\x0e\x3b\x94\xd1\xe9\x0f\x85\xdb\x62\xe2\x36\x90\xef\xca\xc9\xb2\xbf\x9f\x54\x6d\x90\xbf\xf4\x82\xcf\x48\x73\x31\x00\xcd\x3e\xf8\x23\x3e\xce\x0f\xdb\x26\x8f\xe7\xff\xc0\x07\xaa\xac\x56\x26\xad\x39\x34\xb1\x48\xd9\xca\xb7\x9d\xac\x6c\x67\xb4\x55\x95\xd4\x6c\xe2\xfe\xfa\x37\xf9\xb6\xc3\x1f\x90\xd1\x3b\x59\xb0\xe9\xab\x8f\x7d\xcd\xd6\x56\x88\xbf\xee\x3f\x63\x21\xe6\xcb\xbf\x5f\x91\x4a\x17\x4d\xea\x9b\x0f\x74\xac\x87\x08\x7e\x30\x78\xa2\x62\xfe\x74\x8b\xd1\x37\xdd\x91\xf8\x3f\x00\x00\xff\xff\x18\x7c\x39\xe4\x9c\x03\x00\x00") + +func examplesStorageRethinkdbImageDockerfileBytes() ([]byte, error) { + return bindataRead( + _examplesStorageRethinkdbImageDockerfile, + "examples/storage/rethinkdb/image/Dockerfile", + ) +} + +func examplesStorageRethinkdbImageDockerfile() (*asset, error) { + bytes, err := examplesStorageRethinkdbImageDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/rethinkdb/image/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageRethinkdbImageRunSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x94\x5d\x6f\xda\x48\x14\x86\xef\xe7\x57\xbc\x35\xa8\x24\x52\x6c\x27\x91\x7a\xb1\x54\x5c\xd0\xc4\xab\x7a\x9b\x02\xc2\xa4\x55\x95\x45\xd5\x30\x3e\xc6\xd3\x98\x19\x77\x66\x1c\xc2\x02\xff\x7d\x35\x26\xa1\xcd\x7e\x49\xeb\x3b\xcf\xf9\x7a\xce\x9c\x77\x4e\xe7\x55\xbc\x90\x2a\x5e\x70\x5b\x32\xd6\xc1\x95\xae\x37\x46\x2e\x4b\x87\xcb\xf3\x8b\x37\x98\x95\x84\x0f\xcd\x82\x8c\x22\x47\x16\xc3\xc6\x95\xda\xd8\x88\x75\x58\x07\x37\x52\x90\xb2\x94\xa3\x51\x39\x19\xb8\x92\x30\xac\xb9\x28\xe9\xd9\x72\x86\x4f\x64\xac\xd4\x0a\x97\xd1\x39\x4e\xbc\x43\xf0\x64\x0a\x4e\xdf\xb2\x0e\x36\xba\xc1\x8a\x6f\xa0\xb4\x43\x63\x09\xae\x94\x16\x85\xac\x08\xf4\x28\xa8\x76\x90\x0a\x42\xaf\xea\x4a\x72\x25\x08\x6b\xe9\xca\xb6\xcc\x53\x92\x88\x75\xf0\xe5\x29\x85\x5e\x38\x2e\x15\x38\x84\xae\x37\xd0\xc5\xcf\x7e\xe0\xae\x05\xf6\x5f\xe9\x5c\xdd\x8f\xe3\xf5\x7a\x1d\xf1\x16\x36\xd2\x66\x19\x57\x07\x47\x1b\xdf\xa4\x57\xc9\x28\x4b\xc2\xcb\xe8\xbc\x0d\xb9\x55\x15\x59\x0b\x43\xdf\x1b\x69\x28\xc7\x62\x03\x5e\xd7\x95\x14\x7c\x51\x11\x2a\xbe\x86\x36\xe0\x4b\x43\x94\xc3\x69\xcf\xbb\x36\xd2\x49\xb5\x3c\x83\xd5\x85\x5b\x73\x43\xac\x83\x5c\x5a\x67\xe4\xa2\x71\x2f\x2e\xeb\x99\x4e\xda\x17\x0e\x5a\x81\x2b\x04\xc3\x0c\x69\x16\xe0\xdd\x30\x4b\xb3\x33\xd6\xc1\xe7\x74\xf6\x7e\x7c\x3b\xc3\xe7\xe1\x74\x3a\x1c\xcd\xd2\x24\xc3\x78\x8a\xab\xf1\xe8\x3a\x9d\xa5\xe3\x51\x86\xf1\xaf\x18\x8e\xbe\xe0\x43\x3a\xba\x3e\x03\x49\x57\x92\x01\x3d\xd6\xc6\xf3\x6b\x03\xe9\xaf\x91\x72\x7f\x67\x19\xd1\x0b\x80\x42\x1f\x80\x6c\x4d\x42\x16\x52\xa0\xe2\x6a\xd9\xf0\x25\x61\xa9\x1f\xc8\x28\xa9\x96\xa8\xc9\xac\xa4\xf5\xc3\xb4\xe0\x2a\x67\x1d\x54\x72\x25\x1d\x77\xed\xc9\xdf\x9a\x8a\x18\xb3\xe4\x10\x6a\xd4\xb2\xa6\x82\xcb\x8a\x31\x12\xa5\xc6\x55\x49\xe2\xde\x27\xf4\x45\x75\x0b\xa9\x74\x4e\x96\xa5\x93\x41\x10\x30\x59\xe0\xee\x0e\xa1\x42\xd0\xdd\x7e\xb8\x7d\x97\x4c\x47\xc9\x2c\xc9\xbe\x66\xc9\xf4\x53\x7a\x95\x7c\x7d\x3f\xce\x66\xfb\x00\xf3\xf9\x5b\x5f\x4c\x31\x06\x4c\xc6\xd7\x5f\x47\xc3\x8f\x49\x36\x19\x5e\x25\x83\xee\xf6\xc5\x7f\x3f\xcc\xa9\xe0\x4d\xe5\xf6\x0c\xf8\xf8\xc5\x87\x0f\xba\x27\xb2\x06\xcf\x73\x83\x1d\x96\x86\x6a\xf4\xac\xe3\x8e\x70\x3b\xe9\x21\x1c\x5e\x62\x07\xc7\x65\x85\x50\x5d\x60\x07\xbe\xbe\x47\x6f\x5b\x1b\xa9\x1c\xba\x97\xfb\x1e\x76\x10\x8d\x43\x58\x5c\x00\x61\xde\x8b\x7b\xa7\x0c\x68\x1b\xfb\xb8\x41\xa9\xad\xeb\xa3\xbb\x3d\x14\xda\x7b\xba\xdb\xe9\xcd\x20\xf0\x9a\xb3\xfd\x38\xfe\xf7\x96\xfa\xff\x68\x9a\x8c\xa7\xb3\x7d\xcc\x6b\x19\x3f\x5c\xc4\x8a\xaf\xc8\xd6\x5c\x90\x8d\xff\xd2\xe4\x3e\x26\x95\xd7\x5a\x2a\x67\x63\x43\xae\x94\xea\x3e\x5f\x84\xb9\x91\x0f\x64\x82\x67\xbc\x20\xf1\x3e\xca\xa1\x31\x95\x67\xbc\x9d\xde\xec\x7f\x18\x6f\xb4\x3e\x0e\x25\x9d\xd8\x28\x8a\xbc\xcd\xe9\x7b\x52\x83\xee\x89\xe0\x0e\xf1\x03\x37\xb1\x69\x54\x6c\x49\x18\x72\x36\xbe\x3f\x6e\x85\x48\xea\xd8\x92\x79\x90\x82\xb8\x10\xba\x51\x2e\x6e\x23\x4f\x01\x06\x74\xe0\xcc\xc6\xbf\x8d\x5a\x8a\x7b\x34\x35\x0a\x69\xac\x43\x2e\x8b\x82\x0c\x29\x07\x59\xa3\x30\x7a\x85\x63\x13\x0c\x48\x27\xbe\x6c\x63\x2a\x84\xf6\x09\x16\x61\x28\xb8\x20\xf3\x7f\x51\x04\x8f\x84\x71\x08\xc3\x92\xb8\x17\x69\x70\xd8\x61\xf2\x8f\x56\xba\x7d\xbc\x23\x6e\xc8\xa0\xbb\x6d\x99\xf7\x01\x7e\x67\x7e\x4f\xec\xf0\xed\xbb\x2f\x1e\x1a\x84\x21\x37\x4b\x94\x5e\x92\x4f\x93\x0d\xd0\x8b\xee\xce\xe7\x91\x6d\x16\x96\x9c\xc5\x0e\xd1\xdd\x3c\xf2\x9a\x22\x6b\xc9\xff\xdf\xb5\x27\xb2\xc6\x1c\x3b\xac\x78\x7d\x62\xa9\x22\xe1\x4e\x22\xbc\x1a\xa0\x5b\x9e\x9e\xb6\x31\xe7\xf3\xde\x29\x76\x3b\xd0\xa3\x74\xb8\x60\xf0\xda\x0f\xba\xdb\x74\xb2\x0f\x30\x18\x40\x35\x55\x85\xf9\x1c\xaf\x5f\xe3\xf0\x3a\x0a\xc9\x5e\xbc\x90\xd6\xf1\xf8\x18\x80\x64\x74\x3d\x19\xa7\xa3\xd9\xe0\x60\xeb\x5f\xfe\x72\x7e\xf1\xe6\xc7\x94\x7f\xd3\x52\xf9\x49\x74\xb7\xcf\x8e\x07\x09\x3c\x92\xc0\x51\x38\x08\xc3\x85\x54\x39\x78\x55\x01\x61\xf8\xcd\xc7\xfc\x14\xc0\xa8\xb2\x74\xcc\x98\x39\x6e\x1c\xac\x54\xcb\x8a\x20\x95\x75\x7e\x4f\xff\x67\x4e\xdf\xc3\x9f\x01\x00\x00\xff\xff\x6a\xd0\x81\xa7\x73\x06\x00\x00") + +func examplesStorageRethinkdbImageRunShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageRethinkdbImageRunSh, + "examples/storage/rethinkdb/image/run.sh", + ) +} + +func examplesStorageRethinkdbImageRunSh() (*asset, error) { + bytes, err := examplesStorageRethinkdbImageRunShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/rethinkdb/image/run.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageRethinkdbRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xc1\x8e\x9b\x30\x10\x86\xef\x7e\x8a\x79\x01\x08\x54\x6a\x95\xfa\xb6\xda\xdd\xde\xb6\x45\x5b\xa9\x57\xe4\x98\x59\x62\xc5\xf6\xa0\xb1\x41\xaa\xaa\xbe\x7b\xe5\x92\x18\x92\xd0\xae\x4f\xf0\x33\xff\x37\xff\x0c\x56\x83\xf9\x81\x1c\x0c\x79\x09\x53\x2d\x4e\xc6\x77\x12\x5e\x71\xb0\x46\xab\x68\xc8\x3f\x92\x8f\x4c\xd6\x22\x0b\x87\x51\x75\x2a\x2a\x29\x00\xac\x3a\xa0\x0d\xe9\x09\xa0\x3b\x48\x60\x8c\x47\xe3\x4f\xdd\x41\x00\x78\xe5\x70\xa5\x14\xac\x45\x18\x50\xa7\x62\x9e\xc1\x41\x42\x2d\x00\x02\x5a\xd4\x91\x78\x1b\x03\xc0\x64\xff\x82\x66\x8f\x00\x88\xe8\x06\xab\x22\xce\x86\x75\x9e\x74\xd6\x99\xb6\x81\x9b\x50\x80\x4b\xba\x74\x34\xf9\xa8\x8c\x47\xce\xa0\x02\x8c\x53\x3d\x4a\xe8\x35\x97\x86\x76\x3d\x51\x6f\xb1\x5d\x0a\x77\xb9\x89\xac\xcb\xfa\x53\x59\xb5\x75\xee\x76\xb3\x8b\xac\xa3\x9f\x96\xa0\xc5\xb9\xac\xf9\xf6\xd4\x7e\x7d\x78\x79\xfe\xde\x3c\x3c\x3e\xe7\xaf\x00\x93\xb2\x23\x7e\x61\x72\x72\x25\x02\xbc\x19\xb4\xdd\x2b\xbe\x5d\xab\x67\xbd\x51\xf1\x28\xf3\x8a\xca\xd4\x20\x0c\x4a\x63\xae\x1d\x88\x63\x58\x67\xc8\x03\x35\xc4\x51\xc2\xbe\xda\x57\x2b\xf0\x9c\x50\x75\xce\xf8\x22\x59\xff\x6d\xfc\xb0\xaf\xea\x8f\x77\xce\x8e\xcd\x84\xfc\x9e\xf5\xf3\x96\x55\xdb\x31\xc4\x5b\xef\x44\x76\x74\xf8\x42\xa3\xbf\x9e\xc2\x25\x65\x1e\x7e\x97\x26\x5f\x7e\x4e\x9b\x5e\xef\xe0\xcb\x35\x0d\x91\x58\xf5\x97\x05\xcd\xfc\xd5\x25\xf8\x7f\x39\x00\xba\x21\xfe\x7c\x32\x2c\xe1\xd7\x6f\xf1\x27\x00\x00\xff\xff\x32\xfd\x88\xa4\x56\x03\x00\x00") + +func examplesStorageRethinkdbRcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageRethinkdbRcYaml, + "examples/storage/rethinkdb/rc.yaml", + ) +} + +func examplesStorageRethinkdbRcYaml() (*asset, error) { + bytes, err := examplesStorageRethinkdbRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/rethinkdb/rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessConfigureSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\xef\x6f\xdb\x36\x10\xfd\xce\xbf\xe2\x4d\x36\x60\x27\xb0\xa5\xa4\xc0\xbe\x38\xc8\x00\x37\x4d\x37\xa3\x9d\x5d\xd8\x6e\x8b\xa2\xe9\x02\x9a\x3a\x4b\x5c\x28\x52\x23\x29\xbb\x1e\xfa\xc7\x0f\xd4\x0f\xb7\x4e\xd7\x62\x3f\xf4\x4d\xe4\xdd\xbb\x77\x77\x8f\x77\xbd\x1f\x92\x8d\xd4\xc9\x86\xbb\x9c\xb1\x1e\x6e\x4c\x79\xb0\x32\xcb\x3d\x9e\x5c\x5c\xfe\x88\x75\x4e\x78\x51\x6d\xc8\x6a\xf2\xe4\x30\xad\x7c\x6e\xac\x8b\x59\x8f\xf5\xf0\x52\x0a\xd2\x8e\x52\x54\x3a\x25\x0b\x9f\x13\xa6\x25\x17\x39\x75\x37\x23\xbc\x21\xeb\xa4\xd1\x78\x12\x5f\x60\x18\x0c\xa2\xf6\x2a\x3a\xbb\x62\x3d\x1c\x4c\x85\x82\x1f\xa0\x8d\x47\xe5\x08\x3e\x97\x0e\x5b\xa9\x08\xf4\x51\x50\xe9\x21\x35\x84\x29\x4a\x25\xb9\x16\x84\xbd\xf4\x79\x1d\xa6\x05\x89\x59\x0f\xef\x5a\x08\xb3\xf1\x5c\x6a\x70\x08\x53\x1e\x60\xb6\x5f\xda\x81\xfb\x9a\x70\xf8\x72\xef\xcb\x49\x92\xec\xf7\xfb\x98\xd7\x64\x63\x63\xb3\x44\x35\x86\x2e\x79\x39\xbb\xb9\x9d\xaf\x6e\xc7\x4f\xe2\x8b\xda\xe5\xb5\x56\xe4\x1c\x2c\xfd\x51\x49\x4b\x29\x36\x07\xf0\xb2\x54\x52\xf0\x8d\x22\x28\xbe\x87\xb1\xe0\x99\x25\x4a\xe1\x4d\xe0\xbb\xb7\xd2\x4b\x9d\x8d\xe0\xcc\xd6\xef\xb9\x25\xd6\x43\x2a\x9d\xb7\x72\x53\xf9\x93\x62\x75\xec\xa4\x3b\x31\x30\x1a\x5c\x23\x9a\xae\x30\x5b\x45\x78\x3a\x5d\xcd\x56\x23\xd6\xc3\xdb\xd9\xfa\x97\xc5\xeb\x35\xde\x4e\x97\xcb\xe9\x7c\x3d\xbb\x5d\x61\xb1\xc4\xcd\x62\xfe\x6c\xb6\x9e\x2d\xe6\x2b\x2c\x9e\x63\x3a\x7f\x87\x17\xb3\xf9\xb3\x11\x48\xfa\x9c\x2c\xe8\x63\x69\x03\x7f\x63\x21\x43\x19\x29\x0d\x35\x5b\x11\x9d\x10\xd8\x9a\x86\x90\x2b\x49\xc8\xad\x14\x50\x5c\x67\x15\xcf\x08\x99\xd9\x91\xd5\x52\x67\x28\xc9\x16\xd2\x85\x66\x3a\x70\x9d\xb2\x1e\x94\x2c\xa4\xe7\xbe\x3e\xf9\x2a\xa9\x38\x68\x69\x1d\xda\xe9\x84\x95\xa5\x47\x46\x9a\x2c\x0f\x1a\x12\x46\x6f\x65\x16\xbb\x7c\x84\x7d\x2e\x45\x1e\xf2\xe7\x70\xd2\xd3\x58\x19\xc1\x55\x6b\xd0\xe8\xc0\xe7\xdc\x07\x03\x6d\x3c\xeb\x41\xe4\x24\x1e\x28\x85\xd4\xde\xc0\x99\xca\x0a\x0a\xd6\xde\x1a\x55\x07\x5c\x91\x22\xe1\x03\xbf\x16\xa4\xb2\x84\xa7\x5c\x3c\x54\x25\x56\xde\xd8\x90\xd2\xac\x28\x15\x15\xa4\x1b\xea\x31\x73\xcd\xf9\x75\x26\x1c\xb3\xc4\x53\x8c\x4b\x44\x8f\x7c\x86\x81\xcb\x08\x99\x70\x67\x78\x9f\x09\xf7\x61\x82\x88\xc9\x2d\xde\x63\xac\x11\xf5\x97\xb7\xaf\x5e\xbe\x8b\xf0\xe1\x2a\x54\x40\xa3\x43\xec\x2e\xae\xb0\x95\x8c\x09\xee\x08\x51\xbf\xbd\x8c\x20\x35\x0b\x78\x0c\xe8\xe1\x67\x63\x32\x45\xb8\x51\xa6\x4a\xbb\xa0\x0c\x28\xad\xf9\x9d\x84\xbf\xee\x0f\x33\x51\x5f\xb5\x95\x51\xd2\xf9\xee\x12\x9f\x90\x59\x2a\x31\x68\xff\xef\xdc\xf9\xf5\x00\x9f\x10\xde\xe5\xd8\x62\xe0\x92\xdf\xe2\xf3\xeb\x3b\x77\x3e\x8c\xcf\xcf\xfa\xc9\xdd\x65\x32\x08\x31\x8f\x99\xb6\xa1\x9f\xd1\x8e\x94\x29\xc9\x3a\xdc\x18\xed\x8c\x22\xbc\x6a\x03\xbc\xef\xb7\xd0\x75\xd6\xc0\x37\xf3\xee\xe8\x9e\xe4\xdd\xd9\xff\x89\xa8\xc3\x39\x7a\xb0\xf0\x20\x49\xe4\x06\xd1\xed\x72\xb9\x58\x4e\x8e\x31\x35\x2f\x08\x45\xe5\x7c\x3d\x1a\x36\x04\x2a\x4a\x7f\x88\xa3\xc6\xe3\xa3\xf4\xb8\x64\xa8\xcb\xfa\x75\x2a\x27\x55\xc4\xa6\x12\x0f\xe4\x6b\x89\xbf\x91\x3e\xbc\x85\x4d\xdd\x5b\x37\x41\xd4\x5e\x9e\x70\x6c\x8e\xbe\x43\xf1\x69\x03\xf8\x8f\x19\x36\xee\xac\x43\x99\x2f\xd6\xb7\x13\xcc\xb6\xf5\xec\xcb\xf9\x8e\xf4\xc0\x83\xab\x90\xc4\x01\xc2\x12\x0f\x23\xa0\x9e\x83\x0d\x93\x51\x6d\x28\xb8\x46\x1a\x24\x1f\x06\x90\xad\x74\x78\x92\x93\xe8\x08\x5a\x4f\x36\x64\xae\xf2\x52\xa1\xd8\x20\x73\x93\x24\xe9\x52\xe9\x18\x30\xb4\xa9\xdf\x6f\x15\xcf\xdc\x75\x7f\x58\x3b\x8f\xdb\xc3\x56\x98\xf7\xf2\xe4\x7d\x04\xcd\xe3\x8e\xe1\x6f\xbf\x71\x26\xdc\xfd\x23\xf7\x4e\x96\xd1\xa0\x6b\xf7\x20\xfa\x57\x00\x6d\xc3\xa2\x41\xcb\x7f\x10\x05\xbd\x5e\x5d\xb1\xf0\x06\x9b\xe7\xf2\xab\xa9\x74\x28\xd3\xce\xa8\xaa\x20\x0c\x29\xce\x62\xcc\x9f\xaf\x4e\x84\xbd\x34\xc6\x23\x95\x96\x84\x37\xf6\x50\x0b\xa0\xed\x3c\x86\x95\xab\xb8\x52\x87\x30\x67\xe7\xcf\x57\x28\x02\xde\x59\x10\x44\x88\x71\x6f\x8d\x39\xd5\xc4\xf1\xf4\x3b\xb2\x78\x14\xee\x3f\x2b\xa3\xde\x67\xc1\x99\xa7\x69\x68\xbd\xfd\xcc\x30\x2c\x98\x30\x62\x77\x5e\x78\x95\x8e\xdb\xc1\xa7\xc8\x8e\x3d\x15\xa5\xe2\x9e\x1e\x2b\x22\x0c\xc2\x9d\xf7\x61\x57\xf9\x71\x69\xd2\xa3\x21\xb8\x43\x4a\x61\x34\x6f\xea\x71\x5a\xe3\x7e\xb1\xe7\x53\x23\xdc\x57\xfa\x6a\x57\xe7\xc3\xd1\x2c\x96\x26\xd9\x5d\xc6\x17\x49\x30\x4f\x2a\x47\x76\x9c\x55\x32\xa5\xa4\x69\x8c\x8b\x73\x5f\xa8\x9e\xde\xba\xff\xa9\xc1\x7a\x13\x7c\x53\x43\x75\x77\x1e\x01\x84\x66\x05\x09\x1d\x3b\x77\x54\xd1\xf9\x19\x7b\xd4\xb9\xd7\xda\x55\x65\x69\x6c\x50\x54\x03\xd3\x4d\x70\x9c\xf2\x98\xe0\x38\xbd\xd9\xb1\x93\xe4\xb8\x60\xac\x01\x5c\xf1\x5d\x58\x95\xc7\x05\x17\xc7\x71\xd4\x5e\x9d\x64\x7d\x17\xf5\xbf\xfc\xbf\x8b\x22\xfc\xf4\xd9\x8b\xb1\xbf\x02\x00\x00\xff\xff\x9c\x4b\x93\x95\x93\x09\x00\x00") + +func examplesStorageVitessConfigureShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessConfigureSh, + "examples/storage/vitess/configure.sh", + ) +} + +func examplesStorageVitessConfigureSh() (*asset, error) { + bytes, err := examplesStorageVitessConfigureShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/configure.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessCreate_test_tableSql = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xce\xb1\x0a\xc2\x30\x14\x85\xe1\x3d\x4f\x71\xc6\x04\x3a\x44\x77\x87\xb4\xbd\xd4\xa0\x06\x89\x55\xe8\x54\x42\x7b\x29\x45\x1a\x8b\xe9\xe2\xdb\x4b\xc1\x49\xe8\x7c\x7e\xf8\x4e\xe1\xc9\xd4\x84\xda\xe4\x67\xc2\xc4\x29\x85\x81\x13\xa4\x00\xe6\x30\x30\x72\x5b\x59\x57\xcb\xbd\x56\xb8\xbb\x9b\xad\x1c\x95\x99\x00\x96\x71\xe2\xb6\x7b\x73\x58\xb8\x6f\x63\xda\xca\x9e\xfc\x49\x73\xe8\xb8\x1d\xfb\xad\xe4\x47\xe2\x61\x7c\x71\x34\x5e\xee\xb4\xd6\x5a\xad\xcb\xd5\xdb\x8b\xf1\x0d\x4e\xd4\x40\xae\x67\xb2\x7f\x56\x09\x05\x72\x95\x75\x74\xb0\x31\xbe\xca\x5c\x88\x6f\x00\x00\x00\xff\xff\xb7\x8a\xd7\x6c\xcf\x00\x00\x00") + +func examplesStorageVitessCreate_test_tableSqlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessCreate_test_tableSql, + "examples/storage/vitess/create_test_table.sql", + ) +} + +func examplesStorageVitessCreate_test_tableSql() (*asset, error) { + bytes, err := examplesStorageVitessCreate_test_tableSqlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/create_test_table.sql", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessEnvSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x55\x5f\x8f\xda\xba\x13\x7d\xf7\xa7\x98\x1f\x20\xb1\x2b\x91\x2c\xbb\xd5\x4f\xaa\xa8\x78\xc8\x42\xda\x45\x4b\x01\x91\x6c\x7b\x57\x57\x57\xa9\x49\x26\x89\x6f\x1d\x3b\xb5\x9d\x65\x29\xe2\xbb\x5f\x39\x09\x14\xfa\x87\x07\xe2\xd8\x67\x8e\xcf\x9c\x19\x3b\x5d\x98\xc8\x72\xa7\x58\x96\x1b\xb8\x1b\xde\xfe\x1f\xc2\x1c\xe1\xb1\xda\xa0\x12\x68\x50\x83\x57\x99\x5c\x2a\xed\x92\x2e\xe9\xc2\x9c\xc5\x28\x34\x26\x50\x89\x04\x15\x98\x1c\xc1\x2b\x69\x9c\xe3\x71\x65\x00\x9f\x50\x69\x26\x05\xdc\xb9\x43\xb8\xb2\x80\x4e\xbb\xd4\xb9\x7e\x47\xba\xb0\x93\x15\x14\x74\x07\x42\x1a\xa8\x34\x82\xc9\x99\x86\x94\x71\x04\x7c\x8d\xb1\x34\xc0\x04\xc4\xb2\x28\x39\xa3\x22\x46\xd8\x32\x93\xd7\xdb\xb4\x24\x2e\xe9\xc2\x73\x4b\x21\x37\x86\x32\x01\x14\x62\x59\xee\x40\xa6\xe7\x38\xa0\xa6\x16\x6c\x7f\xb9\x31\xe5\xe8\xe6\x66\xbb\xdd\xba\xb4\x16\xeb\x4a\x95\xdd\xf0\x06\xa8\x6f\xe6\xb3\x89\xbf\x08\x7c\xe7\xce\x1d\xd6\x21\x4f\x82\xa3\xd6\xa0\xf0\x5b\xc5\x14\x26\xb0\xd9\x01\x2d\x4b\xce\x62\xba\xe1\x08\x9c\x6e\x41\x2a\xa0\x99\x42\x4c\xc0\x48\xab\x77\xab\x98\x61\x22\x1b\x80\x96\xa9\xd9\x52\x85\xa4\x0b\x09\xd3\x46\xb1\x4d\x65\x2e\xcc\x3a\xaa\x63\xfa\x02\x20\x05\x50\x01\x1d\x2f\x80\x59\xd0\x81\x7b\x2f\x98\x05\x03\xd2\x85\xcf\xb3\xf0\x61\xf9\x14\xc2\x67\x6f\xbd\xf6\x16\xe1\xcc\x0f\x60\xb9\x86\xc9\x72\x31\x9d\x85\xb3\xe5\x22\x80\xe5\x7b\xf0\x16\xcf\xf0\x38\x5b\x4c\x07\x80\xcc\xe4\xa8\x00\x5f\x4b\x65\xf5\x4b\x05\xcc\xda\x88\x89\xf5\x2c\x40\xbc\x10\x90\xca\x46\x90\x2e\x31\x66\x29\x8b\x81\x53\x91\x55\x34\x43\xc8\xe4\x0b\x2a\xc1\x44\x06\x25\xaa\x82\x69\x5b\x4c\x0d\x54\x24\xa4\x0b\x9c\x15\xcc\x50\x53\xcf\xfc\x92\x94\x4b\x48\x17\x42\x5b\x4e\x66\xf1\xc0\x44\xcc\xab\x04\x9b\xe2\x56\xba\x71\xd2\xe2\x65\xad\x53\xc7\x8a\x95\x46\x5b\xff\xea\x1e\x48\x98\xc2\xd8\x48\xb5\xab\x79\x3e\x4a\x6d\x20\xe6\x95\x36\xa8\x34\x6c\x19\xe7\xf0\x6f\xa5\x0d\x6c\x10\x68\x1c\xa3\xb6\x74\x75\x6f\xf4\xbf\x56\x1b\x8c\x0d\xef\x5b\x13\x7b\x2b\x2f\x7c\xb0\xe9\x3e\xc8\x2d\xbe\xa0\xb2\x15\x29\x10\x8a\xba\xb9\xdb\x82\x02\x85\x84\xa5\x29\x2a\x14\xc6\x76\x5a\x41\x45\xe2\xc2\x7b\x69\x9d\xa3\x45\xc9\x71\x00\x1f\x1e\xfd\x53\xf9\x49\x17\x1e\x9f\xee\xfd\x49\x38\x1f\xf7\xb3\x98\xcb\x2a\x81\x0d\x1a\xdb\x73\xc2\x76\x1f\x2a\x38\x09\xb0\x9e\x52\xd8\xe6\x8c\xa3\x0b\x0b\xb9\x05\x93\x53\x03\x85\xcd\x44\xa6\x20\x2b\x45\xba\x75\xcb\xc7\x54\xa3\x6e\xd2\x11\xb6\x89\x8e\xfc\x2d\xd1\x00\xb6\xd8\xe7\x1c\x0a\xfa\x15\x1b\x0a\x6b\x5a\x82\x29\xad\xb8\x71\xc9\x11\xdd\xdb\xb7\xa3\x91\xd3\x06\x1e\x4e\x05\xd0\xb9\xac\x78\x02\x05\x35\x71\x73\x7a\x84\x4c\x70\x25\x55\x7d\xba\x5e\x4c\x6c\x78\xe2\x68\x54\x2f\x2c\x46\x77\x47\x0b\x4e\x3e\x85\x93\x70\x3e\x8d\x56\xcb\x75\x38\xee\xed\xcf\xde\x46\xce\x9b\xe1\x70\x78\x5b\x53\x4f\x2a\x6d\x64\xc1\xbe\xd7\xe7\xa0\xa4\x8a\x16\x68\xab\x43\x82\x07\x6f\x3d\x0d\xc6\xbd\x7d\x33\x18\x39\x7d\xe7\xed\x70\xf0\x76\xe8\xf4\x0f\x24\xf4\xee\xe7\x7e\x18\x44\x2b\x7f\x1d\xd5\xcb\xe3\xde\xfe\x97\xb9\x91\x73\x77\x20\xeb\xe9\x72\x31\x7f\x8e\x26\xcb\xa7\x85\xd5\x70\xfe\x3a\x72\x86\x07\xf2\xd1\xfb\x2b\x0a\xbd\xe0\x31\xfa\xec\xcd\xc2\x68\xed\x87\xeb\x99\x6f\x37\xfd\xed\x7c\x2d\xbb\x89\xf9\x14\x36\xfb\x45\xe1\x72\xb5\xfc\x5d\xf0\x9f\x01\x23\xe7\xf6\xed\xf0\x40\x7e\x00\xfc\x8f\xab\xb9\x17\xfa\xb5\x45\x3f\xcd\x8d\x9c\xfe\x8b\x31\xd6\x1a\xe3\x94\x32\x71\x0c\x16\x25\xa7\xa6\xf1\xb7\x6f\x49\x3e\x78\xa1\x7f\x49\x71\x31\x53\x13\x64\xd4\xa0\x63\x5b\x4b\x49\xce\x51\xfd\x89\xe5\x68\xd2\xf9\xeb\xc8\xb9\x3d\x90\x89\x3f\x9f\xdb\xbc\xea\xe7\xc8\xe9\x1b\xd4\xa6\x7f\x20\x7e\x38\x99\x46\x6b\x7f\x35\x9f\x4d\xbc\x60\xfc\x86\x1c\x79\x4e\x53\xbd\x73\x26\x5b\xeb\x0f\xd8\xb4\x9d\xff\x6a\x50\x09\xca\x67\x2b\xdb\xc3\x54\xec\xea\x56\x72\x49\x86\x26\xb2\xa3\x88\x95\x57\xd7\xb0\x27\x00\xbd\xb6\x1d\x21\x43\x03\x8e\x84\xa3\x74\x70\x0c\xf4\xf7\x7b\x45\x45\x86\x70\xc5\x44\x82\xaf\xe0\x32\x83\x85\x86\xe1\xb5\xab\x0d\x35\x95\x76\x69\x92\xd8\x4b\x0b\xf5\xe1\xb0\xdf\xb3\x14\xf0\x1b\xb8\x66\x57\x22\x74\x7e\x08\xe8\xd8\xb5\x23\xd2\x8e\x51\x24\xa7\x47\xbf\xd6\xa5\x49\x73\x06\xd4\xce\xde\xcc\x29\x13\x49\xdb\xed\xd0\x86\x01\x4b\xeb\x2f\x4f\xa9\xe4\x0b\x4b\xec\xd5\x68\x13\x69\x30\x91\xc5\xb4\xc9\xb0\x14\xfe\x06\xe7\x3b\x74\x7a\xed\x59\xf0\xa6\xd3\x75\x07\xfe\x79\x67\x4d\x11\xc4\x7e\x55\xda\xec\xc7\xbd\xab\x33\x2f\xae\xeb\xa5\x26\x5a\x40\xa7\xd7\x4e\x5f\x46\x02\x9c\x91\x8e\x4f\xa0\x51\xef\xec\xdc\x75\x6a\x64\xca\x48\xfb\x87\x71\x2e\x7f\x52\x63\x73\x8d\xa5\x48\x59\x16\xd9\x2b\x76\xfc\x25\x61\x4a\xd0\x02\xa1\xd3\xdb\xdf\x7b\xc1\x43\x14\x2c\x9f\xd6\x13\xff\xd0\xf9\x72\xd3\xc0\x5c\x9d\x93\x5a\xda\xff\xc0\x49\xa1\x77\x16\x7b\x26\xaf\xd9\x68\xc5\x91\x6a\x04\x55\x09\x70\xdb\xe8\x4a\xa1\xab\x73\x48\x99\xd2\xc6\xba\x9b\xa1\x40\x65\xeb\x7b\x22\xaf\x6f\x7a\xd7\x2a\xc7\x57\x66\xe0\x96\xa4\x8c\x10\x2d\x2b\x15\xe3\xc5\x6e\x84\xfc\x17\x00\x00\xff\xff\x47\x89\xec\x2f\x74\x08\x00\x00") + +func examplesStorageVitessEnvShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessEnvSh, + "examples/storage/vitess/env.sh", + ) +} + +func examplesStorageVitessEnvSh() (*asset, error) { + bytes, err := examplesStorageVitessEnvShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/env.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessEtcdControllerTemplateYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\xdb\x6a\x1b\x3d\x10\xbe\xdf\xa7\x98\x08\x93\xc3\xc5\x66\xed\xfc\x3f\xb4\x28\xb8\x90\xba\xa6\x2d\x24\x75\x48\x42\x6e\x42\x62\x14\xed\xc4\x16\xd5\x4a\x42\x1a\x6f\x09\x8b\xdf\xbd\x68\xed\x4d\x36\xc2\x18\xaa\x9b\x6c\x66\xe6\x3b\xcc\x01\x0b\xa7\xee\xd1\x07\x65\x0d\x87\x7a\x94\xfd\x56\xa6\xe4\x70\x83\x4e\x2b\x29\x48\x59\x33\xb1\x86\xbc\xd5\x1a\x7d\x56\x21\x89\x52\x90\xe0\x19\x80\x11\x15\x72\x40\x92\x65\xde\x34\x12\xb5\x5e\xaf\xb3\xe0\x50\xc6\x9c\xdf\xa0\x03\x87\xa6\xe9\xbe\xd7\xeb\x0c\x80\xb0\x72\x5a\x10\xc6\x22\x80\x3e\x5d\x7c\x5a\x3c\xa3\x0e\xdd\x7f\x00\xd2\x56\xce\x1a\x34\xb4\xd1\x79\x8f\xa3\xd6\x91\x7a\xab\xda\x85\x85\x73\x1c\x6a\x45\x18\x42\x1b\xeb\xdc\xc4\x57\x5b\xbd\xaa\xb0\xc7\x9d\x6f\x1b\x90\xe8\x29\xbc\x45\x01\x96\x36\xd0\xb5\xa0\x25\x87\xc6\xb5\x7f\x0a\x24\x59\x84\xa0\x8b\xb6\xb2\x53\x93\xd6\x90\x50\x06\xfd\x0e\xca\x0f\x5e\x01\x54\x25\x16\xd8\x19\x8b\x6c\x25\xaf\xcf\x4e\x87\xa7\xa3\xff\x72\xad\x08\x7b\x95\x1b\x93\x57\x76\x65\xa8\x47\xbb\xcf\x6d\x7c\x1e\x45\x39\x33\xfa\x95\x03\xf9\x15\x26\xc9\x2a\x92\x5d\xef\x68\x24\xeb\x13\x04\xbb\xf2\x12\x13\x4d\xad\x2a\x95\xfa\x88\x3b\xab\xac\x7f\xe5\xc0\x46\x67\x9f\xaf\x14\x4b\xb2\xd2\xad\x62\x6a\x38\xac\xfa\x19\x69\xab\x4a\x98\x32\x6d\xe9\x59\x84\x65\x12\x62\xb9\x64\x49\xe8\x4b\x9e\x68\x28\x27\xca\xd2\x8f\x07\xc7\x71\x55\x71\x2c\x90\xab\x93\x2c\x29\x5a\x68\xfb\x2c\xf4\x3c\x4e\x7b\x3c\x98\xde\x4d\xbe\xcd\xbf\x5f\xce\xbe\x5e\x5c\xce\x6f\xa7\x37\xf7\x3f\x27\xd3\xf9\x8f\xd9\xed\x1d\xdf\x99\xb9\x9e\xdd\xdc\xa5\x74\xf1\xd2\xc6\xac\xbb\x38\x06\x87\x87\x49\x81\xb6\x72\x2b\x37\x8f\xb6\xe6\xb5\xf0\x63\xd6\xb2\x0f\x5a\xd0\xd3\xd3\xfa\x83\xf4\x7e\x0a\x67\xfd\x7e\x8a\xe8\x71\x2f\xc5\x78\xd0\x1c\xec\xf0\xb4\xe6\x1f\xe3\x9d\xd0\x3a\x6d\x58\xbd\xc0\x03\xf4\x1a\x3e\x18\x03\xdb\xcc\x94\xc1\xe3\x39\xd0\x12\x4d\x82\x58\x19\x52\xba\xbd\x7d\x49\x1a\xf2\x09\xb0\x25\x91\xe3\x45\x31\xe8\xed\x22\xbd\x97\x80\x04\xac\xa8\xa9\x88\x3a\xa1\x78\xd7\x7b\x03\xbf\x9b\x65\xe7\x50\xda\x04\x8f\x72\x69\x81\x3d\x0c\x8e\x4b\x41\x78\xf2\x08\x7f\x84\x22\x65\x16\xf0\x62\xfd\xf6\x04\x5a\x47\x40\x16\x3c\x2e\x54\x20\xf4\xed\x2e\xe1\xa8\x93\x3a\x62\xe7\xa9\x27\x8d\xe8\x60\x94\x86\x4b\x6b\x30\x8d\xbd\xa8\x74\x6e\xad\x5a\xde\x5e\xe5\x20\xee\xf9\xd7\xc5\xd5\x14\xf2\x52\x05\x69\x6b\xf4\xaf\xd0\x34\x6f\xdf\xbd\x5f\xae\xcd\xcb\x45\x59\xa3\x27\x15\x30\x97\x5a\xa1\xa1\x7c\xe5\x75\x80\x6e\x12\x9b\xbb\xe7\xff\x0f\x87\xa3\x14\xa8\x8c\x22\x25\x74\x8f\xc0\x21\xfa\x9d\xf0\x4f\x3b\xe0\x3a\x0e\xc6\xfc\xab\xe8\x16\xb5\x5f\x29\xfb\x1b\x00\x00\xff\xff\x77\x28\xec\x17\x5e\x06\x00\x00") + +func examplesStorageVitessEtcdControllerTemplateYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessEtcdControllerTemplateYaml, + "examples/storage/vitess/etcd-controller-template.yaml", + ) +} + +func examplesStorageVitessEtcdControllerTemplateYaml() (*asset, error) { + bytes, err := examplesStorageVitessEtcdControllerTemplateYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/etcd-controller-template.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessEtcdDownSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xd1\x6b\xe3\x46\x10\xc6\xdf\xf7\xaf\xf8\x6a\x19\xd4\x82\x23\xa7\x81\xbe\xdc\x91\x07\xc5\x71\x39\x11\x63\x43\xe4\xf4\xb8\xa7\xcb\x6a\x35\x96\x16\xd6\xbb\xea\xee\x28\x8a\xb9\xde\xff\x5e\x76\x93\x50\x87\xa3\x70\x7e\x31\x68\xbe\xf9\xed\x37\xdf\x4c\xf6\xcb\xb2\xd1\x76\xd9\xc8\xd0\x0b\x91\x61\xe5\x86\x93\xd7\x5d\xcf\xb8\xba\xfc\xfd\x0f\xec\x7b\xc2\xdd\xd8\x90\xb7\xc4\x14\x50\x8e\xdc\x3b\x1f\x0a\x91\x89\x0c\x1b\xad\xc8\x06\x6a\x31\xda\x96\x3c\xb8\x27\x94\x83\x54\x3d\xbd\x55\x16\xf8\x8b\x7c\xd0\xce\xe2\xaa\xb8\xc4\xaf\x51\x30\x7b\x2d\xcd\x7e\xfb\x28\x32\x9c\xdc\x88\xa3\x3c\xc1\x3a\xc6\x18\x08\xdc\xeb\x80\x83\x36\x04\x7a\x56\x34\x30\xb4\x85\x72\xc7\xc1\x68\x69\x15\x61\xd2\xdc\xa7\x67\x5e\x21\x85\xc8\xf0\xe5\x15\xe1\x1a\x96\xda\x42\x42\xb9\xe1\x04\x77\x38\xd7\x41\x72\x32\x1c\x7f\x3d\xf3\xf0\x61\xb9\x9c\xa6\xa9\x90\xc9\x6c\xe1\x7c\xb7\x34\x2f\xc2\xb0\xdc\x54\xab\xf5\xb6\x5e\x5f\x5c\x15\x97\xa9\xe5\xc1\x1a\x0a\x01\x9e\xfe\x1e\xb5\xa7\x16\xcd\x09\x72\x18\x8c\x56\xb2\x31\x04\x23\x27\x38\x0f\xd9\x79\xa2\x16\xec\xa2\xdf\xc9\x6b\xd6\xb6\x5b\x20\xb8\x03\x4f\xd2\x93\xc8\xd0\xea\xc0\x5e\x37\x23\xbf\x0b\xeb\xcd\x9d\x0e\xef\x04\xce\x42\x5a\xcc\xca\x1a\x55\x3d\xc3\x4d\x59\x57\xf5\x42\x64\xf8\x5c\xed\x3f\xed\x1e\xf6\xf8\x5c\xde\xdf\x97\xdb\x7d\xb5\xae\xb1\xbb\xc7\x6a\xb7\xbd\xad\xf6\xd5\x6e\x5b\x63\xf7\x27\xca\xed\x17\xdc\x55\xdb\xdb\x05\x48\x73\x4f\x1e\xf4\x3c\xf8\xe8\xdf\x79\xe8\x18\x23\xb5\x31\xb3\x9a\xe8\x9d\x81\x83\x7b\x31\x14\x06\x52\xfa\xa0\x15\x8c\xb4\xdd\x28\x3b\x42\xe7\x9e\xc8\x5b\x6d\x3b\x0c\xe4\x8f\x3a\xc4\x65\x06\x48\xdb\x8a\x0c\x46\x1f\x35\x4b\x4e\x5f\x7e\x18\xaa\x88\xb7\xb4\x8f\xeb\xd4\x51\x0f\x7a\x96\xc7\xc1\x10\x82\xf2\x7a\x60\x70\x2f\x19\x4c\xd2\x07\xb4\x6e\xb2\xa9\x93\x58\xb5\x08\xe4\x9f\xc8\x07\x04\x96\x9e\x53\xde\x22\x4b\x95\x8b\x71\x28\x42\x5f\x08\x11\x88\x71\x41\x42\xbc\x90\xbe\x7a\xe7\xf8\xfa\xb1\xd5\xde\xca\x23\x61\x36\xff\x76\x53\xd6\x9f\xbe\xd6\xbb\x87\xfb\xd5\xfa\xfb\xec\x51\x04\x37\x7a\x45\x98\x9f\xc9\x97\x64\x9f\x8a\x78\xed\xab\xf5\x66\x53\x5f\xcf\xbf\xa5\xff\x0f\x17\x39\x53\xe0\xfc\xbb\x50\x64\x4c\xb8\x7e\x24\xd5\x3b\xcc\x53\x0d\xff\x80\x3d\xf2\x45\x8e\x1c\xf9\x63\x1c\xed\x96\x0c\x31\xc1\x53\xba\x85\x18\x02\x94\xb3\xec\x9d\x31\xe4\x83\x88\x89\x46\x4c\x3c\x88\xbc\x33\xae\x91\x26\xc7\x3c\x81\x3f\xa2\x75\x02\x48\xf4\x59\xc2\xc4\x78\xd3\xf0\x67\xb4\xff\x60\x69\x3b\xa9\x35\x11\x8b\xa2\x98\x09\x60\x7e\xf7\x70\xb3\x5e\xed\x37\x68\x7f\x30\x72\xd6\x9a\x82\x4b\xbd\xe2\x7f\x9e\x8c\x79\x6b\x45\x3f\xf7\xc8\x9b\xf8\x0c\xdb\x3a\x4b\x42\xfc\x1b\x00\x00\xff\xff\x04\xe9\x17\x4c\x44\x04\x00\x00") + +func examplesStorageVitessEtcdDownShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessEtcdDownSh, + "examples/storage/vitess/etcd-down.sh", + ) +} + +func examplesStorageVitessEtcdDownSh() (*asset, error) { + bytes, err := examplesStorageVitessEtcdDownShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/etcd-down.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessEtcdServiceTemplateYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x8d\x3d\xaa\xc3\x30\x10\x84\xfb\x3d\xc5\x5c\xc0\x60\xc3\xab\xf6\x1a\x0f\x5e\xbf\x4f\x9e\x42\x64\x2d\x09\x69\x71\x63\x7c\xf7\xe0\x38\x45\xea\x94\xf3\xf3\xcd\x3c\x72\x59\x15\xbf\xec\x7b\x4e\x14\x6b\xf9\x8f\x7d\xe4\x5a\x14\xfb\x22\x1b\xc3\x56\x0b\x53\x01\x8a\x6d\x54\x30\xd2\x3a\x1d\x47\xa2\xfb\x79\x0a\xe0\xf6\x4f\x1f\x57\x0e\xa4\xba\xb5\x5a\x58\xe2\xae\xdd\x1e\xdd\x15\x1f\x00\x60\xad\x29\xf6\x1c\x1c\x43\x46\x63\xba\xe0\x56\x7b\xbc\x57\xa6\x97\x50\xfc\xcc\xf3\x22\xc0\xa0\x33\x45\xed\x5f\x5f\xc8\x33\x00\x00\xff\xff\x14\xe4\x6b\x0c\xe2\x00\x00\x00") + +func examplesStorageVitessEtcdServiceTemplateYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessEtcdServiceTemplateYaml, + "examples/storage/vitess/etcd-service-template.yaml", + ) +} + +func examplesStorageVitessEtcdServiceTemplateYaml() (*asset, error) { + bytes, err := examplesStorageVitessEtcdServiceTemplateYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/etcd-service-template.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessEtcdUpSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x55\x61\x6f\xdb\x36\x14\xfc\xce\x5f\x71\x95\x0d\xb8\xc5\x6c\x29\x4d\xb1\x2f\x09\x8c\xc1\x75\xdc\xd5\x68\x90\x0c\xb1\xd3\xa2\xd8\x86\x84\xa2\x9e\x25\x62\x14\xa9\x91\x54\x1c\xd7\xf5\x7f\x1f\x48\xd9\x71\xba\x76\x98\xbf\xc8\x10\x8f\x8f\xf7\xee\x8e\x4f\xbd\x17\x59\x2e\x75\x96\x73\x57\x31\xd6\xc3\xd4\x34\x1b\x2b\xcb\xca\xe3\xf4\xe4\xf5\xcf\x58\x56\x84\x0f\x6d\x4e\x56\x93\x27\x87\x49\xeb\x2b\x63\x5d\xca\x7a\xac\x87\x4b\x29\x48\x3b\x2a\xd0\xea\x82\x2c\x7c\x45\x98\x34\x5c\x54\x74\x58\x19\xe2\x23\x59\x27\x8d\xc6\x69\x7a\x82\x97\x01\x90\xec\x97\x92\x57\xe7\xac\x87\x8d\x69\x51\xf3\x0d\xb4\xf1\x68\x1d\xc1\x57\xd2\x61\x25\x15\x81\x1e\x05\x35\x1e\x52\x43\x98\xba\x51\x92\x6b\x41\x58\x4b\x5f\xc5\x63\xf6\x45\x52\xd6\xc3\xe7\x7d\x09\x93\x7b\x2e\x35\x38\x84\x69\x36\x30\xab\xe7\x38\x70\x1f\x09\x87\x5f\xe5\x7d\x73\x96\x65\xeb\xf5\x3a\xe5\x91\x6c\x6a\x6c\x99\xa9\x0e\xe8\xb2\xcb\xf9\x74\x76\xb5\x98\x8d\x4e\xd3\x93\xb8\xe5\x56\x2b\x72\x0e\x96\xfe\x6e\xa5\xa5\x02\xf9\x06\xbc\x69\x94\x14\x3c\x57\x04\xc5\xd7\x30\x16\xbc\xb4\x44\x05\xbc\x09\x7c\xd7\x56\x7a\xa9\xcb\x21\x9c\x59\xf9\x35\xb7\xc4\x7a\x28\xa4\xf3\x56\xe6\xad\xff\x46\xac\x03\x3b\xe9\xbe\x01\x18\x0d\xae\x91\x4c\x16\x98\x2f\x12\xbc\x9d\x2c\xe6\x8b\x21\xeb\xe1\xd3\x7c\xf9\xfe\xfa\x76\x89\x4f\x93\x9b\x9b\xc9\xd5\x72\x3e\x5b\xe0\xfa\x06\xd3\xeb\xab\x8b\xf9\x72\x7e\x7d\xb5\xc0\xf5\x3b\x4c\xae\x3e\xe3\xc3\xfc\xea\x62\x08\x92\xbe\x22\x0b\x7a\x6c\x6c\xe0\x6f\x2c\x64\x90\x91\x8a\xa0\xd9\x82\xe8\x1b\x02\x2b\xd3\x11\x72\x0d\x09\xb9\x92\x02\x8a\xeb\xb2\xe5\x25\xa1\x34\x0f\x64\xb5\xd4\x25\x1a\xb2\xb5\x74\xc1\x4c\x07\xae\x0b\xd6\x83\x92\xb5\xf4\xdc\xc7\x37\xdf\x35\x95\x86\x2c\x2d\x83\x9d\x32\xe0\x41\x8f\xbc\x6e\x14\xc1\x09\x2b\x1b\x0f\x5f\x71\x0f\x61\x89\x87\x50\x91\x17\x05\x84\x6a\x9d\xa7\x18\x2d\x7c\x94\xfe\x99\xe8\x0e\x1c\xa5\x32\x39\x57\x07\xd0\x10\xdc\x61\x4d\x4a\x85\xa7\xd1\x5d\x03\xc4\x45\x05\x41\x4a\x75\xe1\x7c\x17\x7c\x69\xbd\xa9\xb9\x97\x22\xe8\x2b\x42\x2b\x9b\x61\x24\xf3\xec\x40\x08\xae\x91\x13\x72\x63\xbc\xf3\x96\x37\x0d\x15\x58\x59\x53\x83\x6b\xd6\x03\x3d\x4a\x17\xec\x3c\xc0\x53\xcc\x75\x17\xd3\x7d\x47\x43\xac\x29\x66\x37\x36\xe9\xc9\x6a\xae\xd4\x66\x64\x5b\x7d\x3c\x94\xf5\xe0\xc8\x3e\x48\x41\x43\xe4\xad\x8f\xb1\x0f\xc7\x86\x6d\x1b\xd3\x5a\x98\xb5\x4e\x9f\x5c\x89\xec\x0a\x23\x5c\x6c\xab\x36\x96\xce\x58\x2f\xe6\xd6\x9d\x65\x59\x29\x7d\xd5\xe6\xa9\x30\x75\x26\x8c\x25\xe3\xb2\x80\xcf\x72\x65\xf2\xec\xe1\x34\x3d\x49\x5f\xbf\xc9\x2e\x8c\x68\x6b\xd2\x9d\x39\xd9\x9e\xb9\xd4\x65\x5a\x17\x8c\x39\xf2\x18\x11\x63\x9d\x13\x77\xd6\x18\x3f\xbe\x2f\xa4\xd5\xbc\x26\x24\xfd\xed\xdb\xc9\xe2\xfd\xdd\xe2\xfa\xf6\x66\x3a\xdb\x25\xf7\xcc\x99\xd6\x0a\x42\xff\x19\x3c\x23\xfd\x90\x86\x69\x61\x29\xde\x04\x37\xee\x6f\x67\xcb\xe9\xc5\xdd\xcd\xec\xb7\xcb\xf9\x74\xb2\x38\x1b\xbd\xd9\x31\x36\x9d\x5d\x5e\x2e\xc6\xfd\x6d\x7c\x9e\x8d\x06\x9e\x9c\x1f\xec\x58\xb0\xc8\x8d\xef\x49\x54\x06\xfd\xb8\x86\xaf\xf0\x16\x83\xe1\x00\x03\x0c\xee\x19\x0b\x6d\x07\x54\xb8\x4d\x83\xce\xf9\x01\xfa\x71\xdf\x39\x0a\xc3\x80\x1e\x7e\x25\x4d\x96\x7b\x02\x3f\xca\x0c\x6f\xfe\x22\x9d\x32\x20\x16\x4f\xf6\x98\xe0\xde\xbf\x30\x51\xd9\x58\xb1\x4b\x4c\x9a\x26\x0c\x47\xd0\xb8\xff\x52\xb4\x56\x61\xe4\x2e\x9f\x74\x7f\x5a\x4c\x83\xde\xa9\x34\x99\xa6\xf5\x2f\x4e\x7e\xa1\x71\xff\xa0\xc3\x2b\x06\xc8\x15\x7e\xc7\xe8\x0b\x92\xfe\xd3\x8e\x04\x7f\x9e\x07\x67\x35\x0b\x03\xa8\xe3\xf6\x8e\x4b\xd5\x8d\x8c\x92\xfc\xde\xf2\x1f\x70\x8c\x14\x07\x91\xe9\x20\x72\x44\x48\xa4\xc7\x6b\x06\xac\x24\x8b\x52\x4c\xe3\x35\x8a\xd1\x11\x4a\x92\xf6\xc7\xb0\xad\x2b\x29\x2a\xac\xa5\x52\x50\x86\x17\xa3\x9c\xab\x38\x48\xb9\xb0\xc6\x39\x70\xa5\x70\xe0\x7e\x94\x2d\xd6\x0b\xa2\x45\x56\xfb\x5a\x3f\x56\x4c\xf0\x8e\xfb\x68\x8f\x1a\x79\xaa\x1b\xc5\x3d\xa5\x1b\x5e\x2b\x7c\xc5\x1f\x91\x72\xf8\x46\x8c\x08\x89\xcb\xb6\xdb\xb0\x7b\xb7\xcb\x62\xa9\xac\x4c\x9e\x30\xfd\x0f\xb7\x6f\x67\xd3\xe5\xe5\x7e\x2a\x60\xb4\xc2\xa8\xeb\x6f\xf6\xd8\x70\x5d\xe0\x50\x1a\x0f\xdc\xca\x30\x7d\x1d\x8b\x95\xef\xba\x64\x8e\x93\x40\x28\xb0\x7c\xe0\x36\x7e\x37\x02\xd7\xa3\xa6\x87\x3e\xf7\x09\x7a\xbe\xf5\xa7\x71\xe2\x86\xdb\x6d\xff\x81\xdb\xdd\x6e\xd8\xdf\xbe\x08\x7f\x86\xe5\x79\xcc\x84\xd1\xf4\x9d\xcc\xfb\x5a\xe1\x76\x41\x18\xed\xad\x51\x8a\xec\x7f\x29\xf8\x0c\x7d\x04\xff\x8f\x9e\x47\xe0\x77\x92\x1e\xc4\xec\x1f\x1b\x08\x2a\xfe\x50\xbf\x8e\xfd\x3f\x01\x00\x00\xff\xff\xa3\xeb\x81\x57\xe2\x07\x00\x00") + +func examplesStorageVitessEtcdUpShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessEtcdUpSh, + "examples/storage/vitess/etcd-up.sh", + ) +} + +func examplesStorageVitessEtcdUpSh() (*asset, error) { + bytes, err := examplesStorageVitessEtcdUpShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/etcd-up.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessGuestbookControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\xc1\x6a\x33\x31\x0c\x84\xef\x7e\x0a\x91\x7b\xf2\x3b\xf9\x29\x2c\xbe\xf6\x5c\x28\x3d\xf4\xae\x6c\x44\x22\x62\x5b\x42\xd6\x2e\xf4\xed\xcb\x36\x6c\x70\xb7\xba\x59\x33\xfa\x66\xf0\x9d\xeb\x25\xc1\x07\x69\xe6\x11\x9d\xa5\xbe\x4a\x75\x93\x9c\xc9\x02\x2a\x7f\x92\x35\x96\x9a\x60\x3e\x86\x42\x8e\x17\x74\x4c\x01\xa0\x62\xa1\x04\xd7\x89\x9a\x9f\x45\xee\xa1\x29\x8d\xcb\xde\x1e\xa0\x96\xe0\x7f\x00\x70\x2a\x9a\xd1\x69\x51\x00\xfa\xfb\x65\x32\x9e\x29\xb7\xf5\x05\x30\x4a\x51\xa9\x54\xbd\x07\xaf\x22\xaa\x26\x98\xd9\xa9\xb5\x9f\xdd\x1a\xf8\x38\xac\x8e\x5c\xc9\x3a\xd8\xfe\x4f\x45\x78\x0e\x17\xbc\xd2\x4a\xfb\xf7\x74\xa4\xf9\x74\x88\x87\xb8\xc7\xac\x37\x7c\xe9\xfc\x2a\xe6\x1d\xba\xc7\xdf\xdc\x75\xdf\xc8\x66\xb2\x5f\x7a\x57\xea\x5d\xcc\x13\x0c\x71\x88\x9d\xc3\xa8\xc9\x64\x23\x6d\xb0\x99\x0b\x6f\xa3\x96\x8f\x2b\x62\x5f\x09\x76\xc7\xd3\xf0\xc6\xbb\x6d\x90\x4e\x8b\x14\x63\xd9\x85\xf0\x1d\x00\x00\xff\xff\x02\xea\x9a\xf3\xcf\x01\x00\x00") + +func examplesStorageVitessGuestbookControllerYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessGuestbookControllerYaml, + "examples/storage/vitess/guestbook-controller.yaml", + ) +} + +func examplesStorageVitessGuestbookControllerYaml() (*asset, error) { + bytes, err := examplesStorageVitessGuestbookControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/guestbook-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessGuestbookDownSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xc1\x6e\xdb\x38\x10\x86\xef\x7c\x8a\x7f\xa5\x1c\x76\x01\x47\xce\x06\xd8\xcb\x16\x3d\x28\x8e\x8b\x08\x09\x6c\xc0\xb2\x1b\xe4\x94\x50\xd2\x58\x1a\x54\x26\x59\x72\x14\xc5\x28\xfa\xee\x05\x1d\x07\x49\xd0\xa0\x3a\x6a\x3e\xfe\xf3\x71\x86\xe9\x5f\xd3\x8a\xcd\xb4\xd2\xa1\x53\x2a\xc5\xcc\xba\xbd\xe7\xb6\x13\x9c\x9f\xfd\xfb\x1f\xd6\x1d\xe1\x7a\xa8\xc8\x1b\x12\x0a\xc8\x07\xe9\xac\x0f\x99\x4a\x55\x8a\x1b\xae\xc9\x04\x6a\x30\x98\x86\x3c\xa4\x23\xe4\x4e\xd7\x1d\xbd\x54\x26\xf8\x4a\x3e\xb0\x35\x38\xcf\xce\xf0\x77\x04\x92\x63\x29\xf9\xe7\x93\x4a\xb1\xb7\x03\x76\x7a\x0f\x63\x05\x43\x20\x48\xc7\x01\x5b\xee\x09\xf4\x54\x93\x13\xb0\x41\x6d\x77\xae\x67\x6d\x6a\xc2\xc8\xd2\x1d\xda\x1c\x43\x32\x95\xe2\xee\x18\x61\x2b\xd1\x6c\xa0\x51\x5b\xb7\x87\xdd\xbe\xe5\xa0\xe5\x20\x1c\xbf\x4e\xc4\xfd\x3f\x9d\x8e\xe3\x98\xe9\x83\x6c\x66\x7d\x3b\xed\x9f\xc1\x30\xbd\x29\x66\xf3\x45\x39\x3f\x3d\xcf\xce\x0e\x47\x36\xa6\xa7\x10\xe0\xe9\xfb\xc0\x9e\x1a\x54\x7b\x68\xe7\x7a\xae\x75\xd5\x13\x7a\x3d\xc2\x7a\xe8\xd6\x13\x35\x10\x1b\x7d\x47\xcf\xc2\xa6\x9d\x20\xd8\xad\x8c\xda\x93\x4a\xd1\x70\x10\xcf\xd5\x20\xef\x86\xf5\x62\xc7\xe1\x1d\x60\x0d\xb4\x41\x92\x97\x28\xca\x04\x17\x79\x59\x94\x13\x95\xe2\xb6\x58\x5f\x2d\x37\x6b\xdc\xe6\xab\x55\xbe\x58\x17\xf3\x12\xcb\x15\x66\xcb\xc5\x65\xb1\x2e\x96\x8b\x12\xcb\x2f\xc8\x17\x77\xb8\x2e\x16\x97\x13\x10\x4b\x47\x1e\xf4\xe4\x7c\xf4\xb7\x1e\x1c\xc7\x48\x4d\x9c\x59\x49\xf4\x4e\x60\x6b\x9f\x85\x82\xa3\x9a\xb7\x5c\xa3\xd7\xa6\x1d\x74\x4b\x68\xed\x23\x79\xc3\xa6\x85\x23\xbf\xe3\x10\x97\x19\xa0\x4d\xa3\x52\xf4\xbc\x63\xd1\x72\xf8\xf3\xdb\xa5\xb2\xf8\x96\xd6\x71\x9d\x1c\x79\xd0\x93\xde\xb9\x9e\x10\x6a\xcf\x4e\x20\x9d\x16\x04\xb1\x2e\xa0\x1d\x28\x48\x65\xed\xb7\x4c\xa9\x40\x82\x53\x52\xea\x99\xba\xf7\xd6\xca\xe7\x87\x86\xbd\xd1\x3b\x42\x72\xf2\xe3\x22\x2f\xaf\xee\xcb\xe5\x66\x35\x9b\xff\x4c\x1e\x54\xb0\x83\xaf\x09\x27\x6f\xf0\x29\x99\xc7\x2c\xbe\x64\xaa\x3b\x8b\xe4\x92\x7a\x8a\xdb\x78\xed\x02\x4f\x87\xf5\x45\xef\xda\x1a\xf1\xb6\xef\xc9\x67\x59\x96\xa8\x93\xeb\xcd\xc5\x7c\xb6\xbe\x41\x13\x4f\xd1\xc7\xe4\x6b\xd2\x1f\x7a\x04\xf2\x8f\x5c\xd3\x87\xa9\xc7\xda\x9b\x9c\x5f\x01\x00\x00\xff\xff\xe1\x24\xf9\x4b\x82\x03\x00\x00") + +func examplesStorageVitessGuestbookDownShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessGuestbookDownSh, + "examples/storage/vitess/guestbook-down.sh", + ) +} + +func examplesStorageVitessGuestbookDownSh() (*asset, error) { + bytes, err := examplesStorageVitessGuestbookDownShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/guestbook-down.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessGuestbookServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x8d\xb1\x4a\x04\x41\x10\x44\xf3\xfe\x8a\xfa\x81\x03\xcd\x64\x42\x63\x03\x41\x30\xef\x9b\x2d\xce\xe1\x76\xa7\x9b\xee\x76\xc1\xbf\x97\x5d\x4c\x0c\x2f\x7c\x55\xaf\xa8\xfb\x98\x4b\xc3\x07\x63\x1f\x9d\xa2\x3e\x3e\x19\x39\x6c\x36\xec\xcf\xb2\xb1\x74\xd1\xd2\x26\xc0\xd4\x8d\x0d\xb7\x6f\x66\x5d\xcd\xee\x02\xac\x7a\xe5\x9a\x47\x07\x74\xdb\xdc\x26\x67\xfd\x57\x00\x75\x6f\xd8\x47\x31\x53\xd2\xd9\x0f\xdd\x2d\xea\x6f\x77\x39\xa1\xe1\xe5\xe9\x44\xa0\x34\x6e\xac\xf7\x33\xfc\xaa\xf2\x4b\x32\x76\x86\x00\xc9\x95\xbd\x2c\x1e\x38\x04\xea\xc7\xd9\xf0\x66\xba\xbc\xea\xaa\xb3\x33\x44\x7e\x03\x00\x00\xff\xff\x82\xf8\x63\x8c\xf3\x00\x00\x00") + +func examplesStorageVitessGuestbookServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessGuestbookServiceYaml, + "examples/storage/vitess/guestbook-service.yaml", + ) +} + +func examplesStorageVitessGuestbookServiceYaml() (*asset, error) { + bytes, err := examplesStorageVitessGuestbookServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/guestbook-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessGuestbookUpSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x41\x6f\xd3\x40\x10\x85\xef\xfb\x2b\x1e\x76\x0f\x20\x25\x4e\xa9\xc4\x05\xc4\xc1\x4d\x83\x6a\xb5\x4a\xa4\x38\xa1\xea\xa9\x5d\xaf\x27\xf6\x08\x67\xd7\xec\x8e\x9b\x46\x88\xff\x8e\x36\x6d\x45\x2a\x10\xf8\xe8\xfd\xe6\xcd\x9b\x37\x93\xbe\x99\x54\x6c\x27\x95\x0e\xad\x52\x29\xa6\xae\xdf\x7b\x6e\x5a\xc1\xd9\xe9\xfb\x0f\x58\xb5\x84\xab\xa1\x22\x6f\x49\x28\x20\x1f\xa4\x75\x3e\x64\x2a\x55\x29\xae\xd9\x90\x0d\x54\x63\xb0\x35\x79\x48\x4b\xc8\x7b\x6d\x5a\x7a\x79\x19\xe1\x2b\xf9\xc0\xce\xe2\x2c\x3b\xc5\xdb\x08\x24\xcf\x4f\xc9\xbb\x4f\x2a\xc5\xde\x0d\xd8\xea\x3d\xac\x13\x0c\x81\x20\x2d\x07\x6c\xb8\x23\xd0\xa3\xa1\x5e\xc0\x16\xc6\x6d\xfb\x8e\xb5\x35\x84\x1d\x4b\x7b\x68\xf3\x2c\x92\xa9\x14\xb7\xcf\x12\xae\x12\xcd\x16\x1a\xc6\xf5\x7b\xb8\xcd\x31\x07\x2d\x07\xc3\xf1\x6b\x45\xfa\x8f\x93\xc9\x6e\xb7\xcb\xf4\xc1\x6c\xe6\x7c\x33\xe9\x9e\xc0\x30\xb9\x2e\xa6\xb3\x79\x39\x1b\x9f\x65\xa7\x87\x92\xb5\xed\x28\x04\x78\xfa\x3e\xb0\xa7\x1a\xd5\x1e\xba\xef\x3b\x36\xba\xea\x08\x9d\xde\xc1\x79\xe8\xc6\x13\xd5\x10\x17\xfd\xee\x3c\x0b\xdb\x66\x84\xe0\x36\xb2\xd3\x9e\x54\x8a\x9a\x83\x78\xae\x06\x79\x15\xd6\x8b\x3b\x0e\xaf\x00\x67\xa1\x2d\x92\xbc\x44\x51\x26\x38\xcf\xcb\xa2\x1c\xa9\x14\x37\xc5\xea\x72\xb1\x5e\xe1\x26\x5f\x2e\xf3\xf9\xaa\x98\x95\x58\x2c\x31\x5d\xcc\x2f\x8a\x55\xb1\x98\x97\x58\x7c\x41\x3e\xbf\xc5\x55\x31\xbf\x18\x81\x58\x5a\xf2\xa0\xc7\xde\x47\xff\xce\x83\x63\x8c\x54\xc7\xcc\x4a\xa2\x57\x06\x36\xee\xc9\x50\xe8\xc9\xf0\x86\x0d\x3a\x6d\x9b\x41\x37\x84\xc6\x3d\x90\xb7\x6c\x1b\xf4\xe4\xb7\x1c\xe2\x32\x03\xb4\xad\x55\x8a\x8e\xb7\x2c\x5a\x0e\x7f\xfe\x18\x2a\x8b\xb7\xb4\x8a\xeb\xe4\xc8\x83\x1e\xf5\xb6\xef\x08\xc1\x78\xee\x05\xd2\x6a\x41\x10\xed\x25\x40\xa3\x19\x28\x48\xe5\xdc\x37\x78\x3a\x64\x1b\x45\x8d\xb3\xe2\x5d\xd7\x91\xcf\x94\x0a\x24\x18\x93\x52\x4f\xe5\x77\xde\x39\xf9\x7c\x5f\xb3\xb7\x7a\x4b\x48\x4e\x7e\x9c\xe7\xe5\xe5\x5d\xb9\x58\x2f\xa7\xb3\x9f\xc9\xbd\x0a\x6e\xf0\x86\x70\x72\x84\x4f\xc8\x3e\x64\xf1\xc4\xc9\xb4\x0e\xc9\xd4\x93\x8e\x6b\x3a\xea\x1d\xc8\x3f\xb0\xa1\x2c\xcb\x12\x75\x72\xb5\x3e\x9f\x4d\x57\xd7\x30\x91\x23\x8c\x37\xbf\xc1\xf1\x0b\xb8\xd7\xdb\xee\x1f\x7a\x7f\x9f\xe5\xbf\xea\x47\xec\xa1\xc1\xaf\x00\x00\x00\xff\xff\xc6\x6a\x22\x82\xa0\x03\x00\x00") + +func examplesStorageVitessGuestbookUpShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessGuestbookUpSh, + "examples/storage/vitess/guestbook-up.sh", + ) +} + +func examplesStorageVitessGuestbookUpSh() (*asset, error) { + bytes, err := examplesStorageVitessGuestbookUpShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/guestbook-up.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessVitessDownSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x92\x51\x6f\x9b\x4a\x10\x85\xdf\xf9\x15\xe7\x1a\x3f\xdc\x2b\x39\x90\x1b\xa9\x2f\xad\xfc\x40\x1c\xaa\xa0\x58\x76\xe5\x25\x8d\xf2\xe4\x2c\x30\x86\x91\xf0\x2e\xdd\x1d\x42\xac\xaa\xff\xbd\x82\x24\x6d\xa2\xf0\x32\xe2\xcc\xe1\xf0\xed\xcc\x86\xff\xc4\x05\x9b\xb8\xd0\xbe\x09\x82\x10\x2b\xdb\x9d\x1c\xd7\x8d\xe0\xe2\xfc\xff\x4f\xc8\x1b\xc2\x4d\x5f\x90\x33\x24\xe4\x91\xf4\xd2\x58\xe7\xa3\x20\x0c\x42\xac\xb9\x24\xe3\xa9\x42\x6f\x2a\x72\x90\x86\x90\x74\xba\x6c\xe8\xb5\xb3\xc0\x77\x72\x9e\xad\xc1\x45\x74\x8e\x7f\x47\xc3\xec\xa5\x35\xfb\xef\x4b\x10\xe2\x64\x7b\x1c\xf5\x09\xc6\x0a\x7a\x4f\x90\x86\x3d\x0e\xdc\x12\xe8\xa9\xa4\x4e\xc0\x06\xa5\x3d\x76\x2d\x6b\x53\x12\x06\x96\x66\xfa\xcd\x4b\x48\x14\x84\xb8\x7f\x89\xb0\x85\x68\x36\xd0\x28\x6d\x77\x82\x3d\xbc\xf5\x41\xcb\x04\x3c\x3e\x8d\x48\xf7\x39\x8e\x87\x61\x88\xf4\x04\x1b\x59\x57\xc7\xed\xb3\xd1\xc7\xeb\x6c\x95\x6e\x54\x7a\x76\x11\x9d\x4f\x9f\xdc\x9a\x96\xbc\x87\xa3\x1f\x3d\x3b\xaa\x50\x9c\xa0\xbb\xae\xe5\x52\x17\x2d\xa1\xd5\x03\xac\x83\xae\x1d\x51\x05\xb1\x23\xef\xe0\x58\xd8\xd4\x0b\x78\x7b\x90\x41\x3b\x0a\x42\x54\xec\xc5\x71\xd1\xcb\xbb\x61\xbd\xd2\xb1\x7f\x67\xb0\x06\xda\x60\x96\x28\x64\x6a\x86\xcb\x44\x65\x6a\x11\x84\xb8\xcb\xf2\xeb\xed\x6d\x8e\xbb\x64\xb7\x4b\x36\x79\x96\x2a\x6c\x77\x58\x6d\x37\x57\x59\x9e\x6d\x37\x0a\xdb\xaf\x48\x36\xf7\xb8\xc9\x36\x57\x0b\x10\x4b\x43\x0e\xf4\xd4\xb9\x91\xdf\x3a\xf0\x38\x46\xaa\xc6\x99\x29\xa2\x77\x00\x07\xfb\x0c\xe4\x3b\x2a\xf9\xc0\x25\x5a\x6d\xea\x5e\xd7\x84\xda\x3e\x92\x33\x6c\x6a\x74\xe4\x8e\xec\xc7\x65\x7a\x68\x53\x05\x21\x5a\x3e\xb2\x68\x99\x94\x0f\x87\x8a\x82\xc0\x97\x8e\x3b\xd9\x3b\x6b\x65\xf9\x50\xb1\x33\xfa\x48\x98\xcd\x7f\x5e\x26\xea\x7a\xaf\xb6\xb7\xbb\x55\xfa\x6b\xf6\x10\x78\xdb\xbb\x92\x30\x7f\x63\x8f\xc9\x3c\x46\xe3\x75\x8c\xe2\x47\xa9\xb5\xd0\x59\x65\x07\x33\x2a\xea\x3a\xd9\x5d\xa9\xe5\xfc\xb9\x62\x95\xae\xd7\x6a\x39\x9f\x0a\xf2\xe4\x72\x9d\xe6\x6a\xff\x2d\xdd\xed\xa7\xfe\x72\xfe\x41\xc2\x98\x28\xe3\xee\xe4\x4f\xe6\x28\x95\xd2\x56\x6f\x04\x92\xf2\xef\xeb\xef\x00\x00\x00\xff\xff\x7e\x71\x2a\xd3\x21\x03\x00\x00") + +func examplesStorageVitessVitessDownShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessVitessDownSh, + "examples/storage/vitess/vitess-down.sh", + ) +} + +func examplesStorageVitessVitessDownSh() (*asset, error) { + bytes, err := examplesStorageVitessVitessDownShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/vitess-down.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessVitessUpSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x58\x6f\x73\x1a\x39\xf2\x7e\x3f\x9f\xa2\x17\xe6\xb7\x98\xc4\xfc\x4b\xf6\x77\x2f\xd8\xe2\xae\x88\xcd\x26\x54\xbc\x26\x05\x38\xb9\xd4\x65\x6f\x10\x33\x0d\xa8\x2c\xa4\x89\xa4\x31\x66\x6d\x7f\xf7\x2b\xb5\x66\x60\x30\x66\xff\xe0\x17\x9e\x91\x5a\xad\xa7\x1f\xb5\xfa\x91\xa6\xfa\x43\x6b\xce\x65\x6b\xce\xcc\x2a\x08\xaa\x70\xa1\xd2\xad\xe6\xcb\x95\x85\x37\xed\xce\xff\xc3\x74\x85\xf0\x31\x9b\xa3\x96\x68\xd1\x40\x3f\xb3\x2b\xa5\x4d\x33\xa8\x06\x55\xb8\xe2\x31\x4a\x83\x09\x64\x32\x41\x0d\x76\x85\xd0\x4f\x59\xbc\xc2\xa2\xe7\x1c\x3e\xa3\x36\x5c\x49\x78\xd3\x6c\xc3\x99\x33\xa8\xe4\x5d\x95\xfa\xcf\x41\x15\xb6\x2a\x83\x35\xdb\x82\x54\x16\x32\x83\x60\x57\xdc\xc0\x82\x0b\x04\xbc\x8f\x31\xb5\xc0\x25\xc4\x6a\x9d\x0a\xce\x64\x8c\xb0\xe1\x76\x45\xd3\xe4\x4e\x9a\x41\x15\xbe\xe6\x2e\xd4\xdc\x32\x2e\x81\x41\xac\xd2\x2d\xa8\x45\xd9\x0e\x98\x25\xc0\xee\xb7\xb2\x36\xed\xb6\x5a\x9b\xcd\xa6\xc9\x08\x6c\x53\xe9\x65\x4b\x78\x43\xd3\xba\x1a\x5e\x0c\xae\x27\x83\xc6\x9b\x66\x9b\x86\xdc\x48\x81\xc6\x80\xc6\xef\x19\xd7\x98\xc0\x7c\x0b\x2c\x4d\x05\x8f\xd9\x5c\x20\x08\xb6\x01\xa5\x81\x2d\x35\x62\x02\x56\x39\xbc\x1b\xcd\x2d\x97\xcb\x73\x30\x6a\x61\x37\x4c\x63\x50\x85\x84\x1b\xab\xf9\x3c\xb3\x07\x64\x15\xe8\xb8\x39\x30\x50\x12\x98\x84\x4a\x7f\x02\xc3\x49\x05\xde\xf5\x27\xc3\xc9\x79\x50\x85\x2f\xc3\xe9\x87\xd1\xcd\x14\xbe\xf4\xc7\xe3\xfe\xf5\x74\x38\x98\xc0\x68\x0c\x17\xa3\xeb\xcb\xe1\x74\x38\xba\x9e\xc0\xe8\x17\xe8\x5f\x7f\x85\x8f\xc3\xeb\xcb\x73\x40\x6e\x57\xa8\x01\xef\x53\xed\xf0\x2b\x0d\xdc\xd1\x88\x89\xe3\x6c\x82\x78\x00\x60\xa1\x3c\x20\x93\x62\xcc\x17\x3c\x06\xc1\xe4\x32\x63\x4b\x84\xa5\xba\x43\x2d\xb9\x5c\x42\x8a\x7a\xcd\x8d\x5b\x4c\x03\x4c\x26\x41\x15\x04\x5f\x73\xcb\x2c\xb5\x1c\x05\xd5\x74\xb9\x34\x75\xcb\xc9\x9d\x3d\xe0\x3d\x5b\xa7\x02\xc1\xc4\x9a\xa7\x16\xec\x8a\x59\x88\x35\x32\x97\x54\x0c\x16\x99\x10\x5b\x58\x64\x32\x76\xee\x98\x80\x3b\x6e\x1d\xec\x58\x64\xc6\xa2\x76\x98\x87\xd6\x41\x58\x28\xbd\x36\x34\xcf\x42\x09\xa1\x36\x0e\x99\xb1\x98\x9a\x2e\x2d\x6f\x03\x2e\xc8\x27\xa0\x8d\x93\x62\xb4\x39\xec\xba\xb3\xb1\x15\x09\xa4\x2a\x79\xde\x6e\xdd\x9a\x5a\xd7\x53\x0c\xf9\xe4\x67\xf4\x63\x80\x4b\x6e\x39\x13\xfc\x77\x0a\xba\x9b\x27\x14\xc0\x04\xed\x47\xdc\x9a\x94\xc5\x38\x59\x31\x9d\x70\xb9\x1c\xca\x85\x3a\x87\x31\xce\x33\x2e\x12\x28\x7a\x5d\x4b\xca\x34\x4a\x0b\x64\x78\x0e\xfd\x34\x15\x5b\x98\xc4\x2b\x5c\xb3\xe7\x70\x96\xee\x1f\x81\x09\x3c\x6b\x91\x56\xca\xf6\x66\x09\xd7\x92\xad\x11\x2a\xe1\xc3\xbb\xfe\xe4\x43\x34\x19\xdd\x8c\x2f\x06\x4f\x95\x59\x60\x54\xa6\x63\x84\xb0\x64\xde\x42\x79\xd7\x74\x3b\x3b\x46\x21\x4c\x6f\x86\xf1\x4a\x41\x78\x31\xb8\xba\x9a\xc0\x23\x58\x0d\xb5\xf3\x1a\xd4\xa0\x36\x0b\x64\xb6\x8e\x0e\x8c\xe8\x05\x1e\x61\x13\x43\x63\x33\x0b\x82\x62\x79\x20\x4b\x13\x66\x31\x32\x29\x97\x12\x75\x74\xc7\x44\x86\x70\x56\x87\x87\x00\x20\x6f\xec\xd5\x1a\xdf\x1e\x5b\xb5\x00\x20\xce\x74\x61\xd9\x0b\x1f\xf2\xa7\x6e\x78\x76\x16\x76\xfe\x2f\x7c\xa8\xe6\x0d\x4f\xf5\x7a\xb7\xf3\x14\x3c\x95\x66\xd9\x30\x6e\xa3\x85\xd2\x91\xce\xa4\xcb\xc0\xc8\x32\x73\x6b\x8a\x79\xf2\xe4\x3a\xb0\x36\x94\xc8\x8e\x31\xb7\x15\xe7\xe8\x76\x23\xd5\x9c\xb1\xf7\x50\x01\x63\x99\x45\x1a\xdd\x69\x82\xf3\x17\x39\x26\xbb\x70\xed\xf8\xa4\x9c\x74\xf6\x09\x1a\xda\xeb\xce\x00\xe6\xb8\xe4\xd2\x50\xe9\xa1\x81\x6f\x9a\xe0\x98\x22\x30\x5d\xb8\xce\xd6\x73\xd4\x54\x6e\x08\x9d\x55\x84\xc4\x01\x21\xeb\x31\xda\x4c\x4b\xd3\xa5\x17\x80\x36\xf0\x05\x98\x2c\x8e\xd1\x98\x45\x26\xce\xa1\xd1\x71\x2d\x96\xaf\xdd\xbe\xcf\x6c\x00\x7b\x54\xbd\xb0\x13\xc0\x7e\xae\x5e\xf8\xc6\xb1\xa9\x32\x69\x51\xf7\xda\x41\x00\x40\xcb\x54\xf9\xc2\xa8\xde\x50\xec\xe1\xc3\xce\xfe\xe9\x1e\xc2\x9d\x2f\x87\x0b\xdd\x40\xcf\x00\x14\x84\x38\x2f\x9b\x95\xab\xb7\xff\x81\x30\xf7\x0d\x0d\x61\x21\xfc\xb5\xff\xef\x68\xda\x9f\x7c\x8c\xbe\xf4\x87\xd3\x68\x3c\x98\x8e\x5d\xc1\xf9\xed\x67\x48\x54\xe0\x72\xbe\x0a\xef\xd1\x92\xb7\xcc\x40\xac\x44\xb6\x96\x8e\x05\x22\x9f\xca\x34\x4d\x6b\x2c\xd3\x04\x8e\x9a\xf6\x78\xce\x73\x1f\x34\x25\xac\xd4\x06\xd6\x4c\x6e\x81\x69\x5a\xb3\x03\x8c\x64\xe9\xa2\xca\xd3\xa0\x37\x0b\x3f\xde\xbc\x1b\x5c\x4c\xaf\x60\x99\x6f\x56\x78\x84\xa5\xc6\x14\xfe\x5b\x0a\x38\x6f\xca\x9d\xe4\x59\x2c\x66\x01\xb9\x23\xe2\x1a\x28\xa1\xf2\x4d\x87\xa5\x34\x08\x4b\xf3\xb8\xe5\x70\x11\x85\x3b\x46\x8f\xa0\x35\x9b\xcd\x0a\xf9\xe3\x0b\xc7\x5f\x79\x70\x03\xbf\x97\x47\xfe\x46\x66\x76\x85\x32\xf0\x25\x83\x10\x5c\x38\x65\x43\x4a\x48\xf7\xd3\x94\x2b\xd0\xa6\xd7\x05\xa7\x7f\x2f\x6e\xb5\x62\xa5\x4a\xb1\x48\x08\x4b\x1b\x8d\x3a\x5c\x29\x2b\xd2\x25\xff\xff\xba\x43\x3d\x46\x20\xa6\xe0\x9e\x13\x25\xb1\x48\xa4\x69\x29\x09\x73\x28\x8d\x8e\xdb\x91\x14\x5d\xe3\x77\xa8\x84\xef\x47\x9f\xfa\xd3\x0f\x15\x97\x06\x79\x2c\x3e\x05\x07\xe3\xf1\x68\xdc\x05\xdf\x4d\x5a\xb0\xe0\x12\x93\x73\x88\x99\xac\xd9\x42\x9a\xa9\x88\xc6\x82\xa3\xb4\x8e\x36\xbc\xe7\xd6\xcd\xb0\xe0\x41\x80\xf7\xa9\xd2\x16\xf2\x85\xed\xd5\x6e\xb3\x39\xc6\x56\xd4\x82\xc0\x4f\x70\xa9\x36\x52\x28\xe6\x2a\xab\x13\x1f\xe0\xd2\x58\x26\x84\x7b\x2d\x79\xa5\xf5\x58\x2a\xca\x8b\x46\x06\x4b\x6e\x57\xd9\xbc\x19\xab\x75\x6b\xab\x32\x9b\xcd\xb1\xe5\x65\xa5\xb5\x54\xad\x78\x9d\xb4\x4a\x43\xa9\xfa\x19\x57\x93\x77\xe5\x6f\xf2\xa1\x3f\xbe\xcc\x8b\x64\xe5\xbc\x02\xee\x6f\x57\x0c\xad\xb2\x4c\x44\x5e\x30\x22\x62\xb7\xe7\x4a\xda\xde\xcb\xab\x70\xda\x7f\x77\x35\x98\x4e\xa2\x4f\x83\x71\x44\xbe\x5e\x85\xbb\x12\x5b\xaf\x07\xbe\xbe\x17\x63\x3f\x4f\xdf\xf7\xa7\x83\xe8\x62\x74\x73\x3d\xf5\x84\x87\x65\x03\xca\xa7\x76\x89\xf7\xc3\xd1\x67\x67\xe1\x31\xa0\xd6\x4f\xff\x7c\xfb\xaf\x17\xdb\xbb\x6f\xeb\x75\x4f\x3b\x91\xfb\xea\x0f\x7e\x95\xc2\x86\x54\x89\xf8\x3e\x50\xe6\xee\xce\x00\xbc\xa4\x99\x6e\xc1\x5c\xa9\x67\x4a\xd3\x1b\x27\xe0\x40\xf4\x74\xe1\x98\x9e\x92\xfd\x38\x51\x52\x6c\x0f\xcc\xc7\x97\xa3\xeb\xab\xaf\x9e\xa0\x92\xe5\xe7\xe9\x7b\xb7\x21\x29\xb0\xee\x21\x67\x25\xab\x0b\xc7\x79\x37\x57\xb4\xca\x5f\x0a\xdb\x1b\xd5\x8a\xfa\xe1\xce\x13\x8d\x2c\x6d\x9a\x55\x0d\x7e\xfc\x11\x48\x3f\x7b\xb9\x8c\x36\x5b\xfb\xde\xe0\x84\x6a\x91\xc5\x52\xa8\x39\x13\xf0\x36\x70\xa5\xda\x61\x71\x15\xc5\x83\xca\xeb\xea\x1f\x8d\x26\x43\x78\x1b\xd0\x9e\x7d\x06\xcf\x9f\x69\x4a\x00\x9b\xad\x72\xd3\x91\xb5\xcf\x87\xd3\x01\x1d\x5a\x1c\x0d\x77\x24\x3f\x9b\x6c\xdf\x14\x9c\xe2\x20\x3f\x78\x75\x4e\xf7\xe7\x07\xb0\x17\x92\xf6\xf4\x18\x3a\x25\x1d\x2c\x7c\x10\xf8\x99\x22\x57\x53\x7a\x6f\xdb\xed\x76\xa7\x68\xe1\x69\x6f\x96\xd7\x16\x5f\x25\x14\x6c\xd9\x5a\x80\x54\x09\xee\x64\xa4\x66\xb7\x29\x76\x61\x70\x6f\x51\x4b\x26\x86\x9f\x6a\xd0\x78\x07\x1d\x78\x84\x15\xb2\xc4\x49\xf6\x23\xb0\xcd\x2d\xd4\x1e\x52\xcd\xa5\x85\xf0\xfa\x97\xa7\xda\xcc\x4f\x11\x19\xd4\x77\xa8\x7b\x95\x70\x37\x63\x37\x2c\xc1\xa9\x04\xb7\xf4\xd6\x2b\x8a\x29\xdd\xbd\x4a\x85\x08\x1a\xde\x03\x84\x65\x7f\x45\x3e\x96\xb5\xde\xe6\x9b\xca\x1f\x75\xee\xb8\xe1\xee\x46\x92\x1f\x79\xac\x4a\x95\x50\xcb\x6d\xb0\x3f\x30\x9c\xd6\xf9\xcf\x53\xbf\x19\xa3\xe9\xe8\xd3\xe8\x65\xc1\xf7\x52\x46\x13\xf6\x9c\x40\x9d\xcc\xe0\x43\xd3\xa2\x26\xe6\xef\xaf\x67\xa1\x0f\x1f\xae\xb8\xb1\x7d\x21\x8a\xc2\xe0\x73\xbb\x10\xe9\x7a\xfd\x99\x34\x15\x52\x5d\x72\xb5\x93\xe7\xe3\x5c\x21\x0e\xf2\xf8\x73\x89\xde\x0b\x74\x31\x9c\x04\xfa\x85\xb1\x4e\xa9\x77\x3a\x7d\xac\xd2\x73\x8d\xec\x36\xc8\xe5\xf9\xcf\xc4\xf9\x84\x34\x9f\x12\xe6\xbd\x2c\x7b\xb8\xbb\x75\x72\x50\xff\x6c\x9d\x8e\x60\x97\xe5\x7c\xc1\xf3\xaa\x51\x05\x93\x0a\x6e\xbd\x46\xe5\x11\xf7\x60\xaf\x5a\xb4\xae\xf4\x88\x09\xdc\xee\x6e\x2d\x6d\x6a\xcf\x64\xde\x13\x1c\x39\xe9\x95\x94\x2f\x97\xaf\xe3\x89\x5c\x1c\x9d\x92\x86\x1d\x7b\x69\xef\x55\xa9\x21\xdd\xb5\x8a\x92\xbd\xb8\x3d\x41\x71\xb9\x02\x77\xbb\x6a\x36\x9b\x41\x91\x4d\x27\x2e\x60\xd0\x58\x28\x77\x1f\x6a\x1c\x63\x79\x01\x9e\x45\x63\xa3\x22\xe6\x5d\xf0\x11\x4f\x20\xe3\xd2\xfe\xe3\x27\x8f\xeb\xd2\xf1\x58\x20\xcc\xef\x77\x07\x20\xdf\x6b\x96\xae\xca\xe0\x72\xa3\xc2\x80\xfa\x0f\x27\x7b\xd1\xb3\xbf\x27\xfa\x53\x66\xe0\x71\xca\x6c\xdd\xeb\x04\xbb\x25\xa2\xbd\x77\x76\xf2\xb0\x52\xcf\x77\x64\x81\x63\x28\xb9\x25\x76\x7e\x65\x86\xd2\xca\x93\x73\x80\xa4\x15\x7a\xcf\xcf\x6e\x80\x07\xd5\xae\xf3\x54\x9b\x35\xda\xfe\x17\x3e\xec\x90\x3d\xb5\xdb\x79\x6e\xef\xc1\xee\x9e\x5e\x77\x7c\x02\x1e\x07\x4a\x17\x60\x47\xa0\xbf\x03\x97\x89\xa3\x2e\xdf\x0c\x0d\xf3\x5d\x40\x25\x3c\x8b\x77\x9f\x0d\x22\x02\x4e\x7b\xb7\x69\xbe\x8b\x7a\xe5\x24\xa7\x7f\xe7\x98\xb3\xdb\xed\x3f\xec\x9b\x6e\x0c\x3e\xfb\xe2\x20\xb8\xa4\x2b\xd5\x9a\xdd\x22\x30\x09\x4c\x70\x46\x85\xd8\x23\x2f\x1d\x8a\x7c\x4f\x5e\xf3\x6b\xdf\xfe\x56\xd1\xaf\xed\xdd\x14\x1f\x6c\x72\x09\xbd\x19\x02\xb3\xdd\xe2\x53\x56\xf8\xb0\xd3\x9a\xa7\xae\x93\xbb\xf6\x5f\x3c\xe2\xfc\x2f\x00\x00\xff\xff\x3c\x9c\xb5\x0e\xfa\x13\x00\x00") + +func examplesStorageVitessVitessUpShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessVitessUpSh, + "examples/storage/vitess/vitess-up.sh", + ) +} + +func examplesStorageVitessVitessUpSh() (*asset, error) { + bytes, err := examplesStorageVitessVitessUpShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/vitess-up.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessVtctldControllerTemplateYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x94\x41\x6b\xe3\x3c\x10\x86\xef\xf9\x15\x43\x28\xed\xc9\x75\x52\x28\x7c\xf8\xf0\x41\xb7\x2d\xbb\x0b\x2d\x29\x69\xe8\xd5\xc8\xf2\xac\x23\x2a\x69\x84\x34\x76\x09\x21\xff\x7d\x51\x1a\x67\x1d\x39\xad\x6f\xd6\xfb\xce\x33\xa3\x91\x34\xef\xca\xd6\x05\x2c\xd1\x69\x25\x05\x2b\xb2\xf7\x64\xd9\x93\xd6\xe8\x27\xc2\xa9\x37\xf4\x41\x91\x2d\xa0\x9b\x4f\x0c\xb2\xa8\x05\x8b\x62\x02\x60\x85\xc1\x02\x3a\x96\xac\xeb\x49\x70\x28\xe3\xa2\xff\xa4\x84\x02\xe6\x13\x00\x46\xe3\xb4\x60\x8c\x0a\xc0\x30\x38\x7e\x5a\x54\xa8\x43\xff\x07\x20\xc9\x38\xb2\x68\xf9\x48\xed\x15\xe1\x5c\x01\x9d\x62\x0c\x61\xbf\xd6\x67\xfb\x8c\xb2\x2c\x94\x45\x3f\x20\x65\xa7\xc5\xc1\xf1\x53\x46\x34\xd8\xa3\x72\xad\x18\x8b\xee\xe6\x7a\x76\x3d\xcb\x84\x76\x6b\x71\x3b\xb0\x76\xa4\x5b\x83\xcf\xd4\x5a\x1e\x90\x87\xf4\xb0\x09\x9a\x9a\x13\x09\xc0\xc4\x80\x17\xc1\xeb\x02\xf2\x1a\xbb\x3c\x75\xfc\x2b\x2d\xb6\xc2\x13\xf1\x37\x80\x8e\xf3\x2f\x7c\x3d\x46\xa2\xe7\x90\x10\x3c\x8a\x7a\x61\xf5\xa6\x00\xf6\x2d\x7e\x83\x47\x96\x79\x08\x3a\x4f\x21\x1e\x03\xb5\x5e\x62\xb2\x6f\xad\x8c\x4a\x7b\x11\x4f\xd5\x90\xdf\x14\x30\x9d\xdf\xfc\xf7\xac\xa6\x89\x2a\x5d\x1b\xa5\xd9\xcc\x0c\x15\x49\xc6\x08\x5b\xa7\x6d\x0d\xeb\x64\x61\x9a\xc9\x69\xb2\xf4\x7f\x96\xe6\x7f\xaf\x95\x87\xcc\xc1\xc5\xdb\xea\xe1\x6e\x75\xb7\x5c\x2c\x56\x39\x1b\x07\x97\x97\x69\x2d\x6b\xfa\xb0\x90\x2d\x0f\xc7\x1f\xdb\x3b\x36\x85\x36\xb2\x32\x09\xd3\xd8\xfd\x4a\xd9\x7c\x74\x89\xf6\x85\xd4\x58\xb5\xe9\xd9\x67\xfd\x7d\x0f\xb1\x98\xd5\xe2\x25\x6f\x28\x97\xa6\x3e\x20\xf2\xa3\x9c\xc6\x7d\x60\x55\xc6\x5d\x1c\xa2\x3e\xb0\xfa\x22\xab\xa6\xa6\x37\x0e\xf7\x9a\xda\x84\x0e\xa4\xa9\x61\x0a\x5c\xa3\xf7\xa9\xec\xc8\x33\xcc\x6f\x67\xb3\x59\xaa\x34\xde\xc9\xf2\x28\xcf\x53\x39\xa0\xef\x94\xc4\xd2\x08\x07\x57\xd1\x9b\xed\xcb\xbc\x1a\xf5\x81\x1c\x95\xca\x38\x8d\x06\x2d\xef\x67\x0a\x20\xcb\xd1\x76\x58\x54\x1a\xb9\x74\x9e\x98\x24\x69\x88\xc8\x2f\x3c\x46\x58\xd1\xa0\xff\xde\x1b\x73\x94\x8d\xa6\x4a\xe8\x52\xd4\xb5\x0f\xb0\x66\x76\x45\x9e\x5f\x3c\xae\xee\x1f\xca\x9f\x4f\x8b\x1f\x77\x4f\xe5\xeb\xe3\xf2\xed\xf7\xfd\x63\xf9\x6b\xf1\xba\x2a\xce\x2a\x2f\x8b\xe5\x2a\x61\x6f\xb7\x95\x90\xef\xad\x2b\xff\x68\xd1\x84\xdd\x6e\x3a\x9c\x47\xfd\xb4\x38\x33\x82\x46\x43\x62\x4d\xe1\xf0\xfe\xb6\xee\x64\x4c\xec\xce\x8c\xaf\x33\x6f\x1f\x8d\xe3\xcd\x83\xf2\x05\x6c\xc7\x11\xe9\x4b\x1e\x27\x3b\x79\xf3\xbb\xc9\xe4\x6f\x00\x00\x00\xff\xff\x88\x11\x1f\x42\xfd\x05\x00\x00") + +func examplesStorageVitessVtctldControllerTemplateYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessVtctldControllerTemplateYaml, + "examples/storage/vitess/vtctld-controller-template.yaml", + ) +} + +func examplesStorageVitessVtctldControllerTemplateYaml() (*asset, error) { + bytes, err := examplesStorageVitessVtctldControllerTemplateYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/vtctld-controller-template.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessVtctldDownSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xc1\x6e\xdb\x38\x10\x86\xef\x7c\x8a\x7f\xa5\x1c\x76\x01\x47\xce\x06\xe8\xa5\x45\x0f\x8a\xe3\x22\x42\x02\x1b\xb0\xec\x06\x39\x25\x34\x35\x96\x06\x90\x49\x96\x1c\xd9\x31\x8a\xbe\x7b\x41\xc7\x01\x12\x34\xd5\x51\xf3\xf1\xe7\xc7\x99\xc9\xff\x19\xaf\xd9\x8e\xd7\x3a\x76\x4a\xe5\x98\x38\x7f\x08\xdc\x76\x82\xcb\x8b\xff\x3f\x61\xd9\x11\x6e\x87\x35\x05\x4b\x42\x11\xe5\x20\x9d\x0b\xb1\x50\xb9\xca\x71\xc7\x86\x6c\xa4\x06\x83\x6d\x28\x40\x3a\x42\xe9\xb5\xe9\xe8\xb5\x32\xc2\x77\x0a\x91\x9d\xc5\x65\x71\x81\x7f\x13\x90\x9d\x4a\xd9\x7f\x5f\x54\x8e\x83\x1b\xb0\xd5\x07\x58\x27\x18\x22\x41\x3a\x8e\xd8\x70\x4f\xa0\x67\x43\x5e\xc0\x16\xc6\x6d\x7d\xcf\xda\x1a\xc2\x9e\xa5\x3b\x5e\x73\x0a\x29\x54\x8e\x87\x53\x84\x5b\x8b\x66\x0b\x0d\xe3\xfc\x01\x6e\xf3\x96\x83\x96\xa3\x70\xfa\x3a\x11\xff\x79\x3c\xde\xef\xf7\x85\x3e\xca\x16\x2e\xb4\xe3\xfe\x05\x8c\xe3\xbb\x6a\x32\x9d\xd5\xd3\xf3\xcb\xe2\xe2\x78\x64\x65\x7b\x8a\x11\x81\x7e\x0c\x1c\xa8\xc1\xfa\x00\xed\x7d\xcf\x46\xaf\x7b\x42\xaf\xf7\x70\x01\xba\x0d\x44\x0d\xc4\x25\xdf\x7d\x60\x61\xdb\x8e\x10\xdd\x46\xf6\x3a\x90\xca\xd1\x70\x94\xc0\xeb\x41\xde\x35\xeb\xd5\x8e\xe3\x3b\xc0\x59\x68\x8b\xac\xac\x51\xd5\x19\xae\xca\xba\xaa\x47\x2a\xc7\x7d\xb5\xbc\x99\xaf\x96\xb8\x2f\x17\x8b\x72\xb6\xac\xa6\x35\xe6\x0b\x4c\xe6\xb3\xeb\x6a\x59\xcd\x67\x35\xe6\xdf\x50\xce\x1e\x70\x5b\xcd\xae\x47\x20\x96\x8e\x02\xe8\xd9\x87\xe4\xef\x02\x38\xb5\x91\x9a\xd4\xb3\x9a\xe8\x9d\xc0\xc6\xbd\x08\x45\x4f\x86\x37\x6c\xd0\x6b\xdb\x0e\xba\x25\xb4\x6e\x47\xc1\xb2\x6d\xe1\x29\x6c\x39\xa6\x61\x46\x68\xdb\xa8\x1c\x3d\x6f\x59\xb4\x1c\xff\xfc\xf1\xa8\x22\xed\xd2\x32\x8d\x93\x13\x0f\x7a\xd6\x5b\xdf\x13\xa2\x09\xec\x05\xd2\x69\x41\x14\xe7\x23\x76\x62\xa4\x6f\x0a\xa5\x22\x09\xce\x49\xa9\x17\xe4\x31\x38\x27\x5f\x9f\x1a\x0e\x56\x6f\x09\xd9\xd9\xcf\xab\xb2\xbe\x79\xac\xe7\xab\xc5\x64\xfa\x2b\x7b\x52\xd1\x0d\xc1\x10\xce\xde\xe0\x63\xb2\xbb\x22\xad\x31\x99\xce\x21\xbb\xa6\x9e\xd2\x28\x4e\x57\x20\xd0\x71\x70\xc9\xd8\x38\x2b\xc1\xf5\x3d\x85\xa2\x28\x32\x75\x76\xbb\xba\x9a\x4e\x96\x77\x68\xd2\x11\xfa\x98\x3c\xc5\xfc\x2d\x3d\x52\xd8\xb1\xa1\x0f\xf3\x4e\xb5\xd7\x84\xdf\x01\x00\x00\xff\xff\x09\x49\xbf\x36\x73\x03\x00\x00") + +func examplesStorageVitessVtctldDownShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessVtctldDownSh, + "examples/storage/vitess/vtctld-down.sh", + ) +} + +func examplesStorageVitessVtctldDownSh() (*asset, error) { + bytes, err := examplesStorageVitessVtctldDownShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/vtctld-down.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessVtctldServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8f\xd1\x6a\xc4\x20\x10\x45\xdf\xfd\x8a\xfb\x03\x05\xa5\xf4\xc5\x8f\x28\x85\x42\xdf\x27\x3a\x04\xa9\xd1\x41\x07\x4b\xff\x7e\x49\x36\x81\x2c\xbb\x0b\xfb\x78\xcf\xbd\x1e\x99\xdf\x54\xa2\xc7\x37\xb7\x91\x02\x1b\x92\xf4\xc3\xad\xa7\x5a\x3c\x86\x33\x0b\x2b\x45\x52\xf2\x06\x28\xb4\xb0\xc7\xd0\xa0\x39\x1a\x20\xd3\xc4\xb9\xaf\x05\x10\xea\x22\xb5\x70\xd1\x53\x0f\x90\x88\xc7\x48\xca\xbd\x9b\x2e\x1c\xd6\xad\xd4\xa6\xfb\xa3\xb7\x2d\x78\xb8\x0f\x6b\xed\x46\x8e\x3f\xfe\x78\xda\xb3\x52\x9b\x59\xbf\xee\x77\x35\xf2\x95\xbe\xdb\x83\x9e\x7d\xee\xc6\x37\x37\x09\x4f\x84\xee\xa1\x70\xa5\x9d\x33\x07\xad\xed\xd5\x0b\x01\xfd\x17\xf6\xf8\xdc\x4d\xc6\x5c\x02\x00\x00\xff\xff\x0a\x31\x6d\xa9\x5a\x01\x00\x00") + +func examplesStorageVitessVtctldServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessVtctldServiceYaml, + "examples/storage/vitess/vtctld-service.yaml", + ) +} + +func examplesStorageVitessVtctldServiceYaml() (*asset, error) { + bytes, err := examplesStorageVitessVtctldServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/vtctld-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessVtctldUpSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x53\xc1\x6e\xdb\x38\x10\xbd\xf3\x2b\x5e\x25\x1f\x5a\xac\x2d\x67\x03\xec\xa5\x41\x0e\x8e\xeb\x45\x8d\x04\x36\x10\x39\x5b\xf4\xe4\x52\xd4\x58\x22\x2a\x93\xda\xe1\xc8\x8e\xe1\xe6\xdf\x17\x94\xed\x4d\x83\xdd\xea\x24\x90\x6f\xde\xbc\x79\xf3\x98\xbe\x1b\x17\xd6\x8d\x0b\x1d\x6a\xa5\x52\x4c\x7d\x7b\x60\x5b\xd5\x82\xeb\xab\xdf\xff\xc0\xaa\x26\xdc\x77\x05\xb1\x23\xa1\x80\x49\x27\xb5\xe7\x90\xa9\x54\xa5\x78\xb0\x86\x5c\xa0\x12\x9d\x2b\x89\x21\x35\x61\xd2\x6a\x53\xd3\xe5\x66\x88\xbf\x88\x83\xf5\x0e\xd7\xd9\x15\xde\x47\x40\x72\xbe\x4a\x3e\xdc\xa8\x14\x07\xdf\x61\xab\x0f\x70\x5e\xd0\x05\x82\xd4\x36\x60\x63\x1b\x02\x3d\x1b\x6a\x05\xd6\xc1\xf8\x6d\xdb\x58\xed\x0c\x61\x6f\xa5\xee\xdb\x9c\x49\x32\x95\xe2\xeb\x99\xc2\x17\xa2\xad\x83\x86\xf1\xed\x01\x7e\xf3\x33\x0e\x5a\x7a\xc1\xf1\xab\x45\xda\x8f\xe3\xf1\x7e\xbf\xcf\x74\x2f\x36\xf3\x5c\x8d\x9b\x13\x30\x8c\x1f\xe6\xd3\xd9\x22\x9f\x8d\xae\xb3\xab\xbe\xe4\xc9\x35\x14\x02\x98\xfe\xee\x2c\x53\x89\xe2\x00\xdd\xb6\x8d\x35\xba\x68\x08\x8d\xde\xc3\x33\x74\xc5\x44\x25\xc4\x47\xbd\x7b\xb6\x62\x5d\x35\x44\xf0\x1b\xd9\x6b\x26\x95\xa2\xb4\x41\xd8\x16\x9d\xbc\x31\xeb\xa2\xce\x86\x37\x00\xef\xa0\x1d\x92\x49\x8e\x79\x9e\xe0\x6e\x92\xcf\xf3\xa1\x4a\xf1\x65\xbe\xfa\xbc\x7c\x5a\xe1\xcb\xe4\xf1\x71\xb2\x58\xcd\x67\x39\x96\x8f\x98\x2e\x17\x9f\xe6\xab\xf9\x72\x91\x63\xf9\x27\x26\x8b\xaf\xb8\x9f\x2f\x3e\x0d\x41\x56\x6a\x62\xd0\x73\xcb\x51\xbf\x67\xd8\x68\x23\x95\xd1\xb3\x9c\xe8\x8d\x80\x8d\x3f\x09\x0a\x2d\x19\xbb\xb1\x06\x8d\x76\x55\xa7\x2b\x42\xe5\x77\xc4\xce\xba\x0a\x2d\xf1\xd6\x86\xb8\xcc\x00\xed\x4a\x95\xa2\xb1\x5b\x2b\x5a\xfa\x93\xff\x0c\x95\xc5\x2c\xad\xe2\x3a\x6d\xc4\x83\x9e\xf5\xb6\x6d\x08\xc1\xb0\x6d\x05\x52\x6b\x41\x10\xcd\x12\xb0\x13\x23\x4d\x99\x29\x15\x48\x30\x22\xa5\x4e\x98\x35\x7b\x2f\xb7\xdf\x4a\xcb\x4e\x6f\x09\xc9\xe0\x78\x37\xc9\x3f\xaf\xf3\xe5\xd3\xe3\x74\xf6\x92\x7c\x53\xc1\x77\x6c\x08\x83\x9f\xe0\x63\x72\xbb\x2c\xe6\x98\x4c\xed\x91\x4c\x99\x74\xdc\xc5\xb9\x05\x02\xf1\xce\x1a\xca\xb2\x2c\x51\x83\xfb\xa7\xbb\xd9\x74\xf5\x00\x13\x41\x84\xd1\xe6\x8c\x1a\x5d\x50\x07\xbd\x6d\x7e\xc5\xc4\xd4\x67\x20\x0e\x6f\xbc\x13\xf6\x4d\x43\xdc\xf3\xa6\x98\x3d\xb7\xda\x95\x10\xda\xb6\x4d\x64\xde\x69\xb6\x31\x2d\x41\x05\x2a\xd7\x27\xb5\xb7\x49\xa2\xa2\xeb\x3b\xcd\x31\x33\x85\x36\xdf\xbb\x76\xbd\x69\x74\x15\x6e\x50\x7a\x05\xbc\x62\x7f\xbb\x4d\xc2\xf0\x78\x1c\xec\x34\xbf\xbc\x0c\x07\xc7\x77\xf1\x67\x58\xdd\x24\xaa\xf4\x8e\xa2\xcf\x73\x17\x44\x3b\xb1\xb1\xdb\xbf\x6d\xa3\x86\x40\xae\x8f\xe5\xf7\xae\x20\x23\x4d\xa6\x8c\x96\xcb\x98\xaf\xba\x47\x97\x9a\x7e\x64\xfc\x88\xbd\x31\x8a\x96\xbf\x8a\x48\xf0\x03\xff\x63\xd9\x28\x6e\x8d\x77\xc4\xb7\x83\xf7\x15\xc9\xfa\xc4\xbd\xd6\x65\xc9\x1f\x7a\xeb\xce\xfe\x9d\x6d\x8b\xe7\x14\xc2\xc7\xcb\x2b\x1c\x9c\x8a\x13\xa5\xfe\x09\x00\x00\xff\xff\x79\xae\x5f\x06\x86\x04\x00\x00") + +func examplesStorageVitessVtctldUpShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessVtctldUpSh, + "examples/storage/vitess/vtctld-up.sh", + ) +} + +func examplesStorageVitessVtctldUpSh() (*asset, error) { + bytes, err := examplesStorageVitessVtctldUpShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/vtctld-up.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessVtgateControllerTemplateYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x53\x51\x4b\xe4\x3c\x14\x7d\xef\xaf\xb8\x14\xd1\xa7\xda\x8e\xe0\x4b\x1e\x3e\xf0\x53\xd9\x5d\x50\x46\xc6\xe2\x6b\xc9\xa4\x97\x36\x98\xe4\x86\xe4\x4e\x17\x19\xe6\xbf\x2f\x51\xeb\xd6\xcc\xb0\x79\x6a\xef\x39\x39\x39\xf7\x26\xe7\x55\xbb\x5e\xc0\x06\xbd\xd1\x4a\xb2\x26\x77\x4b\x8e\x03\x19\x83\xa1\x90\x5e\xbf\x60\x88\x9a\x9c\x80\x69\x55\x58\x64\xd9\x4b\x96\xa2\x00\x70\xd2\xa2\x80\x89\x07\xc9\x58\x44\x8f\x2a\x15\xc3\x87\x4a\x14\xb0\xdf\xcf\xdf\x87\x43\x01\xc0\x68\xbd\x91\x8c\x89\x04\xb0\xd4\x49\xcb\xc8\x2d\x9a\x38\xff\x01\x28\xb2\x9e\x1c\x3a\xfe\x3a\x60\x46\xa4\xf7\x02\x26\xcd\x18\xe3\x7b\x6d\x3e\xf8\x63\x97\x63\xa9\x1d\x86\x85\x52\xf5\xdd\x27\x7c\x2d\x6d\xe5\x80\xb3\x54\x6d\x34\xa3\x98\xae\x2e\x9b\xcb\xa6\x92\xc6\x8f\xf2\x7a\x41\x9d\xc8\xec\x2c\x3e\xd2\xce\xf1\x42\x79\xa9\x1e\xdf\xa2\xa1\xe1\x1b\x04\x60\xd3\x86\x27\xc9\xa3\x80\xba\xc7\xa9\xce\x19\x7f\xad\xa5\x51\x04\x22\xfe\x87\xc0\xc4\xf5\x49\x5e\xc0\x48\xbb\xa0\x30\x33\x66\xb4\xd5\xb9\xd9\x34\x76\x4b\xe1\x4d\x40\x79\xbd\xba\x7a\xd4\x65\x86\x2a\xbf\x4b\x50\xd3\xd8\x25\xa2\xc8\x5a\xe9\xfa\xbc\xef\x38\x66\x85\xb2\x52\x65\x56\xfa\xaf\xca\xcf\x7f\xed\x75\x80\xca\xc3\xd9\x4b\x7b\x77\xd3\xde\x6c\xd6\xeb\xb6\x66\xeb\xe1\xfc\x3c\xf7\x32\xd2\x6f\x07\xd5\xe6\xf3\x7e\x52\xff\xc7\xa4\xb8\x4b\x5a\x95\x82\x32\x8d\x67\xab\x5d\x7d\x74\xcb\xef\x46\x98\x3c\x75\xda\x7a\x83\x16\x1d\xbf\x3f\x71\x40\x56\x7d\xce\x4b\xb5\x6e\x30\xb4\x95\xa6\x93\x7d\x1f\x22\x8c\xcc\x5e\xd4\xf5\xd9\x7d\x7b\x7b\xd7\xfd\x78\x58\xff\x7f\xf3\xd0\x3d\xdf\x6f\x5e\x7e\xdd\xde\x77\x3f\xd7\xcf\xad\x38\x89\x3c\xad\x37\x6d\xae\x6d\x68\xe8\x52\xf3\x59\xe7\x39\x4d\x9a\x48\x86\x06\xa6\xc8\x3d\x86\x90\xc3\x9e\x02\xc3\xea\xba\x69\x56\x47\x3d\xca\xad\x41\xee\x7c\x20\x26\x45\x06\x86\xe0\x55\xce\x89\x18\x26\xad\xb0\xb3\xd2\xc3\xc5\x36\x92\x0b\x5e\x55\x13\x57\x1f\x53\xfb\x44\x2f\xf2\x5d\x0a\x8d\x01\xc6\xc8\xe5\x32\x77\x73\x2a\x4e\x44\xed\x28\x0c\x23\xc5\xcf\x67\xbc\xf7\xdf\xe2\x70\x38\x11\xd3\x13\x6f\x1c\xad\xe7\xb7\x3b\x1d\x04\xec\x0f\x45\xf1\x27\x00\x00\xff\xff\x79\xbd\x49\x2a\xaf\x04\x00\x00") + +func examplesStorageVitessVtgateControllerTemplateYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessVtgateControllerTemplateYaml, + "examples/storage/vitess/vtgate-controller-template.yaml", + ) +} + +func examplesStorageVitessVtgateControllerTemplateYaml() (*asset, error) { + bytes, err := examplesStorageVitessVtgateControllerTemplateYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/vtgate-controller-template.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessVtgateDownSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\xc1\x6e\xdb\x38\x10\x86\xef\x7a\x8a\x7f\xa5\x1c\x76\x01\x47\xce\x06\xe8\xa5\x45\x0f\x8a\xe3\x22\x42\x02\x1b\xb0\xec\x06\x39\x25\x14\x35\x96\x06\x90\x49\x96\x1c\x59\x31\x8a\xbe\x7b\x41\xc7\x01\x12\xb4\xd1\x51\xf3\xf1\xe7\xc7\x99\xc9\xfe\x99\xd6\x6c\xa6\xb5\x0a\x5d\x92\x64\x98\x59\x77\xf0\xdc\x76\x82\xcb\x8b\xff\x3f\x61\xdd\x11\x6e\x87\x9a\xbc\x21\xa1\x80\x62\x90\xce\xfa\x90\x27\x59\x92\xe1\x8e\x35\x99\x40\x0d\x06\xd3\x90\x87\x74\x84\xc2\x29\xdd\xd1\x6b\x65\x82\xef\xe4\x03\x5b\x83\xcb\xfc\x02\xff\x46\x20\x3d\x95\xd2\xff\xbe\x24\x19\x0e\x76\xc0\x4e\x1d\x60\xac\x60\x08\x04\xe9\x38\x60\xcb\x3d\x81\x9e\x35\x39\x01\x1b\x68\xbb\x73\x3d\x2b\xa3\x09\x23\x4b\x77\xbc\xe6\x14\x92\x27\x19\x1e\x4e\x11\xb6\x16\xc5\x06\x0a\xda\xba\x03\xec\xf6\x2d\x07\x25\x47\xe1\xf8\x75\x22\xee\xf3\x74\x3a\x8e\x63\xae\x8e\xb2\xb9\xf5\xed\xb4\x7f\x01\xc3\xf4\xae\x9c\xcd\x17\xd5\xfc\xfc\x32\xbf\x38\x1e\xd9\x98\x9e\x42\x80\xa7\x1f\x03\x7b\x6a\x50\x1f\xa0\x9c\xeb\x59\xab\xba\x27\xf4\x6a\x84\xf5\x50\xad\x27\x6a\x20\x36\xfa\x8e\x9e\x85\x4d\x3b\x41\xb0\x5b\x19\x95\xa7\x24\x43\xc3\x41\x3c\xd7\x83\xbc\x6b\xd6\xab\x1d\x87\x77\x80\x35\x50\x06\x69\x51\xa1\xac\x52\x5c\x15\x55\x59\x4d\x92\x0c\xf7\xe5\xfa\x66\xb9\x59\xe3\xbe\x58\xad\x8a\xc5\xba\x9c\x57\x58\xae\x30\x5b\x2e\xae\xcb\x75\xb9\x5c\x54\x58\x7e\x43\xb1\x78\xc0\x6d\xb9\xb8\x9e\x80\x58\x3a\xf2\xa0\x67\xe7\xa3\xbf\xf5\xe0\xd8\x46\x6a\x62\xcf\x2a\xa2\x77\x02\x5b\xfb\x22\x14\x1c\x69\xde\xb2\x46\xaf\x4c\x3b\xa8\x96\xd0\xda\x3d\x79\xc3\xa6\x85\x23\xbf\xe3\x10\x87\x19\xa0\x4c\x93\x64\xe8\x79\xc7\xa2\xe4\xf8\xe7\x8f\x47\xe5\x71\x97\xd6\x71\x9c\x1c\x79\xd0\xb3\xda\xb9\x9e\x10\xb4\x67\x27\x90\x4e\x09\x82\x58\x17\xb0\x97\x56\x49\xe4\x03\x09\xce\x29\x49\x5e\x90\x47\x6f\xad\x7c\x7d\x6a\xd8\x1b\xb5\x23\xa4\x67\x3f\xaf\x8a\xea\xe6\xb1\x5a\x6e\x56\xb3\xf9\xaf\xf4\x29\x09\x76\xf0\x9a\x70\xf6\x06\x9f\x92\xd9\xe7\x71\x8d\x49\x77\x16\xe9\x35\xf5\x14\x47\x71\xba\x02\x9e\x8e\x83\x8b\xc6\xda\x1a\xf1\xb6\xef\xc9\xe7\x79\x9e\x26\x67\xb7\x9b\xab\xf9\x6c\x7d\x87\x26\x1e\xf9\x80\x3c\xc5\x7c\x94\x1e\xc8\xef\x59\xd3\x5f\xf3\x4e\xb5\xd7\x84\xdf\x01\x00\x00\xff\xff\xe7\x1f\x65\x46\x73\x03\x00\x00") + +func examplesStorageVitessVtgateDownShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessVtgateDownSh, + "examples/storage/vitess/vtgate-down.sh", + ) +} + +func examplesStorageVitessVtgateDownSh() (*asset, error) { + bytes, err := examplesStorageVitessVtgateDownShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/vtgate-down.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessVtgateServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\xcc\xb1\xca\x02\x31\x10\x04\xe0\x7e\x9f\x62\x5e\xe0\x87\xbb\xe2\x6f\xb6\xb4\xb6\x13\xec\xd7\xdc\x20\xc1\x5c\xb2\x24\x4b\xc0\xb7\x97\x13\x0b\x4b\xcb\xe1\x9b\x99\x47\xae\x9b\xe2\xc2\x3e\x73\xa2\x98\xe7\x2b\xfb\xc8\xad\x2a\xe6\x2a\x3b\xc3\x36\x0b\x53\x01\xaa\xed\x54\xcc\xb8\x5b\x50\x80\x62\x37\x96\x71\x00\x90\xda\xee\xad\xb2\xc6\x97\x03\xe6\xae\x98\x39\x38\x86\x0c\x67\x3a\xba\xde\x7a\x7c\x46\x7f\xef\xa0\x58\xff\x97\x65\x15\x60\xb0\x30\x45\xeb\xbf\x5e\x02\xf1\x74\x2a\xce\xcd\xb6\x93\x15\xab\x89\x5d\xe4\x15\x00\x00\xff\xff\xe9\xfc\xe8\x42\xcf\x00\x00\x00") + +func examplesStorageVitessVtgateServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessVtgateServiceYaml, + "examples/storage/vitess/vtgate-service.yaml", + ) +} + +func examplesStorageVitessVtgateServiceYaml() (*asset, error) { + bytes, err := examplesStorageVitessVtgateServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/vtgate-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessVtgateUpSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x5f\x6f\xdb\x36\x14\xc5\xdf\xf9\x29\x4e\x25\x03\xdd\x30\x4b\xce\x32\xec\x25\x81\x1f\x14\x57\x5b\x85\x78\x76\x61\x29\x2d\xfa\x94\xd2\xd2\xb5\x44\x40\x26\x35\xf2\xca\x8e\xe1\xfa\xbb\x0f\xf4\x1f\xa4\xc9\x52\x3d\x09\xe4\x8f\xf7\x9c\x7b\xee\x0d\xdf\x8d\x96\x4a\x8f\x96\xd2\x35\x42\x84\x98\x98\x6e\x67\x55\xdd\x30\xae\xaf\x7e\xff\x13\x45\x43\xb8\xef\x97\x64\x35\x31\x39\x24\x3d\x37\xc6\xba\x58\x84\x22\xc4\x54\x95\xa4\x1d\x55\xe8\x75\x45\x16\xdc\x10\x92\x4e\x96\x0d\x5d\x6e\x86\xf8\x4c\xd6\x29\xa3\x71\x1d\x5f\xe1\x17\x0f\x04\xe7\xab\xe0\xd7\x5b\x11\x62\x67\x7a\xac\xe5\x0e\xda\x30\x7a\x47\xe0\x46\x39\xac\x54\x4b\xa0\xa7\x92\x3a\x86\xd2\x28\xcd\xba\x6b\x95\xd4\x25\x61\xab\xb8\x39\xca\x9c\x8b\xc4\x22\xc4\xd7\x73\x09\xb3\x64\xa9\x34\x24\x4a\xd3\xed\x60\x56\x3f\x72\x90\x7c\x34\xec\xbf\x86\xb9\xbb\x19\x8d\xb6\xdb\x6d\x2c\x8f\x66\x63\x63\xeb\x51\x7b\x02\xdd\x68\x9a\x4d\xd2\x59\x9e\x46\xd7\xf1\xd5\xf1\xc9\x83\x6e\xc9\x39\x58\xfa\xb7\x57\x96\x2a\x2c\x77\x90\x5d\xd7\xaa\x52\x2e\x5b\x42\x2b\xb7\x30\x16\xb2\xb6\x44\x15\xd8\x78\xbf\x5b\xab\x58\xe9\x7a\x08\x67\x56\xbc\x95\x96\x44\x88\x4a\x39\xb6\x6a\xd9\xf3\x8b\xb0\x2e\xee\x94\x7b\x01\x18\x0d\xa9\x11\x24\x39\xb2\x3c\xc0\x5d\x92\x67\xf9\x50\x84\xf8\x92\x15\x1f\xe7\x0f\x05\xbe\x24\x8b\x45\x32\x2b\xb2\x34\xc7\x7c\x81\xc9\x7c\xf6\x21\x2b\xb2\xf9\x2c\xc7\xfc\x2f\x24\xb3\xaf\xb8\xcf\x66\x1f\x86\x20\xc5\x0d\x59\xd0\x53\x67\xbd\x7f\x63\xa1\x7c\x8c\x54\xf9\xcc\x72\xa2\x17\x06\x56\xe6\x64\xc8\x75\x54\xaa\x95\x2a\xd1\x4a\x5d\xf7\xb2\x26\xd4\x66\x43\x56\x2b\x5d\xa3\x23\xbb\x56\xce\x0f\xd3\x41\xea\x4a\x84\x68\xd5\x5a\xb1\xe4\xe3\xc9\xff\x9a\x8a\xfd\x2e\x15\x7e\x9c\xca\xf3\xa0\x27\xb9\xee\x5a\x82\x2b\xad\xea\x18\xdc\x48\x86\x63\x69\xd9\x41\x62\xc3\xb5\x64\x82\xa5\x63\xb0\xbe\x62\x69\x34\x5b\xd3\xb6\x64\x63\x21\x1c\x31\x22\x12\xe2\xf4\xf6\xd1\x1a\xc3\xe3\x6f\x95\xb2\x5a\xae\x09\xc1\x60\x7f\x97\xe4\x1f\x1f\xf3\xf9\xc3\x62\x92\x1e\x82\x6f\xc2\x99\xde\x96\x84\xc1\x0f\xf8\x88\xf4\x26\xf6\xfb\xfd\xb9\xf8\x3b\x29\xd2\xc7\x45\xfa\x69\x9a\x4d\x92\x7c\x3c\xd8\xbf\x3a\xb9\x89\xfe\x38\x5c\xa8\x22\xfd\xe7\xd3\x34\x29\xd2\x67\xea\x72\x72\x13\xbd\x3f\x79\x8e\x9e\x8d\x46\x4c\xeb\xae\x95\x4c\xf1\x4e\xae\xdb\xf7\x07\x21\xce\xfd\xb8\xf1\xe0\x95\x88\x10\x54\x36\x06\xc1\xc4\x92\xf4\xbb\x72\x09\xc0\x91\xdd\xa8\x92\xe2\x38\x0e\xc4\xe0\xfe\xe1\x2e\x9d\x14\x53\x94\x1e\x22\x44\xab\x33\x15\x5d\x28\x2f\xe3\xc3\xa9\x1e\x4f\x9d\x8e\x83\x40\xf8\x49\x6e\xa4\xf5\x7b\x78\x51\xbf\x45\x65\x04\xf0\xcc\xfd\x36\x0e\xdc\x70\xbf\x1f\x6c\xa4\x3d\x1c\x86\x83\xfd\x3b\xff\x33\xac\x6f\x03\x51\x19\x4d\x3f\xf3\xf6\xf6\x70\xbc\xd3\x52\x32\x06\xaf\x02\xc2\x77\x2f\x88\xc8\xcf\xe7\x59\x39\xc0\x77\xbc\xd1\x57\x24\xfe\x0b\x00\x00\xff\xff\xca\x64\x26\xc6\x84\x04\x00\x00") + +func examplesStorageVitessVtgateUpShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessVtgateUpSh, + "examples/storage/vitess/vtgate-up.sh", + ) +} + +func examplesStorageVitessVtgateUpSh() (*asset, error) { + bytes, err := examplesStorageVitessVtgateUpShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/vtgate-up.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessVttabletDownSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x53\x5d\x6f\xe2\x38\x14\x7d\xf7\xaf\x38\x0b\x19\xd1\x6a\x9a\x10\x2a\xcd\x4b\x47\x3c\xa4\x94\x55\x51\x11\xac\x08\xdd\xd1\x68\xb5\x0a\x26\xb9\x10\x6b\x83\x9d\xb1\x1d\x28\xea\xf4\xbf\xaf\xec\x40\x3f\x54\xf3\xc0\xc5\x3e\xe7\xdc\xe3\xe3\x4b\xf7\x8f\xfe\x5a\xc8\xfe\x9a\x9b\x92\xb1\x2e\x46\xaa\x3e\x6a\xb1\x2d\x2d\xae\xe3\xc1\x37\x2c\x4b\xc2\x43\xb3\x26\x2d\xc9\x92\x41\xd2\xd8\x52\x69\x13\xb1\x2e\xeb\x62\x2a\x72\x92\x86\x0a\x34\xb2\x20\x0d\x5b\x12\x92\x9a\xe7\x25\x9d\x4f\xae\xf0\x37\x69\x23\x94\xc4\x75\x14\xe3\xc2\x01\x3a\xa7\xa3\xce\xe5\x77\xd6\xc5\x51\x35\xd8\xf1\x23\xa4\xb2\x68\x0c\xc1\x96\xc2\x60\x23\x2a\x02\x3d\xe5\x54\x5b\x08\x89\x5c\xed\xea\x4a\x70\x99\x13\x0e\xc2\x96\xbe\xcd\x49\x24\x62\x5d\xfc\x3c\x49\xa8\xb5\xe5\x42\x82\x23\x57\xf5\x11\x6a\xf3\x1e\x07\x6e\xbd\x61\xb7\x4a\x6b\xeb\x9b\x7e\xff\x70\x38\x44\xdc\x9b\x8d\x94\xde\xf6\xab\x16\x68\xfa\xd3\xc9\x68\x3c\x4b\xc7\xe1\x75\x14\x7b\xca\xa3\xac\xc8\x18\x68\xfa\xd5\x08\x4d\x05\xd6\x47\xf0\xba\xae\x44\xce\xd7\x15\xa1\xe2\x07\x28\x0d\xbe\xd5\x44\x05\xac\x72\x7e\x0f\x5a\x58\x21\xb7\x57\x30\x6a\x63\x0f\x5c\x13\xeb\xa2\x10\xc6\x6a\xb1\x6e\xec\x87\xb0\xce\xee\x84\xf9\x00\x50\x12\x5c\xa2\x93\xa4\x98\xa4\x1d\xdc\x26\xe9\x24\xbd\x62\x5d\xfc\x98\x2c\xef\xe7\x8f\x4b\xfc\x48\x16\x8b\x64\xb6\x9c\x8c\x53\xcc\x17\x18\xcd\x67\x77\x93\xe5\x64\x3e\x4b\x31\xff\x13\xc9\xec\x27\x1e\x26\xb3\xbb\x2b\x90\xb0\x25\x69\xd0\x53\xad\x9d\x7f\xa5\x21\x5c\x8c\x54\xb8\xcc\x52\xa2\x0f\x06\x36\xaa\x35\x64\x6a\xca\xc5\x46\xe4\xa8\xb8\xdc\x36\x7c\x4b\xd8\xaa\x3d\x69\x29\xe4\x16\x35\xe9\x9d\x30\xee\x31\x0d\xb8\x2c\x58\x17\x95\xd8\x09\xcb\xad\xdf\xf9\x74\xa9\xc8\xcd\xd2\xd2\x3d\xa7\x70\x78\xd0\x13\xdf\xd5\x15\xc1\xe4\x5a\xd4\x16\xb6\xe4\x16\x96\xb8\x36\x28\xd4\x41\x7a\xe6\xde\x5a\x17\xaa\x45\xad\x0a\x03\x63\xb9\xb6\x3e\x70\xd6\x7d\x3d\x0a\x9b\x3a\x32\x65\xc4\x98\x21\x8b\x90\x18\x6b\xe5\x32\xad\x94\x1d\xae\x0a\xa1\x25\xdf\x11\x3a\xc1\xf3\x6d\x92\xde\x67\xe9\xfc\x71\x31\x1a\xbf\x74\x56\xcc\xa8\x46\xe7\x84\xe0\x1d\xbc\x4f\x72\x1f\xb9\x91\x37\xa4\xf7\xa4\x87\xc1\xc5\x96\x6c\xb6\xb7\xb9\xad\x8a\x8c\x17\x85\xbe\x74\x37\xb8\xa3\x8a\x6c\x1b\x96\x77\xe5\x92\xe2\x55\x05\x53\x72\x5d\x18\x36\x1a\x4f\xa7\xe9\x30\x78\xf6\xdf\x37\x61\xcf\x92\xb1\xbd\x17\xf6\x1f\x1d\x4d\xcd\x73\x1a\xfa\x8d\xec\xfc\xb3\xc7\xd2\xfb\x64\x71\xe7\x08\x6d\x71\x13\xf6\xe2\xde\x0b\x5b\x26\xb7\xd3\xf1\x32\xcd\xfe\x1a\x2f\x32\x7f\x30\x0c\x9e\x3f\xed\xdd\x84\xdf\x5e\xd8\xe3\xe4\x2e\xbb\x4d\xd2\xf1\x30\x78\x3e\x97\x37\xe1\x20\x8e\x5f\x18\x93\xcd\x2e\x6b\x5d\x0d\x57\x94\x97\x0a\x41\xdb\x03\xbf\x61\x35\x3a\x57\x1d\xb8\xcf\x6f\x1c\x72\x84\x87\x15\x6b\x44\x91\xad\xb9\xa1\x61\x70\x16\x62\xcc\x5d\xce\x4b\xb8\x31\x5e\x19\xfa\x85\x01\x82\x37\xdd\xd5\x77\x14\x8a\x01\x39\x55\x55\x26\x64\x41\x4f\xc3\x98\xc1\x47\xe2\xb6\x3c\xa9\xed\xec\xe3\xf8\xd0\xf8\xcc\x6d\xe1\xae\xb9\x17\x78\x6d\x14\x23\xb8\xb8\x08\x3e\x5d\x3a\x1c\x5c\x5e\xbe\x51\xe1\x88\xc3\xe0\x9f\xe0\x6c\x1e\x5f\x11\xbc\x69\x7d\x45\xf0\x66\xed\xdf\x13\xa3\xd6\x42\xda\x0d\xc2\x3d\x78\x25\xb8\x41\xef\x8b\x09\xbf\xc4\x83\xb8\xe8\xb5\x68\x2f\xc0\x4e\x60\xef\xbe\xe3\xdf\xdc\x8f\xbc\x2a\xda\xbf\x46\x3b\x96\x81\x57\x88\xa2\xa8\x73\x82\x07\x0f\x8f\xb7\xe3\xd1\x72\x8a\xa2\x9d\x12\x87\x7f\x9d\x54\xaf\xeb\x50\x85\x92\xe4\x0b\xa7\xf1\x2e\xbb\xb7\xf2\xeb\x20\x3e\x2d\xf6\x0a\x77\xe0\xd7\x37\x3a\x17\x0e\xc8\x3c\x80\xfd\x1f\x00\x00\xff\xff\x8e\xb8\xbc\x65\xb6\x05\x00\x00") + +func examplesStorageVitessVttabletDownShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessVttabletDownSh, + "examples/storage/vitess/vttablet-down.sh", + ) +} + +func examplesStorageVitessVttabletDownSh() (*asset, error) { + bytes, err := examplesStorageVitessVttabletDownShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/vttablet-down.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessVttabletPodTemplateYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x57\x51\x6f\xdb\x36\x10\x7e\xf7\xaf\xb8\x79\x41\xd3\x02\x93\x95\x6c\x28\x30\xa8\xd8\x80\x34\x71\xbb\x02\x6d\x53\x24\x46\xd0\xa1\x28\x08\x8a\x3c\x5b\x44\x28\x92\x25\x4f\x0a\x3c\xc3\xff\x7d\xa0\x6c\x39\x54\x12\x2f\x2d\xb0\x3d\x0c\x68\x5e\x22\xdd\x7d\xf7\xdd\xf1\x7c\xfc\x44\x5e\x2b\x23\x0b\xf8\x60\xe5\x88\x3b\x75\x85\x3e\x28\x6b\x0a\x68\x8f\x47\x35\x12\x97\x9c\x78\x31\x02\x30\xbc\xc6\x02\x5a\x22\x5e\x6a\xa4\x6c\xb5\x6a\x94\x5c\xaf\x47\x00\x9a\x97\xa8\x43\x84\x00\x08\x5b\x3b\x6b\xd0\xd0\x2d\xb2\xb3\x5f\xe3\x32\x38\x2e\xb0\x80\xf1\x6a\xd5\xbf\xac\xd7\xe3\xce\x19\x2a\xee\x65\xe7\xe9\x9e\x58\x47\xd8\x3b\x37\x24\x9d\x97\x6b\xc5\x43\x6f\xe7\xce\x15\xd0\x2a\xc2\x10\x46\xc1\xa1\x88\xf9\x85\x35\xc4\x95\x41\xbf\xad\x26\xbb\x53\x74\x67\x04\x50\x35\x5f\x60\x1f\x9c\x6b\x45\x58\xb4\x3f\x4f\x8e\x26\x47\x19\xd7\xae\xe2\xcf\xb7\xb0\xd6\xea\xa6\xc6\x77\xb6\x31\xb4\xe5\x4b\x39\xc3\x32\x68\xbb\xd8\x99\x01\xea\x08\xfc\xc0\xa9\x2a\x20\x97\xd8\xe6\xa9\xf7\xb6\x90\xd8\x4d\x6f\x2d\xed\x09\x6c\x29\x7f\x00\xd3\x87\x0b\xf4\x14\x92\x48\x8f\x5c\x9e\x1b\xbd\x2c\x80\x7c\x83\x7b\x28\x91\x44\x1e\x82\xce\xd3\x60\x8f\xc1\x36\x5e\x60\xb2\x2e\xad\x6a\x95\xae\x13\xa0\xc6\xda\xfa\x65\x01\xe3\xe3\xd7\x6a\x9c\xd8\x85\x6b\x0a\x18\x3f\x3f\x3a\xaa\x7b\xab\xb0\x75\xcd\x8d\x4c\x9b\x54\xf2\x50\x25\xaf\xe3\x4c\x8c\x93\xd7\xdf\xb3\x84\x2f\x20\x41\x86\xa3\x34\xf3\x32\x7c\xd1\x2c\x58\x71\x8d\xf4\xdb\xf8\xe0\x6a\x76\x76\x32\x3b\xb9\x38\x3f\x9f\xe5\xab\xd5\xe6\x97\x64\xa1\x29\xa5\xf2\xeb\x75\xde\x61\x27\x11\x3b\x1e\x50\x5c\x4b\xe5\x21\x73\x90\x46\x53\xed\x52\x8c\xa8\xec\x8d\x81\xec\x62\x3b\x09\xb1\xfb\xa9\xfb\xa6\x52\x1a\xe1\x13\xfc\x00\x19\xc2\x41\x5a\x13\x7c\x7e\x01\xd2\x26\x50\x14\x95\x85\xf1\xa7\x83\xa7\x92\x13\x3e\xfb\x0c\x37\x5c\x91\x32\x0b\x98\x5b\x3f\x8c\x1c\xc3\x8b\x74\xe5\x1a\xd1\xc1\xf1\xc0\x26\xad\x19\xf4\x22\x34\x71\x15\x59\x80\xbc\x54\x26\x8f\x6d\x85\x4c\xc0\xb8\x23\x85\xac\x81\x96\x98\x2c\x39\x64\x97\xc3\x44\x09\x43\x86\x70\x78\x7a\x31\x3d\x99\x4d\x21\x76\xe2\xe5\xc9\xe5\x14\xde\xbc\x82\xf7\xe7\x33\x98\x7e\x7c\x73\x39\xbb\x8c\x1c\xe9\xae\x3c\x1c\xf7\x1b\xeb\xf1\x3a\xe2\xc4\x46\xc3\x9d\x2d\xd6\xe5\x25\xeb\x2c\x53\xb5\xd3\x58\xa3\x21\x4e\xca\x1a\x40\x12\x72\x50\x1b\x09\xc9\x16\xda\x96\x5c\x33\x2e\xa5\x0f\x50\x11\xb9\x22\xcf\x0f\xa6\xb3\xd3\x33\xf6\xfa\xed\xf9\xcb\x93\xb7\xec\x72\x7a\x71\xf5\xe6\x74\xca\xfe\x38\xbf\x9c\x15\x0f\x7a\x3e\x9c\x5f\xcc\x52\x5e\x6d\x17\x2c\x4e\xc0\xdd\x9f\x3f\x81\x70\x1d\xac\xb6\x0b\xb2\x81\x24\x7a\x9f\xba\x9c\xf5\x04\xab\x55\xfc\xd7\x49\xdc\xce\xb1\xf0\x4e\xb0\xad\x77\xf7\x3c\x84\x04\xf4\xad\x12\xc8\x6a\xee\xe0\x30\x62\xb2\x2f\x0d\xfa\xe5\xd6\xfc\x53\x67\xd9\xf4\xaa\xe6\x86\x2f\xd0\x6f\x4c\x8d\x8b\xb3\x13\xc8\x23\xaf\x0f\x53\xbe\x52\x99\xb8\x18\xa7\xf9\x12\x3d\x73\xde\x92\x15\x56\x43\x0c\x1a\x34\x7b\x23\xcb\x8e\x53\x05\x3b\xa9\xbc\x0f\x60\x95\x0d\x14\xd5\x04\x0e\x9e\xee\x1e\x33\xf5\x2c\x45\x2a\xa3\x88\xf5\xe3\x00\xe9\x64\xdc\x43\x75\x82\x0d\x5b\xe1\xbe\x9b\xcf\x2f\x90\xd8\x36\x2d\x2d\x5d\xa4\x4a\xde\x86\xe8\x6e\x76\x05\xed\x76\x58\xfa\xbb\xf5\xbe\x6e\x97\xa7\x41\xb2\xcc\x84\x35\x73\xb5\xc8\xb8\x73\x59\xd3\xad\xa5\x25\xc6\x9d\xdb\x8f\x92\x65\x0f\xdb\xb7\xb0\x21\x5e\x54\xdc\x47\x85\x6a\x68\xfe\xeb\xc3\x28\x59\xf2\xdb\xdc\xb2\xe4\xfb\x51\xdf\x92\x3b\xe2\x1f\xcf\xed\xd1\xe9\xdb\xe4\xf1\xed\x1f\x70\xdf\x92\xbe\x0b\x78\x3c\xff\x5c\x69\x42\x8f\xf2\xb6\x86\xde\xf2\x08\xfe\x5b\x6a\xd9\x05\xed\xab\x07\x4d\x1c\xab\xcc\xdb\x1b\xc1\x45\x95\x7e\x08\x77\xb6\xb8\x8d\x20\x6f\x82\xef\xd4\xaa\xc6\xba\xb3\xca\x07\xa1\x0f\x8c\xe0\x03\xdf\x9d\x2d\xc5\xbd\xa1\xac\x90\x6b\xaa\x98\xa8\x50\x5c\x33\x65\x08\x7d\xcb\x35\x3c\x0f\x83\x54\x18\xc8\x7a\x64\x73\x6f\x6b\x56\x72\x71\xdd\x38\x58\xad\x36\x0f\x6c\xae\xf9\x22\x1e\x73\x7a\x11\x86\xe4\x04\xd0\x6d\x85\xff\xe7\x31\xe6\xbf\x3f\x73\x7c\xf5\x89\x63\xdf\xe1\x00\x9e\x3c\xf9\xfa\xe3\xc1\xf6\x83\x98\x7c\x03\x7b\x9d\x92\xff\xde\x87\x68\x3b\x75\x8d\x8a\x22\xdb\x1f\xb8\x77\xde\xcd\xa0\xc6\x2d\x87\xdf\x05\xf3\xbb\x60\x7e\xbd\x60\x96\xd6\x52\x20\xcf\x1d\xe3\x5e\x54\xaa\xc5\x8d\xb0\x44\x0a\xa9\x3c\x3b\x3e\x9a\x1c\x4d\x8e\x7f\xc9\xde\x71\xaf\xf8\xd9\xcb\x09\x95\x7f\x0d\xd4\x28\xfe\xfd\x08\xb3\x0a\x61\x47\x04\x3d\x11\x2f\x6d\x8b\xfd\x4d\x2c\x00\x37\x80\xb5\xa3\xe5\x26\x01\x44\x4d\x00\xa9\x7c\x42\x73\xa3\xa8\x82\x26\xa0\x07\x87\xbe\x56\x21\x5e\x3e\x43\x77\x29\x68\x1c\xf0\x00\x1e\xbf\x34\xca\xa3\x84\x72\x09\x57\x5d\x0d\x93\x2e\x75\x9f\x50\xa5\x35\x29\x23\x74\x23\x51\x82\x32\x40\x15\xc2\x59\xdc\x21\x7e\x23\x95\x93\x2d\x0e\x4d\x7b\x5f\x07\xa7\x1f\x67\x17\x27\xec\xdd\x9f\xec\xf4\xfd\xab\xa4\x53\x2d\xd7\x0d\x6e\x04\x6d\xd3\xdb\xbc\x5e\x0a\x33\xcf\x6b\x1e\x08\x3d\xab\x63\x83\x64\x39\x11\x66\x3e\xea\x95\xf6\xce\xdd\x73\x20\xb0\xf1\xc4\xb5\x91\xc8\x95\x1b\x48\xec\xfa\xce\x7d\xf5\x8e\x76\x76\x2d\x3c\x53\xbe\x80\xd5\x10\x99\x5e\xea\xee\x93\x0f\xae\x7e\xeb\xd1\xe8\xef\x00\x00\x00\xff\xff\x00\x8e\xc7\x0e\xe8\x0f\x00\x00") + +func examplesStorageVitessVttabletPodTemplateYamlBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessVttabletPodTemplateYaml, + "examples/storage/vitess/vttablet-pod-template.yaml", + ) +} + +func examplesStorageVitessVttabletPodTemplateYaml() (*asset, error) { + bytes, err := examplesStorageVitessVttabletPodTemplateYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/vttablet-pod-template.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStorageVitessVttabletUpSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x55\x6f\x6f\xda\xba\x17\x7e\xef\x4f\x71\x16\x32\xa5\x55\x49\x48\x2b\xed\xa7\x9f\x5a\xe5\x05\x6d\xb9\x1a\x2a\x17\xa6\x86\x6e\x9a\xa6\xdd\xd4\xc4\x07\x62\x2d\xd8\x99\xed\x14\x10\xe3\xbb\x5f\xd9\x49\x0a\x5b\x75\xf3\x06\xff\x79\xce\x39\xcf\xf9\xe3\x87\xde\xbb\xc1\x82\x8b\xc1\x82\xea\x82\x90\x1e\xdc\xc9\x6a\xa7\xf8\xaa\x30\x70\x15\x5f\x7e\x80\x79\x81\xf0\x50\x2f\x50\x09\x34\xa8\x61\x58\x9b\x42\x2a\x1d\x91\x1e\xe9\xc1\x84\xe7\x28\x34\x32\xa8\x05\x43\x05\xa6\x40\x18\x56\x34\x2f\xb0\xbb\xe9\xc3\x67\x54\x9a\x4b\x01\x57\x51\x0c\x67\x16\xe0\xb5\x57\xde\xf9\x0d\xe9\xc1\x4e\xd6\xb0\xa6\x3b\x10\xd2\x40\xad\x11\x4c\xc1\x35\x2c\x79\x89\x80\xdb\x1c\x2b\x03\x5c\x40\x2e\xd7\x55\xc9\xa9\xc8\x11\x36\xdc\x14\x2e\x4c\xeb\x24\x22\x3d\xf8\xda\xba\x90\x0b\x43\xb9\x00\x0a\xb9\xac\x76\x20\x97\xa7\x38\xa0\xc6\x11\xb6\x5f\x61\x4c\x75\x3d\x18\x6c\x36\x9b\x88\x3a\xb2\x91\x54\xab\x41\xd9\x00\xf5\x60\x32\xbe\x1b\x4d\xd3\x51\x78\x15\xc5\xce\xe4\x49\x94\xa8\x35\x28\xfc\x59\x73\x85\x0c\x16\x3b\xa0\x55\x55\xf2\x9c\x2e\x4a\x84\x92\x6e\x40\x2a\xa0\x2b\x85\xc8\xc0\x48\xcb\x77\xa3\xb8\xe1\x62\xd5\x07\x2d\x97\x66\x43\x15\x92\x1e\x30\xae\x8d\xe2\x8b\xda\xfc\x56\xac\x8e\x1d\xd7\xbf\x01\xa4\x00\x2a\xc0\x1b\xa6\x30\x4e\x3d\xb8\x1d\xa6\xe3\xb4\x4f\x7a\xf0\x65\x3c\xff\x38\x7b\x9a\xc3\x97\xe1\xe3\xe3\x70\x3a\x1f\x8f\x52\x98\x3d\xc2\xdd\x6c\x7a\x3f\x9e\x8f\x67\xd3\x14\x66\x7f\xc1\x70\xfa\x15\x1e\xc6\xd3\xfb\x3e\x20\x37\x05\x2a\xc0\x6d\xa5\x2c\x7f\xa9\x80\xdb\x32\x22\xb3\x35\x4b\x11\x7f\x23\xb0\x94\x0d\x21\x5d\x61\xce\x97\x3c\x87\x92\x8a\x55\x4d\x57\x08\x2b\xf9\x82\x4a\x70\xb1\x82\x0a\xd5\x9a\x6b\xdb\x4c\x0d\x54\x30\xd2\x83\x92\xaf\xb9\xa1\xc6\x9d\xbc\x49\x2a\xb2\xb3\x34\xb7\xed\xe4\x16\x0f\xb8\xa5\xeb\xaa\x44\xd0\xb9\xe2\x95\x01\x53\x50\x03\xb9\x42\x6a\x87\x8a\xc2\x8b\x31\xb6\x9e\x06\x18\x56\xa5\xdc\xad\x51\x98\x88\x10\x8d\x06\x42\x24\xa4\xb1\xc9\x94\x94\x26\x79\x66\x5c\x09\xba\x46\xf0\xfc\xfd\xed\x30\xfd\x98\xa5\xb3\xa7\xc7\xbb\xd1\xc1\x7b\x26\x5a\xd6\x2a\x47\xf0\x4f\xe0\x03\x14\x2f\x51\x3b\xd7\x2e\x98\xa3\x58\x49\xa6\x5d\xce\xba\xa0\x8a\x85\x31\xb9\x1b\x4d\x26\x69\xe2\xef\xdd\xef\x75\x18\x18\xd4\x26\x38\x90\x1f\xb8\xd3\x15\xcd\x31\x71\x07\x59\xb7\x0d\x48\xfa\x71\xf8\x78\x6f\x0d\x9a\xc5\x75\x18\xc4\xc1\x81\xcc\x87\xb7\x93\xd1\x3c\xcd\x3e\x8d\x1e\x33\x77\x91\xf8\xfb\x37\x67\xd7\xe1\x87\x03\xa9\xa4\x32\xc9\xe5\x87\x38\xbe\x22\x2b\x55\xe5\x59\xb3\xff\x9f\xdd\x3f\x8d\xef\xb3\xdb\x61\x3a\x4a\xfc\x7d\xb7\xbc\x0e\x2f\xe3\xf8\x40\x3e\xcf\x1b\x67\xd9\x7c\xf4\xf7\xa7\xc9\x70\x6e\x21\x6f\xce\xae\xc3\xa0\xab\x65\x58\x49\x16\x1a\x5c\x57\x25\x35\x18\xed\xe8\xba\x0c\x0e\xe4\xf1\x7e\x36\x9d\x7c\xcd\xee\x66\x4f\xd3\x79\xe2\xef\x4f\xb7\xd7\xe1\xd5\x81\x90\x9a\xb3\x6c\x41\x35\x26\x7e\x17\x9e\xbc\x56\xca\x4e\xb7\x7f\x86\x79\x21\xc1\x6f\x32\x87\x5f\x60\x14\x78\x7d\x0f\x3c\xf0\xce\x6f\x80\x49\x02\x90\x63\x59\x66\x5c\x30\xdc\x26\x31\x01\x57\x68\x7b\x64\xad\x9f\x1b\x63\x57\xe7\xc6\x36\xe8\x07\x10\x40\xf0\xdc\xda\x02\x38\x84\xe7\xba\x65\xc7\xce\xef\xaa\x1e\x35\xcd\xf2\x1b\x26\xae\x85\x56\x1c\xac\x63\xe7\x2f\x8a\x22\xcf\x39\xb0\xf1\x6c\x16\x8e\x81\x0b\xaa\xf1\x27\xc4\xe0\x9f\x9d\xf9\x6f\xda\x11\x5e\x9e\x9f\x1f\x63\x83\x35\x4c\xfc\x6f\x7e\x57\x05\xb8\x00\xff\xe8\xeb\x02\xfc\x63\x6e\xdf\x5b\x8b\x4a\x71\x61\x96\x10\xbe\x00\x2d\x39\xd5\x10\xbc\xd7\xe1\xfb\xf8\x32\x66\x41\x83\x76\x0e\xde\x60\x9b\x16\x65\xba\x5e\x30\xae\x20\x78\x31\x59\x67\x63\xd1\x2d\xfc\x8f\x52\x54\x92\x35\x2f\xb5\x79\x2a\xbe\x8b\xe7\xd2\x6e\xf1\x3d\x18\x32\x06\xdb\xad\x15\xa2\x05\xae\xb8\x70\x0f\x57\x2a\x40\xc1\x80\x3b\x45\x54\x4e\x6d\x28\x30\xaa\x8b\x08\xe0\xe1\xff\x1a\x98\x44\xed\x04\x98\x96\xa5\xdc\xd8\x08\xaf\xee\x4a\xa4\xac\x75\x61\x14\xe5\xa5\x5d\x5b\x4b\x6c\x9e\x4f\x49\x17\x58\xea\x16\xed\xfa\x92\xb9\xa3\xa4\x6d\x73\xd3\xaa\x5f\x60\xff\x22\x74\x30\xf8\x16\x7e\xf7\x07\xe1\x76\x3b\x08\x8e\x67\xff\x84\x83\xed\x36\x1c\x04\xcf\x5d\x0e\x6d\x61\xcc\xae\xc2\x44\xa1\x13\xda\xf6\x86\x2f\xe1\xdb\x69\x37\xc2\x95\xf9\x8f\x9e\xfa\xa7\x63\x6d\x3b\x0c\xdf\x6f\x6c\xf2\xa2\xf5\xf4\x47\x14\x26\x45\xb9\x6b\xaf\x96\xfc\x58\xcc\xd1\xb6\xa2\x82\x41\xf7\x84\xe0\x85\x2a\x6e\xed\x5e\x33\x46\x96\x35\x5a\x93\x78\x5e\x67\x2f\x95\xc5\xd9\xb1\x6b\xc6\xc1\x8d\x40\xcd\x19\x74\x73\xdc\x3e\xa5\x93\x72\x81\x7d\xfe\xf0\x2a\x04\x7f\xcc\xc6\x09\x55\x58\xd0\xfc\x47\x5d\x65\xcb\x92\xae\xf4\xc9\xd0\x9e\x52\xb9\x48\x3c\xdd\xdf\xef\xfd\x17\xaa\x0e\x87\xbe\xbf\x7f\x67\x17\xfd\xd5\x4d\x47\x90\x49\x81\xc7\x14\xc7\x42\x1b\x2a\x0c\x77\xca\xd8\xe5\x69\x93\xd6\x76\x64\x8c\x84\x1f\xf5\x02\x73\x53\x46\xad\x45\x4e\x0d\xf8\x6f\x44\xa7\x6d\x67\x68\x45\xf9\xc8\xc4\x83\x5f\xe0\x3f\x3c\xdd\x8e\xee\xe6\x93\x56\xea\x21\x5c\x42\x48\x5e\x69\xd8\x85\x9d\xe4\x13\xc1\x38\x2e\x2f\x2e\xe3\xf6\x23\xaf\x70\x0b\x7e\x15\xa8\x6e\x61\x81\xc4\x01\xfe\x0d\x00\x00\xff\xff\x1f\x5b\x6a\xbd\xca\x08\x00\x00") + +func examplesStorageVitessVttabletUpShBytes() ([]byte, error) { + return bindataRead( + _examplesStorageVitessVttabletUpSh, + "examples/storage/vitess/vttablet-up.sh", + ) +} + +func examplesStorageVitessVttabletUpSh() (*asset, error) { + bytes, err := examplesStorageVitessVttabletUpShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storage/vitess/vttablet-up.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStormStormNimbusServiceJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8d\xbd\x0a\x02\x31\x10\x84\xfb\x3c\xc5\xb0\xb5\x8d\x16\x27\xdc\x6b\x08\x36\x62\xb1\x97\xdb\x22\x98\x3f\x92\x78\x8d\xe4\xdd\x25\x31\x6a\x61\x63\xb5\xf0\xed\x37\x33\x0f\x05\xd0\xcd\xf8\x95\x66\xd0\x49\xd2\x66\xb4\xd0\xae\x41\x8e\xe6\x2c\x29\x9b\xe0\xdb\x6b\xdb\xbf\xa8\x93\xc2\x2b\x17\xa6\x19\x2d\x0a\x90\x67\x27\xcd\xf0\xc6\x2d\xf7\xdc\x2d\x80\x2c\x2f\x62\xf3\xc7\xfa\xf5\x3a\xae\x0a\xa8\xbd\x37\x47\xd1\xdf\xce\x18\x52\x69\xe1\xcb\x08\xbf\x4b\xc6\x8b\x66\x4c\xd3\xe1\x38\x60\xed\xf7\x3a\x86\xb3\x58\xd1\x25\xa4\xbf\xa6\x55\x55\xcf\x00\x00\x00\xff\xff\xb8\xe0\x19\x4d\x01\x01\x00\x00") + +func examplesStormStormNimbusServiceJsonBytes() ([]byte, error) { + return bindataRead( + _examplesStormStormNimbusServiceJson, + "examples/storm/storm-nimbus-service.json", + ) +} + +func examplesStormStormNimbusServiceJson() (*asset, error) { + bytes, err := examplesStormStormNimbusServiceJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storm/storm-nimbus-service.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStormStormNimbusJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\xb1\x4e\x03\x31\x0c\x86\xf7\x7b\x0a\xcb\x33\x88\x96\xa1\x48\xf7\x14\x9d\x58\x50\x07\xf7\xce\x20\x8b\x3a\x89\x12\x1f\x0b\xca\xbb\x23\xe7\x68\x49\x29\x4c\x67\xfd\xfe\xee\xb3\xe3\xcf\x01\x00\xdf\x25\xcc\x38\x02\xee\xe3\x8c\x77\x1e\x50\x92\x67\xce\x45\x62\xf0\xf8\x63\xbb\xa6\xca\x46\x33\x19\xe1\x08\xfe\x1b\x00\x06\x52\x76\x22\x88\x1e\x97\xd2\x28\x00\x3c\xd1\x91\x4f\xe5\x42\xdd\x72\x2d\xae\x03\x40\x6d\xde\x92\x78\xfa\x71\x4e\x31\x18\x49\xe0\xec\x86\x97\x6f\xc3\xd9\xf4\xdf\xcc\xd6\x11\xa5\xb7\xd6\x52\x32\x7b\x7d\x28\x16\xb3\xde\xdf\x62\x29\x66\xeb\xdd\xd7\xfe\xeb\x1d\xf6\x31\x1b\x8e\xb0\xdb\x3d\x3e\x75\x44\xbd\xd4\x87\xce\x9b\xb9\xc4\x25\x4f\xdc\xbf\x7c\xbd\x87\xa8\xd8\xef\xd4\xa7\xa4\xc5\xb7\xdd\x6e\x36\x8a\x7f\xda\xcf\xd5\xfa\x3d\xf8\xc1\x86\x3a\x7c\x05\x00\x00\xff\xff\x36\x10\xed\x2d\xb3\x01\x00\x00") + +func examplesStormStormNimbusJsonBytes() ([]byte, error) { + return bindataRead( + _examplesStormStormNimbusJson, + "examples/storm/storm-nimbus.json", + ) +} + +func examplesStormStormNimbusJson() (*asset, error) { + bytes, err := examplesStormStormNimbusJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storm/storm-nimbus.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStormStormWorkerControllerJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x93\xcd\x6e\xea\x30\x10\x85\xf7\x79\x8a\xd1\xac\x41\x37\x04\xe9\x56\x62\xdb\x17\xa8\xba\xe8\xa6\x62\x61\xc2\xb4\xb5\xf0\x4f\x34\x9e\xb4\x8b\x2a\xef\x5e\xd9\x50\x30\x0e\xd0\x48\xec\xec\x99\x73\xce\x37\x03\xce\x77\x05\x80\x3b\xed\xb6\xb8\x02\x7c\xa6\xce\xe8\x56\x89\xf6\xee\xd1\x3b\x61\x6f\x0c\x31\xce\xa2\x44\x75\xfa\x85\x38\x68\xef\xa2\xf0\x73\xb1\xaf\x5a\x12\xb5\x55\xa2\x70\x05\x31\x08\x00\x9d\xb2\x14\x15\x41\x3c\xdb\xf9\x97\xe7\x1d\xf1\xbc\x3d\x0f\x03\x40\xa3\x36\x64\xc2\xd1\x76\xc5\x88\xa9\x39\x54\x00\x43\xc2\x85\x8e\xda\x13\x8a\xf7\xd3\xc6\x94\xe6\x10\x1b\xc8\x50\x2b\x9e\x27\x06\x1f\x5c\x42\xb6\x33\x4a\x28\x77\x8d\x36\xbb\x3c\xf6\x75\xc2\x2c\x57\xf4\x81\xa2\x0b\x9d\xb6\x9b\x3e\xe0\xb1\x35\x1c\x4e\xc3\xaf\xfa\x7c\xc5\x54\x89\x3f\x9e\xd2\x8e\x38\x26\xbc\x66\xa9\xf9\x0c\x53\xa6\x00\x40\x6d\xd5\x7b\x12\x59\x25\xf2\xf6\xef\x96\xb4\xf3\x2c\x25\x71\x4c\x4d\xd2\x0f\x1f\xe4\xc9\xb3\xe0\x0a\xfe\x3f\xd4\xf5\x6c\xac\x38\xee\x90\xc9\x0a\xd5\x50\xda\xfe\x04\x2d\xa6\x81\x16\x77\x83\x9a\x69\xa0\xe6\x6e\xd0\x72\x1a\x68\x59\x82\xce\xee\xeb\xe2\x8f\x64\x0a\xbe\xe7\x96\xca\x67\x9b\x9a\x46\x5b\x2d\x97\x3a\x91\xdc\xf5\xf1\xa9\x34\x75\x6d\xf1\x26\x31\xbf\x9d\xce\xeb\x2a\xaf\xa4\x8f\xb8\x1a\xaa\x9f\x00\x00\x00\xff\xff\xdc\x73\x04\x6d\x70\x04\x00\x00") + +func examplesStormStormWorkerControllerJsonBytes() ([]byte, error) { + return bindataRead( + _examplesStormStormWorkerControllerJson, + "examples/storm/storm-worker-controller.json", + ) +} + +func examplesStormStormWorkerControllerJson() (*asset, error) { + bytes, err := examplesStormStormWorkerControllerJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storm/storm-worker-controller.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStormZookeeperServiceJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8d\xb1\xce\x02\x21\x10\x84\x7b\x9e\x62\xb3\xf5\xdf\xf0\x57\x86\xd7\x30\xb1\x31\x16\x2b\x37\x05\x39\x0e\x08\x90\x2b\x34\xbc\xbb\x01\x51\x1b\x0b\xab\x4d\x66\xbe\xf9\xf6\xae\x88\x78\x75\x61\x61\x43\x7c\x44\xde\x9d\x05\xff\xf5\x50\x92\x3b\x21\x17\x17\x43\xaf\x76\xfd\x4c\x37\x54\x59\xa4\x0a\x1b\xea\x53\x22\x0e\xb2\xa1\x13\xb7\x18\x57\x20\x21\x0f\x90\x88\xbd\x5c\xe1\xcb\x1b\xfc\x8a\x8e\xa6\x29\xa2\x36\xec\x25\xc1\x7e\xcc\x29\xe6\xda\xf7\xe7\xb9\x7f\x79\x66\xc5\x86\xfe\xf5\x41\xcf\xb0\x8d\x7b\x99\xbf\x0b\x3c\x6c\x8d\xf9\xd7\xef\xaa\xa9\x47\x00\x00\x00\xff\xff\x3a\xb2\x96\x84\x0a\x01\x00\x00") + +func examplesStormZookeeperServiceJsonBytes() ([]byte, error) { + return bindataRead( + _examplesStormZookeeperServiceJson, + "examples/storm/zookeeper-service.json", + ) +} + +func examplesStormZookeeperServiceJson() (*asset, error) { + bytes, err := examplesStormZookeeperServiceJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storm/zookeeper-service.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesStormZookeeperJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xb1\x4e\x03\x31\x0c\x86\xf7\x3c\x85\xe5\x19\x89\x86\x09\xdd\x53\x74\x62\x41\x1d\xcc\x9d\x41\x51\x9b\x38\x4a\x5c\x06\x50\xde\x1d\x39\x47\x4b\x8a\x4e\x9d\xce\xfa\xfd\xdd\x67\xc7\xdf\x0e\x00\x8f\x21\x2d\x38\x01\xee\x65\xc1\x07\x0b\x28\x87\x17\x2e\x35\x48\xb2\xf8\xd3\xaf\x69\x64\xa5\x85\x94\x70\x02\xfb\x0d\x00\x13\x45\x36\xe2\x4b\xe4\xc8\x9c\xb9\x74\x10\x00\x4f\xf4\xc6\xa7\x7a\x05\x37\xd1\xde\x69\x0e\xa0\x75\x7b\xcd\x3c\xff\x99\x67\x49\x4a\x21\x71\x31\xc9\xeb\xaf\xe4\x22\xbb\x33\xb9\x37\x43\xa4\x8f\xde\x8d\xa4\xfa\xfe\xb8\xc9\x64\x29\x3a\xba\x6f\xfd\xb7\x3b\xec\xa5\x28\x4e\xf0\xe4\x9f\xfd\x40\xb4\x6b\x7d\x18\xbc\x85\xab\x9c\xcb\xcc\xe3\xe3\xd7\x93\x84\x18\xf4\x7f\x6a\x53\xf2\xd9\x56\xf5\xbb\x5d\xc4\x4d\xfb\xa5\x5a\xbf\x07\x3b\x98\x6b\xee\x27\x00\x00\xff\xff\xac\xcf\x57\x45\xb9\x01\x00\x00") + +func examplesStormZookeeperJsonBytes() ([]byte, error) { + return bindataRead( + _examplesStormZookeeperJson, + "examples/storm/zookeeper.json", + ) +} + +func examplesStormZookeeperJson() (*asset, error) { + bytes, err := examplesStormZookeeperJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/storm/zookeeper.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSysdigCloudSysdigDaemonsetYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x95\xd1\x6f\xea\x36\x14\xc6\xdf\x91\xf8\x1f\x8e\xee\x7d\xd9\xa4\x9b\xd0\x94\xb6\x63\x79\x5a\x15\xb8\x1b\x6a\x57\x3a\xa0\x93\x26\x4d\x42\x8e\x73\x4a\x2c\x1c\x3b\xb2\x8f\xd3\xe6\xbf\x9f\x0c\xb4\x04\xc8\x6d\x61\x7e\x02\xfb\x9c\xdf\xf7\x39\x89\xfd\x7d\x7d\xb2\x08\x94\x0b\x0b\xb6\xb6\x99\x58\x86\x35\x2b\x24\xbc\xe4\xa8\x60\xc8\xb0\xd0\x0a\x66\x48\x16\x98\x41\x40\xc5\x52\x89\x19\x68\x05\x77\x2e\x45\xa3\x90\xd0\xc2\x4f\x85\x50\xa2\x70\x05\x54\x68\xac\xd0\x0a\xa2\x30\x0a\xa3\x9f\x43\x98\x50\x8e\xe6\x45\x58\x04\xb7\x96\x40\x98\x26\x50\x20\xe5\x3a\x0b\xbb\x9d\x6e\x87\x95\xe2\xef\x4d\x4b\x0c\xf8\x4a\xa8\xfc\x4f\xdb\xab\xa2\x14\x89\x45\xdd\xce\x4a\xa8\x2c\xde\x9a\x98\x21\x41\xdb\xe8\x76\x0a\x24\x96\x31\x62\x71\xb7\x03\xa0\x58\x81\xf1\x76\x23\x01\x5b\xa2\x22\x3f\x2b\x59\x8a\xd2\xae\x0b\x00\x58\x59\x1e\x56\xd8\x12\xf9\x7a\x95\xb0\x28\x25\x23\xdc\x96\xee\xa1\xfd\xd8\x03\xf9\xd1\xae\x07\xf0\x4e\xf4\xa3\xd2\xd2\x15\xb8\x6b\x0b\xb6\x6d\x99\xe6\x2b\x34\x81\xd5\x7c\xb5\x23\xe6\xda\xd2\x23\xa3\xbc\x21\x02\xa5\xff\x0f\xbd\x8a\x99\x9e\x71\xaa\xb7\xe9\x0b\xf7\xfb\x80\xea\x12\x63\x98\xf9\x35\x3a\x52\xc2\x2a\xa8\xb4\x3c\x49\x25\xc3\xea\xb0\xbd\x34\x9a\x9f\xdc\xef\x8b\x0f\x01\xa9\xd6\x74\x32\xc0\x17\x1f\x02\x0a\x9d\x39\x89\xf6\x64\x86\x14\x69\x6f\xdb\x73\x88\x72\xd6\x7c\x8e\x79\xe3\x38\x6b\xde\x66\x7d\xd9\x03\xd2\x8b\x36\xab\x18\xc8\x38\x6c\x2e\x3c\x8e\x87\xfb\x93\x5c\x2b\x62\x42\xa1\x39\x7e\xed\xc7\x5f\x8b\x1f\xa2\x60\xcb\xf7\xc5\xde\xc1\xa2\x45\xee\x8c\xa0\x3a\xd1\x8a\xf0\x95\xf6\x36\x6c\x44\x25\x24\x2e\x31\xdb\x37\x00\x80\xaa\x6a\x14\xbe\xa9\xdf\x26\xc9\x68\x36\x5b\xdc\x8d\xfe\x81\x4f\xc7\xd7\xe9\xe8\xaf\xa7\xf1\x74\x34\x84\x00\x0c\x96\x92\x71\x84\x17\x41\x39\xd4\xda\x19\x98\xad\xad\x42\x22\xb5\xcb\x80\x71\x8e\xd6\xc2\x0a\xeb\xe6\x53\xac\x98\x74\x18\xc3\xa0\x1f\x5d\xf6\xaf\xa2\x65\x70\x7d\xf3\xcb\x20\x60\x29\xcf\x82\x2b\x76\x99\x5e\xf2\xa0\xdf\x4f\xb9\xcd\x6e\xae\xaf\xbb\x9d\xaf\x87\x4e\xe7\xb7\xbf\xcf\x3e\xf7\xb8\x31\x3a\x79\x9c\x8f\x27\x0f\xb7\xf7\x0d\xcc\xbb\xba\x14\xca\xbd\xc6\x2e\x75\x8a\xdc\xb7\x0c\x4b\x8a\x33\xac\xbe\x49\xcd\x99\x8c\x55\xcd\xa1\x45\x3a\x99\xdc\xdf\x8f\x92\xf9\x64\x7a\x86\x34\x04\xa0\x55\x50\x1a\x2c\x40\x28\x4b\x4c\x4a\xd0\x4a\xd6\x6d\x8e\xa2\x5f\x2f\xc3\xe8\x66\x10\x46\x83\x7e\x78\x79\x71\xd1\xe6\x60\x36\x4a\x9e\xa6\xa3\xf3\x36\xff\x03\x07\xdb\xb2\x36\x23\xcf\x4c\x5a\x6c\xdb\xff\x1f\xa3\xe4\x6e\x91\x8c\xa6\xf3\xf1\xf7\x71\x72\x3b\xff\xc0\xc8\xff\xd9\xff\x8f\x64\x6f\x87\xc3\xf1\x06\xb6\x48\x26\x0f\xdf\x4f\xdb\x74\xc9\xac\x05\x96\x65\x82\x84\x56\x4c\x42\xc9\x0c\x2b\x90\xd0\x58\x20\xbd\x4e\x9d\xf5\x61\x02\xeb\x78\x0e\xcc\x02\x73\x94\xa3\x22\xc1\x99\x6f\x00\x7c\x65\x45\x29\xd1\xdf\x71\x95\xc8\x30\x83\x1c\x0d\xb6\x99\xfe\xb2\x1a\xd8\x85\x33\x22\x86\x9c\xa8\xb4\x71\xaf\x57\xd4\x8c\x73\x8a\x8b\xda\x5b\xf8\x6d\xfd\x41\xf9\xbb\x20\xbe\xba\xea\x5f\xfc\xab\x7c\x39\x67\x0b\x8e\x86\xc4\xb3\x57\xc3\x18\x56\x03\x1b\x70\x16\x72\x43\x9b\x75\x6b\xe5\xa2\x42\x23\x9e\xeb\xfd\x3a\x7f\x90\xbf\xec\x0e\xd2\x26\x40\xfe\xd4\x4e\x91\xdd\x3b\xd2\x85\x9f\x7a\xdc\x5c\x55\x5e\xfa\x93\x88\xf8\x28\x77\x00\x0c\xb2\x6c\xa2\x64\xfd\xfe\x7e\x3e\xd0\x69\x84\x44\x83\x7b\x98\x32\xe7\x31\x9b\xc1\xb1\x83\x1e\x67\x4f\x93\xba\x7f\xe3\xb5\x40\x9b\x61\xb2\x83\x1e\xe7\xd1\x59\xd0\x96\x74\xd9\xb1\x5b\xa3\xea\x2c\x7c\x23\x74\x76\xd8\xa3\xd8\x3a\x46\xfe\x17\x00\x00\xff\xff\xdd\xf0\xac\x22\xca\x09\x00\x00") + +func examplesSysdigCloudSysdigDaemonsetYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSysdigCloudSysdigDaemonsetYaml, + "examples/sysdig-cloud/sysdig-daemonset.yaml", + ) +} + +func examplesSysdigCloudSysdigDaemonsetYaml() (*asset, error) { + bytes, err := examplesSysdigCloudSysdigDaemonsetYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/sysdig-cloud/sysdig-daemonset.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesSysdigCloudSysdigRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x5b\x6f\xea\x46\x10\x7e\x47\xe2\x3f\x8c\x92\x97\x56\x3a\x86\x90\x9c\xd0\xd4\xaa\xaa\x22\xf0\x39\xb5\x92\x06\x0a\xa4\x52\x95\x13\xa1\x65\x3d\x81\x15\x7b\xb1\xf6\xe2\xc4\xaa\xfa\xdf\xab\xb5\x13\xb0\xc1\xb9\xb5\xea\xbe\xed\x5c\xbe\xef\x9b\x65\x3c\xc3\xf1\x8d\x41\xb0\x6b\x66\xc0\xe4\x26\x61\xab\x4e\x4e\x04\x87\x87\x35\x4a\x18\x11\x14\x4a\xc2\x0c\xad\x01\xa2\x11\xae\xc7\x73\x40\x49\x96\x1c\x13\x50\x12\x2e\xdd\x12\xb5\x44\x8b\x06\xbe\x13\x4c\x32\xe1\x04\x64\xa8\x0d\x53\x12\x7a\x9d\x5e\xa7\xf7\x7d\x07\xe2\xfb\x03\x14\x92\x11\xc6\x3d\xc8\x27\x70\x05\x35\x82\xb2\x6b\xd4\x80\x8f\x44\xa4\x1c\x6b\x3a\x02\xb0\x6b\x62\x81\x99\x22\x4e\x23\x55\x42\xa0\x4c\x30\x01\x81\x76\xad\x92\x4e\xbb\xd5\x6e\x91\x94\xfd\x51\xf2\x86\x90\xf5\xda\xad\x0d\x93\x49\x08\x53\x4c\x39\xa3\xc4\x32\x25\x87\x4a\x5a\xad\x38\x47\x0d\x4d\xa7\xdd\x12\x68\x49\x42\x2c\x09\xdb\x2d\x00\x49\x04\x86\x4f\x2a\x02\xb2\x42\x69\xbd\x95\x93\x25\x72\x53\x04\x00\x90\x34\xdd\x8f\x30\x29\xd2\xc2\xab\x4b\x5e\x13\x42\xef\xe4\xa4\xc6\x73\x3c\x8d\x7e\xbf\x89\xa7\xd1\x08\x82\x22\x8a\x50\x84\x07\x66\xd7\x45\x6d\x82\x3c\x16\x2f\x28\x9d\x58\xa2\x06\x75\x0f\x86\x93\x0c\x41\xaa\x04\x0d\x30\x59\x04\x51\xee\x8c\x45\xed\x69\x2c\x8a\x94\x13\x8b\x4f\x8a\xb6\xf4\xfe\x64\x8a\x3b\x81\x66\x7b\x0f\x9e\x6a\x4a\x14\xdd\xa0\x0e\x8c\xa2\x9b\x67\x17\xc0\x5a\x19\x3b\x21\x76\x1d\xee\x4c\x90\xfa\x3b\x74\x33\xa2\xbb\xda\xc9\x6e\x99\xd7\xa9\xe7\x81\xcd\x53\x0c\x61\xe6\x7d\xf6\x80\x09\xb3\x20\x53\xfc\x5d\x2c\x09\x66\xfb\xe9\xa9\x56\xf4\xdd\xf9\x3e\x78\x1f\x60\xa9\x94\x7d\x37\x80\x0f\xde\x07\x10\x2a\x71\x1c\xcd\xbb\x31\x38\x5b\x76\x9f\x72\xf6\xa1\x9c\xd1\x6f\xc3\x3c\xe3\x38\xa3\x9f\xad\x3e\xec\x1a\xed\x83\xd2\x9b\x10\xac\x76\x58\x75\x4c\xe2\x51\xdd\x48\x95\xb4\x84\x49\xd4\x87\x3f\xfb\x7e\x2b\x97\x87\x09\xb2\xda\x3a\xbb\x7b\xce\x54\x69\x6b\x2a\xfa\x82\x1d\xfe\x44\x69\x1b\x42\xbf\xdf\xef\x57\xe5\x17\x9a\x1a\x3c\x06\xa9\xd3\xcc\xe6\xfe\x13\xc4\x47\x5b\x7b\x39\xcd\x32\xc6\x71\x85\x49\xbd\x12\x00\x94\x59\x8d\xbb\x2c\x63\x30\x1c\x46\xb3\xd9\xe2\x32\xfa\x13\xde\x3c\x2f\x7e\x6a\xb9\x72\x1a\x66\x45\xcd\x30\xe4\xca\x25\x40\x28\x45\x63\x60\x83\x79\xb5\x9e\x8c\x70\x87\x21\x5c\x9c\xf5\x4e\xcf\x3e\xf7\x56\xc1\x79\xff\x87\x8b\x80\x2c\x69\x12\x7c\x26\xa7\xcb\x53\x1a\x9c\x9d\x2d\xa9\x49\xfa\xe7\xe7\xed\xd6\xf1\xbe\xd2\xcb\x8b\xd9\x62\x14\x5d\x45\x5f\x07\xf3\x68\xb4\xb8\x1e\x8f\xa2\x97\x85\x8e\x27\xf3\x78\x7c\x3d\xb8\x82\x00\x94\xe4\x39\x48\xf4\x72\x88\xce\xcb\x19\x4c\x95\x94\x48\x2d\x93\x2b\xd0\x28\x94\x45\x9e\x83\x55\x30\x98\xc4\x60\x50\x67\x7e\x16\x1c\x1f\xa8\xfe\x69\x4b\x0e\x05\x79\x3c\xf9\xf9\x05\x95\x83\x49\xbc\xb8\x99\xc6\x6f\x3e\xe7\xff\xa1\xf2\x68\x6d\x6d\x7a\x6b\xee\xc2\x6e\xf7\xd6\x19\xd4\x85\xaa\x94\x18\xf3\x90\xfc\x72\xe7\xfb\xe9\x36\xf4\x6d\x78\x77\xd4\xa0\x7d\x3e\xf8\x3a\x7b\xbb\x0b\xea\xda\x9b\x34\x70\x26\xdd\x63\xe8\x96\x4e\x5a\xf7\x29\xc1\xd4\x86\x09\x66\x9f\xb8\xa2\x84\x87\x32\xa7\xd0\x40\x3d\x1c\x5f\x5d\x45\xc3\xf9\x78\xfa\x1f\xa9\x7b\x3f\x9e\x76\x7a\xfd\x8b\x4e\xef\xe2\xac\x73\x7a\x72\xd2\x44\x35\x8b\x86\x37\xd3\x97\x7b\xa7\x91\xea\xd9\xd0\x44\x79\x4f\xb8\xc1\xa6\x92\x7e\x8d\x86\x97\x8b\x61\x34\x9d\xc7\x5f\xe2\xe1\x60\xfe\x0a\xe5\xab\x25\xbd\x84\x3f\x18\x8d\xe2\x32\x6b\x31\x1c\x5f\x7f\xf9\xd7\x4f\x76\x44\xd2\x74\x41\xd7\x48\x37\x26\xfc\x26\x77\xf8\x72\xc5\xe4\xa3\x37\x00\x14\xde\x45\x39\x89\x6b\x8e\x94\x58\x8b\x5a\x86\xe5\xcd\xcf\x4b\x21\xea\x99\x4a\xde\x6f\xbd\x85\x7d\x61\x2c\xb1\xce\x2c\x9c\xe6\x4f\xdd\x1a\x76\xbb\x45\x6f\xf8\xee\x0c\xff\xf2\xdd\xf9\x77\xb7\x1a\xfa\xed\xe8\x68\x37\x44\xca\x2d\xfc\x9b\x72\x72\x6f\x94\x0a\x6f\x9a\x94\xf3\xde\x23\xbd\xb1\x67\x5f\x5b\xde\xfe\xef\x06\x49\xc6\x92\xe7\xdb\xd7\x7f\x85\xa7\xb2\x69\x2b\xb8\xfb\xab\xfa\x63\x98\xd5\xed\xbb\x03\x3d\x5c\xe0\x55\xd4\xfa\xb4\x6f\x00\xad\x6e\xe4\x1d\xe8\xe1\x52\xff\x10\x68\xc3\x8a\xde\x61\x37\xee\xfb\x0f\xc1\x57\x36\xf7\x0e\xf6\x60\xf7\x1f\x42\xfe\x13\x00\x00\xff\xff\x53\x4c\x4a\x1f\x81\x0b\x00\x00") + +func examplesSysdigCloudSysdigRcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesSysdigCloudSysdigRcYaml, + "examples/sysdig-cloud/sysdig-rc.yaml", + ) +} + +func examplesSysdigCloudSysdigRcYaml() (*asset, error) { + bytes, err := examplesSysdigCloudSysdigRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/sysdig-cloud/sysdig-rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesAws_ebsAwsEbsWebYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xc1\x4e\xc3\x30\x0c\x86\xef\x79\x0a\x6b\x9c\xab\x82\xc4\x01\xe5\x88\xba\x43\x0f\x48\x95\x40\x5c\x91\x97\x9a\x35\x5a\x12\x47\x89\xbb\x8e\xb7\x47\xd9\x42\x99\x60\x3e\x25\xbf\x3f\x7f\xb2\x31\xda\x77\x4a\xd9\x72\xd0\x70\x7c\x50\x07\x1b\x46\x0d\x03\x8f\xca\x93\xe0\x88\x82\x5a\x01\x04\xf4\xa4\x01\x97\xdc\x2c\xb4\x53\x39\x92\x29\xa9\xe1\x20\x68\x03\xa5\x5c\x7e\x00\x4d\xe5\x0a\x03\xe7\xb2\x1e\xf7\xa4\x21\xec\x6d\x38\xd5\x28\x72\x92\xca\xdf\x9e\x29\xb5\x9a\x07\x4e\xa2\xe1\xe9\xfe\xaa\x17\x13\x0b\x1b\x76\x1a\xc4\xc4\x9a\x1f\xd9\xcd\x9e\x5e\x78\x0e\xb7\xdc\x93\x78\xd7\x5c\x90\x2b\x8f\x2f\xf4\x80\x32\x69\xd8\xb4\x73\x4e\x6d\x9e\x30\x51\x7b\xde\xb5\x2d\x23\x1b\xf5\x23\xfe\x73\xdf\x7f\x1f\x2e\x79\xeb\x30\x8b\x35\xcf\x8e\xcd\xe1\x55\x38\xd1\xef\x1e\x77\xb0\x0d\x42\x09\x64\xa2\x2a\x84\xbe\x83\x1d\x39\x5e\x56\xe6\x92\xf7\x9d\xae\xaf\x8f\xbe\x5b\x7b\x9f\xf9\xed\x2b\x92\x06\x3a\xc9\xa3\xfa\x0e\x00\x00\xff\xff\xc4\x37\x6c\xbc\xb0\x01\x00\x00") + +func examplesVolumesAws_ebsAwsEbsWebYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesAws_ebsAwsEbsWebYaml, + "examples/volumes/aws_ebs/aws-ebs-web.yaml", + ) +} + +func examplesVolumesAws_ebsAwsEbsWebYaml() (*asset, error) { + bytes, err := examplesVolumesAws_ebsAwsEbsWebYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/aws_ebs/aws-ebs-web.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesAzure_diskAzureYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8e\xb1\x4e\xc6\x30\x0c\x84\xf7\x3c\x85\x5f\xe0\x6f\xc4\xea\x99\x85\x01\xf4\x0b\x09\x76\x37\x31\x34\xea\x1f\xbb\x8a\x9d\x0e\x3c\x3d\x4a\x41\x95\x80\x81\xdb\xce\x77\xdf\xc9\xb4\x95\x57\x6e\x56\x54\x10\xf6\xbb\xb0\x16\xc9\x08\x57\xcd\xa1\xb2\x53\x26\x27\x0c\x20\x54\x19\x81\x3e\x7a\xe3\x60\x1b\x27\x0c\x90\x54\x9c\x8a\x70\x33\x0c\x00\x17\x28\x95\xde\x19\x61\xed\x33\x37\x61\x67\x8b\x1b\x75\xe3\x00\x00\x3f\xf0\xe1\x77\xbd\xf5\xca\x8f\xda\xc5\x0f\x7a\xe8\xf2\xa7\x35\x54\x47\xe7\x4a\xbe\x20\xc4\x2a\x1e\xbf\xd3\xaf\x81\x7f\xd8\xc3\xdd\x17\x5b\xf1\x3c\x01\xe4\x62\xeb\xd3\x51\x76\x36\x9f\xf6\x25\xff\x0a\x5f\x9e\x1f\x10\x16\xf7\xcd\x30\x46\xd3\xca\x94\xd2\x78\x62\x9a\x6f\x3a\x4f\xb5\xa4\xa6\xa6\x6f\x3e\x09\x7b\xdc\x97\x6c\xf1\xdc\xf9\x0c\x00\x00\xff\xff\xfb\x34\x33\xdc\x49\x01\x00\x00") + +func examplesVolumesAzure_diskAzureYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesAzure_diskAzureYaml, + "examples/volumes/azure_disk/azure.yaml", + ) +} + +func examplesVolumesAzure_diskAzureYaml() (*asset, error) { + bytes, err := examplesVolumesAzure_diskAzureYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/azure_disk/azure.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesAzure_fileAzureYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8c\x31\x4e\xc4\x40\x0c\x45\x7b\x9f\xc2\x17\x88\x22\x3a\xe4\x03\xd0\x01\x5b\xd1\x9b\xe4\xc3\x8e\x92\xf1\x44\x63\xcf\x4a\x70\x7a\x34\x1b\x04\x41\x14\xeb\xee\xff\xff\x9e\x75\x4b\x2f\xa8\x9e\x8a\x09\x5f\xee\x68\x49\x36\x0b\x9f\xca\x4c\x19\xa1\xb3\x86\x0a\xb1\x69\x86\xb0\x7e\xb6\x0a\xf2\x0d\x93\x10\x4f\xc5\x42\x93\xa1\xba\x10\xf3\xc0\x29\xeb\x3b\x84\x97\xf6\x8a\x6a\x08\xf8\xb8\x69\x73\x10\x33\xff\xd1\x7b\xbe\x94\xb5\x65\x3c\x96\x66\x71\xb5\xfb\x0d\xff\xa8\x7e\xb9\x33\x27\x8d\xb3\xf0\x98\x2d\xc6\xef\x75\x7f\x70\xc3\xbd\xa6\x87\xb4\x42\x7e\x2a\x66\xc7\x54\x11\x4f\xbf\xf8\xb0\x37\x47\xe4\xac\x15\x3b\xb1\xdc\x7b\xc0\x8f\x63\x85\xce\xcf\xb6\x7e\x08\xbf\xe9\xea\xa0\xaf\x00\x00\x00\xff\xff\x48\x70\x16\x12\x3e\x01\x00\x00") + +func examplesVolumesAzure_fileAzureYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesAzure_fileAzureYaml, + "examples/volumes/azure_file/azure.yaml", + ) +} + +func examplesVolumesAzure_fileAzureYaml() (*asset, error) { + bytes, err := examplesVolumesAzure_fileAzureYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/azure_file/azure.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesAzure_fileSecretAzureSecretYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xcb\xc1\x6e\x82\x30\x18\xc0\xf1\x3b\x4f\xd1\x17\x58\x02\x75\x1e\x6c\xc2\x41\x03\xc3\x69\xc0\x21\x05\xa6\xb7\x8f\xf6\xcb\x60\x1d\x6d\x85\xb2\x05\x9e\x7e\xc9\x16\x6f\x9e\xff\xbf\x3f\xd8\xae\xc2\x61\xec\x8c\x66\xe4\x3b\xf0\x54\xa7\x25\x23\x05\x8a\x01\x9d\xd7\xa3\x03\x09\x0e\x98\x47\x88\x86\x1e\x19\x81\x65\x1a\xf0\x69\xfc\xcf\x6e\xb6\xc8\xc8\xc9\xc2\x6d\x42\xef\xee\xfe\xc4\xe8\xcc\x00\x1f\x08\x42\x98\x49\xbb\xfb\xda\x2e\x32\xa9\x16\xb9\x0d\xc3\xc7\x4e\xe1\xcc\x08\xc6\x5f\x49\xfa\x6e\x8f\x97\x7e\x3d\x35\xd4\x26\x3c\x0e\x38\xf8\x87\x9f\x8c\xef\x1c\x46\xdb\x59\xa8\x76\xe1\xe5\x38\x0b\x6a\xab\x8c\x06\x89\x8c\xce\x69\xca\x33\xd3\xf8\xaf\xab\xeb\xfe\xb0\xbb\x94\xe6\x19\x54\x4e\x8f\x7e\xec\x67\x51\x76\x2b\xfa\x8d\xae\x3e\xe5\x3a\x55\xd7\x8a\xd3\xf6\x9c\x07\x32\x6f\x4a\x9f\xd6\xf5\xcb\xa9\xd8\xab\x95\xa8\xc5\xe6\x2d\x0f\x43\xef\x37\x00\x00\xff\xff\x9e\x4f\x9d\x5b\x09\x01\x00\x00") + +func examplesVolumesAzure_fileSecretAzureSecretYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesAzure_fileSecretAzureSecretYaml, + "examples/volumes/azure_file/secret/azure-secret.yaml", + ) +} + +func examplesVolumesAzure_fileSecretAzureSecretYaml() (*asset, error) { + bytes, err := examplesVolumesAzure_fileSecretAzureSecretYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/azure_file/secret/azure-secret.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesCephfsCephfsWithSecretYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8e\xcf\x4e\xc3\x30\x0c\xc6\xef\x79\x0a\x6b\xf7\xb6\x74\xc0\x56\xfc\x0e\x88\x89\x03\x77\xd3\x78\x2c\xda\xe2\x54\x8e\x33\xc4\xdb\xa3\xfe\x19\xda\xa4\x71\xcb\xe7\x9f\xf3\xf3\x47\x43\xf8\x60\xcd\x21\x09\xc2\xb9\x75\xc7\x20\x1e\x61\x97\xbc\x8b\x6c\xe4\xc9\x08\x1d\x80\x50\x64\x84\x9e\x87\xc3\x3e\xaf\x5d\x1e\xb8\x1f\xa7\x7d\x12\xa3\x20\xac\x79\x4c\xd5\xcd\x56\xa5\xdf\x0e\x00\x20\x44\xfa\x62\x84\x63\xf9\x64\x15\x36\xce\xcd\x40\x25\xf3\xc4\xce\xe9\x54\x22\xbf\xa6\x22\x36\x19\x46\x47\x1c\xd3\x8e\xec\x80\xb0\x6a\xa2\x58\x33\xeb\x56\x13\xbe\x2d\xe2\x2e\x86\x3b\xe7\xa7\xf5\xf9\x89\xcb\xd7\x98\x24\x58\xd2\xbf\x5c\x41\xfb\x50\xb7\x9b\xba\x7d\x7e\xaa\xb7\x1d\x6e\xb6\xdd\xcb\x1d\xd2\xad\xff\x25\x8f\xd7\xa4\x64\x56\x04\xf2\x31\xc8\x32\xc9\xdc\x2b\xdb\x3b\xef\x2f\x07\xaf\xdb\x57\x33\x5d\x88\x32\xf9\x37\x39\xfd\x20\x98\x16\x76\xbf\x01\x00\x00\xff\xff\x74\x6d\x07\x00\x93\x01\x00\x00") + +func examplesVolumesCephfsCephfsWithSecretYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesCephfsCephfsWithSecretYaml, + "examples/volumes/cephfs/cephfs-with-secret.yaml", + ) +} + +func examplesVolumesCephfsCephfsWithSecretYaml() (*asset, error) { + bytes, err := examplesVolumesCephfsCephfsWithSecretYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/cephfs/cephfs-with-secret.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesCephfsCephfsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x90\x4d\x6e\xe3\x30\x0c\x85\xf7\x3e\x05\x91\xd9\x4e\xac\xf1\xcc\x34\x49\x75\x80\xee\x8a\x66\xd5\x3d\x6d\xd1\x31\x11\x4b\x32\x24\x2a\x85\x6f\x5f\x48\x76\xd2\x1f\xa4\x3b\x92\xef\xf1\xa3\xf4\x70\xe2\x57\x0a\x91\xbd\xd3\x70\x69\xaa\x33\x3b\xa3\xe1\xe8\x4d\x65\x49\xd0\xa0\xa0\xae\x00\x1c\x5a\xd2\xd0\xd1\x34\xf4\xb1\x8a\x13\x75\x79\xd8\x79\x27\xc8\x8e\x42\xcc\xdd\xf6\x8b\x69\x1b\xde\x2a\x00\x00\xb6\x78\x22\x0d\xe7\xd4\x52\x70\x24\x14\xd5\x84\x29\x52\xd1\x2e\x7e\x4c\x96\x9e\x7d\x72\x52\x08\x99\x61\x73\x77\x44\x19\x34\x6c\x94\x75\xa2\x16\xdc\xa6\xc8\xdf\xde\x71\x25\xdc\x39\x5f\xec\x4b\xa9\xd7\x55\xeb\x1d\x8b\x0f\xb7\x7e\x0b\xcd\x9f\xba\xd9\xd5\xcd\xc3\xff\x7a\x7f\xd0\xbb\xfd\xe1\xf1\x8e\x72\xf8\xfb\xa3\xf2\xef\xb3\xf2\x0b\xda\x19\x0c\xf5\x98\x46\x01\x19\x08\x26\x94\x01\x38\x82\xfa\x0d\x6d\x12\x98\x7d\x82\x0e\x1d\xf8\x0b\x85\xc0\x86\x00\x9d\x59\x3e\x0b\x08\x39\x50\xee\xb9\x5b\x96\x7c\x5f\x00\x3d\x8f\x14\xe7\x28\x64\x33\x3a\x45\x76\xa7\x0f\x30\x8a\x04\x6e\x93\xd0\xed\xfc\x54\x32\x53\xd1\x5b\x52\xb9\x56\xec\x54\x64\x43\x6b\x80\xb0\x1a\x53\xa4\xa0\x01\x8d\x65\xb7\x4e\x22\x75\x81\xe4\x89\x47\xca\x91\x93\x74\x65\x43\x15\x4b\xbd\x88\xd7\xf4\x03\xa1\x79\x71\xe3\xac\x41\x42\xa2\xea\x3d\x00\x00\xff\xff\xf6\x1b\xc1\xad\x3a\x02\x00\x00") + +func examplesVolumesCephfsCephfsYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesCephfsCephfsYaml, + "examples/volumes/cephfs/cephfs.yaml", + ) +} + +func examplesVolumesCephfsCephfsYaml() (*asset, error) { + bytes, err := examplesVolumesCephfsCephfsYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/cephfs/cephfs.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesCephfsSecretCephSecretYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2c\xc8\x0c\x4b\x2d\x2a\xce\xcc\xcf\xb3\x52\x28\x33\xe4\xca\xce\xcc\x4b\xb1\x52\x08\x4e\x4d\x2e\x4a\x2d\xe1\xca\x4d\x2d\x49\x4c\x49\x2c\x49\xb4\xe2\x52\x50\xc8\x4b\xcc\x4d\xb5\x52\x48\x4e\x2d\xc8\xd0\x2d\x86\xc8\xc2\x64\xb2\x53\x2b\xad\x14\x02\xc3\xdc\x9c\x7d\x43\xa2\xc2\x7d\xc3\xa2\xca\x82\xb2\xc2\x4a\x82\x22\x32\x9c\x02\x43\xc2\x8a\x02\x0d\xdd\xaa\xfc\x8c\xbc\x9c\x13\xb3\x32\xc2\xc3\x42\x2b\x82\x53\xaa\x3c\x8d\x02\xab\xd2\x0d\x82\x5d\x5d\x2d\x03\x02\x6d\x6d\xb9\x00\x01\x00\x00\xff\xff\x2f\x6e\x91\x0d\x80\x00\x00\x00") + +func examplesVolumesCephfsSecretCephSecretYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesCephfsSecretCephSecretYaml, + "examples/volumes/cephfs/secret/ceph-secret.yaml", + ) +} + +func examplesVolumesCephfsSecretCephSecretYaml() (*asset, error) { + bytes, err := examplesVolumesCephfsSecretCephSecretYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/cephfs/secret/ceph-secret.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesCinderCinderWebYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xbf\x4e\xc3\x30\x10\x87\x77\x3f\xc5\xa9\xcc\x51\x40\x62\x40\x37\x87\x21\x03\x52\x06\xc4\x8a\x5c\xe7\x68\x2c\xe2\x3b\xcb\xbe\xb4\xe5\xed\x91\x1b\x13\x2a\xe8\x4d\xf6\xfd\xbe\xfb\xfc\xc7\x46\xff\x46\x29\x7b\x61\x84\xe3\x83\xf9\xf4\x3c\x22\x0c\x32\x9a\x40\x6a\x47\xab\x16\x0d\x00\xdb\x40\x08\xce\xf3\x48\xa9\x39\xd1\xde\xe4\x48\xae\x04\x4e\x58\xad\x67\x4a\xb9\xec\x00\x9a\x8a\x16\x06\x2e\xe5\x83\x3d\x10\x02\x1f\x3c\x9f\x6b\x2b\x4a\xd2\xca\xdf\x9e\x29\xb5\x99\x07\x49\x8a\xf0\x74\x7f\x95\xc5\x24\x2a\x4e\x66\x04\x75\xb1\xf6\x8f\x32\x2f\x81\x5e\x64\xe1\x5b\xee\x49\xc3\xdc\xac\xc8\x95\x27\x14\x7a\xb0\x3a\x21\xec\xda\x25\xa7\x36\x4f\x36\x51\x7b\xb9\x6b\x5b\x46\x76\xe6\x47\xfc\xe7\x7d\xff\x7d\xeb\xe7\xfc\x9e\x7c\x07\xcf\xac\x94\x40\x27\xaa\x0a\xe8\x3b\xd8\xd3\x2c\xa7\x8d\x59\xfb\x7d\x87\x75\xf5\xde\x77\x5b\xf6\x91\x5f\xbf\x22\x21\xd0\x59\x1f\xcd\x77\x00\x00\x00\xff\xff\x49\x36\x8e\xfa\xa5\x01\x00\x00") + +func examplesVolumesCinderCinderWebYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesCinderCinderWebYaml, + "examples/volumes/cinder/cinder-web.yaml", + ) +} + +func examplesVolumesCinderCinderWebYaml() (*asset, error) { + bytes, err := examplesVolumesCinderCinderWebYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/cinder/cinder-web.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesFibre_channelFcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8d\xb1\x6e\xc2\x30\x10\x86\x77\x3f\xc5\xbf\xb1\x14\x11\x50\x91\x92\x7b\x87\xb6\x0c\x55\x19\xaa\x0e\x47\x72\xa1\x11\xf1\x39\xb2\xcf\x51\x79\xfb\x2a\x20\xd3\xa1\xe3\x7d\xfe\xbf\xcf\x3c\x0d\x1f\x12\xd3\x10\x94\x30\x6f\xdd\x65\xd0\x8e\x70\x08\x9d\xf3\x62\xdc\xb1\x31\x39\x28\x7b\x21\xf4\xad\x4b\x93\xb4\xe4\xd0\x06\x35\x1e\x54\x62\x22\x07\x60\x8d\xc1\xf3\x59\x08\x97\x7c\x92\xa8\x62\x92\x36\x13\xe7\x24\x58\x5e\xf1\xa7\xdf\xae\x39\x8c\xd9\xcb\x4b\xc8\x6a\x77\x1d\xb7\x44\x19\xad\xe7\x30\x16\x0a\xf8\x65\x76\x60\xfb\x26\x6c\xbc\xda\x66\x89\xdc\x03\xe5\xeb\xff\x5e\xdf\x3e\xb2\xc6\xf1\x2c\x76\x3c\xbe\x26\xc2\xe7\x6a\x5f\x55\x5c\x35\xf5\xae\x69\xb6\xa7\xba\x6b\xf7\xab\x27\x3c\x58\x5d\xd8\x57\x71\xc7\xac\x84\x5d\xb9\xfa\xf4\x7e\x9d\x84\x20\x3f\xf6\x5c\x58\x14\xee\xde\x74\xbc\x12\x2c\x66\x71\xbf\x01\x00\x00\xff\xff\x69\xa6\x2b\xc5\x4a\x01\x00\x00") + +func examplesVolumesFibre_channelFcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesFibre_channelFcYaml, + "examples/volumes/fibre_channel/fc.yaml", + ) +} + +func examplesVolumesFibre_channelFcYaml() (*asset, error) { + bytes, err := examplesVolumesFibre_channelFcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/fibre_channel/fc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesFlexvolumeLvm = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\x6f\x53\xdb\x3e\x12\x7e\x6d\x7f\x8a\xfd\x29\x99\x42\x18\x9c\x7f\x37\xf7\x06\x1a\x6e\x72\x05\xda\x5c\x21\x61\x48\x48\xa7\xd7\x30\x45\xb1\xd7\x89\x8a\x23\x19\x49\x26\x70\x81\xef\x7e\x23\xd9\x71\x6c\x28\x2d\xed\xaf\xbc\x61\xe2\x7d\xb4\x7f\x9e\x7d\x76\xa5\xca\x5f\x8d\x29\xe3\x8d\x29\x55\x73\xd7\xad\xc0\x3b\x11\xdf\x4b\x36\x9b\x6b\x68\x37\x5b\xff\x84\xd1\x1c\xe1\x63\x32\x45\xc9\x51\xa3\x82\x6e\xa2\xe7\x42\xaa\xba\x5b\x71\x2b\x70\xc2\x7c\xe4\x0a\x03\x48\x78\x80\x12\xf4\x1c\xa1\x1b\x53\x7f\x8e\x6b\xcb\x2e\x8c\x51\x2a\x26\x38\xb4\xeb\x4d\xd8\x36\x00\x92\x99\x48\x6d\xdf\xad\xc0\xbd\x48\x60\x41\xef\x81\x0b\x0d\x89\x42\xd0\x73\xa6\x20\x64\x11\x02\xde\xf9\x18\x6b\x60\x1c\x7c\xb1\x88\x23\x46\xb9\x8f\xb0\x64\x7a\x6e\xc3\x64\x4e\xea\x6e\x05\x3e\x67\x2e\xc4\x54\x53\xc6\x81\x82\x2f\xe2\x7b\x10\x61\x11\x07\x54\xdb\x84\xcd\xdf\x5c\xeb\x78\xaf\xd1\x58\x2e\x97\x75\x6a\x93\xad\x0b\x39\x6b\x44\x29\x50\x35\x4e\x7a\xef\x8e\xfa\xc3\x23\xaf\x5d\x6f\xda\x23\x17\x3c\x42\xa5\x40\xe2\x4d\xc2\x24\x06\x30\xbd\x07\x1a\xc7\x11\xf3\xe9\x34\x42\x88\xe8\x12\x84\x04\x3a\x93\x88\x01\x68\x61\xf2\x5d\x4a\xa6\x19\x9f\xed\x82\x12\xa1\x5e\x52\x89\x6e\x05\x02\xa6\xb4\x64\xd3\x44\x97\xc8\x5a\x67\xc7\x54\x09\x20\x38\x50\x0e\xa4\x3b\x84\xde\x90\xc0\xbf\xbb\xc3\xde\x70\xd7\xad\xc0\xa7\xde\xe8\xc3\xe0\x62\x04\x9f\xba\xe7\xe7\xdd\xfe\xa8\x77\x34\x84\xc1\x39\xbc\x1b\xf4\x0f\x7b\xa3\xde\xa0\x3f\x84\xc1\x31\x74\xfb\x9f\xe1\x63\xaf\x7f\xb8\x0b\xc8\xf4\x1c\x25\xe0\x5d\x2c\x4d\xfe\x42\x02\x33\x34\x62\x60\x38\x1b\x22\x96\x12\x08\x45\x9a\x90\x8a\xd1\x67\x21\xf3\x21\xa2\x7c\x96\xd0\x19\xc2\x4c\xdc\xa2\xe4\x8c\xcf\x20\x46\xb9\x60\xca\x34\x53\x01\xe5\x81\x5b\x81\x88\x2d\x98\xa6\xda\x7e\x79\x56\x54\xdd\x68\xa9\x2f\x34\xaa\x3d\x43\xbc\x07\x67\x11\x52\x53\x2b\x57\x9a\x46\x11\x90\x6f\x37\x04\x62\xea\x5f\x9b\x28\x53\x0c\x85\x44\x48\x94\x09\x64\x35\x10\x48\x76\x8b\xb2\xee\x26\x8a\xce\x70\xbb\x06\x2b\xd7\x41\x29\x81\xf4\xf8\x2d\x8d\x58\x00\xf6\x7b\x1d\x2e\xcc\xbf\x3d\x20\x99\x75\xa2\xab\x4d\x60\x9c\xe9\xd2\x07\xaa\x35\xf5\xe7\xf0\xf6\x9b\x12\x1c\x62\x2a\xe9\x42\x1d\xc0\x5b\x2e\x02\xe4\x74\x81\x07\x25\x6c\x80\x29\x76\x21\x12\xae\x21\xc0\x5b\xe6\xe3\x8b\xe0\x25\x65\x3a\x14\x72\xed\xff\xc9\x99\x62\xb8\xd2\x31\x8b\x4b\x61\xf9\x21\x26\x0f\x5e\xef\x20\xe1\x2f\xb8\x28\xf3\xa0\xd2\xc4\x30\xf8\x61\xe9\x77\x4c\x43\xcb\x7d\x74\x5d\x94\x32\x23\xda\x9f\x0b\xf0\x38\x42\x75\x07\x5a\x07\x6f\xda\xc6\x18\x89\xd9\x73\xe3\xc1\x1b\x7b\x90\x29\x9b\x01\x06\x29\xe2\x74\x70\xd1\x1f\x75\xae\x42\xc6\x83\x05\xd7\xe0\x71\xa8\xae\x4e\xfb\xa3\xb3\xee\xe8\xc3\x23\xb4\x0f\x1a\x01\xde\x36\x78\x12\x45\xf0\x00\x7e\xa2\xc1\x0b\xb6\x60\x0b\xbc\xb0\x75\xe5\x3a\x2c\x84\x2f\x40\xaa\x2b\xeb\xe2\x91\x40\xa7\x63\x7f\x65\x87\x09\x5c\xee\x1b\x89\x71\xd7\x49\xd3\x20\x2d\x53\x40\xa4\x30\xff\xd0\x24\xae\x13\x32\x93\xd4\x0c\x33\x7e\xd2\xa4\xc6\x83\x93\x8b\xd3\xa3\xde\x61\xa7\xba\x6d\x91\xd5\xd5\x7f\x86\x83\xfe\xd7\xb3\xee\x79\xf7\x74\xf8\x08\x0f\xf0\xed\x06\x3c\x09\x5b\xf5\x5b\x11\x25\x0b\xec\x1d\x6e\xd5\x5c\x67\xfc\xfe\xfb\xf0\x87\x32\x78\x26\x45\x12\x6f\xd5\x5c\xd7\xa9\xc0\xc9\xf8\x14\x54\x32\x55\x9a\xe9\xc4\xec\x4b\x2f\xdd\x59\x9e\x57\x48\xe1\x2a\x75\xb9\xfe\xfd\x60\x36\xa8\x6a\x78\x0d\xcf\x6b\xcc\xae\x6c\xd4\x35\xe2\xfd\x13\x9b\xeb\x1c\x9e\x1e\x1e\x8d\x3b\xc4\x92\xb8\xa0\x71\x8c\xb2\x51\x5d\x8d\xdf\x3f\x7a\xd5\xd5\xda\xdf\x23\xc9\xba\x54\x5d\x59\xf4\xa3\xa1\x23\x95\x42\xca\x45\xa1\x94\x4e\xb5\xe5\x3a\xc3\xde\x7f\x8f\xf2\x42\x5b\x05\x2e\x14\xfb\x1f\xda\xba\xd2\xa8\xd5\xed\x9c\xd4\x5a\xd6\xab\xbf\xc0\x9b\x9a\x16\xa5\x81\x4a\x0d\x32\x3a\x5c\x4d\x88\xd2\x54\x27\x6a\x42\xf6\x60\x42\x8e\x29\x8b\x12\x89\x13\xb2\x0b\x13\xb2\x40\x65\x86\x37\xb5\x8c\x2d\x91\x50\x28\x02\x02\x81\xca\xde\x0b\x78\xc7\x94\x9e\x10\x53\xd6\x5a\xad\xa6\xc7\x4e\x24\x66\xcf\x22\x0c\x13\xdf\x47\xa5\xd2\x08\x69\xaa\x13\xb2\x37\xc9\x33\x4c\xdd\x58\x2f\x4d\x43\x4b\x3a\xee\x29\x2d\x3f\xf4\x57\x3e\x56\x1a\xfc\xf4\xb4\x9a\xb3\x50\xbb\x4e\xb6\x0b\xaa\x3b\xd6\xbb\x28\xcc\x69\x36\x1c\xa9\x96\x2d\xef\x19\xab\x6d\xd7\x39\x1e\x8e\x3e\x9f\x6d\x7a\xf0\x8f\x5c\x60\x5f\xc8\x75\x7e\xf7\xd6\x99\x68\x84\x6a\x74\x1f\x23\xb9\xb4\x5d\xf9\xa3\x1d\x58\x7b\xf8\x29\xef\x59\xdc\xea\x76\x3e\xf6\x35\xf0\xf0\x06\x5a\x70\x09\x79\xec\x9f\x72\xb9\x26\x33\xf5\x38\x1e\x9c\x64\x14\x5c\x4d\xa3\x6b\x16\x80\x27\x20\x09\xf0\x36\x97\x70\x71\x6f\x3c\xcc\x24\xc6\x40\x7a\x87\x5f\x8f\x87\x5f\xcd\x21\xf2\x90\xee\x11\xd2\x21\xe0\x85\xed\xc2\x1e\xc9\xfd\x66\xbb\xa4\x48\xcf\xe2\x3a\x54\xe0\x69\xa8\xae\x32\xc8\x26\x58\x61\x47\xb5\xcd\x8e\x73\xb2\x92\xff\x65\x17\x5f\xb3\xe0\x24\x23\x19\x5e\xcb\xb2\xb1\xa4\x0f\x05\x5f\x22\xd5\x08\xa1\x2a\x24\x20\x78\xb6\xfc\xa1\xac\xd7\x0d\xff\x56\xf8\x96\xb2\xc5\x75\xc0\x24\x78\x71\x71\xb9\xbe\x39\x80\x3c\x73\x03\xb1\xf7\x42\x5e\xd5\x4b\xc0\x17\x8b\xfb\xed\xda\x8a\xf7\xd8\x26\x3e\xd5\x85\x14\x7e\x75\x9e\xcb\xf3\x57\xba\x00\x9f\x0f\xd6\x7a\x30\x82\x62\xcd\x97\xbf\x2b\xce\xef\xcb\xbd\xf9\x37\xe4\x9e\xac\x3b\xf3\xa7\x1a\x82\xc1\x0f\xfb\x91\xd1\x05\xe9\x75\xf5\xb3\x46\xfc\x52\x27\x36\x8f\x8c\x57\x2c\x51\x93\xe2\x1a\x3e\x21\x7b\x5a\x26\x58\xf6\x26\x62\xd3\x3f\x37\x1b\x5f\x11\x13\xe8\x00\xb1\xef\xb9\x0d\x0b\xaf\x4d\xce\x54\x92\x12\x59\x01\x2f\xd2\xd0\xde\xb8\xb0\x8f\x47\x0b\x48\xb7\xb6\xeb\x9b\x97\x69\x1a\x90\xf1\xf5\x12\xaf\xb9\x4e\x61\x9d\x3b\xce\xfe\xbe\xeb\xa4\xf7\x85\xb1\x64\x0f\xc5\xdc\x52\xba\x12\x0c\xa0\xfc\x38\xcc\x71\x05\xe1\x5a\x37\xc5\x2b\x62\x83\x2a\x09\xdc\xe0\xca\x4f\xbe\x1c\xb7\xa1\xbf\xe6\xc2\x93\xbf\xc2\xfb\xaf\xba\xf3\xcc\x6a\x4e\xef\xd4\x72\xed\x3e\x11\x55\x5f\x68\x50\x49\x1c\x0b\xa9\x4d\xab\xa0\xa8\x61\x54\xd4\x77\xdd\x4c\x30\xff\x0f\x00\x00\xff\xff\x73\x66\xa3\xc4\x3d\x0e\x00\x00") + +func examplesVolumesFlexvolumeLvmBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesFlexvolumeLvm, + "examples/volumes/flexvolume/lvm", + ) +} + +func examplesVolumesFlexvolumeLvm() (*asset, error) { + bytes, err := examplesVolumesFlexvolumeLvmBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/flexvolume/lvm", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesFlexvolumeNfs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x95\x5d\x6f\x1a\xb9\x17\xc6\xaf\xf1\xa7\x78\x6a\x50\x08\x55\x78\x95\xfe\x37\xa4\xe1\x2f\xb6\x4d\x55\xd4\x96\x54\x19\xd2\xaa\x5a\xaa\xad\x99\x39\xc3\x38\x1d\xec\x89\xed\x81\x46\x94\xef\xbe\xf2\x30\x10\xd8\xf4\x65\x77\xb5\xb9\x41\xf1\x39\xb6\x7f\xcf\x73\x8e\xcf\x54\x9f\xb4\x67\x52\xb5\x67\xc2\x26\x8c\x55\xf1\x5c\x67\xf7\x46\xce\x13\x87\x5e\xa7\xfb\x3f\x4c\x12\xc2\xeb\x7c\x46\x46\x91\x23\x8b\x61\xee\x12\x6d\x6c\x8b\x55\x59\x15\x6f\x64\x48\xca\x52\x84\x5c\x45\x64\xe0\x12\xc2\x30\x13\x61\x42\xbb\xc8\x19\xde\x93\xb1\x52\x2b\xf4\x5a\x1d\x9c\xfa\x04\x5e\x86\x78\xe3\x9c\x55\x71\xaf\x73\x2c\xc4\x3d\x94\x76\xc8\x2d\xc1\x25\xd2\x22\x96\x29\x81\xbe\x86\x94\x39\x48\x85\x50\x2f\xb2\x54\x0a\x15\x12\x56\xd2\x25\xc5\x35\xe5\x21\x2d\x56\xc5\xc7\xf2\x08\x3d\x73\x42\x2a\x08\x84\x3a\xbb\x87\x8e\x0f\xf3\x20\x5c\x01\xec\xff\x12\xe7\xb2\x7e\xbb\xbd\x5a\xad\x5a\xa2\x80\x6d\x69\x33\x6f\xa7\xdb\x44\xdb\x7e\x33\x7a\x7e\x39\x0e\x2e\x9b\xbd\x56\xa7\xd8\x72\xa3\x52\xb2\x16\x86\xee\x72\x69\x28\xc2\xec\x1e\x22\xcb\x52\x19\x8a\x59\x4a\x48\xc5\x0a\xda\x40\xcc\x0d\x51\x04\xa7\x3d\xef\xca\x48\x27\xd5\xfc\x0c\x56\xc7\x6e\x25\x0c\xb1\x2a\x22\x69\x9d\x91\xb3\xdc\x1d\x99\xb5\xa3\x93\xf6\x28\x41\x2b\x08\x05\x3e\x0c\x30\x0a\x38\x7e\x1b\x06\xa3\xe0\x8c\x55\xf1\x61\x34\x79\x75\x75\x33\xc1\x87\xe1\xf5\xf5\x70\x3c\x19\x5d\x06\xb8\xba\xc6\xf3\xab\xf1\x8b\xd1\x64\x74\x35\x0e\x70\xf5\x12\xc3\xf1\x47\xbc\x1e\x8d\x5f\x9c\x81\xa4\x4b\xc8\x80\xbe\x66\xc6\xf3\x6b\x03\xe9\x6d\xa4\xc8\x7b\x16\x10\x1d\x01\xc4\x7a\x0b\x64\x33\x0a\x65\x2c\x43\xa4\x42\xcd\x73\x31\x27\xcc\xf5\x92\x8c\x92\x6a\x8e\x8c\xcc\x42\x5a\x5f\x4c\x0b\xa1\x22\x56\x45\x2a\x17\xd2\x09\x57\xac\x3c\x12\xd5\xf2\xbd\x34\xd6\x8e\x6c\xdf\x1b\xdf\xc4\xbb\x94\x84\xd7\xaa\xac\x13\x69\x0a\x7e\x7b\xc7\x91\x89\xf0\x8b\xbf\x65\x46\xb1\x36\x84\xdc\xfa\x8b\x8a\x1e\x88\x8c\x5c\x92\x69\xb1\xdc\x8a\x39\x9d\x36\xb0\x66\x15\x32\x06\x7c\xa4\x96\x22\x95\x11\x8a\xf5\x16\x6e\xfc\x4f\x1f\xbc\x8c\x4e\x5d\xad\x03\xa9\xa4\x3b\x5a\x58\xe8\x5c\x39\x3c\xdb\xfe\x44\xd2\x0c\xf0\xec\xd6\x6a\x85\x4c\x18\xb1\xb0\x83\xa3\xdc\x5c\x3d\xca\xf6\xf1\xaf\xd2\xa1\xcb\x36\x8c\x91\x31\x25\x4d\x98\x68\x34\x15\xa1\xf6\x14\xdd\xc1\x49\xcf\x07\x53\x3d\x7f\x1c\x1c\x9c\x14\x1b\xa5\x2d\x4e\xa4\x68\x9b\xf1\xf6\xea\x66\x3c\xb9\xf8\x1c\x4b\x15\x2d\x94\x43\x53\xa1\xb6\x7e\x3b\x9e\xbc\x1b\x4e\x5e\x6d\xd0\x1b\xb4\x23\x5a\xb6\x55\x9e\xa6\xf8\x86\x30\x77\x68\x46\x75\xd4\xd1\x8c\xbb\x9f\x59\x45\xc6\xf8\x1d\xbc\xb6\x2e\x8e\xd8\x70\x5c\x5c\x14\xff\x95\x9b\x39\x3e\x9d\xfb\x3a\x28\x56\xd9\x62\xf0\xae\x17\x90\x5a\xda\x2f\x74\x38\xab\xc4\xd2\x43\x45\xba\x80\x2a\x91\xb6\x27\x5c\xd4\xba\x8c\x55\xc6\x2f\x83\x3f\x82\xcb\xeb\xf7\x97\xd7\x17\xb5\xd3\x62\x5b\xad\x87\x6f\xb8\xbd\x43\xd3\xa0\xde\xb2\x64\x96\x64\xea\x0d\x56\x09\x5e\x0d\xaf\x2f\xbf\x9f\x93\x08\x43\xf5\x06\x2b\x89\x6b\xa7\x7b\x0b\x1a\x68\xd2\x1d\xba\xf8\x84\x3d\x6a\xaa\xe7\xa8\xaf\xb9\x75\xc2\xe5\x96\xf7\xc1\x83\x3c\x0c\xc9\x5a\xbe\xa9\x7b\x6e\xef\x7f\xa7\xa0\x66\x95\xc5\x97\x48\x1a\x34\xb3\x43\xc7\x4e\x06\xd8\x5b\xe6\x53\x8a\xe2\x35\x1d\x54\x6c\x51\x5b\x3f\x88\xd9\xf4\xdb\xb5\x75\x81\xbc\xf9\xe1\xf6\x12\xf7\xff\x45\x01\x3b\x87\x76\xfa\x2e\x59\x63\x5a\x52\x4e\x79\x1f\x53\xfe\x52\xc8\x34\x37\x34\xe5\x67\x98\xf2\x05\x59\xdf\x90\x0f\x91\xed\x50\xd8\xe2\x1c\x73\xec\x31\x84\x3b\x20\x99\xf2\x0d\xdf\xe9\xed\x16\x7a\x7f\xee\x4c\x69\xcc\x86\xb1\xb2\x71\x1f\x95\xf2\x07\xe6\x77\xfe\xa5\xf9\xf9\x4e\xcb\x7f\xe5\x1d\x45\x3f\xb5\x6e\xf7\x1e\x97\x3a\xcd\x17\xf4\x2b\xb3\xfe\xb6\x5b\x3a\x2b\xda\x5c\xc6\x78\xe2\xbf\x2f\x0b\xa1\x22\x34\x97\xbe\x75\x0f\x9e\x5e\x6f\x70\xd2\xdd\x09\xf8\x87\xb5\xaf\xdf\xde\xd5\x31\x93\x4a\x98\xed\xb7\x2d\xd6\xb9\x8a\x5a\x7f\x9d\x81\xb7\x77\xbf\x9c\x80\x5b\x8d\xa5\x44\xaf\xb0\x7c\xfd\x3a\xe3\xb8\x00\x2f\x66\xdd\x83\xcd\x3f\x54\x7f\x06\x1e\x8a\x4c\xcc\x64\x2a\x9d\x24\x1f\x5a\x73\xe1\x9c\x08\x13\xde\x47\x2c\x52\x4b\x9b\x03\x83\xf6\xf7\xd4\xaa\x68\xa6\x0e\xbd\x87\x1b\x8a\xb9\x5b\x24\xd8\x44\xc6\x8e\xb1\xd0\x0b\xda\xf2\x48\x55\xbe\xbc\x06\xab\x54\xca\xd1\x82\xda\x53\x56\xa9\x9c\x9f\xb3\x4a\x59\x49\x1f\xdb\x15\x75\x1f\x7b\xda\xf8\x5e\x17\x8e\xb5\x83\xcd\xb3\x4c\x1b\x47\xd1\x51\x2f\x92\x15\x21\x63\xa5\x2b\x7f\x06\x00\x00\xff\xff\x20\xa0\x43\x34\xc0\x08\x00\x00") + +func examplesVolumesFlexvolumeNfsBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesFlexvolumeNfs, + "examples/volumes/flexvolume/nfs", + ) +} + +func examplesVolumesFlexvolumeNfs() (*asset, error) { + bytes, err := examplesVolumesFlexvolumeNfsBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/flexvolume/nfs", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesFlexvolumeNginxNfsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xdd\x6e\x83\x30\x0c\x85\xef\xf3\x14\x16\xf7\xfd\xa1\xd2\xb6\xca\xef\x30\x89\x8b\xa9\xb7\x95\x45\x4c\x89\x0a\x4e\x14\x1b\xd6\xbd\xfd\x04\x83\xb2\x49\xbb\xcc\x77\xf2\x1d\x1f\x4a\xe1\xc2\x59\x43\x14\x84\xb1\x74\xf7\x20\x1e\xa1\x8a\xde\xf5\x6c\xe4\xc9\x08\x1d\x80\x50\xcf\x08\x72\x0b\xf2\xd8\x49\xa3\x0b\xd1\x44\x35\x23\x78\x6e\x68\xe8\xcc\x69\xe2\x7a\xfa\x5c\x47\x31\x0a\xc2\x59\xa7\xd7\xee\x1f\x19\x20\xf4\x74\x5b\xe1\x0c\xc6\xd8\x0d\x3d\xbf\xc7\x41\x6c\xd6\x36\xd1\x58\x6d\x06\x00\xfd\x14\x57\x64\x2d\xc2\x61\x9a\x36\xe3\x14\xf3\xa6\x3c\x6f\x57\x31\x1b\xc2\xf9\xe8\xd6\xea\x3f\x63\x9e\x9d\x4d\xc7\x8f\xcb\x9c\xe3\x72\xc3\xe7\x30\x72\x46\x28\xee\x67\x3d\x48\xa3\xc5\xc2\x1b\xfd\xf8\x4a\x8c\x50\xfc\x62\x31\x59\x88\xa2\xab\x0a\xa0\x9c\x7f\xe4\xf2\xed\xb4\x2f\x5f\xf7\xc7\xfd\xe9\xa5\xd8\xd2\x96\xf2\xd4\xe0\x3f\xf5\x2a\xa4\x57\xad\x33\x59\xdd\x16\xee\x3b\x00\x00\xff\xff\x0d\xe9\xff\xe9\x84\x01\x00\x00") + +func examplesVolumesFlexvolumeNginxNfsYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesFlexvolumeNginxNfsYaml, + "examples/volumes/flexvolume/nginx-nfs.yaml", + ) +} + +func examplesVolumesFlexvolumeNginxNfsYaml() (*asset, error) { + bytes, err := examplesVolumesFlexvolumeNginxNfsYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/flexvolume/nginx-nfs.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesFlexvolumeNginxYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8e\xb1\x6e\xc3\x30\x0c\x44\x77\x7d\x05\xa1\xbd\x8d\x03\x74\x28\x38\x77\xe9\x50\xc0\x43\x91\xb5\x50\x6d\xda\x15\x62\x91\x82\x44\x0b\x6e\xbf\xbe\x90\x61\x3b\x48\x46\xde\xdd\xbb\xa3\x8b\xfe\x42\x29\x7b\x61\x84\x72\x36\x57\xcf\x3d\x42\x2b\xbd\x09\xa4\xae\x77\xea\xd0\x00\xb0\x0b\x84\xc0\xa3\xe7\x65\xbb\x72\x74\x1d\x21\xf4\x34\xb8\x79\x52\x93\x23\x75\x35\xd8\x09\xab\xf3\x4c\x29\xd7\xeb\xe9\x01\x04\xf0\xc1\x8d\x77\x42\x91\x69\x0e\xf4\x21\x33\xeb\x8a\xdc\x20\xa5\xac\xab\x00\x10\xaa\xdd\x3a\xfd\x41\x38\xd5\x97\x56\x39\x4a\xba\x21\xc7\x6e\x2b\x49\x11\x5e\x1b\xb3\x57\xdf\x3d\x72\x74\x0e\x13\x2d\x97\xd5\xc7\x6d\xa3\x4f\xbe\x50\x42\xb0\xd7\xf9\x9b\x12\x93\x52\x7e\xf6\x72\x9a\x4a\xb0\x5b\x62\xc8\x9f\xbf\x91\x10\x2c\x2d\xfa\xb2\x8b\x12\xd5\x0b\xe7\xbd\x65\x5f\x7d\x7f\x43\xb0\x45\xa6\xb3\x3d\x8c\xec\xff\x2a\x7c\x6e\x9a\x26\xd8\x87\xf8\x98\x64\x8e\xdb\xf6\x57\x19\xad\xf9\x0f\x00\x00\xff\xff\x09\x57\xb7\x05\x96\x01\x00\x00") + +func examplesVolumesFlexvolumeNginxYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesFlexvolumeNginxYaml, + "examples/volumes/flexvolume/nginx.yaml", + ) +} + +func examplesVolumesFlexvolumeNginxYaml() (*asset, error) { + bytes, err := examplesVolumesFlexvolumeNginxYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/flexvolume/nginx.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesFlockerFlockerPodWithRcYml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x52\x4d\x6f\xdb\x30\x0c\xbd\xfb\x57\x10\xdd\xd9\x4d\xb3\x01\x5b\xa1\x6b\xb1\x8f\x4b\xd7\xa0\x09\x76\x2d\x18\x99\x89\x85\x52\xa2\x21\xd1\x1e\xfa\xef\x07\xc9\x1f\xf5\xba\x06\x98\x0e\x06\x4c\x3e\x3e\xf2\x3d\x12\x3b\xf7\x8b\x62\x72\x12\x0c\x0c\xdb\xea\xd9\x85\xc6\xc0\x9e\xe2\xe0\x2c\x55\x9e\x14\x1b\x54\x34\x15\x40\x40\x4f\x06\x4e\x2c\xf6\x99\x62\x7d\x6e\x25\x69\x05\xc0\x78\x24\x4e\x39\x0f\x80\x5d\xf7\x16\x90\x3a\xb2\x39\xd9\x49\xd4\x09\xf5\x01\xb4\xa5\x12\x00\x6d\x31\x7f\x5c\x82\x34\x36\x84\xd4\x4a\xcf\x4d\xf9\x25\x90\x50\x01\xd4\x05\x6a\xe0\xf6\xa6\x54\x2b\xc6\x33\xe9\xee\x35\x94\x88\xc9\xaa\xc4\x8b\x23\xd4\x75\x5d\xbd\x2b\xf2\x91\x3a\x76\x16\xd5\x49\xb8\x93\xa0\x51\x98\x29\xfe\x87\xe4\x22\x20\xd1\x24\x1d\x2c\x06\x38\x52\xee\xcc\x8e\x1a\xc0\x5e\xc5\xa3\x3a\x8b\xcc\x2f\x05\x7d\x8a\xe2\x8b\xe6\xa9\xc0\x85\xc9\x81\x06\x94\x7c\xc7\xa8\x04\xee\x04\x41\x14\x12\xbd\xf5\xb4\xeb\x63\x27\x89\x0c\x34\xe4\x65\xb1\x33\x8e\xa3\x27\x03\xdb\x0a\x16\x96\xb1\x62\x2d\x20\xbf\x35\xdb\x05\x8b\x72\x78\xa6\xce\xcf\x4a\x50\x74\x81\xe2\x52\x56\x5f\xf0\x62\x7c\xce\xe3\x99\x0c\x94\xa0\xb9\xb9\xfe\x72\xbd\x5d\x52\x14\x86\xd7\xd6\x33\xcb\xf7\xaf\x87\xa7\x1f\x0f\xfb\xc3\xfe\xe9\xdb\xe3\xc3\xfd\x92\x06\x18\x90\xfb\xac\x35\xa4\x25\xb8\xba\x9c\x91\x62\x19\x6e\x3c\x82\x8f\x9f\x3e\xdf\xae\x18\xf2\x08\xbb\xf5\xc1\x4c\x2c\x51\x54\xac\xb0\x81\xc3\xdd\x6e\x89\x0f\xc2\xbd\xa7\x7b\xe9\xc3\xba\x45\xde\x59\x9e\x13\x7c\x9f\x14\x3c\xaa\x6d\xcb\xc2\x46\xf4\x98\x3a\x12\xcb\xef\x55\xc5\xac\xac\x58\x50\x67\xfb\x57\x49\x00\x9f\x5b\xec\x50\x5b\x03\x57\x9b\x01\xe3\x86\xdd\x71\x53\xb0\x57\xd5\x7a\x94\xf4\xaf\x57\xef\x32\x4e\x6b\x30\x7f\x35\xc9\x98\x44\xfa\xb3\x94\xf9\x97\x7a\xde\xd5\x20\x5c\xfd\x09\x00\x00\xff\xff\x3e\x3b\x0c\x08\xe6\x03\x00\x00") + +func examplesVolumesFlockerFlockerPodWithRcYmlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesFlockerFlockerPodWithRcYml, + "examples/volumes/flocker/flocker-pod-with-rc.yml", + ) +} + +func examplesVolumesFlockerFlockerPodWithRcYml() (*asset, error) { + bytes, err := examplesVolumesFlockerFlockerPodWithRcYmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/flocker/flocker-pod-with-rc.yml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesFlockerFlockerPodYml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x4e\xc4\x30\x0c\x44\xef\xf9\x8a\xd1\x72\xae\x0a\x37\x94\x7f\x00\xf5\xc4\xdd\xdb\x9a\x4d\xb4\x49\x5c\x25\x6e\x0b\x7f\x8f\x52\xb2\x4b\x41\xf8\x96\xcc\xf3\xd8\x1e\x9a\xfd\x1b\xe7\xe2\x25\x59\xac\x4f\xe6\xea\xd3\x64\x31\xc8\x64\x22\x2b\x4d\xa4\x64\x0d\x90\x28\xb2\xc5\x7b\x90\xf1\xca\xb9\xdb\xf8\x6c\xca\xcc\x63\x55\x46\x49\x4a\x3e\x71\x2e\xf5\x05\x74\x8d\xad\x0c\xf6\xf2\x91\x2e\x6c\x91\x2e\x3e\x7d\xb4\xaf\x59\xb2\x36\xfe\xff\x9e\x5a\x77\xe7\x41\xb2\x5a\x3c\x3f\x36\x6d\x95\xb0\x44\x7e\x91\x25\x1d\x3d\x80\x87\xdd\x05\x71\x29\x8a\x48\x3a\x3a\xa8\xe3\x46\x7f\x4b\x67\x0e\xb2\x1d\x3a\xee\x73\xb7\xad\xcb\x22\x7a\x90\x80\x58\x07\x0c\xa4\xce\xe2\xd4\x2f\x25\xf7\xc5\x51\xe6\x7e\x3f\xa3\x77\x1a\xc3\xc9\xdc\x76\xf9\x7b\xfa\x6f\xbb\x96\xda\xcf\xaa\x35\xd4\xc2\xfa\xba\xc3\xf1\xb3\xbb\xc5\xba\x4a\x30\x5f\x01\x00\x00\xff\xff\xfe\xb0\x8f\x29\x8e\x01\x00\x00") + +func examplesVolumesFlockerFlockerPodYmlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesFlockerFlockerPodYml, + "examples/volumes/flocker/flocker-pod.yml", + ) +} + +func examplesVolumesFlockerFlockerPodYml() (*asset, error) { + bytes, err := examplesVolumesFlockerFlockerPodYmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/flocker/flocker-pod.yml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesGlusterfsGlusterfsEndpointsJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x8e\xbd\x8e\xc3\x20\x10\x84\x7b\x9e\x62\xb5\xb5\x0f\x19\xeb\x7c\xd6\xd1\xdf\x2b\x5c\x73\xba\x82\x04\x12\xa1\xc4\x18\xb1\x38\x4d\xc4\xbb\x47\x8b\xf3\x27\x45\x4a\x13\xa5\x62\xb4\x33\xf3\x31\x47\x01\x80\x3b\x1f\x2c\x6a\xc0\x9f\x60\xe3\xe4\x43\x26\x6c\xf8\x6c\xa2\xff\x75\x89\xfc\x14\xd8\x3c\xa8\xe5\x3a\xba\x6c\xac\xc9\x06\x35\x70\x19\x00\x83\x19\x1d\x27\xb6\xfb\x99\xb2\x4b\x1b\xfa\x58\x2f\x0a\x05\x40\xa9\x25\x9a\x57\xe4\x32\xa1\x86\xbf\xda\x59\x9a\xfc\x87\xb5\xc9\x11\xb9\x9b\x75\x6f\xd7\x88\x8f\x0c\x57\xad\xec\x3e\x5b\xa9\xda\x2f\xa9\xfa\x0e\xaf\x81\x72\x56\xff\xcd\x05\x19\xa7\x94\x9f\xe0\xd8\x46\x0d\xea\x91\x50\xdf\xd2\xbc\x36\x70\xf8\x96\xaa\x1f\xde\xb8\x4f\xb0\x2a\xe2\x14\x00\x00\xff\xff\x2e\x0b\x5b\xea\xb9\x01\x00\x00") + +func examplesVolumesGlusterfsGlusterfsEndpointsJsonBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesGlusterfsGlusterfsEndpointsJson, + "examples/volumes/glusterfs/glusterfs-endpoints.json", + ) +} + +func examplesVolumesGlusterfsGlusterfsEndpointsJson() (*asset, error) { + bytes, err := examplesVolumesGlusterfsGlusterfsEndpointsJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/glusterfs/glusterfs-endpoints.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesGlusterfsGlusterfsPodJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\xcd\x4e\xc3\x30\x10\x84\xef\x79\x0a\x6b\xcf\x45\x15\x57\xbf\x03\xa2\x27\x2e\xa8\x42\x4b\xbc\x04\xab\xf1\x3a\xf2\x4f\x04\xaa\xf2\xee\xc8\x71\x68\x54\xd9\xe6\x40\x4e\xc9\xf8\x9b\xcc\xee\xc8\xd7\x4e\x08\x21\x00\x27\xfd\x42\xce\x6b\xcb\x20\x05\xcc\x8f\x70\xc8\xfa\x45\xb3\x4a\xca\xc9\xaa\x5f\xc9\x50\x40\x85\x01\x41\x8a\x6c\x5e\x55\x46\x43\x09\x1c\xc6\xe8\x03\xb9\x0f\x0f\xeb\xd9\xb2\x99\xfc\x44\xfd\xbd\xa1\xb7\x1c\x50\x33\x39\x0f\x52\xbc\xde\xf4\xf4\x5c\xef\xbe\x1a\xbf\x3f\x94\x90\x36\x38\xac\x14\x0f\x9a\xbf\x6a\xc4\x6c\xc7\x68\xe8\xc9\x46\x0e\x65\x6c\x3b\xfe\xe6\x37\xc9\x79\xc2\xf0\x99\x52\x8e\x86\xc3\xf1\xaf\x81\xda\xd3\xcf\x76\x84\x2a\xbe\x14\xea\xb9\xab\x9f\x9f\xf7\xbc\x6d\xad\xff\x15\x99\x46\xa9\x34\xb5\xef\x25\x1b\x85\x00\xb1\x9a\xac\xce\x4d\xee\xfc\x43\x9f\xdf\x1a\x7d\xc0\xb4\xb5\x77\x89\xef\xf4\x56\x0f\x5f\x39\x47\xa8\x9e\x79\xfc\x06\x29\x82\x8b\x54\x40\x4b\xab\x97\x7c\xef\xba\xa5\xfb\x09\x00\x00\xff\xff\x61\xb3\x29\x17\xdb\x02\x00\x00") + +func examplesVolumesGlusterfsGlusterfsPodJsonBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesGlusterfsGlusterfsPodJson, + "examples/volumes/glusterfs/glusterfs-pod.json", + ) +} + +func examplesVolumesGlusterfsGlusterfsPodJson() (*asset, error) { + bytes, err := examplesVolumesGlusterfsGlusterfsPodJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/glusterfs/glusterfs-pod.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesGlusterfsGlusterfsServiceJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\xcb\x31\x0e\xc2\x30\x0c\x85\xe1\x3d\xa7\x78\x7a\x33\x0c\x5d\x73\x0d\x24\x16\xc4\x10\xa5\x06\x45\xd0\x34\x8a\x43\x97\x2a\x77\x47\x4e\x87\x6e\xf6\x6f\x7f\xbb\x03\xf8\x49\x79\xa6\x07\x6f\x52\xb7\x14\x85\x17\x8b\xa1\xa4\xbb\x54\x4d\x6b\xb6\xd3\x36\x1d\x75\x91\x16\xe6\xd0\x02\x3d\x8c\x02\xcc\x61\x11\xfb\x78\x7f\x7f\xda\xa4\xbe\xf4\x1a\x8f\x89\x0e\xe8\x03\x69\x91\x78\x82\xb2\xd6\xa6\xf4\x78\x8c\x15\xd8\x47\xa1\xc7\xd4\x47\x79\x9a\x73\xdd\xfd\x03\x00\x00\xff\xff\x3a\x30\x25\x54\x9b\x00\x00\x00") + +func examplesVolumesGlusterfsGlusterfsServiceJsonBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesGlusterfsGlusterfsServiceJson, + "examples/volumes/glusterfs/glusterfs-service.json", + ) +} + +func examplesVolumesGlusterfsGlusterfsServiceJson() (*asset, error) { + bytes, err := examplesVolumesGlusterfsGlusterfsServiceJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/glusterfs/glusterfs-service.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesIscsiChapSecretYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x31\x6b\xfb\x30\x10\x47\x77\x7d\x8a\x23\xbb\xf4\xe7\x4f\xe8\x22\xc8\xd2\xa1\xa1\x43\x0b\xa5\xd4\x35\x59\xca\xf9\x74\xc4\x22\xb5\x64\x74\x67\x07\xe7\xd3\x17\x93\x86\x66\x08\x6e\x67\xbd\xdf\xd3\xe3\xac\xb5\x06\xfb\x58\x71\x91\x98\x93\x87\xf1\xbf\x39\xc4\x14\x3c\xbc\x32\x15\x56\xd3\xb1\x62\x40\x45\x6f\x00\x12\x76\xec\x81\x5a\xec\xad\x9c\x5f\x75\xea\xd9\xc3\xea\x30\x34\x5c\x12\x2b\x8b\x8b\xf9\x5f\x14\x92\x68\x67\x6c\x05\x60\x2e\xe3\x10\x85\xf2\xc8\x65\x72\xc2\x29\x28\x96\x3d\xab\x38\x1c\xb4\x75\x83\x70\x39\xbb\x43\xfd\xfc\x49\xfb\xcd\x66\x99\xef\x51\xe4\x98\x4b\xf0\xb0\xdb\x56\xda\x1c\x7f\xe3\x2f\xfe\x8f\x98\x3c\x34\x75\x75\xda\xd5\x8f\x7f\xfc\xe2\x7b\x72\xdf\xd2\xfa\x69\x9e\xa4\x1c\xd8\x09\xcb\x7c\xac\x9b\xf1\xdd\x5d\xdb\xbc\xbf\xdd\x46\x7f\xba\x69\xfb\x70\xa2\x75\x18\xa9\x7b\x59\xb6\x5e\x27\x4f\x8b\xd2\xeb\xd2\xc9\x7c\x05\x00\x00\xff\xff\xa0\x19\x8a\x01\xd7\x01\x00\x00") + +func examplesVolumesIscsiChapSecretYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesIscsiChapSecretYaml, + "examples/volumes/iscsi/chap-secret.yaml", + ) +} + +func examplesVolumesIscsiChapSecretYaml() (*asset, error) { + bytes, err := examplesVolumesIscsiChapSecretYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/iscsi/chap-secret.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesIscsiIscsiChapYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xcf\x6a\xf3\x30\x10\xc4\xef\x7a\x8a\x25\x77\x39\x76\xf8\x3e\x0a\x7b\x2b\xf4\x5a\x1a\xda\xd2\xfb\x56\xde\x24\x22\xd6\x9f\x4a\x2b\x93\xbc\x7d\x91\xad\x96\x86\xf6\x22\x98\xf9\xed\x0e\x83\x56\x6b\xad\x28\xda\x37\x4e\xd9\x06\x8f\x30\x0f\xea\x6c\xfd\x88\xb0\x0f\xa3\x72\x2c\x34\x92\x10\x2a\x00\x4f\x8e\x11\x6c\x36\xd9\xc6\x51\xe5\xc8\xa6\xba\x26\x78\x21\xeb\x39\xe5\xaa\xf4\xed\x94\x4e\x41\x01\x00\x58\x47\x47\x46\x38\x97\x77\x4e\x9e\x85\xf3\x36\x52\xc9\xbc\xb0\x39\x4c\xc5\xf1\x63\x28\x5e\x96\x88\x1a\xe2\xaa\xda\x93\x9c\x10\x36\x5b\xe7\x65\xdb\xf2\x36\x0b\xbf\xa9\x32\x87\x49\x7d\x85\xfc\xae\xb0\x52\x58\x05\xb6\x6d\xa1\x74\x64\xd9\x87\x24\x34\x21\x0c\xbb\xbb\xae\xef\xfa\x6e\x68\xd4\x7e\x78\xac\x4f\xb7\xeb\x87\xff\xba\xdf\x75\x7c\x21\x17\x27\xee\x4c\x70\x28\x9c\xa5\xcd\x4d\xc5\x23\xf4\x4d\x1c\xf2\xeb\x35\x32\x02\x5f\xe4\x5f\xb3\x12\xd3\xf8\xe4\xa7\x2b\x82\xa4\xc2\xcd\x34\x27\x8a\xf7\x45\x4e\x0f\x36\x9b\x30\x73\xfa\x9b\xbe\x70\x5e\x6f\xf1\x83\x65\x36\x89\xe5\x99\x0f\x08\xcd\xf9\xfe\x87\xba\xa6\x57\xae\x3e\x03\x00\x00\xff\xff\x27\x6b\xec\x07\xce\x01\x00\x00") + +func examplesVolumesIscsiIscsiChapYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesIscsiIscsiChapYaml, + "examples/volumes/iscsi/iscsi-chap.yaml", + ) +} + +func examplesVolumesIscsiIscsiChapYaml() (*asset, error) { + bytes, err := examplesVolumesIscsiIscsiChapYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/iscsi/iscsi-chap.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesIscsiIscsiYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcd\x4e\xeb\x40\x0c\x85\xf7\xf3\x14\x56\x37\xdd\xdc\x4c\x93\xde\x52\x24\xbf\x03\xa2\x0b\xc4\x06\xb1\x30\x89\x29\xa3\x66\x7e\x18\x3b\x25\xe1\xe9\xd1\xa4\x29\x12\x12\x62\x13\xe9\x9c\xcf\xfe\x1c\x4d\x55\x55\x86\x92\x7b\xe4\x2c\x2e\x06\x84\x73\x63\x4e\x2e\x74\x08\x87\xd8\x19\xcf\x4a\x1d\x29\xa1\x01\x08\xe4\x19\xc1\x49\x2b\x2e\x75\x46\x12\xb7\xa5\x6d\x63\x50\x72\x81\xb3\x94\x54\xfd\x9c\xaa\xf2\x87\x01\x00\x70\x9e\x8e\x8c\x70\x1a\x5e\x38\x07\x56\x96\x4d\xa2\x41\x78\x66\xe7\xd8\x0f\x9e\xef\xe2\x10\x74\x56\x14\x89\x2f\xe9\x40\xfa\x86\xb0\xda\xf8\xa0\x9b\xc5\xb7\x9a\x39\xfc\x76\xe4\xa2\xf9\xf3\x27\x4a\xc4\xc5\xa0\x94\x8f\xac\x87\x98\x95\x7a\x84\xa6\xb6\xb5\xdd\xda\xe6\x06\xff\x6f\xf7\xf5\x32\x92\x66\x28\x08\x4f\xeb\x2b\xdf\xcf\x7c\xfd\x0f\xbe\x9b\xdb\x4b\xf3\xbc\xec\xb8\xf7\x80\xe5\x63\xb7\x75\xdd\x54\xf5\xce\xb6\xd1\x5b\x1e\xc9\xa7\x9e\x51\x34\x66\x3a\xb2\x2d\xcf\x60\x65\x92\xc6\x8e\xd3\xe7\xb2\xd8\x0f\x01\xe1\x7a\xf9\x55\x1e\xa6\xc4\x08\x3c\xea\x6e\xa9\x32\x53\x77\x1f\xfa\x09\x41\xf3\xc0\xe6\x2b\x00\x00\xff\xff\xff\x23\x2b\x76\xb5\x01\x00\x00") + +func examplesVolumesIscsiIscsiYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesIscsiIscsiYaml, + "examples/volumes/iscsi/iscsi.yaml", + ) +} + +func examplesVolumesIscsiIscsiYaml() (*asset, error) { + bytes, err := examplesVolumesIscsiIscsiYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/iscsi/iscsi.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesNfsNfsBusyboxRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x52\xc1\x6a\xdb\x40\x10\xbd\xeb\x2b\x1e\x71\x4a\x12\x8a\x13\x5a\xc8\x45\x81\x40\x49\x2f\x3d\xc4\x35\xa1\xe4\xbe\x96\xc6\xd5\xd2\xdd\x19\xb1\x33\xb2\xe3\xbf\x2f\xbb\x6a\x14\xd9\xf5\xde\x66\xe7\xbd\x37\x33\x8f\xb7\xc0\xaf\xce\x2b\xa2\x0c\x6c\x0a\xeb\x08\xbc\x55\xec\x24\x0c\x91\xd0\x04\xe7\x23\x3c\x9b\xe0\x2e\xb2\xc1\x71\x8b\x46\xd8\x3c\x0f\x32\x68\x38\x54\x0b\xc8\x8e\xd2\x3e\x79\x23\x2d\x90\x3b\xcf\x2d\xbd\xdd\x76\x16\x03\xf6\xde\xba\xa2\x68\x3e\x52\xe1\x76\xa2\xc6\x2e\x12\x64\x5b\x1a\xbd\xb4\xb7\x55\xe5\x7a\xff\x4a\x49\xbd\x70\x8d\xdd\x97\xea\x8f\xe7\xb6\xc6\x0b\xf5\xc1\x37\xce\xbc\xf0\x93\xb0\x25\x09\x81\x52\x15\xc9\x5c\xeb\xcc\xd5\x15\x90\x85\xea\xbc\xed\x72\x33\xe8\x61\x23\x6f\x95\xf6\xd4\xe4\x4e\x1a\xb9\x5a\xe3\x6b\x05\x28\x05\x6a\x4c\x52\xee\x9c\x63\x01\x46\xb1\x0f\xce\x68\x44\xcc\x67\xe4\x17\xdc\x86\x82\xbe\x57\xe7\x15\x80\xf7\xd9\xf9\x65\x8b\x9c\x67\x4a\x13\x6b\x09\x1f\xdd\x6f\xaa\x31\xa7\x8c\xd0\x18\x1d\xb7\x1f\xea\x19\xab\xdd\x51\xb9\x6c\x8e\xca\xab\x7d\xe7\x03\xc1\xd2\x40\x0f\x68\x05\xad\x33\xc2\xe3\xa9\xfb\x0f\x1f\x66\x3f\x9e\x69\x6a\x20\xea\x71\x79\x7d\x7d\xf9\xf2\x6d\xf5\xfd\xe7\x33\x3e\xe1\x1e\x9f\x71\x7f\x73\x93\x35\x99\xae\xa6\x91\x65\xf1\xf5\x10\xc2\x5a\x82\x6f\x0e\x35\x7e\x6c\x57\x62\xeb\x44\x4a\x6c\x27\xa6\x9c\x5e\x37\xc6\xe8\xb9\x64\x6b\x7e\xe2\xa2\xe0\x11\x07\x35\x44\x67\xcd\x18\x93\x7f\xa1\x2b\xad\x0d\x05\xd9\x1f\x9d\x3d\xd9\x3e\xfb\xc5\x98\xdb\xb5\xb3\xae\xc6\x45\x3e\xf2\xa2\x9a\x4f\x9e\xf9\xff\x3f\xbd\xcf\x99\x53\x23\xb6\xd7\x02\x7e\xca\x61\x9f\x6f\x59\xd2\xbf\x9a\x78\x7f\x03\x00\x00\xff\xff\xe1\x8e\xeb\xc7\x2a\x03\x00\x00") + +func examplesVolumesNfsNfsBusyboxRcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesNfsNfsBusyboxRcYaml, + "examples/volumes/nfs/nfs-busybox-rc.yaml", + ) +} + +func examplesVolumesNfsNfsBusyboxRcYaml() (*asset, error) { + bytes, err := examplesVolumesNfsNfsBusyboxRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/nfs/nfs-busybox-rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesNfsNfsDataDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x5f\x6f\xdb\x38\x10\xc4\xdf\xf9\x29\x06\x12\x10\xdc\x01\xb6\x64\x1b\x46\x70\x7f\x9e\x74\xb1\x83\x13\x92\x93\x02\xcb\xb9\x34\x28\x8a\x82\xa6\xd6\x12\x51\x8a\x64\x49\xaa\xb6\xbf\x7d\x21\xc5\xa9\x9b\x46\x2f\x02\x77\x67\x87\xbf\x59\xc6\xb8\x31\xf6\xe4\x64\xd3\x06\x2c\x66\xf3\x6b\x6c\x5b\xc2\x5d\xbf\x23\xa7\x29\x90\x47\xd6\x87\xd6\x38\x9f\xb0\x98\xc5\xb8\x97\x82\xb4\xa7\x1a\xbd\xae\xc9\x21\xb4\x84\xcc\x72\xd1\xd2\x6b\x67\x82\xff\xc9\x79\x69\x34\x16\xc9\x0c\xbf\x0d\x82\xe8\xdc\x8a\x7e\xff\x9b\xc5\x38\x99\x1e\x1d\x3f\x41\x9b\x80\xde\x13\x42\x2b\x3d\xf6\x52\x11\xe8\x28\xc8\x06\x48\x0d\x61\x3a\xab\x24\xd7\x82\x70\x90\xa1\x1d\xaf\x39\x9b\x24\x2c\xc6\xf3\xd9\xc2\xec\x02\x97\x1a\x1c\xc2\xd8\x13\xcc\xfe\x67\x1d\x78\x18\x81\x87\xaf\x0d\xc1\xfe\x95\xa6\x87\xc3\x21\xe1\x23\x6c\x62\x5c\x93\xaa\x17\xa1\x4f\xef\xf3\x9b\x75\x51\xad\xa7\x8b\x64\x36\x8e\x3c\x6a\x45\xde\xc3\xd1\xd7\x5e\x3a\xaa\xb1\x3b\x81\x5b\xab\xa4\xe0\x3b\x45\x50\xfc\x00\xe3\xc0\x1b\x47\x54\x23\x98\x81\xf7\xe0\x64\x90\xba\x99\xc0\x9b\x7d\x38\x70\x47\x2c\x46\x2d\x7d\x70\x72\xd7\x87\x37\xcb\x7a\xa5\x93\xfe\x8d\xc0\x68\x70\x8d\x28\xab\x90\x57\x11\xfe\xc9\xaa\xbc\x9a\xb0\x18\x4f\xf9\xf6\xdf\xf2\x71\x8b\xa7\x6c\xb3\xc9\x8a\x6d\xbe\xae\x50\x6e\x70\x53\x16\xab\x7c\x9b\x97\x45\x85\xf2\x16\x59\xf1\x8c\xbb\xbc\x58\x4d\x40\x32\xb4\xe4\x40\x47\xeb\x06\x7e\xe3\x20\x87\x35\x52\x3d\xec\xac\x22\x7a\x03\xb0\x37\x2f\x40\xde\x92\x90\x7b\x29\xa0\xb8\x6e\x7a\xde\x10\x1a\xf3\x8d\x9c\x96\xba\x81\x25\xd7\x49\x3f\x3c\xa6\x07\xd7\x35\x8b\xa1\x64\x27\x03\x0f\x63\xe5\x5d\xa8\x84\xb1\xdb\x4d\xf9\x1f\x04\xe9\x60\x3c\xdb\x3c\x16\x38\xf5\x1d\xa6\x27\x48\xed\x03\x57\x0a\x69\xef\x5d\xba\x93\x3a\xb5\x1e\x7a\xef\xa7\x7d\x90\xca\xe3\xea\x6a\xd4\x09\x45\x5c\x83\x2b\x35\x4e\x76\x5f\x6a\xe9\x30\xb5\x48\xe9\x68\x8d\x0b\x9e\x65\xab\x15\x5c\xaf\x3f\xeb\xbd\x4f\x7c\xfb\xe2\xa5\x8c\xe0\x6a\x74\x1c\xdb\x52\xd7\x74\x4c\xda\xd0\x29\xa4\xa1\xb3\xe9\xe5\x3c\x7a\x8a\xb6\x33\x35\xae\x97\xcb\x77\x5d\x16\x0f\x6b\x33\x9e\xd0\x99\x5e\x87\x1a\x8b\xd9\x6c\xf9\x47\x1a\x84\x1d\x82\x0f\xac\x43\x69\xf9\xe7\x8f\x8a\xb3\x62\x27\x75\x8d\xf9\x7c\x3e\xd4\xd8\xfa\xc3\x43\x59\xad\x2f\x9a\xcb\xfc\x59\x31\xfe\xfb\xda\x32\xb6\x2e\xb6\x9b\xe7\x87\x32\x2f\xb6\xf8\x18\xfd\x92\xe2\x92\x2f\x9a\x20\x7a\x8d\x1e\x7d\x62\xdf\x03\x00\x00\xff\xff\xdb\x0e\xc6\x54\xa5\x03\x00\x00") + +func examplesVolumesNfsNfsDataDockerfileBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesNfsNfsDataDockerfile, + "examples/volumes/nfs/nfs-data/Dockerfile", + ) +} + +func examplesVolumesNfsNfsDataDockerfile() (*asset, error) { + bytes, err := examplesVolumesNfsNfsDataDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/nfs/nfs-data/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesNfsNfsDataIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xf2\x48\xcd\xc9\xc9\x57\x28\xcf\x2f\xca\x49\x51\xe4\x02\x04\x00\x00\xff\xff\x41\xe4\xa9\xb2\x0d\x00\x00\x00") + +func examplesVolumesNfsNfsDataIndexHtmlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesNfsNfsDataIndexHtml, + "examples/volumes/nfs/nfs-data/index.html", + ) +} + +func examplesVolumesNfsNfsDataIndexHtml() (*asset, error) { + bytes, err := examplesVolumesNfsNfsDataIndexHtmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/nfs/nfs-data/index.html", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesNfsNfsDataRun_nfsSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x55\x61\x6f\xdb\x36\x10\xfd\xae\x5f\xf1\x26\xfb\x43\x32\xd8\x92\xec\xa6\x1b\x90\xa0\xdd\xbc\x36\xe9\x8c\x76\x0e\x10\xb9\x2d\x8a\x61\x28\x68\xf2\x64\x11\x95\x49\x96\xa4\x22\x1b\xc3\xfe\xfb\x40\x2a\x76\xe2\x24\xf5\x27\x83\xf7\xee\xee\xdd\x7b\x3c\x6a\xf0\x53\xbe\x92\x2a\x5f\x31\x57\x27\xc9\x00\x6f\xb4\xd9\x59\xb9\xae\x3d\xa6\xc5\xe4\x25\x96\x35\xe1\x7d\xbb\x22\xab\xc8\x93\xc3\xac\xf5\xb5\xb6\x2e\x4b\x06\xc9\x00\x1f\x24\x27\xe5\x48\xa0\x55\x82\x2c\x7c\x4d\x98\x19\xc6\x6b\xda\x47\x46\xf8\x44\xd6\x49\xad\x30\xcd\x0a\x9c\x04\x40\x7a\x17\x4a\x4f\x2f\x92\x01\x76\xba\xc5\x86\xed\xa0\xb4\x47\xeb\x08\xbe\x96\x0e\x95\x6c\x08\xb4\xe5\x64\x3c\xa4\x02\xd7\x1b\xd3\x48\xa6\x38\xa1\x93\xbe\x8e\x6d\xee\x8a\x64\xc9\x00\x5f\xee\x4a\xe8\x95\x67\x52\x81\x81\x6b\xb3\x83\xae\x1e\xe2\xc0\x7c\x24\x1c\x7e\xb5\xf7\xe6\x3c\xcf\xbb\xae\xcb\x58\x24\x9b\x69\xbb\xce\x9b\x1e\xe8\xf2\x0f\xf3\x37\x97\x8b\xf2\x72\x3c\xcd\x8a\x98\xf2\x51\x35\xe4\x1c\x2c\x7d\x6f\xa5\x25\x81\xd5\x0e\xcc\x98\x46\x72\xb6\x6a\x08\x0d\xeb\xa0\x2d\xd8\xda\x12\x09\x78\x1d\xf8\x76\x56\x7a\xa9\xd6\x23\x38\x5d\xf9\x8e\x59\x4a\x06\x10\xd2\x79\x2b\x57\xad\x3f\x12\x6b\xcf\x4e\xba\x23\x80\x56\x60\x0a\xe9\xac\xc4\xbc\x4c\xf1\xc7\xac\x9c\x97\xa3\x64\x80\xcf\xf3\xe5\x9f\xd7\x1f\x97\xf8\x3c\xbb\xb9\x99\x2d\x96\xf3\xcb\x12\xd7\x37\x78\x73\xbd\x78\x3b\x5f\xce\xaf\x17\x25\xae\xaf\x30\x5b\x7c\xc1\xfb\xf9\xe2\xed\x08\x24\x7d\x4d\x16\xb4\x35\x36\xf0\xd7\x16\x32\xc8\x48\x22\x68\x56\x12\x1d\x11\xa8\x74\x4f\xc8\x19\xe2\xb2\x92\x1c\x0d\x53\xeb\x96\xad\x09\x6b\x7d\x4b\x56\x49\xb5\x86\x21\xbb\x91\x2e\x98\xe9\xc0\x94\x48\x06\x68\xe4\x46\x7a\xe6\xe3\xc9\x93\xa1\xb2\x24\xa9\x5a\xc5\x43\x14\xce\x33\xeb\x4f\x4e\x93\x7f\x93\x24\x38\x30\x80\xb1\x64\x98\x25\xe4\xe4\x79\x4e\x5b\xa3\xad\x77\x31\x14\x88\xc8\x20\x62\x3a\xfc\x3d\xbd\x80\xd0\xf1\xb4\x4f\xaa\x9c\x14\xaf\x8a\x73\x28\x22\x41\x22\x42\x17\x57\xe5\xed\xd9\x01\x42\xbc\xd6\x48\x87\x12\x3f\x9f\xd8\x6e\xd4\xc3\x47\x52\x39\xe2\xad\xa5\x91\xd2\x5f\xad\xd6\xfe\xab\xfb\xde\x32\x57\x9f\xa6\x78\xfd\xfa\x69\xff\xbe\xd3\x46\xdf\x12\xa4\x12\xb4\xcd\x6a\xbf\x69\x82\xaf\x35\x59\x3a\x20\xe2\xbe\x70\x83\xdc\x6f\x4c\xfe\x00\x37\x94\xf9\x01\xc3\xeb\x8d\x16\xf8\xe5\xec\x2c\x9c\xde\x63\x1e\x91\x2d\xc9\xde\x06\x71\x87\x32\x8d\x11\xa1\x55\x68\x73\x27\x53\xd4\x0d\xd6\xf0\x95\x54\x02\xb2\x82\xf4\xe1\xae\x84\x65\x89\x21\x12\xd8\x91\x8f\xe0\xbc\x75\x36\x77\x81\x97\x35\x5c\xaa\x4a\x63\x32\xfd\x35\x2b\xb2\x22\x9b\xe0\x35\x72\x41\xb7\xb9\x6a\x9b\xe6\x02\xee\xd5\xf0\xb7\x98\x21\x2b\xfc\x8d\xa1\xc3\x58\x11\x0a\xfc\x73\x11\xcc\x53\xc9\x31\xbb\xd0\x24\xd0\xbb\xa3\x90\xee\xc3\x47\xdd\x22\xb9\x71\xd7\xfb\x27\x7b\x8b\x37\xba\x55\x1e\x63\x0f\x55\x39\x01\x55\x09\x87\xdc\x58\xcd\xf3\xca\xe5\xe1\x68\x7f\x11\xc6\x0b\x9c\x65\xdb\xf3\x70\xfd\xe3\x3e\xdd\x1b\x3a\xc0\xf8\x13\x5e\x9c\x83\xd4\x21\xf0\xe2\xe9\xa4\x59\x6c\x24\x42\x9d\x69\x4c\x88\x15\xfb\xb2\x93\xe4\x11\xbe\x37\xba\x72\x18\xdb\x7d\x8b\x77\x98\x14\xc1\x5e\x4b\xa2\xe5\x84\xb5\x65\x9c\xe0\xe5\x86\xc2\xe1\xa4\x80\x23\xae\x95\x70\xfd\xd3\xd5\xe8\x8e\x9c\x07\x6b\xc2\x1f\x71\xfa\x0c\x9b\x38\x6d\x5f\xf4\x59\x46\x98\x3e\x93\xe4\x3c\x0b\x13\x8c\x95\x1e\x2b\xed\x65\xb5\x4b\xee\x1d\x58\x5c\x95\x7b\xab\xd3\xe4\xbf\xa3\x95\xd2\x26\x6e\xd4\x43\xb7\xb4\x31\xc1\xad\xc5\x55\x99\x3e\x9e\xfd\xc0\xae\xf8\xa1\x28\xac\xfd\x61\xa8\xea\xcb\x7d\x93\x4d\x83\xe1\x09\x8c\x14\xba\xc2\x03\xf9\x7b\x2d\xda\xde\xf5\x63\xa3\x0f\xfc\x9e\xd9\x36\xda\x4a\x8f\x22\xcc\x95\x78\xcb\x4c\x1c\x0a\xcb\xcb\x9b\xbf\x92\xa4\xbf\xfa\xe1\x15\x08\xdf\xa4\x8f\xeb\x66\x87\x9a\xf1\x6f\xc1\x16\xa1\xc3\x06\xd4\x61\x52\xa6\x04\x3a\x26\x7d\x7c\x0c\xca\xf9\xbb\x98\xdb\xd5\xe1\xfb\xe1\x6d\x4b\x87\x07\xc4\x35\x44\x06\x2f\x93\xb8\x5e\xff\x07\x00\x00\xff\xff\xff\xfe\x43\x45\xf0\x06\x00\x00") + +func examplesVolumesNfsNfsDataRun_nfsShBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesNfsNfsDataRun_nfsSh, + "examples/volumes/nfs/nfs-data/run_nfs.sh", + ) +} + +func examplesVolumesNfsNfsDataRun_nfsSh() (*asset, error) { + bytes, err := examplesVolumesNfsNfsDataRun_nfsShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/nfs/nfs-data/run_nfs.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesNfsNfsPvYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\xcc\xb1\x4e\x03\x31\x10\x84\xe1\xde\x4f\x31\x0a\x35\x07\x87\xae\xda\x1e\xa4\x14\x27\x45\x14\x81\x76\xe5\x9b\xe4\x2c\x38\xdb\xf2\x6e\x22\xf2\xf6\xc8\x84\x6e\xf4\x8d\xf4\x6b\x4d\x47\x36\x4b\x25\x0b\xae\x63\xf8\x4a\x79\x11\x1c\xba\x98\x33\xfb\xb1\x7c\x5f\x36\x86\x8d\xae\x8b\xba\x4a\x00\xb2\x6e\x14\xe4\x93\x05\xab\x8c\x5d\xa2\x56\x8d\xc9\x6f\x7d\x03\xe6\xa5\xe9\x99\x82\x71\x4e\x01\xd0\x18\x69\x36\x97\x85\x76\xff\x1f\xf1\x4e\x5d\x3e\x5a\x72\xce\x9a\x6f\xbd\x78\xfa\xbf\x1e\xf0\xb6\xff\x9c\x5f\x05\x17\x23\x7c\x25\x5a\x3a\xaf\x8e\xfd\xe1\x1e\x66\xbb\xb2\x09\xc6\xe7\xe1\x65\x9a\x86\x71\x98\xfe\xb8\xaa\xaf\x82\xdd\x13\x7f\x6a\x69\x6e\xbb\xf0\x1b\x00\x00\xff\xff\xa9\x8a\x32\x51\xd3\x00\x00\x00") + +func examplesVolumesNfsNfsPvYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesNfsNfsPvYaml, + "examples/volumes/nfs/nfs-pv.yaml", + ) +} + +func examplesVolumesNfsNfsPvYaml() (*asset, error) { + bytes, err := examplesVolumesNfsNfsPvYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/nfs/nfs-pv.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesNfsNfsPvcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xca\xb1\x0e\xc2\x30\x0c\x84\xe1\x3d\x4f\x71\x2f\xc0\xd0\x35\x2b\x73\x25\xc4\x50\x66\x2b\x39\x50\x44\xe3\x14\xdb\x45\xe2\xed\x51\x25\x18\xbf\xbb\xff\xd9\xb4\x66\x5c\x68\xde\x3c\xa8\xb1\x8c\x75\xef\x3c\xaf\xd2\x7a\x92\xad\x2d\xc7\x31\x34\xe3\x3d\xa5\xce\x90\x2a\x21\x39\x01\x2a\x9d\x19\x7a\xf7\xe4\x1b\xcb\xb1\x48\x29\x74\x9f\x47\xa5\x1f\x04\x4e\xb8\x52\xea\xcd\x5a\x70\x16\xfd\x24\xc0\xe8\x63\xb7\xf2\x0f\x8c\xaf\x9d\x1e\x3f\x01\x1e\xc3\xe4\xc1\x8c\x69\x6e\xe9\x1b\x00\x00\xff\xff\x4c\x46\x14\x73\x98\x00\x00\x00") + +func examplesVolumesNfsNfsPvcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesNfsNfsPvcYaml, + "examples/volumes/nfs/nfs-pvc.yaml", + ) +} + +func examplesVolumesNfsNfsPvcYaml() (*asset, error) { + bytes, err := examplesVolumesNfsNfsPvcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/nfs/nfs-pvc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesNfsNfsServerRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x31\x6e\xeb\x30\x0c\x86\x77\x9f\x82\x17\x70\x12\x3f\x64\x78\xd5\x9a\xb9\x45\xd0\x21\xbb\x22\xb3\x2e\x51\x49\x14\x28\xda\x48\x6e\x5f\xc8\x69\x1c\xbb\x35\xa2\xcd\x22\xbf\x5f\x1f\x2d\xd9\x44\x27\x94\x4c\x1c\x0d\x0c\x4d\xf5\x45\xb1\x35\xf0\x8e\xc9\x93\xb3\x4a\x1c\x0f\x1c\x55\xd8\x7b\x94\x2a\xa0\xda\xd6\xaa\x35\x15\x40\xb4\x01\x0d\xc4\x8f\x5c\x67\x94\x01\xa5\xca\x09\x5d\x29\xc8\x0d\xcd\x06\x9a\x0a\x20\xa3\x47\xa7\x2c\xa5\x02\x20\xec\x97\x10\x80\x62\x48\xde\x2a\xde\x1a\xe6\x27\x94\xe5\xed\x19\x7d\xbe\x7f\xad\x06\x00\xdc\x4f\x2e\xcb\x71\x54\x4b\x11\x65\x82\xea\xbf\xaa\xf7\x34\x0a\xb6\x43\x03\x9d\x93\x0d\xf1\xb6\x63\xee\x3c\xd6\xd9\x86\xe4\x31\x6f\x1f\xfd\xa6\xd9\x34\x13\x93\x58\x74\x26\xb4\xc8\x9f\xed\xce\x4c\x8e\x2c\x6a\xe0\xdf\x6e\xff\xb2\x42\x05\xee\xa3\xb6\xcf\xc1\xdd\xfe\xff\x0a\x29\xc9\x9d\x29\x3e\x45\x9b\xe6\xe1\x9d\xd1\xf5\x42\x7a\x2d\xd7\x89\x17\x9d\x4f\x90\x84\x06\xf2\xd8\x61\x6b\x40\xa5\xc7\xa9\x34\xb0\xef\x03\xbe\x16\xc5\x5f\x23\x8f\xda\x47\xab\x9f\x06\xb6\x78\x19\xff\xc9\x42\xe4\x67\xb8\x6b\x1a\x5c\x35\xcf\x9a\xc5\xd4\x2b\x4d\xa3\x4d\x79\x8c\x59\x31\xea\x69\x44\x0e\xde\x52\x30\xcb\x31\xcb\xd6\xdb\x74\xab\x69\xa8\x93\xf0\x40\xe5\x0d\x53\xec\xea\x16\x03\x57\xdf\x01\x00\x00\xff\xff\x0b\x7c\x3d\x77\xd7\x02\x00\x00") + +func examplesVolumesNfsNfsServerRcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesNfsNfsServerRcYaml, + "examples/volumes/nfs/nfs-server-rc.yaml", + ) +} + +func examplesVolumesNfsNfsServerRcYaml() (*asset, error) { + bytes, err := examplesVolumesNfsNfsServerRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/nfs/nfs-server-rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesNfsNfsServerServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xce\x41\xaa\x03\x21\x0c\xc6\xf1\xbd\xa7\xc8\x05\x06\xc6\xc7\x2c\x5e\xbd\x46\xa1\x7b\xab\x5f\x41\x3a\x46\x49\x52\xcf\x5f\xa6\xb3\x28\x76\x97\xf0\xff\x41\xf2\x2c\x9c\x03\x5d\x21\xa3\x24\xb8\xd8\xcb\x0d\xa2\xa5\x71\xa0\xe1\x5d\x85\xc5\x1c\x2d\x06\x47\xc4\xb1\x22\x10\x3f\x74\x51\xc8\x80\x38\xed\x48\x47\xe8\x4d\x4c\x8f\x81\x68\xf9\xaa\xcf\x7e\xc6\x40\x7f\xeb\x76\x99\x40\x6d\x2f\xb6\xfc\x63\xd6\xed\x7f\x42\xd2\xd3\xbd\xf0\xac\xbc\xf7\x8e\x48\xb1\x23\x59\x93\xf3\xaa\xb4\x7d\xfe\xec\x1d\x00\x00\xff\xff\x45\x68\x1e\xd1\xd4\x00\x00\x00") + +func examplesVolumesNfsNfsServerServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesNfsNfsServerServiceYaml, + "examples/volumes/nfs/nfs-server-service.yaml", + ) +} + +func examplesVolumesNfsNfsServerServiceYaml() (*asset, error) { + bytes, err := examplesVolumesNfsNfsServerServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/nfs/nfs-server-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesNfsNfsWebRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\x4f\xef\xd3\x30\x0c\xbd\xe7\x53\x3c\x6d\xe7\x52\xe0\x84\x72\xdd\x19\x34\x21\xb4\xbb\xdb\x7a\x6b\x44\xe2\x44\x89\xbb\xf1\xf1\x51\xda\xad\xb4\x62\xbf\xdc\x62\xfb\xfd\x91\x9f\x8f\xf8\x35\xba\x82\x14\x07\x84\x38\x89\x16\xe8\xc8\x90\x6b\xc1\x3d\xfa\x29\x30\x7a\x4f\x2e\xc0\x89\x46\xb4\x53\xc9\x6d\x19\x29\x73\x2b\x37\x27\x7f\xda\x51\x83\x07\xc9\x60\x8e\x28\x9c\xef\x5c\x40\x28\x2e\x24\xcf\x78\x70\x87\x44\x37\xfe\x64\x0c\x25\x77\xe1\x5c\x5c\x14\x8b\xfb\x17\xf3\xdb\xc9\x60\xf1\x93\x93\x77\x3d\xa9\x8b\x72\x8a\xa2\x39\x7a\xcf\xd9\x04\x56\x1a\x48\xc9\x1a\x40\x28\xb0\xad\x4e\x9a\x07\x77\xa6\x24\xee\x6b\x35\x2f\xb8\x62\xf1\xd5\x00\x85\x3d\xf7\x1a\x73\xed\x00\x39\x7a\xb6\x55\xb9\xb9\xe6\x28\xca\x32\x18\x40\x39\x24\x4f\xca\xcb\xc8\x56\xa0\x3e\x4f\x1d\xfb\xf2\xfa\x7d\x40\x01\xbc\xd4\xeb\xeb\xa3\x28\x39\xe1\xbc\xc2\x9a\xa7\xd7\xea\xf3\x45\xe4\x02\xdd\xaa\xfd\xba\xa7\xb5\x98\x62\xd6\x8d\xd8\x7b\xe4\x4e\xe3\x1c\xb3\x5a\x7c\xfb\xbc\x76\x97\x54\xbe\xcf\x51\xd9\x1d\xe6\x38\x73\x21\x4c\x45\x11\x48\xfb\x71\x4e\xf2\x99\xe2\xdc\xea\xd8\xc7\xc7\x0e\xd3\xfc\xdb\xf2\xae\x8e\xe5\x18\xce\xa4\xa3\xc5\xe1\x6d\xee\x07\xb3\x35\xf4\xdf\x2e\xb6\x8c\xa9\xa6\x5f\x94\x45\x2f\xf3\xf0\xa9\x9e\xd4\xd6\xfc\x7c\x63\x3f\x56\xdc\xdf\x00\x00\x00\xff\xff\x48\xf4\xa0\x90\x94\x02\x00\x00") + +func examplesVolumesNfsNfsWebRcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesNfsNfsWebRcYaml, + "examples/volumes/nfs/nfs-web-rc.yaml", + ) +} + +func examplesVolumesNfsNfsWebRcYaml() (*asset, error) { + bytes, err := examplesVolumesNfsNfsWebRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/nfs/nfs-web-rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesNfsNfsWebServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x24\x89\xcd\x09\xc3\x30\x0c\x85\xef\x9a\xe2\x2d\x60\x68\x6f\x45\x6b\x14\x7a\x77\xec\x17\x30\x4d\x64\x23\x8b\x64\xfd\x92\xe6\xf6\xfd\x7c\x9b\x55\xc5\x9b\x7e\xb4\x42\xc9\xa3\x7d\xe8\xb3\x75\x53\x1c\x4f\xd9\x19\xb9\xe6\xc8\x2a\x80\xe5\x9d\x0a\x5b\x67\x3a\xb9\xc8\x1c\x2c\x57\x1d\xdd\x63\x5e\x00\xa4\xbf\x28\x5e\x0f\x01\x26\x37\x96\xe8\x7e\x2f\xef\x1b\x15\x27\x97\xb4\x7a\xb7\xa0\x55\xf9\x05\x00\x00\xff\xff\xe1\xbb\x02\xc2\x78\x00\x00\x00") + +func examplesVolumesNfsNfsWebServiceYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesNfsNfsWebServiceYaml, + "examples/volumes/nfs/nfs-web-service.yaml", + ) +} + +func examplesVolumesNfsNfsWebServiceYaml() (*asset, error) { + bytes, err := examplesVolumesNfsNfsWebServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/nfs/nfs-web-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesNfsProvisionerNfsServerGcePvYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8d\xb1\x4e\xc4\x30\x10\x44\x7b\x7f\xc5\xe8\xfa\x84\x83\xd2\x2d\x05\x15\x02\x51\x1c\x05\xa2\xd8\x73\x86\xc3\x3a\x67\x1d\xbc\x9b\x48\xfc\x3d\x32\x4a\x79\xe5\x8e\xde\xbe\x27\x4b\x3e\xb1\x59\xae\x1a\xb1\xdd\x87\x6b\xd6\x29\xe2\xb5\x2f\xe6\x54\x3f\xd5\xb2\xce\x7c\x2c\x92\xe7\x30\xd3\x65\x12\x97\x18\x00\x95\x99\x11\xfa\x65\xc3\xb2\x0d\x4b\xab\x5b\xee\x8a\xac\x97\x61\xe2\x5c\x03\x50\xe4\xcc\x62\x1d\x05\xfa\x74\x13\x0e\x80\xa8\x56\x17\xcf\x55\x77\x78\xfb\x2f\x8e\x52\x96\x6f\x19\xaf\xeb\x99\x4d\xe9\xb4\x31\xd7\x3b\xf3\xda\xe4\xc2\x21\x15\x31\x8b\x10\xfd\x0d\xb6\x30\xf5\x3f\x49\x89\x66\xcf\x75\xa2\x45\x7c\xe0\xf0\x46\x99\xde\x5b\x76\xbe\x68\xe2\x01\x9f\x01\x68\xb4\xba\xb6\xc4\xbd\xd3\xf8\xb3\xd2\x7c\xbf\x80\x5d\x1e\xf1\x70\x3c\x3e\xe5\xf0\x17\x00\x00\xff\xff\x26\x0f\xae\xf1\x18\x01\x00\x00") + +func examplesVolumesNfsProvisionerNfsServerGcePvYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesNfsProvisionerNfsServerGcePvYaml, + "examples/volumes/nfs/provisioner/nfs-server-gce-pv.yaml", + ) +} + +func examplesVolumesNfsProvisionerNfsServerGcePvYaml() (*asset, error) { + bytes, err := examplesVolumesNfsProvisionerNfsServerGcePvYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/nfs/provisioner/nfs-server-gce-pv.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesPortworxPortworxVolumePodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x6e\xc3\x30\x0c\x44\x77\x7d\xc5\x21\x9d\x1d\x23\xab\xe6\x2e\x1d\x0a\x78\x28\xb2\x16\xac\x45\x38\x42\x2d\xd1\x10\x69\x27\xfd\xfb\xc2\xb2\x9b\x22\x40\x36\x51\x7c\x7c\x77\x34\xc5\x33\x17\x8d\x92\x3d\x96\x93\xfb\x8e\x39\x78\x74\x12\x5c\x62\xa3\x40\x46\xde\x01\x99\x12\x7b\x18\xab\x35\x93\x14\xbb\x4a\xb9\x35\x8b\x8c\x73\xe2\x66\x92\xe0\x74\xe2\x7e\xc5\x7a\xc9\x46\x31\x73\xd1\x75\x6a\x10\x13\x0d\xec\x31\xf4\xe5\x18\xa5\x1d\x44\x86\x91\x3f\xff\xa1\xb6\x0a\xaf\xfc\xa5\x5c\x16\x2e\x0e\x78\x48\xba\x83\x75\xb1\xc5\xbd\xcb\x9c\xad\xda\x57\x7f\x5a\xa7\x8e\xec\xe2\xd1\x3e\x2b\x57\xb1\x07\xe7\xfd\x7f\x7b\xec\x3d\x9f\x01\xc0\x0b\x3e\x2e\x51\xd1\xed\xce\xfd\x04\x69\x56\x03\x8d\x85\x29\xfc\x80\x6f\x51\xed\x58\xf1\xbf\xec\x73\xc5\xfc\x9e\xbd\x1d\xbd\xbd\x7a\x1c\x16\x19\x4f\x07\xf7\x1b\x00\x00\xff\xff\x93\x91\x28\x4e\x70\x01\x00\x00") + +func examplesVolumesPortworxPortworxVolumePodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesPortworxPortworxVolumePodYaml, + "examples/volumes/portworx/portworx-volume-pod.yaml", + ) +} + +func examplesVolumesPortworxPortworxVolumePodYaml() (*asset, error) { + bytes, err := examplesVolumesPortworxPortworxVolumePodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/portworx/portworx-volume-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesPortworxPortworxVolumePvYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8e\x3f\x6b\xc4\x30\x0c\x47\x77\x7f\x8a\x1f\xd9\x0b\x49\x47\xcf\x85\xd2\xa1\x34\x64\x48\x67\x21\x8b\x22\x1a\xff\xc1\x56\xd3\xcb\xb7\x3f\x7c\xde\x6e\x7b\x3c\x3d\x24\x51\xd1\x5d\x6a\xd3\x9c\x3c\xce\xc5\xfd\x6a\x0a\x1e\x6b\x37\xcd\x24\xd9\x9e\x8f\xbf\x28\x2e\x8a\x51\x20\x23\xef\x80\x44\x51\x3c\xca\x39\xcf\xf3\xe2\x5a\x11\xee\x92\xa9\x10\xab\x5d\x9d\x81\x66\xb9\xd2\x8f\x78\xbc\xbe\xab\x03\x88\x59\x5a\xfb\xcc\x41\xda\x98\xbf\x60\x13\x0a\xdf\x55\x4d\xbe\x12\x8b\x03\xca\xd3\xc5\x4d\xf8\x20\x8d\x6b\x3e\x94\x2f\x8f\x4d\x8c\x34\xf5\x2e\x57\xfb\xcf\xf5\x36\xaa\xb1\xed\x7c\xf0\xc7\x9b\xc7\x34\xbe\x9a\xdc\x3d\x00\x00\xff\xff\xa2\xcc\xb0\x39\xd6\x00\x00\x00") + +func examplesVolumesPortworxPortworxVolumePvYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesPortworxPortworxVolumePvYaml, + "examples/volumes/portworx/portworx-volume-pv.yaml", + ) +} + +func examplesVolumesPortworxPortworxVolumePvYaml() (*asset, error) { + bytes, err := examplesVolumesPortworxPortworxVolumePvYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/portworx/portworx-volume-pv.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesPortworxPortworxVolumePvcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xca\x31\xae\xc2\x30\x10\x84\xe1\xde\xa7\x98\x0b\x3c\x29\x79\xa5\x5b\x0a\x2a\x04\xa2\x08\xf5\xca\x1e\x21\x8b\xd8\x0e\xbb\x9b\x9c\x1f\x59\x82\xf2\x9b\xf9\x5f\xa5\xe5\x88\x1b\xd5\x8a\x39\x9b\x2f\x7d\xdd\x2b\x4f\xab\x94\x1a\x64\x2b\xcb\x38\x7a\x8b\x38\xe6\x50\xe9\x92\xc5\x25\x06\xa0\x49\x65\xc4\x76\xa4\x69\x9a\xe6\x60\x1b\xd3\x58\x25\x25\x9a\x5d\x7a\xa6\x0d\x02\x7f\xb8\x53\xf2\x43\x8b\xf3\xda\x12\x03\xa0\xb4\xbe\x6b\xfa\x05\xca\xf7\x4e\xf3\xaf\x00\xf3\xae\xf2\x64\xc4\xff\xb9\x7c\x02\x00\x00\xff\xff\xce\x28\xae\xfa\x9b\x00\x00\x00") + +func examplesVolumesPortworxPortworxVolumePvcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesPortworxPortworxVolumePvcYaml, + "examples/volumes/portworx/portworx-volume-pvc.yaml", + ) +} + +func examplesVolumesPortworxPortworxVolumePvcYaml() (*asset, error) { + bytes, err := examplesVolumesPortworxPortworxVolumePvcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/portworx/portworx-volume-pvc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesPortworxPortworxVolumePvcpodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\xb1\x6e\xc6\x20\x0c\x84\x77\x9e\xc2\x2f\xf0\x37\xc9\xca\xda\xb9\x55\xa6\xac\x95\x0b\x16\x45\x0d\x18\x81\x43\xfa\xf8\x15\x04\x35\x55\xbb\xe1\xf3\xdd\x87\x75\x98\xfc\x46\xb9\x78\x8e\x1a\xea\xa2\x3e\x7d\xb4\x1a\x56\xb6\x2a\x90\xa0\x45\x41\xad\x00\x22\x06\xd2\x90\x6a\x62\xab\x4a\x22\xd3\x34\xc3\x51\xd0\x47\xca\xa5\x4d\x8f\xe1\x11\x2a\xf2\xf8\x59\x29\x00\x00\x1f\xd0\x91\x06\x67\xf2\x93\xe7\xc9\x31\xbb\x9d\xde\xee\xf4\xd4\x23\x27\xbd\x17\xca\x75\x44\x2a\xef\x47\xa0\x17\x3e\xa2\x74\xfa\x1f\xfe\xb5\xee\x3a\x40\x68\xae\x15\xe5\x43\xc3\x85\x4a\x9c\xe5\xe4\xfc\x75\xdb\xae\xc7\xff\x3b\x7f\x71\x52\xeb\xa0\x08\x45\xd9\xba\xf8\xbc\xa3\x0f\x7a\x7c\x61\xda\xf0\x3a\x3a\x30\xf3\x3c\x2f\xea\x3b\x00\x00\xff\xff\xe7\xb3\x41\x1a\x37\x01\x00\x00") + +func examplesVolumesPortworxPortworxVolumePvcpodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesPortworxPortworxVolumePvcpodYaml, + "examples/volumes/portworx/portworx-volume-pvcpod.yaml", + ) +} + +func examplesVolumesPortworxPortworxVolumePvcpodYaml() (*asset, error) { + bytes, err := examplesVolumesPortworxPortworxVolumePvcpodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/portworx/portworx-volume-pvcpod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesPortworxPortworxVolumePvcscYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcd\x31\x4e\xc4\x40\x0c\x85\xe1\x7e\x4e\xe1\x0b\x4c\xd8\xa5\x9c\x96\x82\x0a\x81\x28\x96\xda\x3b\x79\xda\xb5\x92\x8c\x07\xdb\x09\x70\x7b\x14\x14\x4a\xeb\xb7\xbe\x37\x49\x1b\x0b\xbd\xc1\x5c\x3c\xd0\xe2\xa2\xf3\xba\xe0\x69\x66\x59\x12\x77\xb9\xec\x41\x5b\xa1\xed\x9c\x16\x04\x8f\x1c\x5c\x12\x51\xe3\x05\x85\xfa\x56\xbd\x9e\x4e\xe7\x44\xc4\xad\x69\x70\x88\x36\xdf\x3b\xd1\xf6\x07\x0d\x57\x04\x0f\xd3\x7a\x85\x35\x04\x7c\x10\x7d\xf0\x50\xe3\x1b\x72\x9d\xd9\xbd\x50\x57\x8b\x2f\xb5\xef\x2c\x9a\xbb\x89\x9a\xc4\x4f\xbe\xcb\xed\x9e\xbc\xa3\xee\x18\xd7\x0a\xf7\x17\x1d\x71\xd8\x99\xde\xc1\xe3\x87\x49\xe0\xb5\x55\x24\x22\x83\xeb\x6a\xf5\xff\xc1\xf0\xb9\xc2\xe3\xb8\x88\x8e\xc9\x42\x8f\xcf\x92\x7e\x03\x00\x00\xff\xff\xeb\x80\x70\x5f\xf3\x00\x00\x00") + +func examplesVolumesPortworxPortworxVolumePvcscYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesPortworxPortworxVolumePvcscYaml, + "examples/volumes/portworx/portworx-volume-pvcsc.yaml", + ) +} + +func examplesVolumesPortworxPortworxVolumePvcscYaml() (*asset, error) { + bytes, err := examplesVolumesPortworxPortworxVolumePvcscYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/portworx/portworx-volume-pvcsc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesPortworxPortworxVolumePvcscpodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x90\xb1\x6e\xc6\x20\x0c\x84\x77\x9e\xc2\x2f\xf0\x37\xc9\xca\xda\xb9\x55\xa6\xac\x95\x0b\x16\x45\x0d\x18\x81\x43\xfa\xf8\x15\x04\x35\x55\xbb\xe1\xf3\xdd\x87\x75\x98\xfc\x46\xb9\x78\x8e\x1a\xea\xa2\x3e\x7d\xb4\x1a\x56\xb6\x2a\x90\xa0\x45\x41\xad\x00\x22\x06\xd2\x90\x6a\x62\xab\x4a\x22\xd3\x34\xc3\x51\xd0\x47\xca\xa5\x4d\x8f\xe1\x11\x2a\xf2\xf8\x59\x29\x00\x00\x1f\xd0\x91\x06\x67\xf2\x93\xe7\xc9\x31\xbb\x9d\xde\xee\xf4\xd4\x23\x27\xbd\x17\xca\x75\x44\x2a\xef\x47\xa0\x17\x3e\xa2\x74\xfa\x1f\xfe\xb5\xee\x3a\x40\x68\xae\x15\xe5\x43\xc3\x85\x4a\x9c\xe5\xe4\xfc\x75\xdb\xae\xc7\xff\x3b\x7f\x71\x52\xeb\xa0\x08\x45\xd9\xba\xf8\xbc\xa3\x0f\x7a\x7c\x61\xda\xf0\x3a\x3a\x30\xc5\xcc\xf3\xa2\xbe\x03\x00\x00\xff\xff\x2d\x78\xac\xc7\x38\x01\x00\x00") + +func examplesVolumesPortworxPortworxVolumePvcscpodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesPortworxPortworxVolumePvcscpodYaml, + "examples/volumes/portworx/portworx-volume-pvcscpod.yaml", + ) +} + +func examplesVolumesPortworxPortworxVolumePvcscpodYaml() (*asset, error) { + bytes, err := examplesVolumesPortworxPortworxVolumePvcscpodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/portworx/portworx-volume-pvcscpod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesPortworxPortworxVolumeScHighYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\xcd\x31\x4e\xc6\x30\x0c\x86\xe1\x3d\xa7\xb0\xb2\xb7\xd0\x09\xe4\x95\x23\x20\xb1\x56\xae\x6a\xb5\x56\x93\x38\x72\xdc\x00\xb7\x47\x01\xf1\xaf\xb6\xbe\xe7\xbd\xa4\xec\x08\xef\xae\x46\x07\xbf\x25\x6a\x2d\x50\x95\x0f\xb6\x26\x5a\x10\xda\xdf\x63\xbe\x5e\xdb\x2c\xfa\xd4\x97\x8d\x9d\x96\x90\xd9\x69\x27\x27\x0c\x00\x50\x28\x33\x42\x55\xf3\x4f\xb5\xaf\x49\x74\xaa\x26\x6a\xe2\xdf\xd3\x29\xc7\x19\xaa\x69\x97\xc1\xb1\x21\x5c\xf7\xc6\x56\xd8\xf9\xd7\x7b\x8c\xba\xa6\x3b\x73\xa8\x64\x94\xd9\xd9\xda\x90\x8d\x6b\x42\x88\x4b\x0c\x00\xad\x50\x5d\xa5\x38\x5b\xa7\x84\x00\x10\x5f\x9e\xc7\x5d\x74\xfd\xaf\x21\x40\x1c\xc1\x18\x7e\x02\x00\x00\xff\xff\x06\x71\xf9\xca\xd5\x00\x00\x00") + +func examplesVolumesPortworxPortworxVolumeScHighYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesPortworxPortworxVolumeScHighYaml, + "examples/volumes/portworx/portworx-volume-sc-high.yaml", + ) +} + +func examplesVolumesPortworxPortworxVolumeScHighYaml() (*asset, error) { + bytes, err := examplesVolumesPortworxPortworxVolumeScHighYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/portworx/portworx-volume-sc-high.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesQuobyteQuobytePodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6e\xc3\x30\x0c\x45\x77\x9d\x82\x17\x28\x82\x2c\x6d\xc1\x3b\x14\xcd\x94\x9d\x89\x59\x57\x88\x45\xba\x24\x15\xc0\xb7\x2f\x14\x5b\x0d\x60\x74\x13\x1f\xf9\xfe\x17\xcd\xf9\xcc\xe6\x59\x05\xe1\x7e\x4c\xb7\x2c\x03\xc2\x49\x87\x54\x38\x68\xa0\x20\x4c\x00\x42\x85\x11\x7e\xaa\x5e\x96\xe0\xe4\x33\x5f\x1b\xbd\xaa\x04\x65\x61\xf3\x36\xbd\xec\xae\x00\x00\x72\xa1\x91\x11\x6e\xf5\xc2\x26\x1c\xec\x87\x99\xaa\xaf\xbb\xbb\x4e\xb5\xf0\x87\x56\x89\x87\xdf\x12\x4a\x9b\x4e\x14\xdf\x08\x87\x22\xf1\xa0\xbb\xf6\x55\x4b\xdd\xff\xaf\xfa\xef\x04\x3a\xc1\x2d\xc9\x78\xcc\x1e\xb6\xe0\xf3\xf5\xf6\xfe\x7a\xdc\xb6\xab\x87\x10\xec\x71\x7e\x66\x34\x8d\x86\x4f\x99\x16\x84\x2f\x9a\xbc\xd3\xea\x6c\x08\xa6\xda\xff\x39\x9a\xd6\x79\x23\xbf\x01\x00\x00\xff\xff\x48\xb3\x7c\xf3\x57\x01\x00\x00") + +func examplesVolumesQuobyteQuobytePodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesQuobyteQuobytePodYaml, + "examples/volumes/quobyte/quobyte-pod.yaml", + ) +} + +func examplesVolumesQuobyteQuobytePodYaml() (*asset, error) { + bytes, err := examplesVolumesQuobyteQuobytePodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/quobyte/quobyte-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesRbdRbdWithSecretJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\xc9\x6e\xf2\x30\x10\xc7\xcf\x5f\x9e\xc2\x9a\x33\xcb\x17\x4a\x21\xcd\x3b\x54\x45\x55\xd5\x4b\xc5\xc1\xc4\x43\xb1\xc0\x8b\x6c\x87\x16\xa1\xbc\x7b\xe5\x98\x84\x66\xf1\xa1\xbe\xe5\x3f\xbf\xd9\x27\xd7\x84\x10\x42\x80\x6a\xfe\x8e\xc6\x72\x25\x21\x27\x70\x4e\x61\x12\xf4\x23\x97\xcc\x2b\x1b\xc5\x1a\x49\xa0\xa3\x8c\x3a\x0a\x39\x09\xce\xb5\x2a\xa9\x40\x0f\x9a\x1d\x5b\x40\x2d\x57\x37\xde\x6a\x2c\xba\x6c\xa1\xa4\xa3\x5c\xa2\xb1\x90\x93\x8f\x56\xf7\xef\xda\xf9\xea\x47\x9e\x9a\xaf\x5b\x15\x1d\x82\x0b\xfa\x59\x23\xc7\x72\x87\x46\xa2\x43\x3b\xd7\xb4\xb4\x38\x06\x9f\xd5\xa9\x14\xf8\xac\x4a\xe9\x86\xe9\xe3\x65\xb4\xfe\xc2\x7b\x6e\xa8\x3b\xf8\x84\x73\x21\xdd\xdc\xec\xd8\x48\xa2\xb1\xfa\x35\x83\x51\xae\x1a\xa8\xdb\x64\xdc\xbe\xbd\x27\xba\x75\xf2\xd7\x19\xea\xb1\x62\xbd\xa1\xb3\xa3\x5e\xcb\x92\x3b\xd5\xdb\xd6\xbf\xfa\x41\xfa\x7f\x96\xae\x66\xe9\xe3\x72\xb6\xce\xf2\xd5\x3a\x7b\x82\x49\x12\x4c\xad\xfb\x1d\xc9\x16\x0d\x12\x8d\x92\x3d\x04\x24\x69\xac\xbf\x5b\xee\x54\xa5\x95\x3a\x35\x4b\x8f\xcc\xff\x7e\x19\x7b\xa5\x62\x4c\x69\xd1\x78\x84\x32\xc1\x65\x0c\xb2\x58\x18\x74\xaf\xb8\xaf\xa7\xd4\x34\xd8\xce\xb5\x40\x7d\x98\x06\x06\x82\xb5\x39\xff\x41\xa4\xbd\x7d\xbb\xe8\xda\x09\xbf\xdd\x32\x96\xcf\x20\x65\x2f\xf2\x74\x81\x9c\x38\x53\xe2\x00\xaa\x62\xf7\x11\x7e\xbd\xa4\x4a\x7e\x02\x00\x00\xff\xff\xb5\xe4\x7a\x4c\xd9\x03\x00\x00") + +func examplesVolumesRbdRbdWithSecretJsonBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesRbdRbdWithSecretJson, + "examples/volumes/rbd/rbd-with-secret.json", + ) +} + +func examplesVolumesRbdRbdWithSecretJson() (*asset, error) { + bytes, err := examplesVolumesRbdRbdWithSecretJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/rbd/rbd-with-secret.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesRbdRbdJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\xcb\x6e\xea\x30\x10\x86\xd7\x27\x4f\x61\x79\xcd\x21\x4d\x4b\x21\xcd\x3b\x54\x65\x51\x75\x53\xb1\x30\xc9\x00\x16\x78\x6c\xf9\x42\x8b\x50\xde\xbd\xb2\x93\x40\x73\xf1\xa2\xde\xe5\x9f\x6f\x3c\xff\xcc\x38\xd7\x84\x10\x42\x28\x53\xfc\x03\xb4\xe1\x12\x69\x41\xe8\x39\xa3\xb3\x46\x3f\x72\xac\xbc\xb2\x96\x55\x27\x09\xb0\xac\x62\x96\xd1\x82\x34\xc9\x41\x45\x26\xc0\x83\x7a\x5b\xd1\xa0\xd6\x2d\x6e\x14\x94\x7d\xb4\x94\x68\x19\x47\xd0\x86\x16\xe4\xf3\xa6\xfb\x73\xed\x7d\x0d\x2f\xfe\xaf\xbf\x5a\x13\x3d\x82\x0b\xb6\x0f\xc8\xd1\x6d\x41\x23\x58\x30\xa9\x62\xce\xc0\x14\x7c\x96\x27\x27\xe0\x55\x3a\xb4\xe3\xf2\x71\x1b\xb7\x7c\xe1\x33\xd7\xcc\x1e\x7c\xc1\x54\xa0\x4d\x7d\xc7\xe3\x42\x53\xfe\x55\x3b\x9a\xe1\xa9\x47\xea\x26\x99\x8e\x6f\xee\x85\xda\x4e\xfe\x3a\x43\x35\x65\x36\x6c\xad\x88\xb4\x4d\x85\x44\x6e\xe5\x60\x5b\xff\xc2\xa1\xd9\xc3\x3c\x5b\xce\xb3\xe7\xc5\x7c\x95\x17\xcb\x55\xfe\x42\x67\x49\x13\xba\xa5\xdf\x91\xfc\xb1\x43\xa2\xb7\xe4\x4f\x0d\x92\x74\xd1\xdf\x2d\xf7\x5c\x29\x29\x4f\xdd\xd2\x23\xf3\xbf\xbf\x8c\x9d\x94\x31\xc6\x19\xd0\x1e\x61\x95\xe0\x18\x83\x8e\x70\xd1\x1c\xf7\x61\xe7\x60\xcb\xb4\x04\x75\x48\x3b\x31\x92\xb3\x33\xef\x17\x15\xaa\xc3\xb7\x5d\xc4\x28\x0d\xac\x7a\xc3\xd3\x85\x16\xc4\x6a\x07\x23\xa8\x8e\xbd\x84\xe6\x27\x4b\xea\xe4\x27\x00\x00\xff\xff\x77\x24\xff\xc6\xc2\x03\x00\x00") + +func examplesVolumesRbdRbdJsonBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesRbdRbdJson, + "examples/volumes/rbd/rbd.json", + ) +} + +func examplesVolumesRbdRbdJson() (*asset, error) { + bytes, err := examplesVolumesRbdRbdJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/rbd/rbd.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesRbdSecretCephSecretYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcb\x4f\x0b\x82\x30\x14\x00\xf0\xfb\x3e\xc5\xc3\x7b\x7f\xf4\xd6\xc0\x4b\xa2\x50\x60\x34\xb5\x19\xde\xa6\x7b\xe4\x14\xa7\xcc\x97\xa4\x9f\xbe\x43\x74\xfe\xf1\x53\x93\x91\xe8\x66\x33\x5a\x0e\x8b\xcf\x7a\x63\x35\x87\x1c\x1b\x87\xc4\x06\x24\xa5\x15\x29\xce\x00\xac\x1a\x90\x43\x83\x53\xbb\x9b\x7f\x4a\xeb\x84\x1c\xbc\xfe\x5d\xa3\xb3\x48\x38\xef\xcd\x78\x70\xb5\xf6\x00\xd8\x7f\xf5\xb8\x72\x10\x32\x89\xd2\xa2\x2a\x53\x59\x2d\x59\x27\x29\x7b\xb6\x67\x51\x48\x27\xfc\x64\xbb\x05\xd7\x48\x75\x6d\x29\x1f\x9f\x5c\x6f\x97\x40\x6c\xaf\x63\x1e\xc7\xa7\xbb\x08\x43\xf6\x0d\x00\x00\xff\xff\xa2\x9b\x27\xad\x9c\x00\x00\x00") + +func examplesVolumesRbdSecretCephSecretYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesRbdSecretCephSecretYaml, + "examples/volumes/rbd/secret/ceph-secret.yaml", + ) +} + +func examplesVolumesRbdSecretCephSecretYaml() (*asset, error) { + bytes, err := examplesVolumesRbdSecretCephSecretYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/rbd/secret/ceph-secret.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesScaleioPodScPvcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x4e\x04\x31\x08\x86\xef\x7d\x0a\x5e\xa0\x6e\xbc\xf6\xea\x59\xb3\xa7\xbd\x1a\xec\x90\x91\xd8\x96\x49\x61\xeb\xeb\x1b\xea\xee\x38\x31\xcb\xed\x0f\x1f\x3f\xf0\x7f\x71\x5b\x12\x9c\x65\x09\xb8\xf1\x85\xba\xb2\xb4\x04\xe3\x39\x54\x32\x5c\xd0\x30\x05\x80\x86\x95\x12\x6c\xb2\x44\x65\x89\x5a\xb1\x94\xa0\x1b\x65\xef\x65\x69\x86\xdc\xa8\xab\x2b\x80\xf8\x88\x8e\x3b\x35\x19\x00\xae\xb8\x52\x82\x35\xf7\x27\x96\xd3\x2a\xb2\x16\x7a\xff\xb3\x3a\x19\xa9\xc5\x6f\xfa\x50\xea\x63\x1f\x1a\x52\xae\x95\x5e\xe5\xda\xec\xb6\xcc\xd7\x55\xd7\x67\xb4\xcf\x04\x73\xec\xd6\xb8\x5f\x3d\x9d\xfc\x91\x70\x37\xf8\x77\xe8\x11\xf0\xda\x3c\x04\x35\x6a\x76\x99\xf8\x4b\x41\xae\x69\x77\xcd\x2e\xdf\x7e\x5f\x1c\xf9\x10\xc8\x4f\x00\x00\x00\xff\xff\xd7\xfe\x44\x2e\x4a\x01\x00\x00") + +func examplesVolumesScaleioPodScPvcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesScaleioPodScPvcYaml, + "examples/volumes/scaleio/pod-sc-pvc.yaml", + ) +} + +func examplesVolumesScaleioPodScPvcYaml() (*asset, error) { + bytes, err := examplesVolumesScaleioPodScPvcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/scaleio/pod-sc-pvc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesScaleioPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8e\xcd\x4e\xc4\x30\x0c\x84\xef\x79\x0a\xbf\x40\x29\x88\x3d\xf9\x0d\x38\x00\x2b\x84\xb8\x22\x93\xba\x6d\x44\x12\x47\xb1\xb7\x4b\xdf\x1e\xf5\x4f\x68\x39\x8e\xc7\xdf\xcc\x50\x09\x1f\x5c\x35\x48\x46\x98\x1e\xdc\x77\xc8\x1d\xc2\x59\x3a\x97\xd8\xa8\x23\x23\x74\x00\x99\x12\x23\x14\xe9\x9a\x7b\xa7\x85\xfd\x72\xf3\x92\x8d\x42\xe6\xaa\x8b\x6a\x20\x24\x1a\x18\x61\xf0\xf5\x2e\x48\x3b\x88\x0c\x91\x3f\xff\x9e\x5a\x63\xb5\xe6\xca\x5f\xca\x75\xe2\xea\x00\x6e\x63\x17\x3d\x49\xbc\x24\x7e\x96\x4b\xb6\x35\x74\x89\x4d\x8b\x3a\x93\x8d\x08\x5b\x44\xe9\x56\xe7\xa0\x27\x89\x2b\xbd\xb1\xfb\x96\x5b\x0b\x40\x3d\x45\x7e\x7a\xc5\x9d\x1c\xc8\xf8\x4a\x33\xc2\x68\x56\x14\xdb\x36\x8a\xa7\x38\x8a\x1a\x9e\x4e\x8f\x2d\x95\xb0\x3f\xea\xac\xc6\x09\x37\x3e\xc8\x7e\xdd\xaa\x5e\xfe\x75\x00\x28\xfb\xca\xf6\xc6\xfd\xd1\x73\x6c\xd4\x20\xcd\x66\xee\x46\xaf\xef\x73\x61\x84\x9f\x5e\xdd\x6f\x00\x00\x00\xff\xff\x80\xd7\xea\x15\x81\x01\x00\x00") + +func examplesVolumesScaleioPodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesScaleioPodYaml, + "examples/volumes/scaleio/pod.yaml", + ) +} + +func examplesVolumesScaleioPodYaml() (*asset, error) { + bytes, err := examplesVolumesScaleioPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/scaleio/pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesScaleioScPvcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x44\x8d\x31\x4e\x04\x31\x0c\x45\xfb\x9c\xc2\x17\x98\x81\x6d\xd3\x52\x50\x21\x10\xc5\x52\x7b\x33\x5f\xc8\xda\xc4\x1e\x62\x67\xce\x8f\x82\x06\x70\xeb\xf7\xdf\xbb\x8b\x6e\x99\xde\xd0\x5d\x3c\xa0\x71\xb5\x3a\x1a\x9e\x2a\x4b\x4b\xbc\xcb\x75\x3e\x4c\x33\x1d\x97\xd4\x10\xbc\x71\x70\x4e\x44\xca\x0d\x99\xf6\xa3\x2c\x2e\xb6\x78\xe3\x5a\x13\x11\xab\x5a\x70\x88\xa9\x4f\x68\xde\xf1\xe3\x5b\x6f\x08\x5e\xef\xe3\x86\xae\x08\xf8\x2a\xf6\xe0\x61\x9d\x3f\xb1\x94\xca\xee\x99\xfe\x3d\xbe\xa3\xcc\x39\x97\x02\xf7\x17\xdb\x70\xda\x16\x7a\x07\x6f\x1f\x5d\x02\xaf\x5a\x90\x88\x3a\xdc\x46\x2f\xbf\x40\xc7\xd7\x80\xc7\x5f\xfc\x4c\x64\xba\x3c\x3e\x4b\xfa\x0e\x00\x00\xff\xff\xe4\x6a\xaa\x4c\xeb\x00\x00\x00") + +func examplesVolumesScaleioScPvcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesScaleioScPvcYaml, + "examples/volumes/scaleio/sc-pvc.yaml", + ) +} + +func examplesVolumesScaleioScPvcYaml() (*asset, error) { + bytes, err := examplesVolumesScaleioScPvcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/scaleio/sc-pvc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesScaleioScYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\x8e\xc1\x4e\xc3\x40\x0c\x44\xef\xfb\x15\xfe\x01\x1a\x55\xf4\x80\x7c\x85\x2f\x00\xc4\xdd\x4d\x26\xad\x95\xdd\xf5\x6a\xed\x16\xf2\xf7\x28\x81\x1e\x47\x33\xef\x69\x16\xad\x13\xd3\x47\x58\x97\x0b\x5e\xb3\xb8\x27\x69\xfa\x85\xee\x6a\x95\xc9\xff\x8a\xc3\xf2\xe2\x07\xb5\xe1\x7e\x3c\x23\xe4\x98\x0a\x42\x26\x09\xe1\x44\x54\xa5\x80\xc9\xd5\x9e\xbc\x48\xce\xa9\x75\xbb\xeb\x46\xa3\x33\x2d\xb7\x33\x7a\x45\x60\xc7\x7d\x94\x0c\xb5\xd4\xa4\x4b\x41\xa0\xfb\x26\xb8\x48\xe0\x5b\x56\xa6\x6b\x44\x73\x1e\x86\x6c\xa3\xe4\xab\x79\xf0\xe9\xf4\x3c\x48\x53\x4a\x44\xbe\x7a\xa0\x30\x3d\x1c\x44\xad\x5b\x60\x0c\xb5\xfa\x66\x45\xb4\x32\x4d\x98\xe5\x96\x63\x5b\x63\xec\x88\x77\xcc\xff\xcf\xf6\x98\x88\x66\xff\x5c\x1b\x98\x7e\x66\x4f\xbf\x01\x00\x00\xff\xff\x16\x89\xe1\xa9\xfb\x00\x00\x00") + +func examplesVolumesScaleioScYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesScaleioScYaml, + "examples/volumes/scaleio/sc.yaml", + ) +} + +func examplesVolumesScaleioScYaml() (*asset, error) { + bytes, err := examplesVolumesScaleioScYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/scaleio/sc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesScaleioSecretYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcb\xb1\xca\xc2\x40\x0c\x00\xe0\x3d\x4f\x91\x17\xf8\x7f\x15\x9c\x02\x1d\xc5\x49\x07\x85\x16\xc7\xdc\x5d\xc0\x50\x7b\x77\x5c\x52\x4b\x7d\x7a\x87\xe2\xfc\xf1\x71\xd5\x5e\x9a\x69\xc9\x84\xef\x03\x8c\x9a\x13\xe1\x5d\x62\x13\x87\x49\x9c\x13\x3b\x13\x20\x66\x9e\x84\xd0\xb4\xfc\xd9\x86\xbe\x56\x21\x1c\xe7\x20\x2d\x8b\x8b\xfd\x6b\xd9\x59\xe4\x97\x68\x81\x5f\x9a\x4d\xda\x16\x1f\xc3\xcd\x79\x38\x76\x80\x58\xd9\x6c\x29\x2d\x11\xc6\xfd\xf5\x19\xce\x7d\x0d\x9f\xd3\x7a\x59\xba\x0e\xbe\x01\x00\x00\xff\xff\x79\xd2\x11\x5d\x8d\x00\x00\x00") + +func examplesVolumesScaleioSecretYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesScaleioSecretYaml, + "examples/volumes/scaleio/secret.yaml", + ) +} + +func examplesVolumesScaleioSecretYaml() (*asset, error) { + bytes, err := examplesVolumesScaleioSecretYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/scaleio/secret.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesStorageosStorageosPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x92\x3d\x73\xdb\x3c\x10\x84\x7b\xfd\x8a\x1d\xbf\xad\xa4\xd7\x9a\x64\x92\x09\xba\x14\x29\x52\x38\xf1\x44\x9e\xa4\x35\x44\x1c\x4d\x8c\x41\x1c\x83\x3b\xd0\xd6\xbf\xcf\x80\xdf\x36\x2b\xf2\x3e\x9e\x5d\x2c\x61\x3b\xff\x9b\x92\x78\x8e\x06\xfd\x69\xf7\xec\xa3\x33\xb8\x67\xb7\x6b\x49\xad\xb3\x6a\xcd\x0e\x08\xf6\x42\x41\xca\x1b\x10\x6d\x4b\x06\x89\x9c\x97\xe1\x3b\x71\x20\x83\xd6\x8a\x52\xda\xcd\x6d\x25\xd1\x83\x28\x27\xfb\x44\x2c\x87\x71\x5a\x3a\xaa\x0a\xa3\xe2\xa8\xd6\x47\x4a\x13\xf1\x30\x2d\x2d\x8c\xf2\xf8\xd6\x3e\x91\xc1\x73\xbe\x50\x8a\xa4\x24\xff\x0f\x10\xd3\x9f\xa6\x01\x8a\xbd\x99\x5e\x57\xc4\xdd\xd7\xf3\xc3\xb7\x5f\x4b\x19\xe8\x6d\xc8\x64\x70\xa3\x29\xd3\xcd\x54\xef\x38\xa9\x6c\x77\x17\x43\xf7\x9c\xd4\xe0\xd3\x87\xcf\x5f\xa6\x6e\x22\xe1\x9c\x2a\xda\x8c\x07\xdf\xfa\xed\x3a\x50\x75\xd9\xe0\xe6\xf6\x78\x9a\x05\x7a\x0e\xb9\xa5\x3b\xce\xf1\xad\x4e\x5b\x2a\xf7\x56\x1b\x83\xf1\x34\x87\xf1\xc8\x87\x92\xf3\x06\xb8\x89\x78\x6e\x8d\xc8\x77\x81\xbd\x99\x28\xcf\x92\xf8\xaa\xfa\x1f\x1e\x1a\x2f\xd3\x3e\xda\x2c\x0a\x1b\x12\x59\x77\x05\xbd\x7a\x51\xbc\x78\x6d\x7c\xc4\x79\x5c\xfd\x79\x5e\x36\xc7\x95\x1f\x1b\xa5\x9e\xc3\xed\x69\x43\x2e\x3d\xe9\x6c\x45\xf0\x02\xee\xd4\x73\xb4\x61\x0f\x1b\x1d\xca\xbf\xf6\xb5\x27\x81\x36\x34\xab\x4b\xc5\x1d\x4d\x82\x1b\xcc\x22\x7d\x04\xbe\xd7\x88\x3c\x1c\x6f\x01\x77\x89\x7b\xef\xc8\xed\xe1\x8b\xdb\x10\x90\x85\x06\xec\x32\xb6\x81\x71\x3d\xb4\x3a\x76\x47\xe0\x4c\x0a\x65\x3c\x3a\xaa\x6d\x0e\xfa\x08\x4e\x08\x64\x7b\xc2\x25\xd8\xf8\x0c\x5f\xe3\xca\x19\x36\x11\x22\x2b\xb2\xf8\xf8\xb4\x61\x2d\x7c\x39\xae\xd5\xa5\xf8\xfe\x96\xbf\x89\x7c\x34\x37\xbb\x59\x66\xd0\x31\x87\x62\x29\x0b\x1d\x81\x3f\xf3\x69\x56\x87\xbe\x04\xa0\x1b\xd6\x9c\xa4\xdb\xe3\xa5\xf1\x55\x03\x69\x38\x07\x87\x0b\xc1\xf6\xd6\x07\x7b\x09\x04\x8e\x68\x59\x74\x8d\x12\x55\xc8\xe5\x6a\x6d\x9c\x17\x69\x83\x49\xe8\x9d\xd9\xda\x07\x92\xab\x28\xb5\xd0\x6b\x47\xc5\x61\x95\xc8\xea\x40\x5e\xff\xe0\xbe\xd8\x4b\xf4\x37\xfb\x44\x6e\x25\xd7\xf2\x70\xed\xc8\x80\x5e\xf5\xe3\xee\x5f\x00\x00\x00\xff\xff\x9b\xe5\x48\x88\x51\x04\x00\x00") + +func examplesVolumesStorageosStorageosPodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesStorageosStorageosPodYaml, + "examples/volumes/storageos/storageos-pod.yaml", + ) +} + +func examplesVolumesStorageosStorageosPodYaml() (*asset, error) { + bytes, err := examplesVolumesStorageosStorageosPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/storageos/storageos-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesStorageosStorageosPvYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x92\xcd\x4e\x1c\x31\x10\x84\xef\xf3\x14\x25\xe5\x0a\x08\xa4\xe4\x32\xb7\x28\x91\xa2\x1c\x02\x2b\x16\x91\x2b\x1d\x4f\x0d\xdb\xc2\x63\x3b\xee\x9e\x0d\xf3\xf6\xd1\xfc\xb0\xac\xb8\x59\xd5\xdd\x5f\x95\xdb\x96\xa2\x8f\xac\xa6\x39\xb5\x38\xde\x34\x2f\x9a\xba\x16\xbb\x59\x31\x67\xf2\xc7\x1c\xc7\x81\xcd\x40\x97\x4e\x5c\xda\x06\x48\x32\xb0\x45\x39\x5e\x5f\x5f\xdf\x34\x56\x18\x66\x31\x48\x91\xa0\x3e\xcd\x67\xc0\x3c\x57\x79\x66\x8b\x2f\x3f\xb4\x01\x24\x04\x9a\xfd\xca\x1d\x6d\xad\x5f\xe2\x9e\xd2\xfd\xae\xea\xbc\x4b\x81\x0d\x50\x3e\x38\xde\x33\x44\xd1\x61\x97\xa3\x86\xa9\xc5\x77\x46\xfa\xdc\xb7\x91\xbf\x45\x31\xbb\x5d\x82\xf4\x62\xfe\x5e\xc8\x9b\xc3\x27\x3c\x1c\xd4\x70\x5c\x60\x18\x46\x73\x48\xac\x94\x6e\x02\x5f\xd5\x1c\xff\xd4\x0f\x9a\xb0\x5f\xc7\xee\xf6\xcb\xd4\xda\x7e\x7b\x7e\xc1\x15\xf6\x5e\xb0\x22\x81\x50\x43\x2e\xae\x39\x49\xbc\x80\xa4\x0e\xf3\x1e\xb4\x57\x1a\xfc\xc0\x37\x5b\x0b\xb9\x70\x73\xda\x40\x27\xbf\x2b\x60\x4f\x87\x67\x3c\x75\xec\x65\x8c\xfe\x84\x5c\x11\x29\x47\xe2\x4f\x94\xf4\x02\xed\x31\xe5\x11\x52\x89\x94\x1d\xa3\x69\x7a\xde\x30\xe9\x2d\x89\x5d\xad\xca\x87\x80\x2d\x36\xe8\x69\x19\x44\xaf\x91\x36\x99\x73\x80\x4f\x85\xb3\x75\xa8\x14\x27\x72\x3a\x4b\x7d\x31\xfb\x56\xfe\x1d\xb5\xb2\x5b\xe9\xbd\x3d\x4c\x85\x2d\xf8\xea\x9f\xcf\x80\xc6\x50\xe9\x4b\x16\xf4\xb9\xe2\xeb\xee\xe7\x4c\xec\x98\x5c\x25\xda\xfa\x13\x96\x9e\x75\xa3\xa7\x27\xba\x5c\xd5\xe6\x7f\x00\x00\x00\xff\xff\x5f\x56\x99\x5a\x7c\x02\x00\x00") + +func examplesVolumesStorageosStorageosPvYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesStorageosStorageosPvYaml, + "examples/volumes/storageos/storageos-pv.yaml", + ) +} + +func examplesVolumesStorageosStorageosPvYaml() (*asset, error) { + bytes, err := examplesVolumesStorageosStorageosPvYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/storageos/storageos-pv.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesStorageosStorageosPvcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\xcd\x3b\x0e\xc2\x30\x10\x84\xe1\xde\xa7\x98\x0b\x20\x25\x05\x8d\xdb\x14\x54\x3c\x44\x11\xea\x95\x3d\x20\x8b\xd8\x0e\xde\x4d\xce\x8f\x82\x80\xf2\xfb\x35\xd2\xc8\x9c\x46\x36\x4d\xb5\x78\xac\xbd\x7b\xa6\x12\x3d\x2e\x5b\x51\x63\xb1\xb1\x4e\x4b\xe6\x30\x49\xca\x2e\xd3\x24\x8a\x89\x77\x40\x91\x4c\x8f\x79\x0d\x5d\xd7\xf5\x4e\x67\x86\xad\x4a\x08\x54\x3d\xd6\x48\xdd\x08\xec\x70\xa5\xc4\x5b\x4b\xc6\x73\x09\x74\x40\xa3\xd6\xa5\x85\xdf\xa0\xf1\xb5\x50\xed\x2b\x40\xad\x36\x79\xd0\x63\x7f\x48\xee\xcf\x61\x12\xd5\xd3\xe7\xf2\x2e\x6a\xee\x1d\x00\x00\xff\xff\x85\x32\xd9\xa0\xb5\x00\x00\x00") + +func examplesVolumesStorageosStorageosPvcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesStorageosStorageosPvcYaml, + "examples/volumes/storageos/storageos-pvc.yaml", + ) +} + +func examplesVolumesStorageosStorageosPvcYaml() (*asset, error) { + bytes, err := examplesVolumesStorageosStorageosPvcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/storageos/storageos-pvc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesStorageosStorageosPvcpodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x4d\x4f\xc3\x30\x0c\x86\xef\xfd\x15\xd6\xee\x85\x56\x48\x20\x72\x43\x88\xe3\xd0\x04\x68\x77\x2f\xb5\x46\xb4\x7c\x54\xb6\x93\xdf\x8f\xd2\x65\x5b\x47\x4f\xb1\xfd\xbe\x8f\x3f\x8a\xb3\xdb\x13\x8b\x4b\xd1\x40\x19\xbb\x93\x8b\x93\x81\x5d\x9a\xba\x40\x8a\x13\x2a\x9a\x0e\xc0\xe3\x81\xbc\xd4\x17\x40\xc4\x40\x06\x98\x26\x27\x4b\xcc\xc9\x93\x81\x80\xa2\xc4\xdd\xa5\xac\x24\xda\x8b\x26\xc6\x23\x25\xe9\x17\x75\x3f\x17\xdb\xc9\x4c\xb6\x72\x6c\x8a\x8a\x2e\x12\x37\x6a\xdf\x8c\x57\x4e\xfd\x5c\xc0\x23\x19\x38\xe5\x03\x71\x24\x25\x79\x5c\x40\xa6\x8c\x4d\x40\xb1\x98\xf6\xbc\x21\xb6\x6f\xdf\x3f\x1f\x5f\xd7\x34\x40\x41\x9f\xc9\xc0\x46\x39\xd3\xa6\xe5\xe7\xc4\x2a\x6b\xef\x75\xa0\x5d\x62\x35\xf0\xfc\xf4\xf2\xda\xaa\x4c\x92\x32\x5b\x5a\xc9\xbd\x0b\x6e\x6d\x07\xb0\x73\x36\xb0\x19\x1e\xc6\x4b\x83\x92\x7c\x0e\xb4\x4d\x39\xde\xf7\x09\x35\xb3\x43\xfd\x35\x70\xde\xa6\x3f\xaf\xdc\xd7\x5b\xaf\x80\xab\x33\x5f\x4a\x67\xe4\xbf\x83\xdd\x29\x96\xcd\xea\xdf\x14\xa5\xa8\xfb\x45\xff\xee\xd1\x85\xdb\x04\xb6\x86\x9f\x8b\x75\x2e\x76\x18\x86\xb1\xfb\x0b\x00\x00\xff\xff\x07\x59\x0c\x49\x03\x02\x00\x00") + +func examplesVolumesStorageosStorageosPvcpodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesStorageosStorageosPvcpodYaml, + "examples/volumes/storageos/storageos-pvcpod.yaml", + ) +} + +func examplesVolumesStorageosStorageosPvcpodYaml() (*asset, error) { + bytes, err := examplesVolumesStorageosStorageosPvcpodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/storageos/storageos-pvcpod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesStorageosStorageosScPvcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\x8c\x3b\x0e\xc2\x30\x10\x05\x7b\x9f\xe2\x5d\x00\x29\x29\x68\xdc\x52\x50\xf1\x11\x45\xa8\x57\xf6\x03\x59\xc4\x76\xf0\x6e\x38\x3f\xb2\x04\x29\x67\xa4\x19\x59\xd2\xc4\xa6\xa9\x16\x8f\xcf\xe8\x5e\xa9\x44\x8f\x6b\x37\x6a\x2c\x36\xd5\x79\xcd\x3c\xcc\x92\xb2\xcb\x34\x89\x62\xe2\x1d\x50\x24\xd3\xe3\x21\x6a\xc3\x30\x8c\x4e\x17\x86\xae\x25\x04\xaa\x9e\x6a\xa4\x76\x04\x76\xb8\x51\xe2\xbd\x25\xe3\xa5\x04\x3a\x40\xad\x36\x79\xf6\xa5\xea\x79\xbb\x38\xa0\x51\xeb\xda\xc2\xbf\x6c\x7c\xaf\x54\xfb\xd1\xd6\x79\xec\x8f\xc9\x7d\x03\x00\x00\xff\xff\x89\x4a\x97\x76\xb6\x00\x00\x00") + +func examplesVolumesStorageosStorageosScPvcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesStorageosStorageosScPvcYaml, + "examples/volumes/storageos/storageos-sc-pvc.yaml", + ) +} + +func examplesVolumesStorageosStorageosScPvcYaml() (*asset, error) { + bytes, err := examplesVolumesStorageosStorageosScPvcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/storageos/storageos-sc-pvc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesStorageosStorageosScPvcpodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x91\x4d\x4f\xf3\x30\x0c\xc7\xef\xfd\x14\xd6\xee\x79\x9e\x56\x48\x20\x72\x43\x88\xe3\xd0\x04\x68\x77\x2f\x35\x23\x5a\x5e\x2a\xdb\xe9\xe7\x47\xe9\xb2\xad\xa3\xa7\xd8\xfe\xff\x7f\x7e\x29\x4e\x7e\x4f\x2c\x3e\x27\x0b\xf3\xd0\x9d\x7c\x1a\x2d\xec\xf2\xd8\x45\x52\x1c\x51\xd1\x76\x00\x01\x0f\x14\xa4\xbe\x00\x12\x46\xb2\xc0\x34\x7a\x59\x62\xce\x81\x2c\x44\x14\x25\xee\x2e\x65\x25\x51\x23\x9a\x19\x8f\x94\xc5\x2c\x6a\x23\xce\x4c\xb3\xeb\x64\x22\x57\x51\x2e\x27\x45\x9f\x88\x1b\xd8\x34\xef\x15\x55\x3f\x1f\xf1\x48\x16\x4e\xe5\x40\x9c\x48\x49\xfe\x2f\x2c\x3b\x0f\x4d\x40\x69\xb6\xed\x79\x43\x6c\x5f\x3e\xbf\xde\x3e\xae\x69\x80\x19\x43\x21\x0b\x1b\xe5\x42\x9b\x96\x9f\x32\xab\xac\xbd\xd7\x81\x76\x99\xd5\xc2\xe3\xc3\xd3\x73\xab\x32\x49\x2e\xec\x68\x25\x0f\x3e\xfa\xb5\x1d\xc0\x4d\xc5\xc2\xa6\xff\x37\x5c\x1a\xcc\x39\x94\x48\xdb\x5c\xd2\x7d\x9f\x58\x33\x3b\xd4\x1f\x0b\xe7\x6d\xcc\x79\x65\x53\xcf\xbd\x02\xae\x2e\x7d\x29\x9d\x91\x7f\x0e\x76\xa7\x58\x36\xab\x3f\x54\x94\x92\xee\x17\xfd\x6b\x40\x1f\x6f\x13\xb8\x1a\xbe\x2f\xd6\x6f\x14\xed\xfb\x7e\xe8\x7e\x03\x00\x00\xff\xff\x31\x54\xad\x0c\x07\x02\x00\x00") + +func examplesVolumesStorageosStorageosScPvcpodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesStorageosStorageosScPvcpodYaml, + "examples/volumes/storageos/storageos-sc-pvcpod.yaml", + ) +} + +func examplesVolumesStorageosStorageosScPvcpodYaml() (*asset, error) { + bytes, err := examplesVolumesStorageosStorageosScPvcpodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/storageos/storageos-sc-pvcpod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesStorageosStorageosScYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcf\x41\x4b\x04\x31\x0c\x05\xe0\x7b\x7e\x45\xfe\xc0\xae\x08\x1e\xa4\x57\x8f\x82\x97\x15\xef\xb1\x7d\x23\x65\xda\xa6\x24\x99\x41\xff\xbd\xec\x28\x8b\x78\xcd\xe3\x7d\xe1\xad\x75\x94\xc4\x97\x50\x93\x0f\x3c\x35\x71\x27\x99\xf5\x0d\xe6\x55\x47\x62\xff\x09\xce\xeb\xa3\x9f\xab\xde\xed\xf7\xd4\x11\x52\x24\x24\x11\xf3\x90\x8e\xc4\x9e\x4f\x8b\x78\xd0\x34\xdd\xeb\xb5\x06\x4b\xbc\x6e\xef\xb0\x81\xc0\xd1\xfb\x65\xd4\x69\x8a\x49\x47\xc0\xfc\x0a\x4c\xd5\x96\xb8\x60\x91\xad\x05\x31\x17\x78\xb6\x3a\xe3\xf8\xfd\x7c\x23\x78\xd7\xb6\x75\x10\xf3\xe2\xaf\x5f\x13\x89\xf1\x19\x0f\xc4\x2c\xa5\xd7\x71\x41\x36\xc4\x8b\x74\xf8\x94\x8c\xbf\xde\xbf\xfc\xb6\x47\xfd\xe4\xc7\xf5\x3b\x00\x00\xff\xff\xc1\x1e\xe9\x14\xff\x00\x00\x00") + +func examplesVolumesStorageosStorageosScYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesStorageosStorageosScYaml, + "examples/volumes/storageos/storageos-sc.yaml", + ) +} + +func examplesVolumesStorageosStorageosScYaml() (*asset, error) { + bytes, err := examplesVolumesStorageosStorageosScYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/storageos/storageos-sc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesStorageosStorageosSecretYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcd\xb1\x8a\xc2\x40\x10\xc6\xf1\x7e\x9f\x62\x48\x7f\x77\x1c\xb9\xe2\x5c\xb0\x08\x8a\x22\x18\x23\x6a\x14\xec\xc6\xec\x20\x9b\x90\xdd\x30\xb3\x49\xd4\xa7\xb7\x58\xb4\xb0\xfe\xff\x3e\x3e\xec\xec\x91\x58\xac\x77\x1a\x86\x5f\xd5\x58\x67\x34\xec\xa9\x62\x0a\xaa\xa5\x80\x06\x03\x6a\x05\xe0\xb0\x25\x0d\x12\x3c\xe3\x95\xbc\x7c\x49\x24\xe1\xde\x91\x86\xa4\xe9\x2f\xc4\x8e\x02\xc9\xb7\xf5\x3f\x6f\x95\xa8\xd7\x1c\x3b\x9b\x19\xc3\x24\xa2\xc1\x2c\x37\x63\x61\xff\x87\xfc\xb0\x4a\xd7\x75\xd6\xe7\xb3\xbf\x5b\x51\x97\x69\x3e\x2f\xa7\x91\x96\x42\x1c\x0f\xab\x74\x37\x54\xed\xc2\x9d\x4f\x93\x47\x6c\x5b\x14\x19\x3d\x9b\x8f\xf6\x0c\x00\x00\xff\xff\x25\x66\x55\x19\xc8\x00\x00\x00") + +func examplesVolumesStorageosStorageosSecretYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesStorageosStorageosSecretYaml, + "examples/volumes/storageos/storageos-secret.yaml", + ) +} + +func examplesVolumesStorageosStorageosSecretYaml() (*asset, error) { + bytes, err := examplesVolumesStorageosStorageosSecretYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/storageos/storageos-secret.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesVsphereDeploymentYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\xbd\x6a\x03\x31\x10\x84\xfb\x7b\x8a\xc5\xbd\x39\x0e\x52\xa9\x76\x1b\x48\x11\xdc\x84\x14\xeb\xd3\xd8\x16\xd6\x1f\xda\xb5\x88\xdf\x3e\xe8\x9c\xb3\x05\x26\x5b\xdd\xed\xce\x7c\x33\x20\xce\x6e\x8f\x22\x2e\x45\x43\xf8\x51\xc4\xf6\x29\x63\x9d\x0e\x50\x9e\x86\x8b\x8b\xd6\xd0\x0e\xd9\xa7\x5b\x40\xd4\x21\x40\xd9\xb2\xb2\x19\x88\x22\x07\x18\xb2\xcf\xa3\x64\xcc\xed\x50\x90\xbd\x9b\x59\x0c\x4d\x03\x91\x22\x64\xcf\x8a\x76\x21\xea\x01\x6d\x3c\x1f\xe0\x65\xfd\x23\xe2\x9c\x0d\x15\x58\x27\xcb\x6a\x45\xb6\x99\x53\x54\x76\x11\xe5\x21\xdf\xfe\x75\x78\xea\xdb\xb8\xc0\xa7\x97\x65\x4d\xfe\x1a\xf0\x9e\xae\x51\xbb\xb4\x15\x50\xc3\x51\xb6\x35\xd8\xcb\x56\x34\x15\x3e\xe1\xa1\x20\x0a\xcd\xf3\xc1\x7a\x36\x34\xb6\xe6\xe3\xd0\x13\x5f\xba\xfc\x8f\xaa\x92\xcf\x28\xd8\x2f\x3e\xd3\x25\xdc\x49\xf7\x88\xcd\xd7\x8e\x95\x9b\x15\xdf\x6b\xc4\xa8\x10\xb5\xae\x6c\x3a\xcf\x51\x3e\x6f\x19\xcb\xa3\xbd\xfd\x06\x00\x00\xff\xff\x0e\x0a\x5e\x24\xc5\x01\x00\x00") + +func examplesVolumesVsphereDeploymentYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesVsphereDeploymentYaml, + "examples/volumes/vsphere/deployment.yaml", + ) +} + +func examplesVolumesVsphereDeploymentYaml() (*asset, error) { + bytes, err := examplesVolumesVsphereDeploymentYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/vsphere/deployment.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesVsphereSimpleStatefulsetYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x52\x4d\x8f\xd3\x30\x14\xbc\xfb\x57\x3c\xf5\x9e\x66\x2b\x71\x58\xf9\xca\x01\x71\xd8\xa5\x62\x11\x1c\x10\x42\xaf\xee\x90\x5a\x75\xec\xe0\xf7\xd2\xf2\xf3\x91\xf3\x45\xc8\xee\x9c\x12\xbf\x79\x33\xe3\x49\xaa\xaa\x32\xdc\xf9\xaf\xc8\xe2\x53\xb4\x74\x3b\x98\xab\x8f\x67\x4b\x2f\xc8\x37\xef\x60\x5a\x28\x9f\x59\xd9\x1a\xa2\xc8\x2d\x2c\xc5\xc6\xc7\x3f\x86\x28\xf0\x09\x41\xca\x39\x11\x77\xdd\x3c\x90\x0e\xae\x1c\x76\x29\xeb\x30\xad\x86\x47\x4b\x8f\x0f\x03\x75\x14\xb9\xe3\x64\x88\x5c\xe8\x45\x91\x3f\x1e\x2d\x3d\xa7\x08\x43\x24\x08\x70\x9a\xf2\x2b\xd9\x6d\x50\xee\x3a\xa9\x6f\x87\x13\x94\x97\xc8\xca\x8a\x5f\x7d\x78\x81\xbe\x11\xbb\x38\xce\xd9\x64\xbc\xdc\xf3\x30\xd8\x0d\x06\x3b\x43\x94\xd1\x05\xef\x58\x2c\x1d\xde\x19\x22\x45\xdb\x05\x56\x8c\x59\xd6\x8a\x05\xeb\xeb\x6f\xb2\x96\xd7\xd9\xaa\xc0\xa5\xa8\xec\x23\xf2\x42\xaf\x36\x5d\x8e\xf0\x2d\x37\xb0\xd4\xb8\xbc\xf7\xa9\x6e\x52\x6a\x02\x7e\xfe\x5b\xae\x07\x76\x25\xc1\xb7\xf6\x61\xff\xb8\xac\x2d\x4d\xcf\xda\xcb\xca\x71\x5d\xfc\x88\x75\xfd\x23\x6e\x29\xf4\x2d\x9e\x52\x1f\xff\x57\x99\x98\xf7\xfb\x6a\xbb\x2d\xac\x23\xeb\xc5\x52\xdd\x4b\xae\xe5\xc2\x19\x63\xae\xfa\xa2\x6d\x30\xb3\xdc\xfb\xc0\xbe\xfd\x32\x15\x38\xfd\x06\xdb\x06\xb7\x06\x1c\x63\x52\x56\x9f\xe2\x2a\xc7\x28\xb7\x2f\xdf\x79\x7f\xed\x4f\xc8\x11\x0a\x29\xfd\x88\xa6\xcc\x0d\x2a\x17\x58\xc4\x92\x5e\x7c\xac\xce\x5e\xae\xaf\xea\x67\xe7\x20\xf2\x94\xce\x10\x4b\xdf\x69\xf7\x19\x7c\xfe\x96\xbd\xe2\x53\x74\xd8\xd1\x8f\x89\x96\x21\xa9\xcf\x0e\x2b\xf3\x8c\xdf\x3d\x64\x5d\x0b\xd1\x64\x6b\xe9\xf0\xc1\x9b\xbf\x01\x00\x00\xff\xff\x19\x36\xf5\x57\x3f\x03\x00\x00") + +func examplesVolumesVsphereSimpleStatefulsetYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesVsphereSimpleStatefulsetYaml, + "examples/volumes/vsphere/simple-statefulset.yaml", + ) +} + +func examplesVolumesVsphereSimpleStatefulsetYaml() (*asset, error) { + bytes, err := examplesVolumesVsphereSimpleStatefulsetYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/vsphere/simple-statefulset.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesVsphereSimpleStorageclassYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x24\xcc\x31\x0e\x83\x30\x0c\x46\xe1\x3d\xa7\xf0\x05\xa0\x62\xab\xb2\xf6\x08\x95\xba\x1b\xf1\xb7\x58\x21\x71\x64\x1b\xce\x5f\xa1\xcc\x4f\xdf\x2b\xd2\xb6\x4c\xef\x50\xe3\x1f\x5e\x07\xbb\x27\xee\xf2\x81\xb9\x68\xcb\xe4\x23\xcc\xe5\xe9\xb3\xe8\xe3\x5a\x56\x04\x2f\xa9\x22\x78\xe3\xe0\x9c\x88\x1a\x57\x64\x8a\x5d\xda\xb4\x89\x97\xd4\x4d\x2f\xb9\x35\x2c\x53\x39\x57\x58\x43\x60\x70\xef\x3b\x0c\xd3\xa5\xc7\x59\x91\x3a\x1b\x57\x04\xcc\xef\x0f\xd1\xcd\xbf\x6a\x95\x63\xfc\xd2\x3f\x00\x00\xff\xff\xde\x55\xc8\xa6\x9d\x00\x00\x00") + +func examplesVolumesVsphereSimpleStorageclassYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesVsphereSimpleStorageclassYaml, + "examples/volumes/vsphere/simple-storageclass.yaml", + ) +} + +func examplesVolumesVsphereSimpleStorageclassYaml() (*asset, error) { + bytes, err := examplesVolumesVsphereSimpleStorageclassYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/vsphere/simple-storageclass.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesVsphereVsphereVolumePodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xcd\x4e\xc3\x30\x10\x84\xef\x7e\x8a\x55\x39\xb7\x11\x12\x27\x9f\x7b\x43\x45\x3d\x54\xb9\x20\x84\x96\x78\x48\xac\xc4\x76\xe4\xdd\x84\xe6\xed\x51\x7e\x4a\x05\xe2\xb8\xf6\x37\xdf\x0c\xf7\xbe\x44\x16\x9f\xa2\xa5\xf1\xd1\xb4\x3e\x3a\x4b\xe7\xe4\x4c\x80\xb2\x63\x65\x6b\x88\x22\x07\x58\x52\x88\xee\xc7\xe0\x5a\x23\x3d\xaa\xf9\xbd\x4a\x51\xd9\x47\x64\x99\xaf\x3d\xf9\xc0\x35\x2c\xd5\x55\x3e\xf8\x54\xd4\x29\xd5\x1d\xde\xef\x50\xb1\x18\xbe\xf0\x21\xc8\x23\xb2\x21\xfa\xa5\xfe\x01\x97\x8f\x31\x75\x43\xc0\x29\x0d\x51\x17\xfb\xec\x0f\xf3\x75\x66\x6d\x2c\x15\xf7\x35\x44\x7f\x44\x6b\xd4\xdc\x1c\xdb\xb8\xff\x00\xa2\x07\xba\x34\x5e\xa8\x3c\x1d\x9f\x37\x9c\xc2\x20\x4a\xdc\x65\xb0\x9b\x08\x57\x2f\x7a\x58\x17\x49\xdf\x20\xa3\x5c\x28\xbb\xd5\xae\x99\x75\xd3\xee\xf5\xc8\xca\xa2\x29\xe3\x85\x03\xde\x6e\xfd\x45\x98\x8e\x5e\xda\xdd\x16\xf9\x94\xcb\xd4\xc3\x12\xae\xfa\xf4\x1d\x00\x00\xff\xff\xba\x69\x51\xf0\x7f\x01\x00\x00") + +func examplesVolumesVsphereVsphereVolumePodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesVsphereVsphereVolumePodYaml, + "examples/volumes/vsphere/vsphere-volume-pod.yaml", + ) +} + +func examplesVolumesVsphereVsphereVolumePodYaml() (*asset, error) { + bytes, err := examplesVolumesVsphereVsphereVolumePodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/vsphere/vsphere-volume-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesVsphereVsphereVolumePvYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8d\x3d\x4f\xf3\x40\x10\x84\xfb\xfb\x15\xa3\xf4\xaf\x5e\x07\x51\x5d\x1d\x89\x0a\xb0\x2c\x14\x0a\x44\xb1\x3a\x0f\x64\x15\xdf\x87\xbc\x8b\x85\xff\x3d\x72\x4c\x45\x37\x9a\x67\x77\x1e\x69\x7a\xe6\x6c\x5a\x4b\xc4\x72\x0c\x57\x2d\x63\x44\xbf\x35\xe6\x2c\x7e\xae\xd3\x57\x66\xc8\x74\x19\xc5\x25\x06\xa0\x48\x66\x44\x5b\xba\xae\x3b\x06\x6b\x4c\x5b\x99\xa4\x49\x52\x5f\xb7\x0c\x98\xd7\x59\x3e\x19\x71\xf7\xa0\x01\x90\x94\x68\xf6\x58\x47\xda\xce\xff\x61\xa0\x8c\xaf\xb3\x3a\x9f\x4b\x62\x00\xda\x1f\xe3\xc0\x34\x89\xe6\xbe\x4e\x9a\xd6\x88\x81\x2e\x5a\x02\xb0\x58\xbb\x70\xe6\x7e\xb4\x8f\x2d\xb7\xdc\x8b\x5f\x22\x0e\x6f\x27\x71\xd9\xf4\x7c\x92\xcc\xf7\x5f\x68\xff\xf3\x7a\x52\xbb\x1e\x6e\x0f\x1f\xf6\xb2\x36\x46\xf0\xdb\xef\x7f\x02\x00\x00\xff\xff\x84\x59\x8d\x21\xff\x00\x00\x00") + +func examplesVolumesVsphereVsphereVolumePvYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesVsphereVsphereVolumePvYaml, + "examples/volumes/vsphere/vsphere-volume-pv.yaml", + ) +} + +func examplesVolumesVsphereVsphereVolumePvYaml() (*asset, error) { + bytes, err := examplesVolumesVsphereVsphereVolumePvYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/vsphere/vsphere-volume-pv.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesVsphereVsphereVolumePvcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xca\x31\xae\xc2\x30\x10\x84\xe1\xde\xa7\x98\x0b\x3c\x29\x79\xa5\x5b\x0a\x2a\x04\xa2\x08\xf5\xca\x1e\x21\x8b\xd8\x0e\xbb\x9b\x9c\x1f\x59\x82\xf2\x9b\xf9\x5f\xa5\xe5\x88\x1b\xd5\x8a\x39\x9b\x2f\x7d\xdd\x2b\x4f\xab\x94\x1a\x64\x2b\xcb\x38\x7a\x8b\x38\xe6\x50\xe9\x92\xc5\x25\x06\xa0\x49\x65\xc4\x76\xa4\x69\x9a\xe6\x60\x1b\xd3\x58\x25\x25\x9a\x5d\x7a\xa6\x0d\x02\x7f\xb8\x53\xf2\x43\x8b\xf3\xda\x12\x03\xa0\xb4\xbe\x6b\xfa\x05\xca\xf7\x4e\xf3\xaf\x00\xf3\xae\xf2\x64\xc4\xff\xb9\x7c\x02\x00\x00\xff\xff\xce\x28\xae\xfa\x9b\x00\x00\x00") + +func examplesVolumesVsphereVsphereVolumePvcYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesVsphereVsphereVolumePvcYaml, + "examples/volumes/vsphere/vsphere-volume-pvc.yaml", + ) +} + +func examplesVolumesVsphereVsphereVolumePvcYaml() (*asset, error) { + bytes, err := examplesVolumesVsphereVsphereVolumePvcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/vsphere/vsphere-volume-pvc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesVsphereVsphereVolumePvcpodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xbd\x6e\xc6\x20\x0c\x45\x77\x9e\xc2\x2f\x90\x26\x59\x59\x3b\xb7\xca\x94\xb5\x72\xc1\xa2\x28\x01\x23\x70\xe8\xeb\x57\x10\xfa\xa3\x7e\xa3\xaf\x7d\x8e\x7c\x31\xf9\x9d\x72\xf1\x1c\x35\xd4\x55\x1d\x3e\x5a\x0d\x1b\x5b\x15\x48\xd0\xa2\xa0\x56\x00\x11\x03\x69\x48\x35\xb1\x55\x25\x91\x69\x99\xe1\x28\xe8\x23\xe5\xd2\xa6\x69\xdc\x08\x15\x99\x7e\x56\x0a\x00\xc0\x07\x74\xa4\xc1\x99\xfc\xe4\x79\x76\xcc\xee\xa4\xb7\x5f\x7a\xee\xc8\x27\xbd\x17\xca\x75\x20\x95\xcf\x2b\xd0\x0b\x5f\x51\xba\xfd\x9f\xff\x5e\xf7\x1c\x20\xb4\xab\x0d\xe5\x43\xc3\xad\xaa\xc1\x1e\xea\xdb\xf1\xf8\xdc\x1f\x38\xb5\xe2\x45\x28\xca\xde\xc3\xe7\x13\x7d\xd0\xc3\x6b\xda\xf0\x3a\x8a\x9b\x65\x59\x56\xf5\x15\x00\x00\xff\xff\x3b\x4c\x8e\x8d\x2c\x01\x00\x00") + +func examplesVolumesVsphereVsphereVolumePvcpodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesVsphereVsphereVolumePvcpodYaml, + "examples/volumes/vsphere/vsphere-volume-pvcpod.yaml", + ) +} + +func examplesVolumesVsphereVsphereVolumePvcpodYaml() (*asset, error) { + bytes, err := examplesVolumesVsphereVsphereVolumePvcpodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/vsphere/vsphere-volume-pvcpod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesVsphereVsphereVolumePvcscYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcc\xb1\x4e\xc3\x50\x0c\x85\xe1\xfd\x3e\xc5\x79\x81\x86\x96\xf1\xae\x0c\x4c\x08\xc4\x50\x66\xf7\xe6\x80\xac\x26\x76\xb8\x76\xf2\xfc\x28\x28\x1d\xad\xdf\xe7\xbb\xab\x8d\x15\x1f\xec\xa1\x91\xb4\xbc\xfa\xb4\xce\x7c\x99\x44\xe7\x22\x8b\x5e\xf7\xe0\x56\xb1\x5d\xca\xcc\x94\x51\x52\x6a\x01\x4c\x66\x56\x2c\x5b\x8b\x76\x3e\x5f\x0a\x20\x66\x9e\x92\xea\x16\x7b\x07\xb6\x7f\x68\xb8\x31\x65\xb8\xaf\x37\x76\x63\x32\x06\xf5\xa7\x48\xef\xf2\xc3\x53\x9b\x24\xa2\xe2\x5b\x22\x4b\x2c\x6c\xfb\x4e\x5a\x63\xc4\x9b\x8f\x3c\x98\x13\x3e\x29\xe3\x57\xd7\xe4\xbb\x35\x16\xa0\x33\x7c\xed\xed\xf1\xd0\xf9\xbb\x32\xf2\xb8\x80\x43\xaf\x78\x7e\xd5\xf2\x17\x00\x00\xff\xff\xfa\xdf\x23\x8b\xde\x00\x00\x00") + +func examplesVolumesVsphereVsphereVolumePvcscYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesVsphereVsphereVolumePvcscYaml, + "examples/volumes/vsphere/vsphere-volume-pvcsc.yaml", + ) +} + +func examplesVolumesVsphereVsphereVolumePvcscYaml() (*asset, error) { + bytes, err := examplesVolumesVsphereVsphereVolumePvcscYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/vsphere/vsphere-volume-pvcsc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesVsphereVsphereVolumePvcscpodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xbd\x6e\xc6\x20\x0c\x45\x77\x9e\xc2\x2f\x90\x26\x59\x59\x3b\xb7\xca\x94\xb5\x72\xc1\xa2\x28\x01\x23\x70\xe8\xeb\x57\x10\xfa\xa3\x7e\xa3\xaf\x7d\x8e\x7c\x31\xf9\x9d\x72\xf1\x1c\x35\xd4\x55\x1d\x3e\x5a\x0d\x1b\x5b\x15\x48\xd0\xa2\xa0\x56\x00\x11\x03\x69\x48\x35\xb1\x55\x25\x91\x69\x99\xe1\x28\xe8\x23\xe5\xd2\xa6\x69\xdc\x08\x15\x99\x7e\x56\x0a\x00\xc0\x07\x74\xa4\xc1\x99\xfc\xe4\x79\x76\xcc\xee\xa4\xb7\x5f\x7a\xee\xc8\x27\xbd\x17\xca\x75\x20\x95\xcf\x2b\xd0\x0b\x5f\x51\xba\xfd\x9f\xff\x5e\xf7\x1c\x20\xb4\xab\x0d\xe5\x43\xc3\xad\xaa\xc1\x1e\xea\xdb\xf1\xf8\xdc\x1f\x38\xb5\xe2\x45\x28\xca\xde\xc3\xe7\x13\x7d\xd0\xc3\x6b\xda\xf0\x3a\x8a\x9b\x62\x96\x65\x55\x5f\x01\x00\x00\xff\xff\x2d\x29\x5e\x48\x2d\x01\x00\x00") + +func examplesVolumesVsphereVsphereVolumePvcscpodYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesVsphereVsphereVolumePvcscpodYaml, + "examples/volumes/vsphere/vsphere-volume-pvcscpod.yaml", + ) +} + +func examplesVolumesVsphereVsphereVolumePvcscpodYaml() (*asset, error) { + bytes, err := examplesVolumesVsphereVsphereVolumePvcscpodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/vsphere/vsphere-volume-pvcscpod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesVsphereVsphereVolumeScFastYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x24\xcc\x41\x8a\xc3\x30\x0c\x85\xe1\xbd\x4f\xa1\x0b\x4c\x86\x30\x9b\xc1\xdb\x1e\xa1\xd0\xbd\x52\xbf\x34\xc6\xb1\x65\x24\x25\xb4\x3d\x7d\x49\xb3\x7b\xf0\xf3\xbd\x92\x5b\x8a\x74\x75\x51\x7e\xe0\xb2\xb2\x59\xe0\x9e\x6f\x50\xcb\xd2\x22\xd9\x19\x86\xf2\x6f\x43\x96\xdf\x7d\x9c\xe0\x3c\x86\x0a\xe7\xc4\xce\x31\x10\x35\xae\x88\x34\xb3\x79\xe8\x2a\x7b\x3e\x20\x34\x52\xd9\x26\x68\x83\xe3\x94\xd6\x17\x28\x7e\x76\x59\xb7\x8a\xd0\x59\xb9\xc2\xa1\x76\x5c\x10\xa5\x6c\x65\x16\xad\xec\x91\xde\x50\x41\xf2\x25\xdf\xcb\xb7\xcd\xe6\xaf\x8e\x78\x4c\xc2\xd3\xff\x3e\x01\x00\x00\xff\xff\x3f\xc2\x4d\xea\xb3\x00\x00\x00") + +func examplesVolumesVsphereVsphereVolumeScFastYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesVsphereVsphereVolumeScFastYaml, + "examples/volumes/vsphere/vsphere-volume-sc-fast.yaml", + ) +} + +func examplesVolumesVsphereVsphereVolumeScFastYaml() (*asset, error) { + bytes, err := examplesVolumesVsphereVsphereVolumeScFastYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/vsphere/vsphere-volume-sc-fast.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesVsphereVsphereVolumeScVsancapabilitiesWithDatastoreYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xcf\xb1\x6e\xb4\x40\x0c\x04\xe0\x7e\x9f\xc2\xa2\xff\xef\xcf\x5d\x15\x6d\x9b\x28\x2f\x90\x53\xfa\x39\x98\x0b\x2b\x60\x8d\x6c\xb3\x45\x9e\x3e\x02\x94\xd2\xfa\x34\xb6\x67\x2a\x75\xc8\xf2\x19\x6a\xf8\xe6\xdb\x0c\xf7\x84\xb5\x7c\xd1\xbc\x68\xcd\xe2\x27\x5c\xa6\x57\xbf\x14\xfd\xdf\xae\x0f\x06\xae\x69\x61\x60\x40\x20\x27\x91\x8a\x85\x59\x9e\xf0\x48\xab\x69\x2b\x7b\x90\x96\x65\xda\x1e\xb4\xca\xe0\x99\xf4\x75\xa4\xf1\x5f\xd3\x79\x5b\x98\x56\x18\x16\x06\xcd\xf7\x15\x22\x43\xf1\xe9\xa9\xb6\x20\xb2\xfc\xd0\x94\x43\x8c\xa5\x9f\x4e\x43\x60\xff\x83\x59\x9a\xa3\xbe\xff\x8d\x07\x8e\xea\xf1\x81\x32\x6f\x46\xbf\xeb\x5d\x67\x1a\x82\x59\xba\x5b\x77\x78\x8f\x7e\xbf\xeb\xb4\x86\x38\x2a\x75\xb7\x97\x2e\xfd\x06\x00\x00\xff\xff\xf9\x08\x18\x1b\xf7\x00\x00\x00") + +func examplesVolumesVsphereVsphereVolumeScVsancapabilitiesWithDatastoreYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesVsphereVsphereVolumeScVsancapabilitiesWithDatastoreYaml, + "examples/volumes/vsphere/vsphere-volume-sc-vsancapabilities-with-datastore.yaml", + ) +} + +func examplesVolumesVsphereVsphereVolumeScVsancapabilitiesWithDatastoreYaml() (*asset, error) { + bytes, err := examplesVolumesVsphereVsphereVolumeScVsancapabilitiesWithDatastoreYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/vsphere/vsphere-volume-sc-vsancapabilities-with-datastore.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesVsphereVsphereVolumeScVsancapabilitiesYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x24\xce\xb1\x6e\x83\x40\x10\x84\xe1\xfe\x9e\x62\x45\x1f\x27\x76\x15\x5d\x1b\x29\x2f\x10\x2b\xfd\x18\xc6\xe1\x74\x1c\x8b\x76\x17\x8a\x3c\xbd\x05\xd4\x9f\xe6\xd7\xd4\x32\x0f\x59\x7e\x42\x0d\x7f\xfc\x9a\xe0\x9e\xb0\x94\x5f\x9a\x17\x9d\xb3\xf8\x09\x97\xfa\xe9\x97\xa2\xef\xdb\xf5\xc1\xc0\x35\x35\x06\x06\x04\x72\x12\x99\xd1\x98\xe5\x09\x8f\xb4\x98\x6e\x65\x1f\xd2\xb2\xd4\xf5\x41\x9b\x19\x3c\x97\xbe\x8c\x34\xbe\x6d\x3a\xad\x8d\x69\x81\xa1\x31\x68\xbe\x27\x44\x86\xe2\xf5\xa9\xd6\x10\x59\xfe\x69\xca\x21\xc6\xd2\xd7\xc3\x46\xf5\xf8\x46\x99\x56\xa3\xdf\xf5\xae\x13\x0d\xc1\x2c\xdd\xad\x3b\xbc\x47\xbf\xa7\x9d\xb6\x21\x8e\xd7\xdd\xed\xa3\x4b\xaf\x00\x00\x00\xff\xff\xef\xf2\xeb\xb1\xda\x00\x00\x00") + +func examplesVolumesVsphereVsphereVolumeScVsancapabilitiesYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesVsphereVsphereVolumeScVsancapabilitiesYaml, + "examples/volumes/vsphere/vsphere-volume-sc-vsancapabilities.yaml", + ) +} + +func examplesVolumesVsphereVsphereVolumeScVsancapabilitiesYaml() (*asset, error) { + bytes, err := examplesVolumesVsphereVsphereVolumeScVsancapabilitiesYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/vsphere/vsphere-volume-sc-vsancapabilities.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesVsphereVsphereVolumeScWithDatastoreYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\x8e\x3b\x4e\xc0\x30\x10\x44\x7b\x9f\x62\x2f\x40\x50\x3a\xe4\x16\x6e\x80\x44\x3f\xc1\x13\x62\x39\xfe\x68\x77\xe3\x82\xd3\xa3\x28\xa2\x1c\x3d\xbd\xd1\x2b\xb9\xa5\x28\x9f\xde\x15\x3f\x7c\x3f\x61\x16\x30\xf2\x17\xd5\x72\x6f\x51\xec\x01\x4b\x79\xb3\x25\xf7\xd7\xb9\x6e\x74\xac\xa1\xd2\x91\xe0\x88\x41\xa4\xa1\x32\xca\x0e\xf3\x30\xb4\xcf\x7c\x8b\xd4\x28\xe5\xda\xa8\x8d\xce\xc7\xb4\x71\x50\xf9\x32\xfb\x79\x55\x86\x01\x45\xa5\x53\xed\xbe\x10\x49\xd9\xca\xde\xb5\xc2\xa3\xfc\x52\x3b\x93\x1f\xf9\xbb\x3c\x0c\x8e\xbb\x83\x51\xa6\xa1\x7d\xfc\xcf\xf0\x17\x00\x00\xff\xff\x79\xf9\x64\x2e\xbc\x00\x00\x00") + +func examplesVolumesVsphereVsphereVolumeScWithDatastoreYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesVsphereVsphereVolumeScWithDatastoreYaml, + "examples/volumes/vsphere/vsphere-volume-sc-with-datastore.yaml", + ) +} + +func examplesVolumesVsphereVsphereVolumeScWithDatastoreYaml() (*asset, error) { + bytes, err := examplesVolumesVsphereVsphereVolumeScWithDatastoreYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/vsphere/vsphere-volume-sc-with-datastore.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesVsphereVsphereVolumeSpbmPolicyWithDatastoreYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\x8d\xcb\x4a\x03\x41\x10\x45\xf7\xfd\x15\xf5\x03\x46\xdc\x49\xef\x44\xd7\x41\x08\x64\x5f\xa6\x6f\x92\xa2\x1f\xd5\x54\x55\x06\xf4\xeb\x65\x66\x74\x79\x39\x9c\x7b\xaa\x8c\x92\xe9\x14\x6a\x7c\xc3\x7b\x63\xf7\xc4\x53\xce\x30\x17\x1d\x99\x7c\x07\x87\xfa\xea\x07\xd1\xe7\xe5\x25\x75\x04\x17\x0e\xce\x89\x68\x70\x47\xa6\x2b\x7b\xa4\x69\xba\xc8\xea\xc0\x32\xd5\xc7\x17\x6c\x20\xb0\x4b\x3e\xef\x30\x3c\x2d\xda\x1e\x1d\x69\xb2\x71\x47\xc0\x7c\xbd\x20\x2a\xe2\xf5\xaa\xd6\x39\x32\xfd\xc0\x14\x25\xee\x72\xa9\x1b\xfb\xcb\x7f\x6a\x93\xcb\xf7\x71\xab\xdd\xb4\x95\xdd\xe3\xe0\x95\x23\xd3\xf9\xf4\x76\xfc\xf8\x9f\xe9\x37\x00\x00\xff\xff\xc0\xcd\xbc\xfb\xd3\x00\x00\x00") + +func examplesVolumesVsphereVsphereVolumeSpbmPolicyWithDatastoreYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesVsphereVsphereVolumeSpbmPolicyWithDatastoreYaml, + "examples/volumes/vsphere/vsphere-volume-spbm-policy-with-datastore.yaml", + ) +} + +func examplesVolumesVsphereVsphereVolumeSpbmPolicyWithDatastoreYaml() (*asset, error) { + bytes, err := examplesVolumesVsphereVsphereVolumeSpbmPolicyWithDatastoreYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/vsphere/vsphere-volume-spbm-policy-with-datastore.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _examplesVolumesVsphereVsphereVolumeSpbmPolicyYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\x8d\xbb\x8a\xc3\x40\x0c\x00\xfb\xfd\x0a\xfd\xc0\xf9\xb8\xee\xd8\x36\x7d\x08\x04\xd2\x2b\x5e\xd9\x16\xfb\xd0\x22\xc9\x86\xe4\xeb\x83\xed\xd4\xc3\xcc\x64\x6e\x29\xc2\xdd\x45\x71\xa6\x4b\x41\xb3\x80\x9d\x1f\xa4\xc6\xd2\x22\xd8\x09\x86\xfc\x6f\x03\xcb\xef\xf6\x17\x2a\x39\x26\x74\x8c\x01\xa0\x61\xa5\x08\x13\x9a\x87\xae\xb2\xf1\xee\x90\x46\xc8\xeb\x93\xb4\x91\xd3\x29\x59\x5f\x48\xe9\x67\x93\xb2\x56\x0a\x1d\x15\x2b\x39\xa9\xed\x09\x80\xc4\x96\x27\xd1\x8a\x1e\xe1\x4d\x2a\x94\x7c\xe1\x31\x1f\xec\xbb\xbf\x49\xe1\xf1\x75\x3d\x6e\xb3\x94\x14\x3e\x01\x00\x00\xff\xff\xf6\xd1\x7e\xce\xb6\x00\x00\x00") + +func examplesVolumesVsphereVsphereVolumeSpbmPolicyYamlBytes() ([]byte, error) { + return bindataRead( + _examplesVolumesVsphereVsphereVolumeSpbmPolicyYaml, + "examples/volumes/vsphere/vsphere-volume-spbm-policy.yaml", + ) +} + +func examplesVolumesVsphereVsphereVolumeSpbmPolicyYaml() (*asset, error) { + bytes, err := examplesVolumesVsphereVsphereVolumeSpbmPolicyYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "examples/volumes/vsphere/vsphere-volume-spbm-policy.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8f\x4d\x8a\x84\x30\x10\x85\xf7\x39\x45\x51\x2b\x0d\x0e\xee\x05\x4f\x22\x61\x28\x63\x0c\x61\x4a\x23\xf9\x11\xe6\xf6\x4d\x6c\xa1\x69\x50\x6b\xf9\xde\xe3\xe3\xab\x8d\xf4\x1f\x59\x53\x4d\x66\xa6\xcc\xe9\x77\x77\xd1\x8d\x8e\x5d\xfa\x87\x1e\x06\x6c\xdb\x4f\xd0\x6d\x79\x64\xa7\x51\xd5\x42\xcc\x8e\x8d\x0d\x3e\x6f\x95\x00\x00\x58\x69\x31\xd0\x03\x46\x9f\x83\x36\x11\x9b\x23\x8d\x41\x47\xe8\xc1\xb2\x1f\xab\xe1\x48\xca\xa1\x94\xad\x3c\x17\xaa\x6e\xc4\x3d\xed\x74\xfb\x29\x9c\x2b\x24\x4a\x89\x85\x50\x8a\x44\x36\x1e\xc6\x94\x93\x5f\x68\x25\x6b\x26\x54\xef\xee\xf1\xa7\xe0\x76\x4a\xa6\x4c\xef\x45\x88\xf9\x42\x62\xc0\xee\xcb\x50\x3d\x9b\xd4\xe2\x15\x00\x00\xff\xff\x89\xd7\x44\xb4\x6c\x01\x00\x00") + +func testE2eTestingManifestsBuildBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsBuild, + "test/e2e/testing-manifests/BUILD", + ) +} + +func testE2eTestingManifestsBuild() (*asset, error) { + bytes, err := testE2eTestingManifestsBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsFlexvolumeDummy = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x6f\x4f\xeb\x36\x18\xc5\x5f\xc7\x9f\xe2\x5c\xb7\x9a\x00\xb5\x0d\xf0\x66\x12\x08\xb4\x0e\xb8\xa3\xba\xd0\x4e\xb4\xec\x0e\xad\xd3\x95\x9b\x3c\x49\xac\x39\xb6\x67\x3b\xb4\x55\xd5\xef\x3e\x25\x4d\xd1\x65\x20\x74\xfb\xae\xe7\xf9\xf7\x3b\x27\xee\x7c\x8a\x17\x52\xc7\xbe\x60\xac\x83\x2b\x63\xd7\x4e\xe6\x45\xc0\xe9\xf1\xc9\xcf\x98\x15\x84\x2f\xd5\x82\x9c\xa6\x40\x1e\xc3\x2a\x14\xc6\xf9\x01\xeb\xb0\x0e\xee\x64\x42\xda\x53\x8a\x4a\xa7\xe4\x10\x0a\xc2\xd0\x8a\xa4\xa0\x7d\xa5\x87\x3f\xc8\x79\x69\x34\x4e\x07\xc7\x38\xa8\x1b\x78\x5b\xe2\x87\xe7\xac\x83\xb5\xa9\x50\x8a\x35\xb4\x09\xa8\x3c\x21\x14\xd2\x23\x93\x8a\x40\xab\x84\x6c\x80\xd4\x48\x4c\x69\x95\x14\x3a\x21\x2c\x65\x28\x9a\x33\xed\x92\x01\xeb\xe0\xa9\x5d\x61\x16\x41\x48\x0d\x81\xc4\xd8\x35\x4c\xf6\x7d\x1f\x44\x68\x80\xeb\x5f\x11\x82\x3d\x8b\xe3\xe5\x72\x39\x10\x0d\xec\xc0\xb8\x3c\x56\xbb\x46\x1f\xdf\x8d\xae\x6e\xc6\xd3\x9b\xfe\xe9\xe0\xb8\x19\x79\xd4\x8a\xbc\x87\xa3\x7f\x2b\xe9\x28\xc5\x62\x0d\x61\xad\x92\x89\x58\x28\x82\x12\x4b\x18\x07\x91\x3b\xa2\x14\xc1\xd4\xbc\x4b\x27\x83\xd4\x79\x0f\xde\x64\x61\x29\x1c\xb1\x0e\x52\xe9\x83\x93\x8b\x2a\xbc\x0a\x6b\x4f\x27\xfd\xab\x06\xa3\x21\x34\xf8\x70\x8a\xd1\x94\xe3\xd7\xe1\x74\x34\xed\xb1\x0e\xbe\x8e\x66\xb7\x93\xc7\x19\xbe\x0e\x1f\x1e\x86\xe3\xd9\xe8\x66\x8a\xc9\x03\xae\x26\xe3\xeb\xd1\x6c\x34\x19\x4f\x31\xf9\x8c\xe1\xf8\x09\x5f\x46\xe3\xeb\x1e\x48\x86\x82\x1c\x68\x65\x5d\xcd\x6f\x1c\x64\x1d\x23\xa5\x75\x66\x53\xa2\x57\x00\x99\xd9\x01\x79\x4b\x89\xcc\x64\x02\x25\x74\x5e\x89\x9c\x90\x9b\x67\x72\x5a\xea\x1c\x96\x5c\x29\x7d\xfd\x31\x3d\x84\x4e\x59\x07\x4a\x96\x32\x88\xd0\x28\x6f\x4c\x0d\x18\xfb\x7c\x77\xf3\xe7\xb7\xeb\xc7\xfb\xfb\xa7\x6f\x77\x93\xdf\x2e\xba\x9b\xd7\xc2\x59\x9f\xc7\xa1\xb4\x71\xa6\x68\xd5\x4f\xab\xb2\x5c\x0f\x94\xc9\xf9\x96\x31\x65\xf2\x83\x43\x6c\x58\x64\x9d\xd4\x21\x03\xef\x1e\x71\x5c\xfe\x74\xc2\xb6\x8c\xa5\xb4\xa8\xda\x2a\x25\x85\x01\xef\x1e\xa4\x22\xd0\x21\x9a\x9e\x4b\xf0\xff\x9f\xd9\xf2\x66\xcc\x94\xa6\xd2\x61\x37\xd8\xec\x00\x6f\x35\x74\x7f\xe1\x2c\xba\x1f\xcf\x7e\x1f\xce\x6e\x2f\xba\x27\x2c\x2a\xff\x49\xa5\x43\xdf\xa2\xbb\x69\xe5\x2d\x2e\xe3\x94\x9e\x63\x5d\x29\x85\xd3\x1a\x25\xda\xcd\xf6\x03\x42\x69\x33\x0f\x6d\x34\x7d\xd8\xbf\xa3\xbd\x25\xa5\x0c\x32\x67\x4a\xd4\xbe\x9f\x8d\xaa\x4a\xfa\xb4\x27\xdf\x4f\xc7\x52\xa7\xb4\x1a\x14\xa1\x54\x9c\x45\xca\xe4\xe0\x9b\x39\xf7\x41\x84\xca\xcf\xf9\xd9\x9c\x4f\xab\x24\x21\xef\xe7\x7c\xcb\x59\x44\x2b\x19\x70\x5c\xbb\xac\xf4\x5b\x97\xad\xf6\xd6\xa5\x2b\xf1\xee\xc5\xb7\xe8\x55\xbb\xe1\x03\x77\x3f\xce\x68\x6c\x7d\x9d\xc9\x0c\x7f\x81\x77\x8d\xe5\xb8\x00\x97\x5a\x06\x8e\xbf\xcf\xeb\x17\xa4\x5f\xd0\x6b\x75\xc7\xfd\xd1\xfa\xde\x9c\x27\xc2\x8a\x85\x54\x32\x48\xaa\x8b\x9b\x39\x17\x21\x88\xa4\x98\xf3\xb3\x4c\x28\x4f\xdb\xef\x10\x32\xc9\x98\x2f\x64\x16\x18\x4b\x84\xa7\x96\x41\xea\xf6\x8b\x1e\xb2\x28\x7a\x79\x18\x47\x2c\x8a\xce\xcf\x59\xd4\x66\x58\xd7\x5e\xe2\xdc\xd7\x8e\x6a\xf5\x1d\xbe\xb1\x09\xf0\x95\xb5\xc6\x05\x4a\x77\x21\xec\x11\xc8\x8b\x84\xb1\xe6\xcf\x09\xfb\x2f\x00\x00\xff\xff\x97\xad\xac\x16\x7d\x05\x00\x00") + +func testE2eTestingManifestsFlexvolumeDummyBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsFlexvolumeDummy, + "test/e2e/testing-manifests/flexvolume/dummy", + ) +} + +func testE2eTestingManifestsFlexvolumeDummy() (*asset, error) { + bytes, err := testE2eTestingManifestsFlexvolumeDummyBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/flexvolume/dummy", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsFlexvolumeDummyAttachable = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x6d\x6f\xda\xca\x12\xfe\xec\xfd\x15\xd3\x05\x5d\x35\x15\x81\x24\xb7\x52\xa5\x44\xa9\x2e\x37\xa4\xb7\xa8\x04\xaa\x42\xd3\x5b\x1d\x8e\xaa\xc5\x1e\xdb\xa3\xb3\xde\x75\xf7\x25\x04\x45\xfc\xf7\xa3\xb5\x71\x8b\x93\x34\x27\x47\x87\x6f\xcc\x3c\x3b\xf3\xcc\x33\x2f\xee\xbc\x18\xac\x48\x0d\x6c\xce\x58\x07\x2e\x74\xb9\x31\x94\xe5\x0e\x4e\x8e\x8e\xdf\xc0\x22\x47\xf8\xe0\x57\x68\x14\x3a\xb4\x30\xf4\x2e\xd7\xc6\xf6\x59\x87\x75\x60\x42\x31\x2a\x8b\x09\x78\x95\xa0\x01\x97\x23\x0c\x4b\x11\xe7\xd8\x78\x7a\x70\x8d\xc6\x92\x56\x70\xd2\x3f\x82\x97\x01\xc0\x77\x2e\x7e\x70\xc6\x3a\xb0\xd1\x1e\x0a\xb1\x01\xa5\x1d\x78\x8b\xe0\x72\xb2\x90\x92\x44\xc0\xdb\x18\x4b\x07\xa4\x20\xd6\x45\x29\x49\xa8\x18\x61\x4d\x2e\xaf\xd2\xec\x82\xf4\x59\x07\xbe\xee\x42\xe8\x95\x13\xa4\x40\x40\xac\xcb\x0d\xe8\x74\x1f\x07\xc2\x55\x84\xc3\x2f\x77\xae\x3c\x1d\x0c\xd6\xeb\x75\x5f\x54\x64\xfb\xda\x64\x03\x59\x03\xed\x60\x32\xbe\xb8\x9c\xce\x2f\x0f\x4f\xfa\x47\xd5\x93\xcf\x4a\xa2\xb5\x60\xf0\xbb\x27\x83\x09\xac\x36\x20\xca\x52\x52\x2c\x56\x12\x41\x8a\x35\x68\x03\x22\x33\x88\x09\x38\x1d\xf8\xae\x0d\x39\x52\x59\x0f\xac\x4e\xdd\x5a\x18\x64\x1d\x48\xc8\x3a\x43\x2b\xef\x5a\x62\x35\xec\xc8\xb6\x00\x5a\x81\x50\xc0\x87\x73\x18\xcf\x39\xfc\x77\x38\x1f\xcf\x7b\xac\x03\x5f\xc6\x8b\xf7\xb3\xcf\x0b\xf8\x32\xfc\xf4\x69\x38\x5d\x8c\x2f\xe7\x30\xfb\x04\x17\xb3\xe9\x68\xbc\x18\xcf\xa6\x73\x98\xbd\x83\xe1\xf4\x2b\x7c\x18\x4f\x47\x3d\x40\x72\x39\x1a\xc0\xdb\xd2\x04\xfe\xda\x00\x05\x19\x31\x09\x9a\xcd\x11\x5b\x04\x52\x5d\x13\xb2\x25\xc6\x94\x52\x0c\x52\xa8\xcc\x8b\x0c\x21\xd3\x37\x68\x14\xa9\x0c\x4a\x34\x05\xd9\xd0\x4c\x0b\x42\x25\xac\x03\x92\x0a\x72\xc2\x55\x96\x07\x45\xf5\x19\x7b\x37\xb9\xfc\xff\xb7\xd1\xe7\xab\xab\xaf\xdf\x26\xb3\xff\x9d\x77\xef\xda\x86\xd3\x43\x3e\x70\x45\x39\x48\x25\xde\x1e\x26\xbe\x28\x36\x7d\xa9\x33\xbe\x65\xec\x7a\x38\x19\x8f\xbe\x5d\x4d\x17\xa3\xcb\xeb\xf1\xc5\xe5\x79\xaa\x75\x98\x4c\xe1\x9c\x88\x73\x10\x72\x2d\x36\xa1\x23\xce\x1b\x65\x41\x2b\x84\x1b\x21\x29\x81\x42\x7b\xe5\x20\xc1\x1b\x8a\x11\xac\x06\x01\x09\xa5\x29\x1a\xfc\x61\x65\x1d\xb0\xb9\x5e\x87\x72\x7c\x09\xd5\xb4\x58\xbf\xb2\xf8\xdd\x57\x18\x43\x37\x68\x20\x16\x52\xee\xc4\xb2\x20\x60\xe5\x33\x56\xc5\x17\x0e\xaf\x42\x86\x51\x15\x6a\x66\x46\x84\x2f\x0f\xe0\x8e\x45\x3f\x89\x76\x8f\x59\x74\x31\x9c\x4c\xce\xbb\x27\x2c\xa2\x14\x7e\x03\xde\xfd\xe1\xe5\xf0\xe2\x1c\x78\xf7\x5e\x71\x1c\x7e\x3f\x0b\xba\x29\x16\x45\x52\x67\xc0\xef\x96\xdc\x3a\xe1\xbc\x5d\xf2\xd3\x25\x7f\x27\x48\x7a\x83\x4b\xde\x5b\xf2\x02\xad\x15\x19\x56\xf6\x8a\x24\xef\xde\x85\x6c\x5b\x1e\xda\x8c\x71\x98\x9d\x5d\xf5\xbc\x7b\x77\x2f\xcf\x96\xf7\x20\xd3\x6e\x0f\xb0\xe7\x5a\xf2\x2d\x67\x51\x84\xb7\xe4\xe0\x88\x45\x29\xb1\x2d\x63\x52\x67\x75\x7d\xa5\x21\xe5\x52\xe0\xdd\x57\x1c\xde\xfe\xeb\x38\xf8\x12\x5c\xf9\x9d\x17\xe3\x5c\x03\xef\xbe\x0c\xfa\x1c\x40\x85\x79\x1b\xc2\xb7\x9b\xbd\xe5\xe1\x59\xdd\xc1\xfa\x5d\x15\x02\xf8\xae\xa9\xdd\xff\x70\xf6\x58\xfd\x73\x1f\xc7\x68\x6d\x55\x7f\x4d\xbd\x32\x3f\x56\x5f\x5d\xc4\xae\x86\x8a\xe3\x83\x64\xb5\xa9\x4e\xd6\x81\xc5\x6c\x34\x03\xb2\xd6\x23\xbc\x7e\xfd\xe6\xdf\x6f\x60\xe7\x26\x0b\xa5\xb0\xe1\xae\x7d\xbc\x06\x25\x0a\xec\x55\xf7\x69\x7f\xbc\x9e\xe6\xda\xe6\xb1\x16\xe4\x52\x6d\x1e\xa9\xbd\xe5\xa9\x59\xb5\x67\xe9\x57\x73\xd7\x1e\xab\x76\x9c\xbf\xab\xe3\x13\x0a\x92\xad\x43\x62\xd2\xa2\xfd\xd3\xfc\xac\xb6\x35\xe0\x25\x3f\x75\xc6\xe3\xbd\x26\xe9\x4a\xd6\x9a\x52\xbb\x57\xfb\x9e\x07\xe2\x9c\x3c\x5b\x9c\x56\x9c\x3a\xc8\xc7\xe1\xe2\x7d\xa5\x6f\xf1\x47\x42\x06\x0e\x4b\xa8\x64\x08\xe6\x2d\xbc\x1d\x24\x78\x33\x50\x5e\x4a\x38\x09\xd3\x1e\xd5\x7d\x3f\x74\xe0\x8a\x32\xb5\xa0\xc2\xc1\x79\x0a\x5f\x2f\xc4\x7b\x94\x52\x43\x6a\x74\x01\xe1\xc0\xdd\x68\xe9\x0b\x7c\xd1\x2c\x47\xf3\x7a\x40\x2a\xc1\xdb\x7e\xee\x0a\xf9\x17\x42\xb6\x65\xf3\xea\x57\xb2\xb5\x3c\xff\x40\xb6\x56\x9c\x7b\xb2\x99\xe2\x57\x35\x3c\x54\xc3\xd7\xf2\x3d\x25\xd8\xf3\xcb\xd6\x65\xc8\xcf\x76\x97\x55\x97\x1c\xce\x81\x93\x22\xb7\x77\x45\x9b\x21\x55\xe4\x9e\x35\x9e\xb1\x28\xc5\x8a\x24\x39\xc2\xe0\xbc\x6b\x06\xb6\x19\xd7\x3d\x06\x29\x31\x66\x73\x4a\x1d\x63\xb1\xb0\xb8\xa3\x40\x8a\x45\xf5\x93\x03\x16\x45\xcd\x32\xbf\x62\x51\x74\x76\x16\xe8\x34\x9e\xe6\xf8\x34\x9e\xd6\xd6\x06\xc0\xbd\x73\xd0\xe0\x7e\xae\x5b\x00\xed\x2f\x5f\x83\xd8\xeb\x54\x95\xa8\xbd\x39\x0d\xaa\xd5\xd1\x80\xbb\x37\x2a\x0d\xee\xd5\xc1\xe3\x9f\xa2\xa9\x76\x60\x7d\x59\x6a\xe3\xc2\x32\xef\x7f\x31\xd0\x8a\x98\xb1\xea\xcf\x31\xfb\x33\x00\x00\xff\xff\xfb\xbb\x96\x17\x4e\x0a\x00\x00") + +func testE2eTestingManifestsFlexvolumeDummyAttachableBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsFlexvolumeDummyAttachable, + "test/e2e/testing-manifests/flexvolume/dummy-attachable", + ) +} + +func testE2eTestingManifestsFlexvolumeDummyAttachable() (*asset, error) { + bytes, err := testE2eTestingManifestsFlexvolumeDummyAttachableBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/flexvolume/dummy-attachable", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsGuestbookFrontendDeploymentYamlIn = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x92\x41\x6f\xdb\x3c\x0c\x86\xef\xfe\x15\x2f\xf0\x1d\x7a\x49\xbe\x25\xd8\x65\xd0\x71\xd8\xda\xf5\x50\x74\x58\x8b\x5d\x0b\x5a\x66\x12\xa1\x32\xa9\x49\xb4\xb7\xa0\xe8\x7f\x1f\x14\x24\x8e\x3d\x9d\xec\x87\xe4\xc3\xd7\x90\x29\x85\x9f\x9c\x4b\x50\x71\xe0\x3f\xc6\x52\x1f\xcb\x87\x71\xdb\xb2\xd1\xb6\x79\x0d\xd2\x39\x7c\xe1\x14\xf5\xd8\xb3\x58\xd3\xb3\x51\x47\x46\xae\x01\x84\x7a\x76\xd8\x65\x15\x63\xe9\x9a\x92\xd8\x57\x9c\x39\xc5\xe0\xa9\x38\x7c\x6c\x00\xe3\x3e\x45\x32\xae\x15\x60\x3e\x5e\x4f\xa4\x96\x63\xb9\xbc\x01\x94\x92\xc3\x7e\xe0\x62\xad\xea\xeb\x84\x2d\x70\x9e\x6d\xaa\xe8\xb2\xad\x1e\xaf\x62\x14\x84\xf3\x64\x5a\x9f\xc3\xa5\x43\x5a\x67\xee\x42\x99\x54\xa1\xa7\x3d\x3b\xbc\xbd\xfd\x7f\xf7\xf9\xf6\x2c\xbc\xaf\xec\xfd\x7d\xea\xc9\x5c\x74\xc8\x9e\x67\xc1\x2a\xfc\x55\x73\x2d\x18\xe0\xd3\xe0\xb0\xdd\x6c\xfa\x05\xed\xb9\xd7\x7c\x3c\x15\x1e\xc2\x54\x61\x19\xaf\xc3\x97\x84\x77\x5f\x9f\x5f\xbe\x3d\x3e\x3d\x3f\xbd\xdc\xfe\x78\x7c\x98\x59\x46\x8a\x03\x3b\x74\x52\x66\xf0\x3f\xdc\xef\x70\xd4\x21\xc3\xc7\xa1\x18\xe7\xfa\xed\xbb\xb0\x47\xa7\x5c\x20\x6a\x08\xe2\xe3\xd0\x31\xa8\x4e\xa2\x70\x1e\x83\xe7\x15\xec\xc0\x02\xd3\x85\x2a\x48\x31\xa6\x0e\xe4\x3d\x97\x52\xe3\x85\xac\x52\xaf\x19\x23\xe5\x40\x6d\xe4\x02\x53\xec\x82\x74\x17\x13\x0e\x5a\xec\x1f\xcb\x4e\x57\xf0\xda\x9f\x06\x75\xb0\xba\x0b\x37\xd7\xf8\x37\x88\x41\x18\xd4\xea\xc8\x2b\x90\x74\x18\xe4\xd2\x6e\x07\x5e\xc8\x4e\x9d\x2d\x47\xfd\xed\x16\xfc\x6c\x63\x19\x27\x9c\x34\xcf\x2f\x63\x7d\xfd\x0b\xbe\x6b\x36\x87\x4f\x9b\xe6\x6f\x00\x00\x00\xff\xff\x88\xde\x3e\xa0\xdd\x02\x00\x00") + +func testE2eTestingManifestsGuestbookFrontendDeploymentYamlInBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsGuestbookFrontendDeploymentYamlIn, + "test/e2e/testing-manifests/guestbook/frontend-deployment.yaml.in", + ) +} + +func testE2eTestingManifestsGuestbookFrontendDeploymentYamlIn() (*asset, error) { + bytes, err := testE2eTestingManifestsGuestbookFrontendDeploymentYamlInBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/guestbook/frontend-deployment.yaml.in", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsGuestbookFrontendServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8f\x3f\x4b\x04\x31\x10\xc5\xfb\x7c\x8a\x07\xb6\x9e\x68\x27\x29\xed\x04\x0b\x41\xb0\x9f\x4d\x66\xcf\x70\xd9\x99\x30\x99\x9c\xee\xb7\x97\xdd\xb5\xb0\xbc\x6e\x98\xf7\x87\xdf\xa3\x56\x3e\xd9\x7a\x51\x89\xb8\x3e\x85\x4b\x91\x1c\xf1\xc1\x76\x2d\x89\xc3\xc2\x4e\x99\x9c\x62\x00\x84\x16\x8e\x98\x4d\xc5\x59\x72\x00\x2a\x4d\x5c\xfb\x26\x01\xd4\x5a\xc4\x79\x70\xf7\x49\xf5\xb2\xbf\xbc\xb0\xfd\xf3\xf7\xc6\x69\xf3\xde\xa1\xcc\x58\x75\x18\x52\x1d\xdd\xd9\xd0\x47\x6b\x6a\xde\x51\xfc\x1e\x43\x92\x2e\x0b\x8b\xc3\xbf\x18\xb3\xd6\xaa\xdf\x45\xce\x70\x05\x0d\xd7\x85\xbc\x24\xaa\x75\x45\x32\x26\xe7\xbd\x90\x04\xfc\xe3\x6c\x42\x15\x55\x29\x9f\x26\xaa\x24\x89\x33\x5e\xdf\x31\xab\x1d\x55\x7f\x20\xe8\xc7\xb6\x87\x3d\xea\x6b\xe3\x88\x37\xa5\xfc\x72\x64\x2c\x00\x3b\xcd\xc6\x7a\xda\xcf\x88\xe7\xc7\x00\x74\xae\x9c\x5c\xed\xd6\xc1\xbf\x01\x00\x00\xff\xff\xc5\xce\xd2\xc0\x59\x01\x00\x00") + +func testE2eTestingManifestsGuestbookFrontendServiceYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsGuestbookFrontendServiceYaml, + "test/e2e/testing-manifests/guestbook/frontend-service.yaml", + ) +} + +func testE2eTestingManifestsGuestbookFrontendServiceYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsGuestbookFrontendServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/guestbook/frontend-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsGuestbookRedisMasterDeploymentYamlIn = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8e\xcd\x4a\xc4\x40\x10\x84\xef\xf3\x14\xfd\x02\xd1\x0d\x82\xe2\x9c\xbd\x78\x10\xc4\x83\xf7\xce\xa4\x90\x61\xe7\xcf\x9e\x8e\xb8\x2c\xfb\xee\x32\x4b\x92\x4d\xec\xd3\xd4\x57\x4c\x55\x71\xf1\x9f\x90\xea\x73\xb2\x84\x5f\x45\x6a\xcf\x7a\xff\xd3\x0f\x50\xee\xcd\xd1\xa7\xd1\xd2\x0b\x4a\xc8\xa7\x88\xa4\x26\x42\x79\x64\x65\x6b\x88\x12\x47\x58\x12\x8c\xbe\x76\x91\xab\x42\x4c\x2d\x70\xcd\x12\x94\xe0\x1d\x57\x4b\xbd\x21\x52\xc4\x12\x58\xd1\x1c\xa2\x6d\x44\xbb\xc0\x03\x42\x5d\x14\x11\x97\x32\xa7\xae\x48\x72\x80\xa5\xb9\x63\x81\xea\x21\x96\x06\x76\x47\xa4\xf1\x4a\x97\xf6\x76\x2e\x27\x65\x9f\x20\x6b\x72\x37\x0f\xfe\x17\xe3\x23\x7f\xc1\xd2\xf9\x7c\xf7\xd1\x3a\x5f\x9b\xbc\x5c\x6e\xd5\xa8\x79\x12\x87\xcd\xc0\x06\xbf\x27\x54\xdd\x31\x22\x57\x26\x4b\xfd\xe1\x10\x77\x34\x22\x66\x39\x5d\x8d\x37\xbf\x3a\x25\xcb\xf6\x7b\x77\xdb\xfb\x9e\x45\x2d\x3d\x3e\x3c\x3d\x9b\xbf\x00\x00\x00\xff\xff\x03\x8f\x28\xbe\x9d\x01\x00\x00") + +func testE2eTestingManifestsGuestbookRedisMasterDeploymentYamlInBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsGuestbookRedisMasterDeploymentYamlIn, + "test/e2e/testing-manifests/guestbook/redis-master-deployment.yaml.in", + ) +} + +func testE2eTestingManifestsGuestbookRedisMasterDeploymentYamlIn() (*asset, error) { + bytes, err := testE2eTestingManifestsGuestbookRedisMasterDeploymentYamlInBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/guestbook/redis-master-deployment.yaml.in", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsGuestbookRedisMasterServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x8d\x41\xaa\xc3\x30\x0c\x44\xf7\x3e\xc5\x5c\x20\x8b\xcf\x87\x96\xea\x14\x85\x42\xf7\x8a\x3d\x14\x13\xc7\x36\xb2\xc8\xf9\x4b\xd2\x52\xba\xee\x4e\xd2\x7b\x9a\xd1\x9e\xef\xb4\x91\x5b\x15\x6c\x7f\x61\xc9\x35\x09\x6e\xb4\x2d\x47\x86\x95\xae\x49\x5d\x25\x00\x55\x57\x0a\x8c\x29\x8f\x69\xd5\xe1\xb4\x00\x14\x9d\x59\xc6\x8e\x01\xed\xfd\xcd\x8f\xd5\x5a\xa1\xe0\x63\x02\x9e\x69\x82\x59\xe3\xc2\x9a\xc2\xe8\x8c\xfb\x5f\x6f\xe6\x47\xc0\x74\x8c\x82\xd3\xff\xf9\xf2\xf2\xd5\x1e\xf4\xeb\xf7\x71\xb0\x30\x7a\xb3\x5f\x0a\x9f\x01\x00\x00\xff\xff\x35\x30\xd5\x6a\xe9\x00\x00\x00") + +func testE2eTestingManifestsGuestbookRedisMasterServiceYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsGuestbookRedisMasterServiceYaml, + "test/e2e/testing-manifests/guestbook/redis-master-service.yaml", + ) +} + +func testE2eTestingManifestsGuestbookRedisMasterServiceYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsGuestbookRedisMasterServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/guestbook/redis-master-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsGuestbookRedisSlaveDeploymentYamlIn = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x92\x41\x6f\x13\x31\x14\x84\xef\xfb\x2b\x46\xe2\xd0\x4b\x02\x0d\x48\x20\x7c\x44\x40\xe9\xa1\x2a\x6a\x2a\xae\xd5\x5b\xef\xa4\xb5\x6a\x3f\x2f\xb6\x77\x21\xaa\xfa\xdf\x91\x43\x36\xd9\xf5\x29\x99\xf1\x7c\xf3\xac\xb7\xd2\xbb\x5f\x4c\xd9\x45\x35\xe0\xdf\x42\xad\x3f\xf3\xbb\x71\xd3\xb2\xc8\xa6\x79\x76\xda\x19\x7c\x65\xef\xe3\x3e\x50\x4b\x13\x58\xa4\x93\x22\xa6\x01\x54\x02\x0d\x12\x3b\x97\xd7\xd9\xcb\xc8\x26\xf7\xb4\xd5\x49\xec\xbd\xb3\x92\x0d\xde\x37\x40\x61\xe8\xbd\x14\x56\x07\x98\x13\xea\xf1\xd2\xd2\xe7\xe9\x1f\x20\x7d\x7f\x84\x9e\xa4\x14\x3d\x0d\xfe\x57\x4c\x5a\x71\x4c\x06\xad\xd8\x67\x6a\x77\x50\xa7\xf2\x7a\x6c\xd4\x22\x4e\x99\x4e\xe0\xf5\x71\xdc\x25\xc5\x05\x79\xa4\xc1\xcb\xcb\xdb\xab\x2f\x77\xb5\x73\x5b\xed\xeb\xaa\xbe\xbe\x9e\xfb\x99\xe3\x90\x2c\x67\x53\x56\xf1\xf7\xc0\x5c\x16\x1a\x60\xfb\xc1\x60\x73\x79\x19\x16\x6a\x60\x88\x69\x7f\x30\x6e\xdc\xc9\xa1\x8e\xe7\xf0\x34\xdf\xd5\xb7\xfb\x87\x1f\xb7\xdb\xfb\xed\xc3\xf7\xbb\xdb\x9b\x19\x65\x14\x3f\xd0\xa0\xd3\x3c\x13\xdf\xe0\x7a\x87\x7d\x1c\x12\xac\x1f\x72\x61\xaa\x2f\xdf\xb9\x47\x74\x91\x19\x1a\x0b\x9c\x5a\x3f\x74\x84\xd4\x24\x32\xd3\xe8\x2c\x57\x28\x4f\x54\x94\xb8\x40\x39\xcd\x85\xd2\x41\xac\x65\xce\x10\xad\x13\xba\x14\xb5\x6e\x1e\xa3\x24\x27\xad\x27\x4a\xc4\xce\x69\x57\x11\x08\x52\x4b\x17\x94\x63\xc5\x45\xc6\x53\xcc\x65\x05\x1b\xc3\x21\x1f\x87\x72\x88\x5c\x9c\x1f\x72\x01\xef\x94\x90\x36\x8e\x5c\x41\x8e\x7b\x9c\x40\x83\x4e\xd1\x1a\x3b\xdc\x6c\xe9\xe3\x1f\xb3\xb8\x75\xa4\x51\xc7\x93\xdc\xc7\x34\x5f\xcb\xfa\xfc\x35\xfc\x8c\xa9\x18\x7c\xfc\xf0\xe9\x73\xf3\x2f\x00\x00\xff\xff\x5f\x63\xd5\x94\xf9\x02\x00\x00") + +func testE2eTestingManifestsGuestbookRedisSlaveDeploymentYamlInBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsGuestbookRedisSlaveDeploymentYamlIn, + "test/e2e/testing-manifests/guestbook/redis-slave-deployment.yaml.in", + ) +} + +func testE2eTestingManifestsGuestbookRedisSlaveDeploymentYamlIn() (*asset, error) { + bytes, err := testE2eTestingManifestsGuestbookRedisSlaveDeploymentYamlInBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/guestbook/redis-slave-deployment.yaml.in", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsGuestbookRedisSlaveServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x8c\x41\xaa\xc3\x30\x10\x43\xf7\x3e\x85\x2e\x90\xc5\xe7\x43\x4b\xe7\x1a\x85\xee\x27\xb6\x16\x43\x1c\xdb\xcc\x98\x9c\xbf\x24\xb4\x17\xe8\x4e\xe2\xe9\x49\x87\xbd\xe8\x61\xbd\x09\x8e\xbf\xb4\x59\x2b\x82\x27\xfd\xb0\xcc\xb4\x73\x6a\xd1\xa9\x92\x80\xa6\x3b\x05\xce\x62\xb1\x44\xd5\x83\x09\xa8\xba\xb2\xc6\x49\x01\x1d\xe3\x83\xaf\xea\xbd\x52\xf0\x1d\x02\xd3\xe8\x82\x55\xf3\xc6\x56\x52\x0c\xe6\x53\x1b\xdd\xe7\xe5\x2f\x57\x14\xdc\xfe\xef\x8f\x04\x04\x2b\xf3\xec\xfe\xc3\xf5\x3b\x00\x00\xff\xff\x51\x66\x08\x5a\xd1\x00\x00\x00") + +func testE2eTestingManifestsGuestbookRedisSlaveServiceYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsGuestbookRedisSlaveServiceYaml, + "test/e2e/testing-manifests/guestbook/redis-slave-service.yaml", + ) +} + +func testE2eTestingManifestsGuestbookRedisSlaveServiceYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsGuestbookRedisSlaveServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/guestbook/redis-slave-service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsIngressHttpIngYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x8f\x41\x4a\x83\x31\x10\x46\xf7\x39\xc5\x77\x81\xb6\x76\x27\x73\x03\x37\xe2\xca\xfd\x24\xff\xd4\xfc\xd4\x64\xc2\xcc\x58\xaa\xa7\x97\x14\x2d\x82\x20\x28\xb8\x7b\xdf\x23\x90\x37\x3c\xd6\x47\x31\x5f\xb5\x13\xe4\x1c\xd2\x27\xfa\xee\xb4\xcf\x12\xbc\x4f\xc7\xb5\x2f\x84\xbb\xfe\x64\xe2\x9e\x9a\x04\x2f\x1c\x4c\x09\xe8\xdc\x84\x20\xa5\x6a\xe3\x91\x7c\x48\x99\xd6\x5e\x9e\xc5\x27\x6c\x50\xd5\x83\x70\x50\xdd\x66\xb6\x6d\xd1\x96\x00\xa0\x46\x0c\xba\x10\x30\x38\xaa\x7f\x8e\xcd\x65\x12\x76\x07\xd5\x0f\x05\x64\x2e\x47\xe9\x0b\x5d\x05\xe0\x62\xa7\xb5\xc8\xfd\xf5\xfb\x2a\xbc\x88\xf9\xf9\xfb\x9b\x07\xb5\x20\xdc\xde\x7c\xc9\x99\x29\x99\xdf\x7e\x91\x93\xd9\xfe\x92\xf3\xfa\x63\xce\x7f\x1f\x9c\xde\x03\x00\x00\xff\xff\xc3\xc8\xda\x09\xd7\x01\x00\x00") + +func testE2eTestingManifestsIngressHttpIngYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsIngressHttpIngYaml, + "test/e2e/testing-manifests/ingress/http/ing.yaml", + ) +} + +func testE2eTestingManifestsIngressHttpIngYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsIngressHttpIngYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/ingress/http/ing.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsIngressHttpRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xbd\x6e\xeb\x30\x0c\x85\x77\x3f\x05\x5f\x20\x7f\xcb\x45\xa0\xf5\x0e\x5d\x83\xb6\xe8\x5a\x30\xd2\xa9\x25\x54\x16\x05\x8a\xc9\xd0\xa7\x2f\x84\xd6\x89\x8d\xe6\x6c\xe2\x87\xf3\x89\x20\xd7\xf4\x06\x6d\x49\x8a\xa3\xeb\x61\xf8\x4c\x25\x38\x7a\x46\xcd\xc9\xb3\x25\x29\xff\xa5\x98\x4a\xce\xd0\x61\x82\x71\x60\x63\x37\x10\x15\x9e\xe0\x08\x3e\x4a\x04\x07\x68\x1b\x5a\x85\xef\x44\x7f\xba\xcd\xd1\x61\x20\x32\x4c\x35\xb3\xa1\x13\xa2\xa5\xa1\x27\xf3\x19\xb9\xcd\x2f\x22\xae\x75\x2d\xed\xc3\x59\xdc\xe3\xa5\x18\xa7\x02\xbd\x95\x36\x0f\x56\x99\x75\x69\xe2\x11\x8e\x46\xaf\xdb\x24\xbb\x51\x64\xcc\x78\xbf\x2b\x76\xbd\xd3\xa0\x57\xa8\x3b\x6c\xff\xdd\x6a\x55\xd4\x16\x4b\x6d\xee\xbf\x9e\x44\xcd\xd1\x71\x7f\xdc\xdf\xa8\x82\x43\x2a\x68\xed\xa4\x72\xc6\xbd\x45\x14\xcd\xea\x13\x6c\x39\x22\xaa\x6c\xd1\xd1\x2e\x82\xb3\xc5\xaf\x35\xfa\x2b\x27\xaa\xd0\x24\xe1\x05\x5e\x4a\xf8\x3d\xe9\x1c\x4b\x13\xe4\x62\x0f\x59\xbb\x78\x8f\xd6\x5e\xa3\xa2\x45\xc9\x61\x4d\x3f\x38\xe5\x8b\x62\x49\xf7\xc3\x77\x00\x00\x00\xff\xff\x21\x52\x2b\x65\x09\x02\x00\x00") + +func testE2eTestingManifestsIngressHttpRcYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsIngressHttpRcYaml, + "test/e2e/testing-manifests/ingress/http/rc.yaml", + ) +} + +func testE2eTestingManifestsIngressHttpRcYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsIngressHttpRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/ingress/http/rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsIngressHttpSvcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x8f\xb1\x4a\x06\x41\x0c\x84\xfb\x3c\xc5\xbc\xc0\x82\x76\xb2\xad\xbd\x1c\x28\xf6\x71\x37\x78\x8b\xfb\x5f\x42\x36\x1c\xde\xdb\xcb\xad\xd7\x58\xd8\xd8\xd9\x85\xef\x23\xc3\x0c\x5b\x7b\x15\x1f\x4d\xb7\x8c\xfd\x9e\x3e\xda\x56\x33\x9e\xc5\xf7\x56\x84\x6e\x12\x5c\x39\x38\x13\xb0\xf1\x4d\x32\xa4\xac\xba\x0a\x57\xf1\xf1\x49\x40\xe7\x37\xe9\xe3\xd4\x00\x9b\xfd\xf0\x34\x4c\xca\xa9\xe2\x30\xc9\x78\xd2\x2a\x8b\x7a\x10\x60\xea\x31\x9f\xd2\x3c\x33\x1e\xee\x66\x42\xb0\xbf\x4b\x2c\x17\xba\xa0\xb9\x86\x16\xed\x19\x2f\x8f\xcb\x24\xdf\x4d\xd6\x08\x23\x60\x48\x97\x12\xea\xbf\x74\x48\x29\xd1\xdf\x27\x1e\xff\x61\x22\x7d\x05\x00\x00\xff\xff\xb7\x97\x1c\xfe\xc3\x01\x00\x00") + +func testE2eTestingManifestsIngressHttpSvcYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsIngressHttpSvcYaml, + "test/e2e/testing-manifests/ingress/http/svc.yaml", + ) +} + +func testE2eTestingManifestsIngressHttpSvcYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsIngressHttpSvcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/ingress/http/svc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsIngressNginxRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\x08\xf4\xac\xc4\x59\x5b\x20\x33\xb0\x43\xd1\x6e\xdd\x0e\xdb\x8c\xb6\xd8\xb5\xa0\x65\xd6\x16\x22\x4b\x86\x48\x27\xed\xbe\x7e\x50\xe2\x38\x76\x9b\xac\xbb\x8c\x47\xbe\x27\xf2\xf1\x89\xd2\x19\xb8\xca\xb8\x67\x30\xae\x0a\xc4\x0c\xda\x3b\x09\xde\x5a\x0a\x70\x77\x9d\x60\x6b\x7e\x51\x60\xe3\x5d\x06\xeb\x45\xb2\x32\xae\xcc\xe0\x8e\x5a\x6b\x34\x8a\xf1\xee\x7a\x60\x27\x0d\x09\x96\x28\x98\x25\x00\x0e\x1b\xca\x76\x85\x55\x5f\x58\x1d\x0a\x27\x00\x16\x0b\xb2\x1c\xa9\x00\xab\x25\x2b\x6c\xdb\xd7\x7c\x5b\x24\xdc\x92\x8e\x9c\xb0\x6b\xc8\x19\x2c\x12\x00\x26\x4b\x5a\x7c\x78\xef\x34\x80\x50\xd3\x5a\x14\xda\x31\xc7\x02\x63\x8c\x35\xbc\x57\x69\x17\xc7\xc6\xea\xe1\xbd\xd4\x18\x42\xa1\x31\x6e\xeb\xcf\x6d\x40\x4d\x39\x05\xe3\xcb\x7b\xd2\xde\x95\x9c\x41\xda\xd3\xa2\x21\x68\x1c\x85\x41\x83\x02\xd3\x60\x45\x19\x54\x3a\xcc\x8c\x9f\x57\xde\x57\x96\x1e\x0f\xc4\xf9\x29\x4b\xb3\x74\xf6\x71\x96\xaa\x82\x04\x67\x8b\x41\xaf\x35\x6b\x72\xc4\x9c\x07\x5f\xd0\x61\x50\x80\x5a\xa4\xbd\x25\x19\xa7\x00\x5a\x94\x3a\x83\x79\x4d\x68\xa5\xfe\x3d\x85\x7c\x90\x0c\x16\xe9\x87\xcb\x8b\x49\x9e\x75\x4d\xd1\x92\xaf\x0f\x0f\xf9\x08\x30\xce\x88\x41\x7b\x43\x16\x5f\x86\xb1\xcf\xd3\x11\x43\x4c\x43\xbe\x93\x01\xbc\xfc\x17\x8f\x63\x9c\x41\xc7\x04\xa5\xdf\xb8\x0d\x86\x12\xae\xf2\x6f\x03\x44\x6e\x3d\x1e\x48\xf5\xa5\xf2\x9f\x37\x8f\x3f\xae\xbe\x7f\x9e\x08\x5f\xa3\xed\xe8\x4b\xf0\xcd\xd4\x02\x80\x27\x43\xb6\xbc\xa3\xa7\xd7\xf9\x1e\xc9\xb7\x1e\xed\x37\x69\x16\x3b\xfc\xa5\xe5\x7d\x7e\x75\xfd\xdf\xfa\x72\x8b\xfa\xd0\x3c\xde\xd0\x68\x97\xd5\x61\xbb\xf2\xed\xdd\x2d\xc7\xee\xd7\x9e\xe5\x4d\xfa\xcd\x91\x8b\x8b\xf3\xa3\x67\xc6\xf9\x33\xd8\x10\xd0\x73\xeb\x99\x60\xb1\x4c\x97\x29\x88\x07\xd4\x3a\xfe\x24\xbb\x7f\x85\x05\x85\xc1\x38\xe8\x82\x85\x7e\x7f\x63\xae\xe3\x51\x11\xa9\x0d\x83\x61\xf0\x6d\x7c\x34\x68\x4f\x8b\xda\x36\x39\x2a\x6b\x8a\x60\xa8\x26\x76\x9c\x7c\x39\x23\x8e\x52\x25\x3d\x61\x67\x45\x15\xa8\x57\xe4\x4a\xc5\x14\xd6\x46\xd3\xa7\x55\x57\x90\xe2\x17\x16\x6a\xe6\x7b\x4e\x7c\x43\x7b\x62\xf2\x27\x00\x00\xff\xff\x86\x21\xf7\x9b\x46\x05\x00\x00") + +func testE2eTestingManifestsIngressNginxRcYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsIngressNginxRcYaml, + "test/e2e/testing-manifests/ingress/nginx/rc.yaml", + ) +} + +func testE2eTestingManifestsIngressNginxRcYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsIngressNginxRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/ingress/nginx/rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsIngressStaticIpIngYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\xb1\xae\xdb\x30\x0c\x45\x77\x7d\xc5\xc5\xeb\xec\xbc\x66\x2b\xfc\x07\x5d\x8a\x0e\x41\x77\x5a\xba\xb0\x09\xdb\x92\x21\xd2\x41\xf2\xf7\x85\xec\xb4\x79\x1b\x79\x41\x9e\x7b\x64\xd3\x3f\xac\xa6\x25\xf7\xe0\xc3\x99\xdb\x68\x9f\xf7\xeb\x40\x97\x6b\x98\x35\xa7\x1e\x3f\xf3\x58\x69\x16\x56\xba\x24\x71\xe9\x03\x90\x65\x65\x0f\x73\x71\x8d\x9d\x6e\x01\xf8\x86\xdb\xa4\x06\xc9\xb9\xb4\xb4\x64\xb4\x2d\x25\x26\x0c\x4f\xf8\x44\x38\xcd\xb1\x6f\x25\x43\x96\xa5\x44\x71\xcd\x23\xe4\x05\xd1\xed\x72\x40\xde\xff\xd6\x1f\x01\xe6\x7d\x60\xcd\x74\xda\x45\xcb\xa7\x9e\x32\x97\x71\x29\x83\x2c\xdd\x7f\x83\xee\x34\xfa\xf8\x47\xfb\x08\xb6\x31\x36\x84\x2f\x2f\xd2\xe9\x67\xb6\xaf\xb4\x96\x76\xc6\x58\xe9\xe0\x43\xcd\xed\xac\xbf\x15\x8c\xcc\xac\xe2\x84\x3a\xea\x9e\x0f\xf5\x55\x66\x42\xdb\xac\x86\xa4\x95\xd1\x4b\x7d\xb6\x97\x0e\x27\xe5\xd7\x51\xff\xa6\x06\x60\x90\x38\x33\xa7\x56\x0e\x18\xeb\x5d\x23\xcf\x33\xc6\xa9\x4c\x94\xc4\x6a\xdd\xe4\xbe\xd9\xd7\x93\xdf\xa5\x7a\x8f\x1f\xdf\x43\xf8\x1b\x00\x00\xff\xff\xc3\x19\x9b\x22\x9e\x01\x00\x00") + +func testE2eTestingManifestsIngressStaticIpIngYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsIngressStaticIpIngYaml, + "test/e2e/testing-manifests/ingress/static-ip/ing.yaml", + ) +} + +func testE2eTestingManifestsIngressStaticIpIngYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsIngressStaticIpIngYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/ingress/static-ip/ing.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsIngressStaticIpRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8e\x3b\x6e\x03\x31\x0c\x44\x7b\x9d\x82\x17\x58\x7f\x52\x04\x86\xda\x5c\x20\x48\x91\x36\x60\xb4\x83\x5d\x22\x5a\x91\xa0\x08\x9f\x3f\x10\x82\xb5\x5d\xc4\xd3\x11\x83\xf7\x38\x6c\xf2\x09\xef\xa2\x2d\xd3\xf5\x9c\x7e\xa4\xcd\x99\x3e\x60\x55\x0a\x87\x68\x7b\xd3\x16\xae\xb5\xc2\xd3\x86\xe0\x99\x83\x73\x22\x6a\xbc\x21\x13\xca\xaa\x2b\x78\x86\xf7\x69\x8d\xb0\x9e\xba\xa1\x8c\xde\xff\x0c\x3d\xd3\x4b\x22\x0a\x6c\x56\x39\x30\x1a\xa2\x47\xcf\x48\xe5\x6f\xd4\xbe\x5f\x44\x6c\xf6\x9f\x7a\x54\xbb\x7e\xa4\x68\x0b\x96\x06\xbf\xa1\xd3\xd3\x59\xbb\x5a\x36\x5e\x90\x69\x29\x7e\x10\x3d\x2e\xaa\x4b\xc5\xd7\x5d\x74\x1c\x64\x87\x5f\xe1\xf9\x7c\x78\xbd\x61\xa6\x1e\x0f\x03\xa7\xfb\xef\x77\xf5\xc8\x74\x39\x5d\x4e\xe9\x37\x00\x00\xff\xff\x58\x57\x76\xce\x4a\x01\x00\x00") + +func testE2eTestingManifestsIngressStaticIpRcYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsIngressStaticIpRcYaml, + "test/e2e/testing-manifests/ingress/static-ip/rc.yaml", + ) +} + +func testE2eTestingManifestsIngressStaticIpRcYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsIngressStaticIpRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/ingress/static-ip/rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsIngressStaticIpSecretYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x97\xdd\x8e\xa3\xbc\x9a\x85\xcf\xfb\x2a\xfa\x06\x66\x64\x43\x28\x75\x5a\xda\x07\x05\xb1\x21\x24\x76\x82\xf1\x6b\x83\xcf\x08\x46\x45\xc5\x86\xd0\x29\x2a\x3f\x5c\xfd\x28\xdf\xb7\xf7\x48\xf3\xa7\x39\x5e\x7a\x25\x84\xd6\xb3\xd6\x72\x33\x7d\xaa\xee\xfa\xf5\x79\x19\x7f\xff\xbc\xe1\x1f\xb6\x99\x9b\xdf\x3f\x7e\xfe\x9c\xfd\xd7\xbf\xb7\xd7\xf9\xf7\xcf\x7d\x89\xe6\x7d\x89\x13\x01\x36\x97\x9f\xf1\x46\xa8\x1c\x4a\x30\x79\x81\x28\x88\xbf\x34\x34\x27\x0e\xe7\x25\x88\x7d\xe7\xf8\xa6\xd0\xfd\xd1\x20\x1a\x96\x90\xc7\x06\xf9\x5d\x01\xeb\x88\x3b\x1c\x9b\x30\xae\xb5\xe3\xb5\x04\x72\x17\x88\xcb\x16\xac\x2c\xf5\x76\x11\x94\xd2\xc2\xf1\x50\x01\xe5\x45\x68\x57\xc2\x89\x18\x50\x3e\x4a\x5f\xef\x0a\x47\xb9\x04\xf6\x54\x67\x61\xd4\x42\xc3\xda\x59\x65\x95\x7b\x1e\x2a\xc1\xc1\xd3\x50\x68\x6b\x04\x35\x02\x60\x26\x45\x25\xbe\x0c\xd8\xd4\xa6\x3c\xeb\xd2\x07\x3b\x41\x14\xd4\x5e\xc4\x06\x4c\xc8\xb2\xfe\xd0\x38\xf2\x90\x4a\x9c\xbb\xf7\xe9\x28\x08\x0d\x25\x08\x5d\xff\x53\xeb\xfe\xa5\x91\x35\x29\x2a\xcb\x05\x35\xbd\x04\x1e\x76\xc4\x90\x42\xf1\xc4\xa0\x48\xff\x7f\xdf\x92\x38\x35\x6a\x10\x1a\x14\xdd\x0b\x42\xd1\x29\x55\x99\x18\xc5\x59\x84\xfd\x97\x4c\xf1\xc1\x0e\x39\x14\x88\xc7\x80\x7c\x28\x28\x35\xa5\x9b\x6f\xda\xf9\x8b\x1d\xf8\xa1\x50\xaf\x7f\x90\x8b\x02\xc4\x68\x90\x2a\x0a\x10\x9b\x02\x51\x71\x42\x6c\x67\x02\x4b\x0b\x47\xf7\xcc\x3d\x52\xb3\xd0\x51\x60\xcb\x58\xc0\x9e\x06\x6c\x0f\x1b\xb1\xed\xdc\x7a\x6c\x25\xd7\xa5\xc6\xf7\x96\xb6\x48\x29\x43\x0e\x80\x07\xd0\x8f\x27\x04\x62\xd0\x1b\xbb\x11\xe7\x1c\x33\x14\xcd\x4d\x25\x32\x3e\x52\xd7\xdc\xa7\xcf\xc6\x15\x91\xa8\x68\x29\xdd\xf4\x79\x22\xbe\x34\x32\x66\x2d\xc1\xcd\x3e\x20\x2b\x73\xf6\xb7\x6e\xf8\x0a\x59\xa0\xbe\x25\xea\xbf\x19\xca\x17\x8b\xdf\x23\x21\x73\x5f\x9e\xfb\xe1\xb0\xe9\x93\xee\xec\x30\x4b\xcd\x91\x85\xb6\x6a\x75\xf4\xa7\x19\xd9\x92\x38\x84\xb9\x7e\x54\xcc\x51\x6d\xd0\x74\x53\x5a\x49\x19\xe6\x65\xe3\xcd\xa6\x71\x13\x96\x4b\x9f\xeb\x8c\xc6\xa7\x8d\x2d\x98\x37\x73\x33\xf8\x1b\xa4\x96\x36\x99\x42\x1c\xd6\xb3\x92\x7d\x53\x06\x38\x16\x92\xf7\x6d\xea\x73\x11\xda\xdc\x0c\xbf\x76\xdd\x68\x6a\x7e\x7e\xbf\x2b\x64\x66\x9b\xf6\xae\x08\xb7\x57\x46\x63\x06\xa1\x29\x44\xb0\x3e\x37\xcf\xf5\xb3\xdc\xb4\xb7\x93\xce\x6f\xa7\x94\xef\x55\x26\x9c\x1d\x56\xf8\x94\x92\xa0\x81\x1a\x77\xa3\x9a\x4c\x25\xf4\x49\xbd\x07\x0c\xdd\x97\xce\x29\x03\xef\x13\x02\xc5\x2f\x6c\xe4\xa2\x4c\x1f\xea\xe4\x3d\x31\xa3\x5f\x35\x78\x9a\x20\x80\x6b\x31\x90\xc8\xe8\x5f\x77\x71\x8e\x3d\x5f\x5a\xc4\xbc\xe9\x0b\x70\x0b\x10\xb1\x91\x9b\x9e\x1b\x6c\x22\xa5\xdc\xf3\x44\x6c\x65\xaa\x7e\x7f\xa2\x3c\x92\xf4\x63\x49\xdc\x94\xea\x0d\x8b\xf8\xd9\x57\x65\x6a\xc2\xee\xcc\xcf\x75\xd5\x3f\x4f\xe9\xea\x0e\x84\x4e\x7c\xa0\x7f\x14\xf0\xd8\x22\x15\x17\x9a\x1e\x00\x30\xe5\x99\xdd\x82\xf2\x44\xf9\xed\x5d\xa2\x3c\xd1\xa0\x52\x81\x66\x72\x82\x48\x31\x9d\xe7\x4d\x4a\x76\x4c\xd3\x46\x6e\xd4\x5c\x3b\x91\xa8\x60\xba\x69\x29\x0e\x0c\x70\x72\x20\x36\x66\x4a\xb9\xb2\xb2\x42\x03\x4e\x6a\xa0\xff\xfd\xf6\x51\xab\x89\x71\x8d\x3f\x05\xc9\xab\x66\x58\x1b\x4e\x56\x0f\x09\x34\x14\xf7\xe9\xaf\x5b\x51\x59\x21\x1c\x8e\xe5\x8b\xd9\x73\xff\xbf\xfa\x53\x92\xff\xf4\x67\x52\xc0\x25\xd4\x1b\x86\xa1\x9a\x70\x33\x5a\x52\x54\x79\x26\xe1\x72\x3d\x54\xf4\x5b\x2c\x86\x24\xae\x77\x35\xf0\xb8\x90\x4a\x9d\x02\x6b\xac\x9e\x64\x3d\x58\xde\x84\x9c\x02\x56\x8b\x59\xf2\x91\x6d\xec\x4d\xa4\x2b\x2c\x03\xfe\x56\x52\xba\x2a\x87\x22\xea\xf4\x5c\xab\x45\x39\x31\x14\xb7\xce\x4f\x8d\x5c\x4c\x26\xc0\x1f\xcd\x48\xa1\x40\xed\xee\x00\x13\x14\xc1\xba\x6f\x49\xfe\x30\x63\x1f\x76\x99\xe8\x1b\xe9\x91\x05\x7b\x68\x86\xfa\x5e\x56\x93\xda\x07\xfc\x22\xc3\xbc\x6e\x86\xcb\xbd\xc4\x35\xae\x83\xa9\x51\x83\x30\x36\xa4\x61\xa1\x14\x34\x48\x91\x46\x91\x95\xf5\x34\xac\xcf\x8a\x9a\x62\xba\xca\x4c\x55\xbc\xfa\xb8\x17\x9e\x56\x12\xd7\x77\x0b\xf8\xde\x8d\x1f\xf7\x1a\xf0\xb1\x74\x1f\x0f\x3b\xd8\xf4\xa0\xf3\xa3\x49\xa7\xe3\xe9\x39\x63\x70\x53\xcc\xc8\x3a\x2a\xf5\xd7\x52\x0f\x82\xb6\xc3\x1c\x31\xfd\x11\x14\x03\x77\x2d\x4c\x47\x90\xef\x38\x71\x82\xef\x97\x8f\x67\x49\xec\x1f\x96\xcc\x13\x4f\xc5\x78\x48\xa7\xb9\x18\xfd\x28\x86\x69\xa8\xa5\x0b\x6b\xd7\x2e\xdd\xa8\x0e\x72\xc0\xa0\x5c\x7f\xdc\x85\xfd\xe3\x94\xe5\x2f\xb6\x8f\x45\xa8\x06\xf1\xb9\x4e\x34\x50\xda\x62\xf3\x3c\x6c\xac\xd7\x23\xdb\xd9\x80\x61\xa0\x53\xde\x0c\xe2\xd6\x39\x5e\x0a\xcf\x93\x6e\x58\xd7\xfb\xc5\x97\x2c\x9d\x8b\x42\x6f\x43\x35\x7c\xad\x4e\xe9\x94\x03\x59\x3f\x3b\xa8\x97\xae\x12\x21\x23\xe2\xb3\x18\xa7\x9d\xd1\x82\x95\x9a\x3e\x35\x89\x8a\x5a\xab\xb0\x80\x89\x1f\x8b\xcb\x5f\x39\xbe\x07\x75\x10\xc9\xff\x91\xf1\x1f\xff\xf8\xc7\x3f\x7b\xc1\x75\xcf\xff\xd1\x0b\x05\x38\xaf\x0b\x25\xe8\x96\xcc\x54\xff\x97\x5e\x50\x41\x01\x3e\x29\x40\xc4\xd2\xe5\x63\x13\xd2\x4b\x13\xf8\xec\x50\xb5\xf7\xc2\x51\x21\xc0\xc4\x85\xe2\x9b\xc2\xcd\xc6\x06\x76\x84\xc0\xc7\xe6\x2f\x36\xd6\xf9\x4b\x2f\x42\x31\x75\xd4\x1f\x34\xe4\x5f\x8d\x74\x8b\x1c\x56\xbb\x26\xc5\x7f\x76\x68\xbb\xea\x86\xf5\xde\x6e\xa8\x2c\x47\xda\xab\x51\xa5\xc2\x93\x9b\x22\x1f\xf7\x72\x20\xf7\x93\xff\x78\xec\x42\x7b\x31\x59\x8e\x3a\x3f\xdd\x5a\x9f\xe3\x56\x47\x8d\x58\x44\xb8\xc7\xf9\xbe\xc1\x42\xaa\x45\x49\xa1\x7a\x54\x2c\x06\xc4\x7d\x1a\xd8\x68\xb6\xfb\x80\x72\x0e\xbf\x22\x16\xc6\x6f\xcd\x06\x22\x1b\xe4\x5c\x24\xeb\x52\x0e\xd1\x64\xdc\xc7\x0d\x08\x3d\xef\x03\xe5\xca\x6c\x42\x07\x62\x1e\xed\xa6\x40\x1c\x45\x6f\x32\x50\x8d\x1a\xc5\x28\xbc\xdf\xd4\x60\xb6\x4d\x30\x3d\x18\x75\x8f\xc4\xd3\x5b\xa7\xf3\x3f\xd6\xf1\x94\x0f\x76\x67\xaa\x4b\x74\xa2\xd3\x8d\x67\x94\x70\x92\xe7\xf5\x98\x7b\x95\xc5\x5f\x40\xac\x6c\x53\x9b\xc8\x73\xfe\xd0\xda\x27\x2d\xe2\x5b\xee\x50\xc8\xca\x19\x49\x67\x2e\x7a\xcc\x8d\xa6\xf4\xb1\x0f\x05\xe9\xe4\xfb\xae\x1d\xa7\x55\x0b\xfd\x0e\x36\x66\xb5\x7b\xfe\xc2\x27\x69\x76\x9a\xf0\x2b\xc7\xfd\x27\x2f\xe7\x46\x85\xea\xd6\xa4\xea\xcc\x83\xf5\x77\xeb\x4d\xd3\x7c\xce\xa8\x93\x6e\xd5\x11\x4b\x38\x56\xf4\x14\x88\xa7\x80\x2d\x56\xee\xf2\x2c\x24\x5b\xb5\x78\xca\x74\x31\x5d\x4f\xa3\x19\x55\x68\xea\x16\xa2\xc4\x90\x1e\xef\x9e\xf3\xe1\x44\xed\x58\xa0\xe8\xcd\x86\x76\xda\x23\x91\x8b\x81\x7f\x09\x14\xdd\x61\x78\x7c\xb7\x98\xdf\x55\xc5\x27\x26\x7d\x04\xbe\x8e\xf6\x81\x0a\xd4\xf0\xb1\x1c\x08\x8a\x18\xb2\x4b\x2d\x55\x93\x9c\x3d\xb1\xc8\xe3\x93\xfe\xf5\x28\xb4\xe5\x85\xa3\xb1\x00\xfe\xca\x92\xb8\xa4\x6d\xc4\x64\x7f\xa9\xbd\x45\x6c\x31\x0d\xbc\xfa\x66\xe1\x05\x1f\x04\xb2\x24\xc2\xf5\x98\x47\x2c\x98\x98\xc2\x1c\x29\xff\xb1\x62\x61\x7f\x61\x1b\xf1\x07\x9e\xbf\x76\x22\x98\x6b\xfd\x39\x6f\x21\x9d\xd8\xa9\xaa\x57\xdc\x6f\xaf\x2a\xb3\x52\x8e\x79\x68\x42\x4a\x98\x14\x9a\x8d\x02\x9d\x9e\x73\x50\x8e\xfd\x0d\x36\xc6\xf3\xaa\x0d\x0f\x95\x89\x4a\xba\xc5\xa7\xb3\x60\x0c\xe7\x7f\x4e\x23\x7d\x2b\x83\xf9\x20\x33\x35\xab\xf7\xe9\x06\x98\x9f\xcd\x73\x36\xad\xeb\x53\x83\x5e\x5c\xda\xb4\xc0\xe6\x0d\x32\x83\x8b\x01\x47\x3c\x54\x5f\x00\xfd\x11\x34\x16\x05\xe0\x45\xe1\x7e\xa5\x52\xab\xf7\xc8\x56\x0c\xc7\xe1\x1e\xf1\x54\xe9\x9e\x74\x83\xd5\x7a\xe8\xbd\x0a\xa7\x63\x32\xa8\x50\x4b\xff\x14\xd4\xe2\xa2\x9a\xde\x4a\xcc\x9d\xd4\x04\x09\x17\x0d\x8d\x9e\xb4\xf0\x5e\xb7\x1b\x12\x8a\x05\xee\xc6\xcd\x47\xb5\xf0\x46\x3a\xfc\x3c\x68\x73\x2e\x11\x4e\x4a\x67\x27\x0b\xbf\x56\x80\x7b\x90\xc8\xa7\x80\xa6\x09\xe8\xfb\xae\xc6\xb0\x28\x35\xbd\xb2\x7d\xdf\x9d\xcd\x81\x55\xdb\xc8\x2e\x14\x2b\x45\xae\x8d\x57\xea\xb4\x89\x63\x13\xf0\xf2\x90\x89\x15\x0c\x8f\x55\x2d\x63\x80\x85\x6f\x21\xe5\x48\x8e\xdb\xdb\x0e\xc7\x4b\x0d\x1f\xc8\x50\x1b\xc9\x85\xe3\x3a\x14\x09\xbc\x5f\xa2\x5d\xe0\x1f\x4a\xf7\x91\xf5\x71\xd6\xf9\x18\xea\x85\x7e\xcb\x8a\xaf\xb4\x5b\x2b\x41\xee\xd7\xae\xca\x3f\xb9\xe7\xdf\x2a\x7b\x0f\xf7\x61\xfc\x59\x2f\xe2\x60\x30\xdd\x17\x83\x15\x82\x9a\xf8\x90\x59\xb4\x0b\xcc\x56\x9e\xcd\xb5\xc4\xea\x53\xa1\x7a\x49\x06\xee\x0f\xc9\x3a\x61\x67\x7e\x6b\xdc\x76\xd9\x3f\x67\x5f\x6e\xf2\xab\x24\x8f\x03\x77\xaf\x0e\xcb\x03\x49\xf9\x51\xfa\x8f\x45\x50\x76\xfb\x2b\x0f\x1d\xf5\x07\x4a\x96\x66\x63\x1a\x3b\x4c\x65\x99\xda\x74\xf7\x9c\x33\xe3\x58\x08\xc1\x3d\x3a\x95\xbf\x76\x2c\x35\x52\xea\xcb\x0d\x90\xda\xd5\x61\xac\xed\x12\x13\x7b\x8e\xa3\xd6\x01\x36\x0b\x8d\x55\x10\xc5\x2f\xe6\x24\x22\xc8\xe8\x17\xaf\x7e\x3c\x85\xe6\x6b\xff\xfc\x0a\xcd\xd9\xa6\x36\xf4\x82\x0d\x6b\xcf\x9c\xc9\xcb\x61\x5e\x14\xe1\x71\xf9\x3e\x31\x81\xbd\x02\x78\x6d\x4c\x58\x95\xae\x97\x45\xc5\xee\x9d\xbe\x5f\x9b\xe1\x12\x70\xaa\x8e\x00\x73\x62\x30\x25\xa0\x67\x62\xc8\x7a\x3a\x6d\x18\x2a\xb1\x2f\x2c\x88\xb8\xa9\x62\x2d\xb3\xfe\xed\x04\xfe\x2a\xa8\xa8\x4b\x14\x2d\x9d\xcf\xcf\x89\x7b\x34\x05\xe6\x47\x80\x69\xc7\xa4\xda\xb4\x67\x51\x36\xe0\x9f\xbb\xc0\x3c\x6d\xe5\xee\x0d\xc9\x8b\xf6\x1c\x1b\x3b\xd8\x40\x6c\x2c\x98\x2c\xfe\x6e\xc0\x7f\x36\xd4\x1f\xf8\x98\x8b\x76\xec\x2b\xa1\xed\x1e\x1c\xff\x34\xa3\x7f\xed\xe8\x41\x04\xf5\x8e\xa3\xed\xbd\xc4\x31\x97\x9a\xbf\x09\x07\x81\xad\x44\xcc\xa5\x08\x9a\xd1\x7e\x75\xf4\x7d\xa5\x94\x59\x01\xf6\x84\xfb\xf8\xdb\x02\x97\xc5\x30\xcd\x87\x64\xee\x4f\xca\xde\x85\xeb\x27\xe6\x26\xc4\x16\xb5\xe3\xe7\x36\xaa\x91\x7b\xb6\x68\xce\xe0\x7e\x79\xb2\xa5\x8f\x34\xb5\x91\xd9\x70\x51\xa2\x7c\x2c\xc0\x32\x20\x7e\x53\x87\xd3\x54\x0f\x24\x68\x17\xe3\x4f\x60\x74\xa1\x78\x54\x6b\xf5\x56\x04\xeb\x49\x69\xf1\xa5\xa1\xbd\xf3\x2c\xe6\xc2\xcd\x60\x65\x3e\x95\x5a\x24\xa0\x3e\xae\x4c\xc6\x59\xe2\xf8\xb6\x04\x23\xcb\x41\x05\xcd\x60\x2a\xe1\x54\xd4\x49\xff\x66\xd0\x74\xee\xb4\x8d\x9a\x00\x56\x7a\xf8\xba\xaa\xf1\xd5\xeb\x6b\xde\x29\x76\x6d\xd2\x87\xac\x87\xf9\x4f\x0d\xdc\x28\x49\x9f\x16\xd4\xcc\xd4\x47\x28\xb4\xe0\x22\x9d\xff\x94\x63\xb1\x3b\x90\xc7\x43\x56\x71\x0a\xc9\xba\x54\xd9\x64\xba\x6c\x1b\x76\x80\xa7\x32\x59\x17\x2f\xde\x9b\xd1\xee\x4f\xf0\xb8\x37\xcf\x19\x35\x30\xaf\x6a\x84\x03\x4d\xfd\xae\x54\xd3\x52\x3a\xdc\x6b\xb0\x4a\x81\xb9\x41\x16\xc7\x27\x64\x63\x08\x72\xd2\x7e\x4c\x59\x8d\xd4\x65\x17\xe6\x14\xb4\xcd\x8c\xf2\xe9\xa1\xea\x97\x4e\x4d\x0b\x0b\xf3\xb1\x46\x0f\xdd\x4a\xee\x79\x30\xb3\xda\x45\xe3\x81\xda\xeb\x8b\x9d\x13\x36\x49\xe3\xc5\xd2\x6c\x84\xd3\x1b\x71\x97\xc9\x5c\x89\xe0\x71\x69\xc7\x8f\x9b\x59\x6c\x9f\x8c\xb1\xd0\x9e\x46\x02\x7e\x45\x3a\xf3\xba\xd3\x0e\x43\xa8\xe2\x17\xeb\xdd\xe8\x22\xed\x55\x29\xd2\xfe\x66\x69\x5c\xe9\x4c\xe1\x86\x44\x47\x53\xf1\xe3\x21\xb5\x47\x51\xd1\xba\x1b\x8b\x27\xaf\x28\x51\xc3\x74\xd9\x05\xea\x6a\x47\xde\xd7\x8b\xdb\x41\x20\x16\xf0\x04\x99\x60\x7a\xf9\xa5\x38\x11\x8a\xea\xd0\xbe\xd9\xd1\xee\x1b\x62\xbe\x9b\x40\x1c\x80\x10\xd4\x54\xfe\x5e\x62\x95\xb2\xc5\xd2\x22\xb0\xa6\x00\xf1\xad\x86\xf9\x8d\x8d\xf4\xc9\x36\xe2\xc1\xf5\xbc\x34\xa9\xe0\xed\xb0\x5d\x89\x8f\x29\x06\x95\xf7\xa5\xef\x59\x5b\xc5\x57\x23\xfb\x5b\x01\xf6\xab\x40\x13\x67\x83\x7a\x31\x60\xec\xd9\x13\xa6\xe1\xd1\x54\xb6\x34\xd4\x5f\x4b\xa4\x40\x0f\xf3\xb6\xad\x54\x23\x36\x5c\x75\xaa\xdf\xef\x70\x7e\x14\x10\x7d\xeb\x73\x9e\x59\xd7\xde\x93\x81\xe6\xb5\xef\xb3\x83\xac\x57\x86\xf6\x93\xf9\x9c\xdf\xca\x85\x86\x7c\x78\x38\xa3\x45\x62\x53\xb3\x6d\x70\x2c\x6b\x69\x93\x02\x99\x44\x83\x78\x36\xd0\x62\x9e\xac\xbf\xe5\xd9\x7c\x6a\xa0\x53\x37\x60\x5e\x07\xc6\x6b\xf2\xf0\x25\x9a\x8e\x22\xfd\xb5\x93\x59\x2f\x4f\x78\x7b\xef\x5c\xc4\xbb\xc1\x70\x95\xd1\x7b\x3d\xf6\x67\x9b\x99\x1c\x24\x5a\x27\x9f\x7f\xef\x13\x01\x11\xd9\xd2\xb8\x2c\x95\x89\x15\x81\x8f\x12\x29\xf3\xf7\xae\x41\xbb\x1f\xee\x73\xb4\xbf\x7f\x96\x5d\x7b\xed\xe6\x1f\x43\x37\x37\xff\x7a\x1a\x8f\xcd\xd0\xfd\x7e\x0d\xa1\x7f\xfb\xfa\x5b\x9c\x9f\x53\xf7\xfb\xe7\x61\x6a\xfe\x7c\x77\x3f\x7e\xfc\x47\x00\x00\x00\xff\xff\x16\x44\xcf\x58\x51\x0f\x00\x00") + +func testE2eTestingManifestsIngressStaticIpSecretYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsIngressStaticIpSecretYaml, + "test/e2e/testing-manifests/ingress/static-ip/secret.yaml", + ) +} + +func testE2eTestingManifestsIngressStaticIpSecretYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsIngressStaticIpSecretYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/ingress/static-ip/secret.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsIngressStaticIpSvcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8e\xc1\x0a\xc2\x30\x0c\x86\xef\x7d\x8a\xff\x05\x06\x7a\x93\x5e\xbd\xcb\x40\xf1\x1e\xdb\xe0\x8a\xdd\x12\xd2\x30\xf0\xed\x65\x75\x47\xf1\x16\x3e\xbe\x24\x1f\x69\xb9\xb3\xb5\x22\x4b\xc4\x7a\x0c\xaf\xb2\xe4\x88\x2b\xdb\x5a\x12\x87\x99\x9d\x32\x39\xc5\x00\x2c\x34\x73\x04\xa7\x49\x26\xa6\xcc\xd6\x86\xc9\x5d\x5b\x00\x2a\x3d\xb8\xb6\xcd\x01\x48\xf5\x97\xd4\x94\xd3\x26\xf8\x5b\x39\xe2\x22\x99\x47\x31\x0f\x80\x8a\x79\x5f\x1d\xfa\x18\x71\x3a\xf4\x3b\x4e\xf6\x64\x1f\x77\xb4\x43\x35\x71\x49\x52\x23\x6e\xe7\xb1\x93\x6f\xd4\xf6\x23\x00\x8d\x2b\x27\x17\xfb\x5b\xf2\x09\x00\x00\xff\xff\x0d\x93\xec\x7c\xf0\x00\x00\x00") + +func testE2eTestingManifestsIngressStaticIpSvcYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsIngressStaticIpSvcYaml, + "test/e2e/testing-manifests/ingress/static-ip/svc.yaml", + ) +} + +func testE2eTestingManifestsIngressStaticIpSvcYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsIngressStaticIpSvcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/ingress/static-ip/svc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsKubectlNginxDeployment1YamlIn = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\xcd\x4a\x04\x41\x0c\x84\xef\xfd\x14\x79\x81\x51\xd7\x93\xf4\xd9\x8b\x97\x45\x10\xbc\x67\x67\x8a\x25\xd8\x9d\x0e\xdd\x41\x57\x86\x79\x77\x69\xd9\xf9\xa9\x53\x52\x55\x7c\x09\x9b\x7c\xa2\x36\x29\x1a\x09\x37\x87\xf6\xb1\x3d\x7e\x9f\x2e\x70\x3e\x85\x2f\xd1\x29\xd2\x2b\x2c\x95\xdf\x0c\xf5\x90\xe1\x3c\xb1\x73\x0c\x44\xca\x19\x91\xf4\x2a\x7a\x1b\xa6\xbd\xd2\x0c\x63\x8f\x2b\x2c\xc9\xc8\x2d\xd2\x73\x20\x72\x64\x4b\xec\xe8\x09\xd1\x11\xd3\x95\xf8\x82\xd4\xd6\x8d\x88\xcd\xee\xe4\x7f\x6b\x45\x76\x8d\x45\x9d\x45\x51\xb7\xfa\x70\xfc\x64\x43\x48\xe6\x2b\x22\xcd\xf3\xc3\xb9\xfb\x1f\x49\xf2\x19\x3f\x6f\xdd\x5d\x96\xad\x65\xa5\xfa\xe1\xee\xb0\xe3\xdf\x4b\xf5\x48\x2f\x4f\x7f\x01\x00\x00\xff\xff\xde\x81\x68\xd3\x22\x01\x00\x00") + +func testE2eTestingManifestsKubectlNginxDeployment1YamlInBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsKubectlNginxDeployment1YamlIn, + "test/e2e/testing-manifests/kubectl/nginx-deployment1.yaml.in", + ) +} + +func testE2eTestingManifestsKubectlNginxDeployment1YamlIn() (*asset, error) { + bytes, err := testE2eTestingManifestsKubectlNginxDeployment1YamlInBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/kubectl/nginx-deployment1.yaml.in", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsKubectlNginxDeployment2YamlIn = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8d\xbd\x8a\xc3\x30\x10\x84\x7b\x3f\xc5\xbe\x80\xef\xce\xdd\xa1\x3a\x4d\x1a\x13\x08\xa4\x5f\xdb\x83\x11\x91\x56\x42\x5a\x12\x07\xe3\x77\x0f\x0a\xf1\xcf\x54\xa3\xd1\xec\x37\x1c\xed\x0d\x29\xdb\x20\x86\x30\x29\xa4\xd8\xfc\xfb\x68\x3a\x28\x37\xd5\xdd\xca\x60\xe8\x84\xe8\xc2\xcb\x43\xb4\xf2\x50\x1e\x58\xd9\x54\x44\xc2\x1e\x86\x64\xb4\x32\xd5\xc3\x5e\xc9\x11\x7d\xf9\x56\xf8\xe8\x58\x51\x3c\xd1\xf1\xb0\xc8\x71\x07\x97\xd7\x17\x11\xc7\xf8\x65\x7d\xa2\x15\x52\xd4\x07\x51\xb6\x82\xb4\xd5\xeb\xe3\xf6\x86\xb0\x9e\x47\x18\x9a\xe7\x9f\xb6\xe4\x57\x67\x7d\x8b\xe7\xb9\xa4\xcb\xb2\xb5\x62\x48\x7a\xd8\xad\x77\xfc\x25\x24\x35\xf4\xff\xf7\x0e\x00\x00\xff\xff\x67\xd7\x16\x06\x14\x01\x00\x00") + +func testE2eTestingManifestsKubectlNginxDeployment2YamlInBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsKubectlNginxDeployment2YamlIn, + "test/e2e/testing-manifests/kubectl/nginx-deployment2.yaml.in", + ) +} + +func testE2eTestingManifestsKubectlNginxDeployment2YamlIn() (*asset, error) { + bytes, err := testE2eTestingManifestsKubectlNginxDeployment2YamlInBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/kubectl/nginx-deployment2.yaml.in", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsKubectlNginxDeployment3YamlIn = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8d\xcd\x0a\xc2\x30\x10\x84\xef\x7d\x8a\x7d\x81\xaa\xbd\x49\xce\x5e\xbc\x88\x20\x78\xdf\xb6\x43\x09\x26\x9b\x90\x2c\x52\x29\x7d\x77\x89\xd8\x9f\x39\x4d\x26\xb3\xdf\x70\xb4\x4f\xa4\x6c\x83\x18\xc2\xa8\x90\x62\xf3\xf1\xdd\xb4\x50\x6e\xaa\x97\x95\xde\xd0\x05\xd1\x85\x8f\x87\x68\xe5\xa1\xdc\xb3\xb2\xa9\x88\x84\x3d\x0c\xc9\x60\x65\xac\xfb\xad\x92\x23\xba\xf2\xad\xf0\xd1\xb1\xa2\x78\xa2\xfd\x61\x91\xe3\x16\x2e\x2f\x2f\x22\x8e\xf1\xcf\xfa\x45\x0b\xa4\xa8\x0b\xa2\x6c\x05\x69\xad\xd7\xfb\xed\x15\x61\x3d\x0f\x30\x34\x4d\x87\x5b\xc9\x1f\xce\xfa\x6b\x89\xe6\x79\xad\xc4\x90\x74\x37\x5a\x6f\xec\x7b\x48\x6a\xe8\x7c\xfa\x06\x00\x00\xff\xff\x2d\x28\x80\x1c\x11\x01\x00\x00") + +func testE2eTestingManifestsKubectlNginxDeployment3YamlInBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsKubectlNginxDeployment3YamlIn, + "test/e2e/testing-manifests/kubectl/nginx-deployment3.yaml.in", + ) +} + +func testE2eTestingManifestsKubectlNginxDeployment3YamlIn() (*asset, error) { + bytes, err := testE2eTestingManifestsKubectlNginxDeployment3YamlInBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/kubectl/nginx-deployment3.yaml.in", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsKubectlPausePodYamlIn = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8c\x31\x0e\xc2\x30\x0c\x45\xf7\x9c\xe2\x5f\xa0\x08\x36\xe4\x1b\xb0\x65\x62\x37\x8d\x85\x22\x1a\x3b\x4a\x0c\x4b\xd5\xbb\xa3\x54\x48\x08\x46\xbf\xe7\xff\xb8\xe6\xab\xb4\x9e\x4d\x09\xaf\x53\x78\x64\x4d\x84\x68\x29\x14\x71\x4e\xec\x4c\x01\x50\x2e\x42\xa8\xfc\xec\x12\x80\x85\x6f\xb2\xf4\xc1\x7f\x4d\xaf\x32\x0f\x3a\x9b\x3a\x67\x95\xb6\xff\x4c\x7f\x6b\x20\x17\xbe\x0b\x61\x5d\x0f\x71\xb0\xcb\x38\xb7\x6d\x57\xd5\x9a\x7f\xca\xd3\xb7\x13\xad\x39\xe1\x7c\x0c\xef\x00\x00\x00\xff\xff\x04\xec\xd3\x24\xad\x00\x00\x00") + +func testE2eTestingManifestsKubectlPausePodYamlInBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsKubectlPausePodYamlIn, + "test/e2e/testing-manifests/kubectl/pause-pod.yaml.in", + ) +} + +func testE2eTestingManifestsKubectlPausePodYamlIn() (*asset, error) { + bytes, err := testE2eTestingManifestsKubectlPausePodYamlInBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/kubectl/pause-pod.yaml.in", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsKubectlPodWithReadinessProbeYamlIn = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\x4f\x4b\x03\x41\x0c\x05\xf0\xfb\x7e\x8a\xf7\x05\xea\x9f\x83\x20\x39\x0b\xe2\x45\x16\x0a\xde\xd3\x9d\xd0\x06\x67\x92\x61\x26\x8a\x52\xfa\xdd\x65\xd7\x4a\xd7\x1e\xf3\x7b\x2f\x8f\xab\xbe\x49\xeb\xea\x46\xf8\xbc\x1f\xde\xd5\x12\x61\xf4\x34\x14\x09\x4e\x1c\x4c\x03\x60\x5c\x84\x60\x7b\xb5\xaf\x01\xc8\xbc\x93\xdc\x67\xff\x9f\xf4\x2a\xd3\xac\x93\x5b\xb0\x9a\xb4\xa5\xb3\xb9\xfa\x06\xb4\xf0\x5e\x08\xc7\xe3\xcd\xeb\x6c\xdb\xac\xe5\x65\xa6\xd3\x69\x89\xab\xb7\x38\xaf\x6f\x2e\x5b\xa3\xb7\x20\x3c\xde\x2d\xde\x84\x93\x9a\xf4\x3e\x36\xdf\xc9\x6f\x17\x38\x44\xd4\x67\x89\xbf\x13\xa8\x1c\x07\xc2\xed\xe5\x5e\x6f\x00\x6a\x1a\xca\xf9\x49\x32\x7f\x6f\x65\x72\x4b\x9d\xf0\x70\x0e\x43\x8b\xf8\x47\xac\xfc\x27\x00\x00\xff\xff\xce\x7f\x40\xd2\x2a\x01\x00\x00") + +func testE2eTestingManifestsKubectlPodWithReadinessProbeYamlInBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsKubectlPodWithReadinessProbeYamlIn, + "test/e2e/testing-manifests/kubectl/pod-with-readiness-probe.yaml.in", + ) +} + +func testE2eTestingManifestsKubectlPodWithReadinessProbeYamlIn() (*asset, error) { + bytes, err := testE2eTestingManifestsKubectlPodWithReadinessProbeYamlInBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/kubectl/pod-with-readiness-probe.yaml.in", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsKubectlRedisMasterControllerJsonIn = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x92\x3f\x4b\xc4\x40\x10\xc5\xfb\x7c\x8a\x30\xb5\x0a\x87\xa0\xb8\xad\x95\x9d\x5c\x61\x23\x16\x63\x32\xc8\xe2\x66\x77\x99\x19\xae\x09\xfb\xdd\x65\x2f\xb9\x98\x3f\x9b\xb3\xb0\x0a\xbc\xf9\xf1\xde\x9b\xc9\xf6\x55\x5d\xd7\xf0\x6d\x7d\x0b\x06\x8e\x14\x9d\x6d\x50\x6d\xf0\xcf\xc1\x2b\x07\xe7\x88\xe1\xe6\x8c\x60\xb4\x6f\xc4\x62\x83\x07\x03\xa7\xc3\xa8\x76\xa4\xd8\xa2\x22\x98\xb3\x51\x96\x3c\x76\x04\x06\x98\x5a\x2b\xb7\x1d\x8a\x5e\x2c\xf2\xd0\xe1\x27\x39\xf9\xa5\x07\xe7\x78\xe1\x27\x30\xeb\x1c\x5c\x36\x1a\x2d\xc6\x41\xca\xdf\x34\x84\x4b\xa4\x66\x16\xcc\x43\x7b\x01\x73\x98\xf2\x84\x1c\x35\x1a\xf8\x3f\x89\x93\x99\x52\x17\x1d\x2a\x2d\xcd\xb6\x27\xd8\xdf\xf5\x7a\xfe\xb5\x16\xb3\xed\x57\xb5\xb6\x97\x18\xc5\x26\x78\x45\xeb\x89\x05\xcc\xfb\x3a\x65\x53\xea\xaf\x5f\xb7\x00\x6d\x87\x5f\x04\xa6\x86\xbe\xbf\x3b\x66\xfa\x25\x0b\x29\x95\xe9\x18\x58\x4b\x1d\xf6\x9b\x94\xfa\x08\xf1\x69\xa7\xcf\x7a\xe1\xd7\xc0\x0a\xe6\xe1\xfe\xf1\xa9\x0c\xa7\x82\xfc\xb1\xd6\x96\xd0\x6c\x9c\x16\x4f\xb1\x4a\xd5\x4f\x00\x00\x00\xff\xff\x4c\xf8\x18\x11\x44\x03\x00\x00") + +func testE2eTestingManifestsKubectlRedisMasterControllerJsonInBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsKubectlRedisMasterControllerJsonIn, + "test/e2e/testing-manifests/kubectl/redis-master-controller.json.in", + ) +} + +func testE2eTestingManifestsKubectlRedisMasterControllerJsonIn() (*asset, error) { + bytes, err := testE2eTestingManifestsKubectlRedisMasterControllerJsonInBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/kubectl/redis-master-controller.json.in", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsKubectlRedisMasterServiceJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x8f\xb1\xaa\xc3\x30\x0c\x45\xf7\x7c\x85\xd0\x9c\x37\x3c\x1e\xbc\x52\x7f\x45\xa1\xd0\xa5\x74\x50\x13\x51\x4c\x9d\xd8\x48\x22\x4b\xc9\xbf\x17\xc7\x6e\x92\xbd\x53\xe0\xdc\x9b\x7b\xac\x57\x03\x00\xf8\xf4\x63\x8f\x0e\xcf\x2c\x93\xef\x18\xdb\x05\x52\xf2\x17\x16\xf5\x71\x44\x87\xd3\x6f\xa5\x03\x1b\xf5\x64\x84\x6e\xf9\x35\xa3\x91\x06\x46\x87\xc2\xbd\xd7\x9f\x81\xd4\x58\x4a\x39\x87\x81\xee\x1c\x74\x6b\x97\xe5\xf4\xe9\xaf\xc5\xcc\x25\x86\x3c\x54\x27\x6a\x30\xe7\xef\x5c\xe4\x9a\xb8\xdb\x89\x53\x14\x53\x74\x70\x5d\x37\x76\x96\x12\xa3\xfb\xff\x3b\x1c\xdb\x3d\x36\x92\x07\xdb\x69\x09\xeb\xa3\x95\x65\xda\x8c\xd5\x09\x00\xb7\xf5\x0c\xe5\xc0\x9d\x45\xf9\xfa\x90\x66\x6e\xde\x01\x00\x00\xff\xff\xb3\x89\x96\xff\x74\x01\x00\x00") + +func testE2eTestingManifestsKubectlRedisMasterServiceJsonBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsKubectlRedisMasterServiceJson, + "test/e2e/testing-manifests/kubectl/redis-master-service.json", + ) +} + +func testE2eTestingManifestsKubectlRedisMasterServiceJson() (*asset, error) { + bytes, err := testE2eTestingManifestsKubectlRedisMasterServiceJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/kubectl/redis-master-service.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsServiceloadbalancerHaproxyrcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\xcd\x8e\xd3\x40\x0c\xbe\xe7\x29\x2c\x71\x25\xbb\xad\xb2\xa0\x65\x24\x0e\xab\x45\x82\x63\x04\x15\x57\xe4\x4e\xad\x64\x84\x33\x1e\x66\xdc\xb0\x01\xf1\xee\x28\x69\x9b\xcc\x2e\xed\x02\x73\xf4\x67\x7f\x3f\x76\xf2\xd5\xf9\x9d\x81\x8f\x14\xd8\x59\x54\x27\xfe\x5e\xbc\x46\x61\xa6\x58\x60\x70\x9f\x29\x26\x27\xde\x40\xbf\x2e\x3a\x52\xdc\xa1\xa2\x29\x00\x3c\x76\x64\x20\x51\xec\x9d\xa5\x92\x05\x77\x5b\x64\xf4\x96\x62\x01\xc0\xb8\x25\x4e\x63\x1b\x00\x86\x70\xb1\x0f\xa0\xcf\xe8\x53\x20\x3b\xce\xc4\x83\x97\x64\x60\x5d\x00\x24\x62\xb2\x2a\xf1\x7f\xd9\x00\x94\xba\xc0\xa8\x74\x98\xcc\xcd\x8f\x2f\xf7\xf8\x77\xe6\x3f\xd9\x01\x4e\x7e\xc7\x67\xc5\x2b\x3a\x4f\x71\x66\x2c\xc1\x75\xd8\x90\x81\xc6\xc6\x2b\x27\xd7\x8d\x48\xc3\xf4\x65\x69\xbc\x3e\x8a\xf1\xd6\xac\xae\xd6\xb3\xca\x34\x55\xef\x99\x6b\x61\x67\x07\x03\x77\xfc\x1d\x87\x34\xe3\xec\x7a\xf2\x94\x52\x1d\x65\x4b\x8b\x7d\x80\x56\x35\xbc\x27\xcd\x4b\x00\x01\xb5\x35\x70\xdd\x12\xb2\xb6\x3f\x1e\x43\x12\xd5\xc0\xed\xea\x76\xfd\xa8\x9c\x6c\x4b\xe3\x69\x3f\x6c\x36\x75\x06\x38\xef\xd4\x21\xbf\x23\xc6\xe1\x13\x59\xf1\xbb\x64\xa0\x5a\x65\x1d\xea\x3a\x92\xbd\xce\xe0\xab\x19\x3b\x7c\x2b\x2d\x86\x28\x0f\x43\x91\xeb\x67\xfb\x7f\x01\x77\xcc\x53\x88\xd3\x15\x96\xcc\xe5\xb2\xdf\xfa\xe8\x3a\x0f\x2e\x49\xcf\x94\x43\x14\x15\x2b\x6c\x60\x73\x5f\x67\x32\xbe\x71\xfe\x61\x12\x7a\x46\xe0\xe6\xa6\xba\xa0\xf0\x4f\x1a\xdd\x90\xbe\xf1\x65\xf6\xaa\x5a\xbd\x3e\x4b\xff\x04\xb8\x44\x7f\x5c\x25\x24\x45\x7d\x26\xc4\xfa\x4d\x75\x5e\xe6\x09\x70\x5e\x26\x52\x92\x7d\xb4\x94\x0c\xfc\xfc\xb5\xfc\x26\xb1\xc9\x8e\x56\x42\x59\xaa\x0d\xe5\xe9\x62\x6f\xa7\xe0\x66\x8c\xf1\x72\xda\x73\xea\xad\x19\x77\xf9\x3b\x00\x00\xff\xff\xd3\x9a\xdc\xc2\x66\x04\x00\x00") + +func testE2eTestingManifestsServiceloadbalancerHaproxyrcYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsServiceloadbalancerHaproxyrcYaml, + "test/e2e/testing-manifests/serviceloadbalancer/haproxyrc.yaml", + ) +} + +func testE2eTestingManifestsServiceloadbalancerHaproxyrcYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsServiceloadbalancerHaproxyrcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/serviceloadbalancer/haproxyrc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsServiceloadbalancerNetexecrcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xbd\x8e\x1b\x31\x0c\x84\xfb\x7d\x8a\x01\x52\x7b\x6d\xc3\x29\x0c\x75\x41\xd2\x3b\x08\x82\xb4\x01\xb3\xa2\x77\x85\x68\x49\x41\xe4\xda\x77\x6f\x7f\x90\xcf\x7f\x77\xec\x34\xd2\x37\x33\x22\x95\xf4\x87\xab\x25\x95\x80\xd3\xb6\xfb\x9f\x24\x06\xfc\xe2\x92\xd3\x40\x9e\x54\xbe\xab\x78\xd5\x9c\xb9\x76\x33\x3b\x45\x72\x0a\x1d\x20\x34\x73\x80\xb0\xf3\x0b\x0f\x9d\x15\x1e\x9a\xfa\x05\xdf\xcc\x96\x99\x0d\xaf\xba\x60\xa2\x13\x63\x07\xd1\xc8\x86\x24\x4d\xab\x18\xf2\x62\xce\xb5\xef\x80\xfa\x9e\x62\x01\xbb\x0e\x70\x9e\x4b\x26\xe7\xe6\x03\x3c\x67\xb5\xc9\xf4\x8f\xb3\xdd\x4e\x00\x95\xf2\x88\x6f\xc2\xad\x42\x9b\x41\xc5\x29\x09\xd7\x3b\xb0\xfa\x54\xf8\x66\x93\x66\x1a\x39\x60\x1c\x6a\x9f\x74\x3d\xaa\x8e\x99\xff\x3e\xf0\xf5\xf5\x7d\xd8\xf6\x5f\xef\x4c\xd1\xea\x4f\x4d\x56\x8f\xb8\x9f\x5a\x3d\x60\xbf\xd9\x6f\xee\xb7\x6d\x27\xbf\xa7\x64\x48\x06\x57\x1c\xb5\x0e\x0c\x9f\xd8\x18\x45\xe3\x45\xcb\x24\x11\x2a\x88\xe9\x78\xe4\xca\xe2\x98\xd4\xdc\xfa\x8f\x1e\x87\x1f\x87\x80\xc5\x2e\x30\xa2\x9e\xe5\x4c\x35\x82\x4a\x42\xc3\x47\xf6\xe6\xd7\x3e\x89\x24\xe6\x4c\xf1\x99\x6f\x86\xd7\x72\xdb\xee\x2d\x00\x00\xff\xff\xbe\xac\x09\x76\xf2\x01\x00\x00") + +func testE2eTestingManifestsServiceloadbalancerNetexecrcYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsServiceloadbalancerNetexecrcYaml, + "test/e2e/testing-manifests/serviceloadbalancer/netexecrc.yaml", + ) +} + +func testE2eTestingManifestsServiceloadbalancerNetexecrcYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsServiceloadbalancerNetexecrcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/serviceloadbalancer/netexecrc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsServiceloadbalancerNetexecsvcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x6a\x03\x31\x10\x04\xd0\x5e\x5f\x31\x3f\x10\x48\xba\xa0\x36\x7d\x38\xc8\x91\x7e\xad\x1b\x6c\x61\x9d\x76\x91\x96\xc3\xfe\x7b\x73\xf2\x81\x1b\x77\xcb\x1b\x86\x1d\xb1\xfc\xcf\xd6\xb3\xd6\x88\xed\x2b\x5c\x73\x5d\x22\xfe\xd8\xb6\x9c\x18\x56\xba\x2c\xe2\x12\x03\x50\x65\x65\x44\xa5\xf3\xc6\x14\x80\x22\x27\x96\xbe\x27\x80\x98\xbd\xa2\x6e\x4c\x3b\xcf\x77\x63\xc4\xaf\x2e\x9c\xb4\x79\x00\x4c\x9b\x8f\xc2\xc7\x38\x23\xbe\x3f\x47\xdb\xa5\x9d\xe9\xd3\x41\x07\x5a\x53\xd7\xa4\x25\x62\xfe\x99\x86\x3c\x07\x5c\xdc\x2d\x00\x9d\x85\xc9\xb5\xbd\xf9\xff\x08\x00\x00\xff\xff\x99\xb6\xda\xa2\xd2\x00\x00\x00") + +func testE2eTestingManifestsServiceloadbalancerNetexecsvcYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsServiceloadbalancerNetexecsvcYaml, + "test/e2e/testing-manifests/serviceloadbalancer/netexecsvc.yaml", + ) +} + +func testE2eTestingManifestsServiceloadbalancerNetexecsvcYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsServiceloadbalancerNetexecsvcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/serviceloadbalancer/netexecsvc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsServiceloadbalancerNginxrcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\x4b\x4e\xc6\x30\x0c\x84\xf7\x39\x85\x2f\x50\xf8\xbb\x43\xde\x72\x01\xc4\x82\xbd\xdb\x5a\xad\x45\xe2\x58\x8e\x85\xe0\xf6\x28\x94\x3e\x66\x37\xc9\x37\x33\x26\x93\x0f\xf6\x26\x55\x11\xbe\xc6\xf4\x29\xba\x20\xbc\xb3\x65\x99\x29\xa4\xea\x6b\xd5\xf0\x9a\x33\x7b\x2a\x1c\xb4\x50\x10\x26\x00\xa5\xc2\x08\xe5\x67\xd0\x55\xf4\x3b\x35\xe3\xb9\x3f\xfb\x1e\x6c\x08\x63\x02\x08\x2e\x96\x29\xb8\xff\x00\xdc\xe3\x5d\x99\x26\xce\xed\x70\x00\x64\x86\xb0\xd7\x75\x7b\x54\x76\xcd\x55\x83\x44\xd9\x4f\x7c\xf8\xbf\xe0\x8f\xdf\x22\xac\x9d\x3d\x52\x68\x65\x84\xc9\x9c\xda\x46\x1a\xdb\xf3\x05\xe1\xf8\xf4\x38\x41\xab\x1e\xb7\xfd\xe1\x9a\x79\xab\x1e\x08\x2f\x8f\xf4\x1b\x00\x00\xff\xff\xdc\xf9\xe9\xab\x1e\x01\x00\x00") + +func testE2eTestingManifestsServiceloadbalancerNginxrcYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsServiceloadbalancerNginxrcYaml, + "test/e2e/testing-manifests/serviceloadbalancer/nginxrc.yaml", + ) +} + +func testE2eTestingManifestsServiceloadbalancerNginxrcYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsServiceloadbalancerNginxrcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/serviceloadbalancer/nginxrc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsServiceloadbalancerNginxsvcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8c\x41\x0a\x02\x31\x0c\x45\xf7\x39\xc5\xbf\x80\xa0\x3b\xc9\xd6\x0b\x08\x8a\xfb\xd8\x09\x5a\xec\x34\xa1\x0d\xc5\xe3\xcb\x54\x77\xee\x3e\xef\x7d\x9e\x78\xbe\x69\xeb\xd9\x2a\x63\x1c\xe8\x95\xeb\xc2\xb8\x68\x1b\x39\x29\xad\x1a\xb2\x48\x08\x13\x50\x65\x55\x46\x7d\xe4\xfa\xee\x23\x11\x50\xe4\xae\xa5\x6f\x0a\x10\xf7\x9f\xa3\xee\x9a\x36\xe8\xd6\x62\xda\xdd\x9c\x8c\xe3\x7e\x5e\xbd\x59\x58\xb2\xc2\xb8\x9e\xce\x93\x7c\xcb\xcf\x08\x27\xa0\x6b\xd1\x14\xd6\xfe\xba\xf4\x09\x00\x00\xff\xff\x55\x0d\xe9\x5c\xaa\x00\x00\x00") + +func testE2eTestingManifestsServiceloadbalancerNginxsvcYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsServiceloadbalancerNginxsvcYaml, + "test/e2e/testing-manifests/serviceloadbalancer/nginxsvc.yaml", + ) +} + +func testE2eTestingManifestsServiceloadbalancerNginxsvcYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsServiceloadbalancerNginxsvcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/serviceloadbalancer/nginxsvc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetCassandraPdbYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xcc\x3d\xae\xc2\x30\x10\xc4\xf1\xde\xa7\x98\x0b\x3c\x3d\x85\xd2\x1d\x88\x92\x82\x8a\x7e\x6c\xaf\x60\x85\x3f\x56\xb6\x13\x89\xdb\xa3\x88\x26\xf5\x7f\xe6\x47\xd3\x87\xf4\xa1\xad\x7a\x58\xcb\x1a\x3f\xff\xdb\x12\x64\x72\x71\x6f\xad\xc9\xe3\xde\xd2\x55\x47\x5f\x6d\x6a\xab\x97\x35\x3d\x65\xba\x22\x93\x89\x93\xde\x01\x95\x45\x3c\x22\xc7\x60\x4d\x9d\x7f\x96\x82\x03\x32\x83\xe4\xb1\x77\xc0\x52\x38\x0c\xdc\x30\x89\x7b\x28\x5a\xcf\x1b\x35\x33\x64\xf1\x38\x39\x60\x48\x96\x38\x5b\xff\xdd\x0a\x67\x7c\xdd\x0e\x0e\x40\xb3\xa3\xf4\x0d\x00\x00\xff\xff\x20\x15\x65\x49\xbc\x00\x00\x00") + +func testE2eTestingManifestsStatefulsetCassandraPdbYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetCassandraPdbYaml, + "test/e2e/testing-manifests/statefulset/cassandra/pdb.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetCassandraPdbYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetCassandraPdbYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/cassandra/pdb.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetCassandraServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8d\x31\xca\x42\x31\x10\x84\xfb\x3d\xc5\x5c\xe0\x87\x5f\xb1\x71\x6f\x60\x23\x82\x60\xbf\x26\x53\x04\xf3\x92\xb0\x1b\xdf\xf9\xe5\x89\x85\x85\xdd\xcc\x30\x7c\x9f\x8d\x72\xa3\x47\xe9\x4d\xb1\xee\xe4\x51\x5a\x56\x5c\xe9\x6b\x49\x94\x85\xd3\xb2\x4d\x53\x01\xaa\xdd\x59\x63\x4b\x80\x8d\xa1\x48\x16\x61\x2d\xbb\x09\xd0\x6c\xe1\xf7\x12\x83\x69\xbb\xa6\xfa\x8c\x49\x3f\x5d\x14\xe7\xde\x28\xc0\xe8\x3e\x3f\x94\xbf\x77\x51\x1c\xff\x0f\x7b\x01\x82\x95\x69\x76\xff\xa9\x78\x05\x00\x00\xff\xff\x9d\xcf\x54\x9b\xa7\x00\x00\x00") + +func testE2eTestingManifestsStatefulsetCassandraServiceYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetCassandraServiceYaml, + "test/e2e/testing-manifests/statefulset/cassandra/service.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetCassandraServiceYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetCassandraServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/cassandra/service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetCassandraStatefulsetYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x56\x61\x6f\xdb\x36\x10\xfd\xee\x5f\x71\xd0\x8a\xa2\x05\x2a\xd9\x4e\x57\x6c\xd1\xb0\x01\x9e\xed\x75\x41\x9b\x58\xb0\xdc\x75\x58\x31\x18\x67\xf2\x1c\xb3\xa1\x48\x96\xa4\xdc\xf8\xdf\x0f\x94\x6d\x45\xb2\x95\x20\x98\x3e\x18\xd2\xbb\x7b\xef\x8e\x47\x9e\x8f\x68\xc4\x5f\x64\x9d\xd0\x2a\x85\x08\x8d\x71\xfd\xed\x70\x45\x1e\x87\x51\xef\x4e\x28\x9e\x42\xee\xd1\xd3\xba\x94\x39\xf9\x5e\x41\x1e\x39\x7a\x4c\x7b\x00\x0a\x0b\x4a\x81\xa1\x73\xa8\xb8\xc5\x9e\x33\xc4\x02\xee\xc8\x6e\x05\xa3\x9b\x13\x33\x80\x25\x23\x05\x43\x97\xc2\xdb\x1e\x80\xa7\xc2\x48\xf4\x14\x28\x00\x4d\xe1\xf0\x48\x5c\x91\x74\xc7\x2f\x00\x34\xa6\x2d\x06\x70\x8c\x17\x1e\xa6\x95\x47\xa1\xc8\xd6\x94\xf8\x2c\xbf\xa3\x94\x28\xf0\x96\x52\xb8\x65\x36\x11\xba\x7f\xab\xf5\xad\xa4\xd8\x61\x61\x24\xb9\x7e\xed\x9e\x6e\x87\x17\x6d\x4a\x56\x4a\x99\x69\x29\xd8\x2e\x85\x91\xfc\x8e\x3b\x57\xdb\x8d\xb6\xbe\x91\x6c\xfc\x90\x4f\xa6\xad\x4f\xe1\xa7\xc1\x60\x50\x5b\x8f\x95\x13\xca\x5b\x8c\x95\xe6\xf4\x24\x71\x78\x46\xf4\xd2\xc5\xcf\x22\x0f\x2f\x2f\xcf\xc8\x5f\x8b\xfb\xc7\x19\x97\x83\x1f\x2f\xce\x18\xec\x9b\xac\x31\x4b\x4e\x97\x96\x51\x63\xb1\x01\xfc\x56\x92\xf3\x2d\x0c\x98\x29\x53\x88\xde\x0e\x06\x45\xd4\x84\x0b\x2a\xb4\xdd\xa5\x30\x7c\x2f\x6a\xd8\x11\x2b\xad\xf0\xbb\xb1\x56\x9e\xee\x7d\x53\x86\xa1\xc1\x95\x90\xc2\x8b\x76\x48\x00\xe4\xbc\x0d\x84\xe5\x5c\x65\xe3\xe5\xc7\xd9\xf8\x43\x6d\x90\x62\x4d\x6c\xc7\x24\x35\x7d\x8d\xa5\xdc\x6b\xd3\xa6\xd3\xfd\xc3\x69\xaa\xa3\xeb\xa2\xc0\xd0\x02\x5f\xa2\xfe\x4a\xa8\xbe\xdb\x44\x6f\x20\x8a\x59\xf8\xcd\xae\x26\xbf\xbe\x78\x65\x04\xd7\x6b\xf8\x8a\x5b\x7c\x0d\x2f\x5f\xc2\x9d\x90\x12\x5e\x64\x57\x93\xf0\xf1\x7d\x23\x24\x81\x71\x10\x9b\x3d\xf6\x1b\xf4\x39\x6d\xfb\xaa\x94\xf2\x17\xe0\x1a\x9c\x24\x32\x30\x0c\xef\x8a\xa2\x7f\xeb\xe0\xa4\xb6\xcd\x4c\x8e\x27\xf9\x7a\xf4\xf7\xf2\xcf\xe9\x28\x5b\xe6\x57\xff\x4c\x5b\x99\x6e\x51\x96\x94\xc2\xbb\xe1\xc5\x75\x07\xaf\xe2\xdc\x4c\x3f\x3f\x46\x1b\x0e\x06\x5d\xb4\x6c\x36\x59\xde\x8c\xae\xa7\x79\x36\x1a\x77\xf0\xfe\xb0\xba\x38\xad\xd7\x5a\x90\xe4\x73\x5a\x9f\xe2\x07\x4b\x86\x7e\x93\xd6\x9d\x9e\x84\x30\xce\x20\xa3\x8e\xe0\xe3\x51\x9e\x8f\x6e\x26\xf3\xd1\x32\x9f\x4e\x27\x79\x57\xda\x51\xdd\xaa\xf1\x20\xa9\xdf\x93\x17\xaf\x5a\x89\xbf\x4e\xdc\x96\x25\x4c\x96\xce\x93\x4d\xa4\x66\x28\xa3\x27\xe3\x8d\x3f\x7e\xca\x17\xd3\x79\xa5\xd0\x19\xf6\xc3\xcf\x13\x2a\xf4\xd3\x22\x93\x71\x27\x75\x32\x1e\xc6\xcf\xa1\xcf\x47\x8d\x23\xdc\x14\x98\x23\xbb\x7b\x9e\xc4\xe8\xd3\x62\xb6\xfc\x7d\x36\x5b\xe4\x8b\xf9\x28\xeb\x14\x5b\xa3\x74\xd4\xa5\x12\x0a\x78\xd5\xc1\xf9\xdf\x5b\xee\x3c\xfa\xd2\x25\x46\xf3\x86\xac\x25\xe4\x42\x91\x73\x99\xd5\xab\x56\x7f\x9e\xb7\xe2\xb1\x11\x5b\x60\x0c\x55\x53\xae\xd0\x6d\x4e\xf0\x98\x9d\x3a\x86\x60\xbb\xd8\x84\x48\x49\xcb\x5d\x28\xe1\x05\xca\x09\x49\xdc\xe5\xc4\xb4\xe2\x2e\x85\xe1\xbb\x86\x87\x17\x05\xe9\xd2\xd7\xc6\x07\xdb\x0f\xb0\xd8\x90\x23\xd8\x6a\x59\x16\x04\x85\x2e\x95\x77\x80\x96\xc0\x84\x81\xea\x3c\x29\x9f\x04\x9f\x5d\x05\x4a\x71\x47\x20\x94\x14\x8a\x80\x49\x14\x85\x7b\xd3\x90\x5a\x95\x1e\x94\xf6\x40\xf7\xc8\xbc\xdc\xc1\x8a\x18\x96\x8e\xc0\x6f\xa8\xda\x16\x07\x8a\x88\x83\xd7\x50\xa0\x67\x9b\xda\x4f\x2b\x02\xbd\x6e\x08\x05\x82\x3b\x8c\x6c\x30\x9a\x1f\xd2\x73\x49\xed\xb3\x07\xae\xab\x74\x9b\x43\xeb\x64\x60\xc6\xa1\x4b\x1b\x85\xa8\xd6\xb7\xdf\xd0\x87\x31\xb9\x3c\x38\x1d\x6b\x11\x16\xca\xb4\xda\x92\xf5\xfb\x6c\x0f\xc5\xd9\x2f\x18\x56\xbb\x2a\xbf\x30\x76\xac\x96\x92\x6c\x45\x45\xc5\xf7\xea\xc4\x01\x7d\xe5\x61\xd0\x6f\x1c\x14\xa4\xbc\xd0\x2a\xc0\x2b\xbd\xa5\xa4\xf2\xe6\xba\x2a\xd4\xa1\x38\x2e\xd4\x14\x8c\xd5\xbc\x64\xc1\x17\x4a\xe5\x85\x04\xe7\x38\xbc\x1f\x4f\xb3\x7a\x23\x26\xc2\xdd\x81\xb6\xa0\xfd\x86\x6c\x65\x36\xbc\x77\xac\xc5\x38\x64\xb7\x38\x5c\x48\xaa\x9a\xc4\x67\x37\x92\x47\xab\xd3\xbc\x87\x20\x63\xe4\xdc\xb5\xe6\xe4\x52\xf8\x02\xd1\x9c\x90\x7f\xb6\xc2\xd3\x4c\x31\x8a\xe0\xf8\x1f\xdf\x31\x46\xbb\x86\xa8\xf3\xda\x56\x77\x95\x30\x2d\x7b\xff\x05\x00\x00\xff\xff\x7c\x46\x3a\x20\xa9\x09\x00\x00") + +func testE2eTestingManifestsStatefulsetCassandraStatefulsetYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetCassandraStatefulsetYaml, + "test/e2e/testing-manifests/statefulset/cassandra/statefulset.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetCassandraStatefulsetYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetCassandraStatefulsetYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/cassandra/statefulset.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetCassandraTesterYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x92\xc1\x6e\xe3\x3c\x0c\x84\xef\x7e\x0a\xbe\x80\x9a\xa4\xff\xa5\xd0\xad\x45\x80\xff\xd2\x83\x81\x02\x7b\xa7\xa5\x81\x4d\xac\x2c\x09\x12\xe3\x85\xf7\xe9\x17\x2e\xea\xc4\x4e\xc2\x9b\x3d\xe2\xe0\x23\x39\x9c\xe5\x17\x4a\x95\x14\x2d\x71\xce\xf5\x30\x9d\x3a\x28\x9f\x9a\xdf\x12\xbd\xa5\x33\x72\x48\xf3\x88\xa8\xcd\x08\x65\xcf\xca\xb6\x21\x8a\x3c\xc2\x92\xe3\x5a\x39\xfa\xc2\x46\x51\xd5\x54\x94\x09\xa5\xa9\x19\x6e\x79\x53\x90\x83\x38\xae\x96\xfe\x6b\x88\x14\x63\x0e\xac\x58\x14\xa2\xad\xd7\x52\x81\x3b\x84\xba\x7e\xd1\x42\x62\x69\x6b\xba\xfc\x5c\x8d\x97\x72\x29\x2a\x4b\x44\xb9\x36\x99\x1f\xa8\xfb\xae\xa5\x64\xe4\x1e\x96\x7a\x57\x5e\x24\x1d\xfa\x94\xfa\x00\x73\xb3\x38\xdc\x06\xc1\x2b\xbe\x87\xb1\xc7\x97\xd3\xbe\xbd\xbd\x84\xd0\xa6\x20\x6e\xb6\xf4\x1e\xfe\xf0\x5c\xaf\x7a\x4e\x45\x37\xf0\xe6\x46\xd7\xa6\xa2\x96\xde\x8e\x6f\xc7\xab\x5a\xc0\x5e\x22\x6a\x6d\x4b\xea\x70\xeb\x22\x1a\x54\xf3\xff\xd0\xed\x2f\xa2\xcc\x3a\x58\x3a\x0c\xe0\xa0\xc3\xdf\xbd\xf4\x68\x4e\x24\x51\x54\x38\x9c\x11\x78\xfe\x82\x4b\xd1\x57\x4b\xaf\x9b\x07\x19\x45\x92\xdf\x48\xc6\x98\x66\x9b\x82\xfc\x3d\xe4\x5d\x0e\xda\xe4\xcf\x52\xcb\x25\xab\xa4\xf8\x71\xf1\x3d\x9e\x05\x62\xd9\x1c\x8a\xc9\xbe\x6b\xf6\x37\xcd\xbe\xdb\x5f\x66\xbd\xe5\x28\xf1\x7d\x62\x09\xdc\x05\x58\x5a\x56\x5e\x11\xe0\x34\x95\x9f\xa0\xb0\xba\xe1\x73\x97\x8e\x87\x6c\xdc\x0f\x30\xad\xd0\x5f\x28\x93\x38\xec\x40\xb7\x54\x4f\x52\xf6\x98\xa1\x95\x74\x73\x64\xb3\x5f\xfd\x9e\xf8\x89\xa9\xce\x19\x96\x3e\x13\xfb\x0f\x0e\x1c\x1d\x4a\xf3\x2f\x00\x00\xff\xff\x07\xad\x27\x1e\x77\x03\x00\x00") + +func testE2eTestingManifestsStatefulsetCassandraTesterYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetCassandraTesterYaml, + "test/e2e/testing-manifests/statefulset/cassandra/tester.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetCassandraTesterYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetCassandraTesterYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/cassandra/tester.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetCockroachdbServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xc1\x8e\xdb\x36\x10\xbd\xfb\x2b\x1e\xb6\x87\x5c\xd6\x4e\x1a\xa0\x6d\xe0\x6b\xda\xc3\x02\x45\xe0\x76\xdb\x5e\x8b\x11\x39\xb2\x58\x53\x1c\x82\x33\xb2\xe2\xbf\x2f\x48\xc9\xee\x6e\xb2\x45\x80\x3d\x19\xa6\x86\x6f\xde\x3c\xbe\x37\x94\xc3\x5f\x5c\x34\x48\xda\xe3\xfc\xfd\xe6\x14\x92\xdf\xe3\x91\xcb\x39\x38\xde\x8c\x6c\xe4\xc9\x68\xbf\x01\xbe\xc3\x1f\x43\x50\xe8\xf2\x09\x41\x31\x32\x25\x83\x09\x3a\xc6\xa4\xec\xd1\x5d\xe0\x62\xe0\x64\x0a\xe9\x61\x03\xa3\x5e\xee\x48\x79\x87\x07\x03\x7f\xce\xa2\xac\x20\x7c\x8c\x93\x1a\x97\x87\x03\x6c\x20\xc3\x1c\x62\x6c\x1d\x68\x32\x19\xc9\x82\xa3\x18\x2f\x88\x42\x1e\x1d\x45\x4a\x8e\xe1\x24\x25\x76\x16\x24\x69\x6d\xd9\xc0\x43\xdf\x73\xe1\x64\xb7\x36\xc8\xe2\x75\xb7\x01\x12\x8d\xbc\x87\x13\x77\x2a\x42\x6e\xf0\xdd\x36\x4f\x5d\x0c\x6e\x03\x44\xea\x38\x6a\x9d\x08\xa0\x9c\x9f\x55\x6d\x34\xb3\xab\x9f\xb2\x14\xd3\xeb\xd4\x8c\x91\x42\x6a\x67\xf7\x6d\xfe\x65\xd4\xe3\xef\x87\x8f\xeb\x7f\xc5\x41\xd4\x8e\x85\x75\xdb\x47\x3a\x4b\xc1\xe3\x6f\xbf\xde\x23\x24\xe3\x92\xc4\x73\x03\xb2\x42\x7d\x1f\x1c\x28\xf9\x46\xdf\xc5\x50\xa9\x6e\x1b\xf0\x1e\xef\x7f\x7c\xff\xc3\x4f\x8d\x95\x51\x39\xb2\x1d\xbe\x38\x5d\x46\x3a\x96\xec\x6e\xb4\x94\x9d\x24\x4f\xe5\xd2\x20\xae\x54\x2a\xf6\x9f\x0f\x20\xc5\xcc\x31\xd6\xdf\x81\x29\xda\xd0\x1a\x7b\xee\xa6\x23\x38\xf9\x2c\x21\x99\x3e\x25\xf0\xe1\xdd\x87\x77\x5f\xf5\xbf\x1d\x2e\xed\x07\xb3\xbc\x01\x94\x23\x3b\x93\xf2\x3f\x2a\x6e\xb7\xdb\xcd\x6b\x7d\x25\x29\x5e\xc0\x9f\x83\x5a\x7b\x67\x57\x98\x8c\xf1\xf3\xa7\x47\x70\xb2\x12\x58\xd1\x4b\x01\x93\x1b\xea\x63\x23\xa4\x36\xaf\x1a\x19\xf7\xd3\xe2\x22\x65\x83\x4e\x6e\x58\xcc\x65\x03\x5f\xe0\x28\xa1\xb0\x4a\x3c\xf3\x72\x57\x6c\xe0\xf2\x46\xf1\x70\x00\x79\x5f\x58\x95\xb5\x99\xd4\x0b\x2b\x92\x58\x43\x5a\xbb\x53\xb3\xe2\x76\xb5\xa2\x7f\x62\xdf\x2a\xa9\x0e\x32\x45\x5f\xef\xdc\x82\xe0\x43\x61\x67\xf1\xf2\x24\x11\x0d\x2f\x24\x8c\xa2\x06\x17\x8a\x9b\x46\xb5\x0a\xf7\xb2\x5f\xbf\x65\x54\x80\x52\x12\xa3\x16\x88\xa5\x66\x15\x32\x28\x12\xb3\x67\x5f\xe5\x1b\xe9\xc4\x4d\xa0\xcc\x5c\xb6\x7d\x48\x9e\x0b\x66\x29\x27\xe4\x22\x99\x4b\xbc\x2c\x76\x14\x0c\x1c\x33\xe8\x2c\xc1\xaf\x60\xec\x8f\x0c\x47\x35\xb0\xf3\xc0\x85\x11\xd2\x42\x18\xef\xe0\x64\x64\xc5\x94\x41\xbd\x71\x41\x14\x0d\xe9\x88\x60\xda\x92\xd8\x20\x2b\x87\xfa\x82\x2b\x9a\x67\x17\x3c\x57\xa4\x2a\x3c\x82\x5d\x65\xbb\x49\x9c\x78\x86\x5b\x84\x85\x14\x58\xb9\x54\x5a\xff\x48\x48\xa0\xb4\x38\x22\xa4\xe3\x0a\x27\xa9\xae\x94\xbe\xe2\x2c\x00\xfa\x05\xc2\x3c\x70\x7a\xd2\x65\xa0\x33\x37\x2c\xf6\x2f\xa3\xdd\x63\xe6\x37\xbe\x06\xa3\x8e\x35\x07\x1b\x60\xb3\x40\x39\x53\xa9\xfc\x56\x5c\x45\x0c\x6a\x9c\xea\xb8\x8b\xb7\xa0\x34\xf2\xd5\xbd\x57\xe9\xd6\x78\xdd\x63\x1e\x82\x1b\x30\x37\x0e\x1d\xe3\xcc\xe5\x82\x8e\xfc\xae\x15\xae\x97\x76\x14\xf3\x40\xbb\xd3\xd4\x71\x49\x6c\xac\xbb\x20\x6f\x4d\x22\xd7\xc6\xdb\x29\x15\x26\x7f\xd9\xde\x22\xbb\xc7\x9d\x95\x89\xef\xd6\x5e\xbf\x24\xea\x22\xff\xb7\x39\x31\x4a\x0a\x26\xa5\x32\x94\x1e\x14\xe3\xed\xe1\x74\x51\xe5\x50\x64\xac\xaf\x30\x35\xaf\x94\x29\xb5\x69\xd6\x20\xad\x73\x2e\x04\xf3\xad\xb2\x52\x52\x57\x28\xf3\xb3\xf6\xcf\x0b\x32\xd9\xb0\xc7\xdd\xdf\x35\x8c\x93\xbe\x3d\x53\xd1\x17\xcb\xda\x62\xb9\xab\x9b\xe5\xee\xeb\x85\xfb\xaa\x75\xf8\x8a\x15\xe6\xae\x19\xde\xe3\x93\x24\xfe\xf6\x52\xfb\x37\x00\x00\xff\xff\xdd\x54\x1b\x51\x29\x07\x00\x00") + +func testE2eTestingManifestsStatefulsetCockroachdbServiceYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetCockroachdbServiceYaml, + "test/e2e/testing-manifests/statefulset/cockroachdb/service.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetCockroachdbServiceYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetCockroachdbServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/cockroachdb/service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetCockroachdbStatefulsetYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x5f\x6f\xdb\xc8\x11\x7f\xf7\xa7\x98\xaa\x07\xd8\x6e\x4d\x49\x4e\x71\x69\x2a\xc0\x0f\xae\xe3\x06\x46\x11\xc7\xb0\x82\xbb\x87\x34\xc8\x8d\x76\x87\xe2\x56\xcb\x5d\xde\xee\x50\x8a\xda\xf4\xbb\x17\xb3\x14\x29\x92\x72\x0e\x28\x50\xf9\xc5\xdc\x9d\xf9\xcd\xff\x3f\x8b\x95\xf9\x89\x42\x34\xde\x2d\x00\xab\x2a\xce\xb6\xd7\x2b\x62\xbc\x3e\xdb\x18\xa7\x17\xb0\x64\x64\xca\x6b\xbb\x24\x3e\x2b\x89\x51\x23\xe3\xe2\x0c\xc0\x61\x49\x0b\x50\x5e\x6d\x82\x47\x55\xe8\xd5\x59\xac\x48\xc9\x4d\xa4\xb0\x35\x8a\x1e\x13\xc1\xa4\x47\x31\x39\x03\x08\x54\x59\xa3\x30\x2e\xe0\x4f\x67\x00\x4c\x65\x65\x91\x49\xd8\x00\xfa\xf0\xf2\xb3\xb8\x22\x1b\xdb\x2f\x10\xed\x86\x12\xe5\xb0\x95\x2a\xbf\xdf\xc3\x83\x33\x0c\xca\x3b\x46\xe3\x28\x44\xc0\x40\x10\x6a\x07\xde\xd9\x3d\x78\xa7\x08\x8c\x03\x2e\x08\xac\xc9\x89\x4d\x49\xe0\x73\x40\xa8\xbc\xbe\x82\x15\xe5\x3e\x50\x07\x65\xf8\x3c\x42\x64\x0c\x4c\x1a\xea\x0a\x72\x1f\x12\x67\x6e\x42\x64\x10\xde\x29\x3c\x30\x14\x18\x81\x3d\xd0\x57\xc3\x10\x6b\xa5\x28\xc6\xbc\xb6\x76\xdf\xe1\x34\xb0\x89\xb5\xf2\xfa\x3c\x42\x89\xc6\x8d\x75\x44\x6b\xfd\x8e\xb4\x20\x25\x91\xd3\x8e\xfd\x63\x61\x22\x54\x18\xd8\xa8\xda\x62\x00\x33\xb0\x10\xb4\xa7\x08\x08\x6f\x1f\x97\x60\xbd\xdf\x1c\xf4\xf4\x5c\x50\x10\x71\x11\x8c\xeb\xa0\x44\x85\x48\x2c\x42\x0a\xb2\x15\x68\x62\x0a\xa5\x71\x04\xbb\x82\x12\x87\x0f\xe0\x3c\x03\x82\xb2\x75\x64\x0a\x80\x36\x10\xea\xbd\x98\x17\x39\x1e\xb5\x7a\xc8\x01\xdd\xbe\x2f\x27\x51\x5c\x81\x28\x17\x08\x39\x69\x95\x1b\xdb\x39\xbc\x8b\x5b\x26\x21\xee\x80\xb4\x09\xa4\xd8\x87\xbd\x68\x55\x61\x8c\xc0\x05\x32\x18\x97\xfb\x50\x22\x1b\xef\x00\xad\x77\x6b\xb9\x4e\x2e\x0c\xa6\xc4\xb0\xef\x79\x40\xe8\x3b\xb8\x43\x34\x34\x29\xa3\xc5\x2c\x14\x5f\x95\x25\x3a\x9d\x59\x31\x34\xb7\xb8\x4e\x14\x75\x4c\x56\xbb\xc6\xdd\xc6\xad\xe1\xae\x55\xf0\xed\x5f\x47\xde\x4f\xc9\x53\x22\xb3\x44\x2b\x31\xe1\x21\x94\x95\x14\x4e\x64\x72\x0c\x5b\x6f\xeb\x92\xc0\x44\xa0\xb2\xe2\x3d\x64\x60\x72\xf1\x46\x81\xf1\x68\x2c\x32\x42\x1e\x7c\x29\x00\x81\xb6\xc6\xd7\xe2\x38\x52\xb5\x18\x7a\xd5\x98\x9e\x88\x76\xc6\x5a\x40\xbb\xc3\x7d\x84\x15\x89\xb6\xba\x55\x4a\x12\xe0\xae\xcb\x9e\x36\xf5\xb3\x43\x41\xae\xbc\xe7\xc8\x01\xab\xae\x6a\x4c\x89\xeb\x61\xa5\xce\x8e\xb1\xd8\xbc\x89\x99\x00\x2e\xe6\xd3\xeb\x21\xc7\x53\x6d\xed\x93\xb7\x46\xed\x17\xf0\x90\x3f\x7a\x7e\x0a\x14\xc9\xf1\xb1\x1a\xc3\xba\x57\x9b\x19\x4c\x32\xef\xb2\xe4\xcd\x9b\x59\xfb\xdf\x34\x16\x93\x01\xc9\xa1\x37\xdc\x8c\xba\x42\xf3\x23\xb7\xed\x03\x36\x06\x3d\x7d\x78\xfb\xe5\xf1\xf6\xfd\xfd\xf2\xe9\xf6\xee\xbe\xbb\x05\xd8\xa2\xad\xe9\x6f\xc1\x97\x8b\xde\x21\x40\x6e\xc8\xea\x67\xca\x87\xa7\x87\xf3\x27\xe4\x62\xd1\xb5\x99\xa9\x08\x88\x15\x2a\xea\x68\x9b\x20\xbe\xf7\xb5\xe3\x78\xaa\x8a\x30\x69\x13\x7a\xc8\xa5\x50\x36\xa8\x93\xa3\x57\x67\xc3\x5c\x6f\x0d\xc4\x3c\x17\x57\xef\x8f\xc0\x95\xd7\xb7\x8e\xcd\xed\xc9\x05\x48\x7a\xe4\x14\x02\xe9\xb7\x75\x30\x6e\xbd\x54\x05\xe9\xda\x1a\xb7\x7e\x58\x3b\xdf\x1d\xdf\xb7\xb9\xd3\x67\xcd\x60\x47\x66\x5d\xf0\x02\xae\xe7\xf3\x81\x1b\x44\xde\x41\xd6\x47\x0a\xe5\xd8\x47\xa9\xdf\x2e\xc9\xa6\x82\x1c\x5f\x82\x54\x80\x2a\xee\xbf\x56\x81\xa2\x4c\x8b\x78\x4a\x91\xc1\x86\xf6\x69\x8a\x9c\x5c\x01\xf8\x8a\x02\x0a\x30\x3c\xb8\x17\xae\x53\x3c\x5f\xc0\x14\xd4\x71\xcf\x3f\xfe\xd8\x57\xde\xfa\xf5\xfe\xef\x22\x77\x53\xaf\x28\x38\x62\x8a\x53\xe3\x67\x85\x8f\x2c\x71\x3b\x70\xa8\xef\x96\xcc\x4b\xe8\xbf\x55\x34\x8b\xed\xf5\x74\xfe\x3f\x16\x4b\xe5\xc3\x30\xa3\x3a\x75\x9e\x7c\xe0\x05\xbc\x7a\xfd\xea\xc7\x3f\xf7\x6c\x6b\x34\x5b\x87\x4a\x7d\x9f\xe7\xcd\xfc\xcd\xfc\x84\xa5\x60\xae\xfe\x1f\xe9\xfc\xdd\x6c\xee\xc8\x0f\x7d\x75\x98\x79\x93\xd9\xca\xb8\xd9\x0a\xfb\x75\xdf\x54\x3e\xa9\xaf\xc3\xa3\x6f\x83\x50\x4a\xab\x4d\x7d\x4e\x06\xf2\xaf\x35\x5a\x93\x1b\xd2\xf0\x4b\x1b\x45\xc8\xf2\x5f\xa4\xb9\xaa\x50\x2b\x83\x76\x31\x62\xfe\x90\x06\x91\xf3\x9a\xd2\x3c\x75\xe7\x0c\xb8\xb2\x24\x9d\x5e\xc6\xa2\xcc\x6f\x99\x1e\xb5\x3b\x42\xb7\xc8\xd3\x01\xd4\xdd\xf3\xed\xf3\xbb\xe5\xcd\xc5\x24\xf5\xaf\x09\x4c\xb2\xcc\xfa\x35\xfb\xc8\x9a\x42\x48\xdf\xc6\x45\x52\x75\xa0\xf4\x21\x28\x13\x98\xfc\x70\xd1\x53\xf4\xb2\xb9\x61\xae\xda\xeb\xf9\x34\xfd\x4d\x2e\x47\x6a\xff\x4c\xcd\x70\xd9\xa1\x4b\x63\x59\x4a\xd3\xa0\x35\xff\x22\x40\x70\xb4\xeb\xe6\xf0\xc5\x6a\x0f\xbe\x34\x9c\x26\x95\x58\xf2\x4f\x6f\x5c\x9a\x66\x63\x48\x93\xc3\x8e\xce\x03\x41\xac\xd3\xd6\x81\x7c\xf8\x3e\xee\x2e\xe2\x26\xb8\x30\x53\x9a\x82\x71\x9a\xbe\xc2\xfc\x12\xd0\xe9\xfe\x24\x6d\xd1\xc4\xad\xd4\x79\xb4\x9b\xf8\x8d\xa3\x43\xed\x9c\xe8\x83\xcd\x82\x22\x91\x4b\x93\xfe\xa0\xf3\x8b\x70\x26\x4a\x14\x63\x5d\x55\x3e\x36\xfb\xce\x4a\x6c\x6d\xf9\x2f\x76\x85\x51\x85\xa8\x65\x54\x5a\x22\x92\x01\xdd\x3e\x32\x82\x1b\x6e\x27\xc9\x86\x1d\x41\x2c\x7c\x6d\x35\x94\xb8\x39\x38\x41\x56\x1a\xf6\x87\xbd\xe4\xe0\x58\xef\xe8\x72\x3a\x82\x7b\x90\x8d\x2f\x97\x35\x81\x7d\xda\x1a\x77\x86\x0b\x5f\x33\x64\x59\x72\xb7\xec\x22\x10\x28\x65\x86\xf8\x79\xec\x9c\x11\x5c\xcf\x55\x43\x49\x26\x87\x4f\xf0\xbb\x7e\xd2\x5c\x4e\xe0\xe6\x66\xb0\x2b\x67\xf3\x09\x7c\x86\x6f\xdf\xe0\x1f\xe3\x8e\xf8\x09\x32\xfa\x8d\x69\x33\x3b\xb8\xea\x4b\xe3\x94\x2f\x25\x86\x0d\x85\x09\x7c\x1e\xe0\x70\x41\xe3\x26\x9c\xb2\x51\x7b\xb1\x25\x59\xdb\x53\x46\x76\x38\x1f\xb4\xc4\xd4\x03\x6e\xbd\xd1\xe2\x45\xc9\x22\x59\x8a\xca\x4a\xb2\xf2\x04\x8d\x7d\x83\x63\x38\x92\xcd\xaf\xa0\x89\xac\xaa\x43\x20\xc7\x76\x9f\x36\x57\x11\xb6\xf3\x61\x73\xc2\x7c\x21\xd5\x13\x17\xb3\xd9\xda\x70\x51\xaf\xa6\xca\x97\xb3\x17\x9b\xf1\xcc\xc4\x58\x53\x9c\xfd\xe5\xf5\xab\x1f\x47\x01\x6d\x8b\xf9\x8f\x37\x17\x93\x26\x82\x93\xa1\x8b\xab\x7a\x65\x8d\x1a\x15\x65\x6e\x06\x9f\xb2\x9d\xbd\xd8\x0c\xe1\x87\x7f\x37\xf0\x9f\xfe\xf0\xf9\x3f\xdd\x86\xf7\xe8\x65\x72\x67\x91\x7d\x05\x85\x34\x1e\x13\x21\xd0\xaf\xb5\x09\xa4\xaf\x00\x61\xf9\xf0\xee\xe3\xfd\xf3\x7b\xa8\x6c\x1d\x21\xfa\x92\xd2\x43\x42\xa8\xd0\xda\x94\xec\xe7\xc7\x75\xd1\x11\x69\xd2\x69\xa1\x5f\x07\x54\xf2\x0a\x83\x58\xd4\xac\xfd\xce\x35\xef\x16\x89\x41\x6b\x74\xb3\xcb\xa7\x95\xf9\x9d\x50\x3f\x51\x30\x5e\x2f\x49\x79\xa7\xe3\x02\x5e\xb7\xb3\xa2\x19\x0a\x27\x53\x70\x3c\x0d\x8e\xab\xed\x4f\x89\xe1\xce\xa2\x19\x6c\x0c\x4a\x0e\x1e\x47\xbc\xdb\x23\xed\xc7\xc3\xdb\x2e\x49\xca\x4e\x1e\x77\x2f\x49\x45\xe7\x3c\x27\x0b\x7a\xe3\xaa\x81\x9c\xa2\xad\x0a\x9c\x0e\x47\x7c\x64\x1f\x70\x4d\x99\xb2\x18\xe3\x42\x4a\x90\x8b\x36\x15\xfb\xef\x42\x4c\xcf\xb2\xf7\x52\x89\x83\x8d\xf5\x99\x50\xff\x1c\x0c\xd3\x07\xa7\xa8\x9d\x4e\x81\xa2\xaf\x83\xea\x93\x4a\x04\x29\xf2\x60\x3b\x39\xc8\x5e\xc0\xf5\x3b\x73\xf6\xdf\x00\x00\x00\xff\xff\x87\xe3\x79\x0e\x44\x0f\x00\x00") + +func testE2eTestingManifestsStatefulsetCockroachdbStatefulsetYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetCockroachdbStatefulsetYaml, + "test/e2e/testing-manifests/statefulset/cockroachdb/statefulset.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetCockroachdbStatefulsetYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetCockroachdbStatefulsetYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/cockroachdb/statefulset.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetEtcdPdbYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xcc\x3d\x0e\xc2\x30\x0c\xc5\xf1\x3d\xa7\x78\x17\x40\xa8\x8c\xd9\x40\x8c\x0c\x4c\xec\x4e\x6c\x81\x45\x3e\xac\xc6\xad\xc4\xed\x51\x55\x06\xd6\xf7\xd7\xfb\x91\xe9\x43\xe6\xa1\xbd\x45\x58\x2f\x9a\x3f\xc7\x75\x4a\xe2\x34\x85\xb7\x36\x8e\xb8\x77\xbe\xea\x98\x17\x73\xed\xed\xb2\xf0\x53\x3c\x54\x71\x62\x72\x8a\x01\x68\x54\x25\x42\x3c\xf3\xc1\x38\x05\xa0\x50\x92\x32\xb6\x04\x18\xa7\xbd\x85\x61\x92\xb7\xad\x6a\x3b\xaf\xa4\x85\x52\x91\x88\x53\x00\x86\x14\xc9\xde\xe7\xfd\x51\xc9\xf3\xeb\xf6\x47\x00\x64\xf6\x43\xbe\x01\x00\x00\xff\xff\x37\xe7\x80\xf7\xad\x00\x00\x00") + +func testE2eTestingManifestsStatefulsetEtcdPdbYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetEtcdPdbYaml, + "test/e2e/testing-manifests/statefulset/etcd/pdb.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetEtcdPdbYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetEtcdPdbYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/etcd/pdb.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetEtcdServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\xcd\x4a\x04\x41\x0c\x84\xef\xfd\x14\x61\xef\x33\xfe\x1d\xd4\x7e\x03\x2f\x22\x08\xde\xb3\xdd\x05\x86\xed\x4d\x9a\x74\x66\xc1\xb7\x97\x19\x17\x64\xe7\x96\x54\x3e\x2a\x55\xdc\xe5\x0b\x3e\xc4\x34\xd3\xe5\x21\x9d\x44\x6b\xa6\x4f\xf8\x45\x0a\xd2\x19\xc1\x95\x83\x73\x22\x62\x55\x0b\x0e\x31\x1d\xeb\x4a\x34\xfe\xa0\x99\x5b\xff\xe6\xf9\xb4\x1c\xe1\x8a\xc0\x98\xc5\xee\xc2\x1a\x9c\x03\xd3\xa2\x0e\xae\x3f\x13\xb4\x76\x13\x8d\x91\xe9\x10\xbe\xe0\x70\xe3\xad\x7c\x46\x26\x44\xa9\x89\xa8\xf1\x11\xed\xfa\x83\x7b\xbf\xea\xa3\xa3\xac\x5a\x37\x8f\xed\x38\x6d\x63\xa6\xc7\xa7\x97\xfb\x8d\xfd\x37\x99\xd6\x68\xf0\x1b\xe8\xf9\x75\x0f\x95\x26\xd0\x48\x44\xa5\x2d\x23\xe0\x6f\x1f\x99\xde\x4d\x91\xd6\x6a\x0d\x25\xcc\xf7\x21\x7e\x03\x00\x00\xff\xff\xd8\x85\x27\x2c\x2d\x01\x00\x00") + +func testE2eTestingManifestsStatefulsetEtcdServiceYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetEtcdServiceYaml, + "test/e2e/testing-manifests/statefulset/etcd/service.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetEtcdServiceYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetEtcdServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/etcd/service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetEtcdStatefulsetYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x58\xdd\x6f\xdb\xb0\x11\x7f\xf7\x5f\x71\x73\x8c\xd4\xde\x2a\x7f\xa4\xeb\xd2\xaa\x48\x8b\x2c\x31\xd6\x00\x4d\x6a\xc4\x5e\x0b\xac\xdb\x0c\x5a\x3a\xdb\x5c\x28\x52\x25\x29\x27\x81\xeb\xff\x7d\xa0\x24\xcb\xfa\xa0\x1c\x17\x48\xf6\x34\x3f\xb4\xd1\xf1\x78\x77\xbc\x8f\xdf\x1d\x49\x42\xfa\x0d\xa5\xa2\x82\xbb\x40\xc2\x50\xf5\x56\x83\x19\x6a\x32\x68\xdc\x51\xee\xbb\x30\xd6\x44\xe3\x3c\x62\x63\xd4\x8d\x00\x35\xf1\x89\x26\x6e\x03\x80\x93\x00\x5d\x40\xed\xf9\x0d\x00\x46\x66\xc8\x94\x21\x83\x91\x91\xd2\x55\x88\x9e\xa1\x29\x94\x2b\xea\xe1\x4d\x7e\x87\xc4\x90\x51\x8f\x28\x17\xde\x34\x00\x34\x06\x21\x23\x1a\x13\x09\x79\x35\xe6\x57\x50\x65\x7e\x79\x75\x45\x95\xe6\x6b\xab\xd6\xfc\x3c\xc1\x35\xa1\x1c\x65\xc6\xed\x54\xc5\x01\xd0\x80\x2c\xd0\x85\x85\x27\xbb\x54\xf4\x16\x42\x2c\x18\x4e\x77\x7b\x7b\x86\xd9\x21\x81\xff\x97\x3f\xbb\x27\xdd\x93\xee\xdb\xe2\xc6\x51\xc4\xd8\x48\x30\xea\x3d\xba\x70\xce\xee\xc9\xa3\xca\xd6\x43\x21\x75\xce\x50\x67\x67\xd0\x48\x48\xed\xc2\xc9\x9b\x77\xfd\x6c\x75\x7b\xd2\x10\x51\xee\xdb\x72\xfa\xbe\xb2\xc5\x63\x14\xb9\xce\xc8\x12\x95\x88\xa4\x87\x39\xd5\x86\xf8\x33\x42\xa5\x0b\x34\x00\x2f\x8c\x5c\x18\xf4\xfb\x41\x81\x1a\x60\x20\xe4\xa3\x0b\x6f\x07\x27\xd7\x34\x5b\x41\xbe\xca\x9f\x25\x51\x7d\x75\x73\x35\xb9\x3a\xff\x32\xbd\xf8\xf2\xf7\xf1\x64\x78\x3b\x1d\x5f\xfd\x63\x98\x93\xb5\x22\x2c\x42\x17\x9a\x6f\x9a\x95\x9d\xe3\xe1\x64\x7a\x73\x7e\x6d\xe1\x2e\x04\x67\x25\x58\x14\xe0\xb5\x88\x78\xd1\x95\x89\x10\x93\x28\x3e\x95\x39\x19\x81\xe1\x1c\x11\xbd\x74\xa1\xb7\x22\xb2\x27\x23\xde\x2b\x08\x64\x74\x8e\xde\xa3\xc7\x30\xef\x89\x50\xe2\x58\x8b\xb0\xe8\x1c\x7c\xd8\xa5\x52\xe6\x30\x11\x04\x84\xfb\x65\xb2\xb1\xa8\xd9\x9b\x51\xde\x53\xcb\xa6\x6d\xcd\x41\xcf\x46\xff\x55\xa1\x01\x0c\x47\xe3\xb3\x66\x95\x19\x60\x2e\x24\x50\xa0\x1c\x5a\x6d\x85\x3f\xa1\x0f\xad\x76\xbb\xb5\xb6\x45\x60\x03\x0e\x0c\x3a\x9d\xce\x07\xf0\x85\x45\x50\xa6\xa5\xb5\x1e\x8e\xc6\x9b\xf8\x5f\xf7\x4f\xaf\x37\x4b\xad\x43\xb7\xd7\x6b\xad\xb7\xb1\xd9\x38\xad\x35\xdd\x74\x73\x04\xd7\x24\xa0\xcd\x38\x5f\x70\x6c\x58\xe8\x9f\xbf\x8e\x27\x66\xe7\x59\xab\xbd\x14\x4a\x9b\xb0\x75\x6c\x7c\x01\x06\x33\x94\xd3\x25\x51\xcb\x76\x07\xd6\x35\x56\x9b\x48\x7a\x9a\xa5\xdc\xc0\xa8\xd2\xf0\x0b\x16\x12\x43\xc8\x8c\xdf\x6a\x2c\xdb\xfd\xae\x0f\xbf\xc0\x8b\x34\x38\xfe\x2b\xf7\x15\x38\xf3\xc1\xee\xfb\x47\xfc\x6d\x51\xba\xb1\xd9\x8a\xde\x52\x40\xf3\x16\x03\xb1\xa2\x7c\x01\x39\x95\x30\x97\x22\x88\xad\x04\x8f\x45\x4a\xa3\x6c\xda\x04\x0c\x27\x17\x97\x17\x93\x2f\xd3\xe1\xcd\xe5\xe8\xeb\xd5\xcd\xe4\x2c\x09\x44\xf9\x78\xd2\x68\x40\x68\xb5\x73\xce\xe9\x58\xc4\xd1\x39\xfc\x80\xd6\x27\x70\xe2\xac\xf8\xd7\x07\xd0\x4b\xe4\x35\x1e\x3c\x82\xdb\x44\x2a\xae\x50\x3e\xea\xa5\x39\x80\xd0\x4b\x94\xf7\x54\xa1\xd9\xb8\x35\x1c\xee\x29\x63\xc0\x05\x30\xc1\x17\x28\x41\x79\x84\xa1\x13\x85\x35\x72\x65\x00\x8e\x9c\x17\x6b\xae\xf7\x47\x5b\x16\xef\x10\xc5\x52\x4c\xf6\x32\xaa\x16\x50\xb9\x74\x9e\x4e\xb3\x23\x50\x5a\x48\xdc\xfa\x96\xfa\x40\xb9\x16\x30\xfa\x76\x11\x17\x96\x69\x40\x72\xe7\xf8\x90\x11\x0f\x83\x3c\xaa\x26\x06\x33\x86\x9e\x9e\x26\x6c\xd6\x3c\xbd\x5f\x52\x86\xf0\x07\x6b\xa6\x1e\x7f\xec\xf9\xb8\xea\xf1\x88\x31\x53\x99\xa0\x18\x62\x08\x83\x0f\x49\xf1\x94\x25\xbd\x6c\xae\xc3\xc7\x52\xac\xd2\x1c\xa3\x7e\xd5\x90\x07\xaa\xa1\x5f\x20\x97\xca\x02\x43\x65\x75\x46\x0d\x94\x3d\x23\x90\x3d\x2f\x8c\xd9\xe3\x60\xaa\x3d\x51\xb1\xcf\x07\x4f\x01\xd8\xff\x10\xba\x36\xe5\xcc\x97\xe8\xfc\x47\x50\x6e\x6a\x9d\xcc\x4d\x9e\xcf\x09\x65\x91\xc4\x4f\x05\xbe\x18\x46\x1c\x2c\xe5\x85\x8f\x73\x12\x31\xdd\x8d\x41\xad\x0e\x5b\xb6\x88\x98\xa9\x89\xb9\x93\xa3\x56\xdd\x9c\xa5\xda\x59\xab\xed\x11\x5d\x97\x88\x96\x3e\x91\x1d\x25\x95\x51\xcd\xb8\x0a\xb2\xb6\x31\x54\x9d\xb2\xf7\xa3\xd0\x27\x1a\xa1\xb5\xce\x94\x6d\x0e\x89\x82\xa5\x34\xd0\x4b\xce\xea\x38\x06\x73\x0a\xbd\xe0\x9f\xd6\x8c\x75\x1c\x13\x7a\xe4\x8e\x19\xf4\x9c\x48\x32\x75\x50\xfc\x9f\x10\x96\x8c\x80\x07\x8a\x3b\x7d\xff\x3a\xe5\x19\x9c\x9c\x76\xfb\xdd\x7e\x77\x10\x53\x6b\x95\x10\x7f\x85\x52\x53\x85\xbf\xab\xa7\x56\xa2\x19\xdc\x1c\x9f\xca\x3d\xc9\x56\xd8\x39\xa7\xe5\x9c\x8e\xa7\x72\xa3\xed\xea\xb2\xb0\x92\x90\xce\x76\x56\xb9\x6f\xdd\xd6\xfa\x28\xb3\xb1\x52\x1c\xc4\xf7\xe3\xc2\x00\x8e\xf7\xdb\xfc\xd0\xc2\xa0\x9e\xd2\x66\x61\xdb\x0f\xdb\x44\xa9\x28\x88\x59\x19\x03\xca\xa9\xa6\x84\x41\x28\x7c\x05\x44\x22\x90\x15\xa1\x8c\xcc\x18\x76\xaa\x45\xd5\x4c\xfc\x72\x75\xb9\x69\x82\xb3\x30\x59\x62\x07\xbb\xda\xf2\x7a\x30\x57\x89\xba\xe4\xb6\x95\x49\x7a\x0e\xc2\x24\x12\xff\xd1\x9c\x11\xfd\x4f\x15\xbe\xeb\xe1\xf5\x5f\x87\xb7\xd3\xcf\xe7\xe3\xcf\x67\x4f\x4c\x19\x09\x38\x70\x73\x94\xdc\xae\x4d\x73\xef\xb8\x71\x14\x0f\x14\xa9\x2d\x46\x6e\xe2\x55\x05\xb3\x48\xc7\x5d\x40\x89\x00\x41\x22\x51\x82\x27\x65\x64\x80\x09\xab\x2d\x28\x8d\x94\x8a\xe5\xa5\x43\xbf\x11\x08\x5c\x68\x98\x21\x78\x12\x89\x46\xff\x35\xdc\x23\x78\x84\x6f\x27\xa7\x9d\xf6\x3a\x89\xdc\x07\x89\x5a\x52\x5c\x61\x1c\x7f\x63\xa4\x95\xb7\x66\x34\x2b\x38\xa3\xda\xe8\x68\x35\x36\x09\x54\x9e\x27\x49\xb7\x4b\xb9\x2a\x4a\x96\x34\x12\xdf\x2f\xa0\xcb\x61\x4d\x23\xee\x2f\xcd\x7f\x9b\xcc\x99\x36\x2b\x3d\x9f\xe3\x7d\x3a\xcb\x4c\x91\xaf\x54\xd5\xd8\x6c\xb2\xe4\xf8\xc4\x64\x99\x1c\x6b\xf8\x40\x4d\xcd\xd8\x2e\x08\xc9\x88\x58\x9e\x10\xcb\x16\x58\x45\x9b\xf9\xa3\x3a\x9c\xdb\x9c\x5b\xed\x26\x4f\x29\x48\xae\xca\xbf\xeb\x97\xe2\x20\x08\xc7\x96\x30\xff\xbf\x33\xbc\x58\x67\xa8\xdd\x9b\x82\x72\xce\xaa\xe7\x71\xe5\x56\xee\xb6\x15\xb4\xd6\x71\x41\x95\x40\xbc\x3e\xae\xa5\xfd\x8e\xd2\xc9\xf4\x61\x93\x32\x1d\x4f\xce\x27\xc3\xcd\xde\xee\xf7\x4c\x03\x74\x72\x57\xd1\x32\xc2\xda\xf9\x3a\x29\xeb\xef\x24\x2e\xeb\x58\xef\xbe\xb1\xda\xf4\x4d\xcf\x40\x7a\x14\xda\x21\x20\x34\x52\x9c\xef\x30\x00\xc7\x83\xc1\x7e\x59\x1f\x21\xbb\x2d\xc1\xf1\x31\xcc\x24\x92\x3b\xab\xd0\xf4\x1a\x55\xad\xed\xca\x38\x5f\x7d\xa4\x18\x0d\x87\xb7\x95\x3b\xca\x33\xb9\x37\x95\xdd\x5a\xc7\x7f\x6c\xd2\xff\xcd\x0d\xa5\x7c\xee\xb3\xc3\xae\x2c\xef\xfa\xcd\x27\x8e\xb3\x1f\x97\x8e\xa0\x6e\x74\xfe\x4d\xb4\x7a\x89\x4a\x7b\x36\xf4\x7b\x71\xe4\x7b\x5e\xd4\xab\xa2\x83\x16\x77\x98\x8c\x43\x19\x69\x70\xc8\x46\xd8\x66\xda\x41\x5a\x12\x0c\x32\x03\x88\x8d\xfb\xb0\xf9\x3c\x79\x9c\xbd\x60\x84\x06\x93\xf4\x11\x3f\x7e\xa4\x75\x6a\x5e\xf1\x8b\xcf\xb5\x84\x73\xa1\x89\xa6\x82\xe7\x5e\x76\x13\x91\x5d\xc2\xc2\x25\xe9\xde\x45\x33\x94\x1c\x35\xaa\x2e\x15\x3d\xa5\x85\x24\x0b\xe3\x73\xa2\x94\x0b\x84\x27\xcf\x57\xf1\xd6\xfc\xb3\x3f\xf1\x3c\x54\xea\x5a\xf8\x58\x78\x31\x6e\xde\x22\xf1\xbf\x4b\xaa\xf1\x2b\xf7\x70\x5b\x49\x96\xc7\x72\xdb\x53\xf9\x11\x44\xa1\xd2\x12\x49\x00\x12\x3d\x11\x04\xc8\x7d\xf4\x21\x20\x0f\x40\x15\x9c\xf6\xfb\xd7\x39\xe6\xd4\x50\x17\x06\x7f\xa3\x8d\xc6\x7f\x03\x00\x00\xff\xff\xb8\x9f\x95\xb9\x63\x19\x00\x00") + +func testE2eTestingManifestsStatefulsetEtcdStatefulsetYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetEtcdStatefulsetYaml, + "test/e2e/testing-manifests/statefulset/etcd/statefulset.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetEtcdStatefulsetYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetEtcdStatefulsetYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/etcd/statefulset.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetEtcdTesterYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xc1\x8a\xe3\x30\x10\x44\xef\xfe\x8a\xfe\x01\xc7\x49\xf6\x12\x74\x5b\x08\xec\xd5\xb0\xb0\xf7\x8e\x5c\x6b\x8b\x69\x4b\x42\xdd\xc9\xe0\xf9\xfa\x41\x61\x12\x3b\x33\x75\x53\x97\xea\x51\xc5\x39\xfc\x43\xd1\x90\xa2\x23\xce\x59\xbb\xdb\xe1\x02\xe3\x43\xf3\x16\xe2\xe0\xe8\x8c\x2c\x69\x99\x11\xad\x99\x61\x3c\xb0\xb1\x6b\x88\x22\xcf\x70\x04\xf3\x43\x6b\x50\x6b\x15\xe5\x86\xd2\x68\x86\xaf\x76\x41\x96\xe0\x59\x1d\xfd\x6a\x88\x0c\x73\x16\x36\x54\x87\x68\x8b\xa9\x12\xbe\x40\xf4\xf1\xa2\x5a\xc2\xd1\x16\x5a\x8f\x0f\x70\x95\x4f\xd1\x38\x44\x94\x67\xa8\xfd\xea\xf3\x3d\x55\x15\x66\x1e\xe1\x68\xf4\x65\x17\x52\x37\xa6\x34\x0a\xda\x15\xd1\xdd\x37\xa8\xb1\xe1\xff\x55\x14\xd6\xe2\x88\xfb\x26\xb7\xdf\xed\x5f\x29\xfd\x55\xa4\x4f\x12\xfc\xe2\xe8\xb7\xbc\xf3\xa2\x4f\x3f\xa7\x62\x9b\x0d\xed\x5a\xb2\x4f\xc5\x1c\x9d\xf6\xa7\x15\x56\xc0\x43\x88\x50\xed\x4b\xba\x60\x4d\x11\x4d\x66\xf9\x0f\x6c\x7b\x22\xca\x6c\x93\xa3\x6e\x02\x8b\x4d\x1f\xaf\xd6\x4f\x38\x51\x88\xc1\x02\xcb\x19\xc2\xcb\x5f\xf8\x14\x07\x75\x74\xdc\x7c\xc8\x28\x21\x0d\x1b\xab\xf9\x0c\x00\x00\xff\xff\xfa\xbb\x7c\x03\x05\x02\x00\x00") + +func testE2eTestingManifestsStatefulsetEtcdTesterYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetEtcdTesterYaml, + "test/e2e/testing-manifests/statefulset/etcd/tester.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetEtcdTesterYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetEtcdTesterYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/etcd/tester.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetMysqlGaleraServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\xb1\x6a\x43\x31\x0c\x45\x77\x7f\xc5\x25\xd9\x0a\x71\x5b\x02\x1d\xbc\x15\xba\x74\x09\x85\x40\x77\xc5\xbe\x6d\x4c\x1c\xdb\x95\xf5\x02\xf9\xfb\xf2\xf2\xd2\xa9\x9b\xae\x74\x74\x90\xd6\x78\xc5\x91\x92\x0a\xc7\xc0\xa0\x5e\x72\x24\xac\x21\x2a\xc5\x88\xb7\xdd\x1e\xca\xd8\x34\x0d\x27\x3d\x7f\x52\x47\x6e\x35\xe0\xf2\xec\x4e\xb9\xa6\x80\xfd\xb2\xe2\xce\x34\x49\x62\x12\x1c\x20\xb5\x36\x13\xcb\xad\x8e\x39\xe2\xcf\xeb\xa5\xf4\xa3\xf8\xd3\x74\xa0\x56\x1a\x87\xcf\xed\xd1\x5a\xa1\x8a\x71\x33\x55\xa5\xa4\xeb\x86\x35\xf5\x96\xab\x8d\x80\x95\xe9\xc4\x95\x03\xaa\x9c\x19\xf0\x2d\x33\xea\x80\x22\x07\x96\xbb\x5b\x7a\x0f\x38\x5f\xc7\x4f\x71\xa3\x33\xce\xcd\xde\xd4\x6e\xd3\xcd\xad\x0c\xd8\x6e\x9f\x5e\x6e\xf0\xe2\x59\x68\x60\x8d\x07\x3f\x3b\x45\x7d\xe2\x97\x4c\xc5\xfc\xb8\x44\x1f\xcb\x34\x8c\xea\x4b\x8b\x32\x63\xf7\xfc\xfe\x11\xb0\x6b\x95\x6e\xfe\xa7\x30\x5a\xd3\x7f\x17\xb8\xdf\x00\x00\x00\xff\xff\xa4\x05\x0a\x73\x4f\x01\x00\x00") + +func testE2eTestingManifestsStatefulsetMysqlGaleraServiceYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetMysqlGaleraServiceYaml, + "test/e2e/testing-manifests/statefulset/mysql-galera/service.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetMysqlGaleraServiceYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetMysqlGaleraServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/mysql-galera/service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetMysqlGaleraStatefulsetYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x55\x4d\x6f\xdc\x36\x10\xbd\xef\xaf\x18\xa8\x87\x9c\xb8\xf2\xc6\x4e\x5a\xb0\xd8\x83\x61\xa7\x45\x0f\x8e\x17\xb1\xd1\x1e\x8a\x22\x18\x51\x23\x89\x59\x8a\x54\x38\xd4\xba\xdb\xa2\xff\xbd\xe0\x7e\x68\xb9\x92\x9d\xa6\xb7\xf0\x24\x0d\xe7\xcd\x3c\xce\xcc\x23\xb1\xd3\xbf\x92\x67\xed\xac\x04\xec\x3a\xce\x37\x8b\x82\x02\x2e\x66\x6b\x6d\x4b\x09\x0f\x01\x03\x55\xbd\x79\xa0\x30\x6b\x29\x60\x89\x01\xe5\x0c\xc0\x62\x4b\x12\xda\x2d\x7f\x36\x33\xee\x48\x45\x1b\x93\xdf\x68\x45\xef\x77\x5b\x59\x8d\x86\x3c\x66\x33\x00\x4f\x9d\xd1\x0a\x59\xc2\xe5\x0c\x20\x50\xdb\x19\x0c\x14\x11\x00\x69\xcc\xb8\x0c\x16\x64\xf8\xf8\x07\x91\xd2\x31\x4d\xfc\x3d\xa6\x8a\x4b\x5b\x1d\x6e\x9c\x0d\xa8\x2d\xf9\x01\x22\x0e\xd4\xb4\xe5\x80\xc6\x0c\x81\x74\x8b\x35\x49\xa8\x95\x9f\x6b\x97\xd7\xce\xd5\x86\x3e\xaa\x01\x9e\xef\xe9\x8a\x03\x4c\x5e\xcc\x17\xe7\xd0\x55\x6f\xcc\xca\x19\xad\xb6\x12\xae\xcd\x13\x6e\xf9\xc4\xd1\xd7\x09\x63\x01\x99\x10\x4f\xce\xaf\x45\xa9\xfd\x32\x3f\x7e\x65\x83\xc3\xc6\x99\xbe\xa5\x3b\xd7\xdb\x70\x06\xdb\xf3\x8e\xfe\xa5\xf6\x83\x1d\xa0\x8d\x9e\x2b\x0c\x8d\x84\xec\x99\x70\x47\xa0\x72\xb6\xd2\xf5\x4b\x38\x0a\x2a\xdf\x95\x31\x1b\xd5\xa9\x70\x2e\x70\xf0\xd8\x8d\x2b\x55\x52\xa1\xd1\xca\x4f\xc4\xac\x69\xd8\x54\xae\x6d\xd1\x96\x67\xc7\x1d\x48\xe5\x1d\x91\x17\x95\xb6\x25\x25\x04\xc7\xe5\x11\xce\x0a\x0e\xe8\xc3\x32\x41\x1e\x6d\x73\x6e\xb2\xb3\x52\x1e\x86\x6a\x79\x1a\xa7\xfd\x22\xbb\x99\x16\x6f\x75\x7f\xfb\xf1\xfd\xf5\xdd\xbb\x87\xd5\xf5\xcd\xbb\xa4\x14\x1b\x34\x3d\xfd\xe4\x5d\x2b\x13\x23\x40\xa5\xc9\x94\x1f\xa8\x3a\xb7\xc6\xa1\x3b\x69\x62\xb3\x18\x6d\xee\x40\xfb\xb2\x1e\x87\x77\x1e\xb3\x73\x87\x8a\xbe\xb1\x26\xab\x17\xe5\x71\x92\x14\x7c\x85\x38\x76\xde\x62\xdf\x02\x49\xaf\x4f\xc7\xec\x9c\x3f\x3f\xdf\x00\x5a\x39\x1f\x24\x5c\x5e\x5e\xbc\x4d\xd8\x3e\x97\x7b\x82\xb9\xba\xba\xba\x9a\x60\x98\xc3\x17\x10\x6f\xde\x7e\x3f\x41\x1c\x6e\x9d\xa0\x9d\xfd\x22\xf2\x87\x09\x52\x27\xb9\x26\xc3\x2b\x4a\xaa\xb0\x37\x81\x45\xa5\x0d\x2d\x4f\x35\xcf\xdb\xed\xa1\x42\x73\x65\xab\x33\x48\xcf\xe4\x97\xde\xb9\x53\x58\x4f\x58\x6a\x4b\xcc\x2b\xef\x0a\x4a\xe7\xef\x3b\x78\xbc\xbf\xbd\x97\xf0\x4b\x05\xa5\x53\x6b\xf2\x40\x7f\x92\x02\xcd\x50\xf4\x75\xbd\x85\x4f\x3d\x07\xe8\x99\xfe\xab\x59\x0d\xa1\x09\xcd\x5f\x72\x31\xbf\x48\xa2\xc7\x58\xe7\xd3\x3e\x11\xf4\x9e\x34\x37\x23\x83\x50\x23\x43\xb6\xcb\x03\xa2\x87\x78\x32\x10\x04\xaf\xb8\x71\x4f\x10\x05\x51\x20\x13\xff\xf8\x2a\x4b\x20\xf1\xb6\xd6\x68\x6e\xc9\xe0\xf6\x81\x94\xb3\x25\x4b\x58\xbc\x49\x3c\x82\x6e\xc9\xf5\x61\xd8\x4c\xf7\xb8\x57\x8a\x98\x1f\x1b\x4f\xdc\x38\x53\x4a\x78\xfd\x95\x52\x8b\x74\x5e\x94\x5a\xbe\x41\x9f\x1b\x5d\xe4\xff\x4b\x68\xa7\x9e\xcf\x52\x06\x13\x8d\x8d\x62\x50\xdb\x85\xed\xad\xf6\x12\xfe\xfe\x67\xe4\x39\xbe\x0f\x46\xae\xfb\xf8\x37\x06\x75\xfb\x78\x78\x3d\x77\xc9\xc4\xe4\xf9\x7c\xee\xcc\x68\xad\x0b\x3b\x1d\x24\xe5\xd9\x87\x9c\xa3\xe9\x1a\x9c\xaf\xfb\x82\xbc\xa5\x40\x1c\x27\x8a\x83\xf3\x58\x93\x50\x06\x99\x25\xa0\xdd\x86\x46\xdb\x7a\xf2\xfe\xe2\xae\x25\x77\xae\x24\x96\xf0\x3b\x64\x1f\x08\xcb\xdf\xbc\x0e\x74\x6f\x15\x65\xf0\xc7\xc1\xcd\x13\xbb\xde\x2b\x4a\x92\x7b\xfa\xdc\x13\xa7\xdd\x02\x38\x64\x95\xb0\xf8\x59\xcf\xfe\x0d\x00\x00\xff\xff\xbf\x74\x62\x68\x95\x08\x00\x00") + +func testE2eTestingManifestsStatefulsetMysqlGaleraStatefulsetYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetMysqlGaleraStatefulsetYaml, + "test/e2e/testing-manifests/statefulset/mysql-galera/statefulset.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetMysqlGaleraStatefulsetYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetMysqlGaleraStatefulsetYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/mysql-galera/statefulset.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetMysqlUpgradeConfigmapYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xca\xb1\xae\xc2\x30\x0c\x85\xe1\xdd\x4f\x71\x5e\xa0\x57\xba\x6b\x56\x66\x56\x16\xc4\xe0\x12\xb7\x8a\x70\x9c\x10\x87\x4a\x95\x78\x78\x44\xa4\x8e\x8c\xe7\xfc\x1f\xd7\x74\x91\xe6\xa9\x58\xc0\xf6\x4f\x8f\x64\x31\xe0\x54\x6c\x49\xeb\x99\x2b\x65\xe9\x1c\xb9\x73\x20\xc0\x38\x4b\x40\xde\xfd\xa9\x04\x28\xcf\xa2\xfe\xfd\x01\xae\xf5\x08\x07\xce\xec\x5d\xda\xdf\xdd\x96\x80\xf7\x40\xd7\x01\xe2\x6d\x0c\x2d\xeb\x34\x27\x23\xc0\x95\x37\xf9\xe9\xfc\x55\xa5\x4d\x4d\x38\x4e\xc5\x74\xa7\x4f\x00\x00\x00\xff\xff\xd1\x8c\x7f\x5b\xaf\x00\x00\x00") + +func testE2eTestingManifestsStatefulsetMysqlUpgradeConfigmapYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetMysqlUpgradeConfigmapYaml, + "test/e2e/testing-manifests/statefulset/mysql-upgrade/configmap.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetMysqlUpgradeConfigmapYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetMysqlUpgradeConfigmapYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/mysql-upgrade/configmap.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetMysqlUpgradeServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x8e\xb1\x8a\x02\x31\x14\x45\xfb\xf7\x15\xf7\x07\x02\xbb\x0c\x6c\x91\x72\x3b\x41\x44\x10\xec\x9f\xc9\x2d\x82\x99\x24\x26\x71\x60\xfe\x5e\x46\xb1\x18\xed\xc4\xf6\x1e\xee\xe1\x68\x09\x47\xd6\x16\x72\xb2\x98\x7e\xe5\x1c\x92\xb7\x38\xb0\x4e\xc1\x51\x46\x76\xf5\xda\xd5\x0a\x90\x74\xa4\xc5\x38\xb7\x4b\x14\x20\xea\x89\xb1\x2d\x3b\xa0\xa5\x3c\x41\x2b\x74\xcb\x58\x72\xed\x77\x6a\x5e\x7e\x0f\x64\x31\x0c\x3f\x7f\x02\xb8\x78\x6d\x9d\x75\xb3\xb7\xd8\xe5\x44\x01\x1a\x23\x5d\xcf\xf5\x4d\x6d\x8c\x91\x4f\x62\x4d\xa5\xfa\xef\x15\xaf\xfb\x56\x2a\xa0\xcf\x85\x16\xdb\xac\xfe\x5f\xa3\x26\xc7\x2a\xb7\x00\x00\x00\xff\xff\x8b\xeb\xb7\xc6\x60\x01\x00\x00") + +func testE2eTestingManifestsStatefulsetMysqlUpgradeServiceYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetMysqlUpgradeServiceYaml, + "test/e2e/testing-manifests/statefulset/mysql-upgrade/service.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetMysqlUpgradeServiceYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetMysqlUpgradeServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/mysql-upgrade/service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetMysqlUpgradeStatefulsetYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x58\x6d\x6f\xdb\x36\x10\xfe\xee\x5f\x71\x30\x82\xc6\x5e\x4b\xdb\x6a\x91\x15\x53\xeb\x0e\xae\xe3\x26\x05\xec\x38\xb3\xbd\x06\x85\xe7\xb9\xb4\x74\xb6\x89\x52\xa4\x42\x52\x46\xb2\xa6\xfb\xed\x03\x25\xbf\x50\x8e\x9c\x14\x1b\x3a\x60\xd3\x07\x41\x22\xef\x8e\xcf\x9d\x1e\xde\x9d\x48\x63\xf6\x01\x95\x66\x52\xf8\x40\xe3\x58\xd7\x57\xde\x0c\x0d\xf5\x4a\x9f\x99\x08\x7d\x18\x1a\x6a\x70\x9e\xf0\x21\x9a\x52\x84\x86\x86\xd4\x50\xbf\x04\x20\x68\x84\x3e\x44\xb7\xfa\x9a\x97\x74\x8c\x81\x1d\xd3\xa8\x56\x2c\xc0\x0b\x67\x0a\x40\x61\xcc\x59\x40\xb5\x0f\x2f\x4a\x00\x06\xa3\x98\x53\x83\x56\x1c\xc0\x35\x68\x2f\x4e\x67\xc8\xf5\xe6\x0d\x2c\x9e\x9d\x21\x80\xcd\x3a\xf6\x62\x82\x99\xb6\x14\x86\x32\x81\x6a\xab\x42\xd6\xb8\xec\x2c\xd9\x29\xa6\x0a\x11\x5d\x6c\x60\xf9\x27\xb5\x97\xdb\x89\x40\x46\x11\x15\xe1\x6e\x55\x02\x33\xaa\x97\xce\x6b\x99\x04\x65\xe7\xf5\x6e\xfb\x6c\x5d\x36\x40\xf0\xc6\x19\x19\x8f\xe1\xd3\x52\x6a\x63\x81\x7c\x82\xe6\x9f\x40\x2a\xe3\x06\xf9\x69\xf2\xb4\x7a\x04\x93\x09\xdc\xdd\x01\xde\x30\x03\x9e\xa3\x22\x55\xc8\x04\xe5\xcd\xa3\x2f\x6f\x5b\xc3\xf3\xe9\xa0\xd3\x6b\x8d\xda\xe7\x63\x6f\xf2\xd5\x11\xc2\x60\x29\x61\x9c\xc2\x0f\x27\xf0\x06\xea\x91\x30\xf5\x40\x8a\x79\x2d\xac\xdb\xc0\xa3\x22\x2c\xac\x05\x62\xbe\xaf\xb3\x9d\x6c\x1e\x55\x2a\x5e\xa3\x01\x4f\xe1\x68\xbd\x62\xb5\x0a\x6f\xbe\xcd\x12\x9b\x5b\xc7\x36\x7a\x40\xf0\x1a\x1a\x30\x99\xbc\x02\xb3\x44\xe1\xc8\x01\x04\xf1\xce\x20\x5b\x90\x88\xc6\xf5\x88\x6a\x83\xca\x5a\xcc\xad\xe5\x02\xe5\x1a\x1f\xb3\xa2\x39\x5d\xe1\x43\x46\xe6\x6c\xfb\xb2\x92\x3c\x89\xb0\x27\x13\x61\xb4\xfb\x61\x33\x76\x58\x55\x47\x2f\xb2\x62\x97\xd4\x2c\x7d\xd7\x72\xa1\x56\x06\xe5\x11\xdd\x9c\xd0\x56\x9b\x4b\x81\xc5\x94\x5c\x04\xaa\xc6\x64\x7d\x21\xe5\x82\x23\xd1\x34\x8a\x39\xea\xfa\x8d\x51\x74\x46\x83\xcf\x49\xec\x7b\xb5\xc6\x77\x64\x2b\x09\xa1\xbe\xa2\xaa\xce\xd9\xac\x9e\xe2\xcb\xee\x96\xac\x4f\x9e\x64\x64\x6d\xfc\x0b\xfc\x2e\xa2\x57\x21\x00\x11\x50\x03\x84\x28\x0c\x56\x44\x0a\x7e\x9b\x6d\x69\x72\x54\xa9\x6c\xf4\x89\x57\xad\xd6\x32\x27\x5e\xbc\x68\xbc\x84\x3b\xb8\x99\x69\xa3\x90\x46\x40\x6e\x80\xb4\xf7\xfc\x75\x6c\xef\x82\x0e\x84\xc4\x0a\x63\xaa\x10\x08\x31\x54\x2d\xd0\x90\x90\xa9\xe6\x01\xd5\x87\x09\x67\x73\xdc\x01\xd2\x1c\x42\xa2\x93\x59\x26\x91\x9f\xf8\x06\x0a\xa3\x09\xd6\xdf\x31\x47\xe4\xe0\x60\xb2\x7c\x38\x4f\xd6\xbc\x93\xed\x1c\x8a\xd5\x7d\xe7\x7a\x1f\x87\xbf\x74\xa7\xad\x6e\xb7\x7f\x35\xed\xf4\x2e\x47\x1f\xa7\x97\xad\xe1\xf0\xaa\x3f\x38\x75\x00\xae\x28\x4f\xd0\x87\xb2\xb7\xa3\x66\x2c\x55\x51\xac\xf6\x03\xb1\xc5\x7d\x29\x95\xf1\xed\x07\xfd\xf1\x3f\x14\x75\x5b\xff\xb4\x4c\x54\x80\x0e\x40\x3b\x78\x9d\xa0\x36\xb9\x31\x9b\xf4\x12\x3f\xb7\x71\x6c\x85\x8c\xa4\xba\xf5\xc1\x3b\xdb\x25\x37\xce\x56\x28\x50\xeb\x4b\x25\x67\xe8\x5a\xc0\x9b\x5d\x7d\xdc\x04\x2f\xcb\x16\x30\x2e\xa7\xe0\x68\x18\x31\x51\x7e\x06\xe5\x98\x89\x45\x79\xe2\x26\x78\xc1\x0c\xa3\xfc\x14\x39\xbd\x1d\x62\x20\x45\x68\x2b\xb6\xbb\xef\x0c\x8b\x50\x26\x66\x3b\x79\xe2\xb8\x48\x43\xf6\x37\x11\x59\x30\x64\x69\xef\xde\xf3\x97\xb5\x46\xad\x51\xf3\xd2\x21\xb4\xf7\x61\xa7\xdb\x69\x8f\xc0\x7b\x1c\xe9\xc9\x03\x40\xbd\x3d\xbe\xef\x36\xf9\x3f\xca\xc4\x07\xf8\x5b\x60\xbd\x88\xc4\xdf\xad\xff\x08\xf6\xd3\x79\xe9\x5e\x19\x27\x73\x07\xe5\x34\xad\xab\x53\x26\xe6\xb2\xb8\xa0\x47\xab\x03\xd2\xc1\x92\x8a\x05\x4e\xb3\xea\x3e\x35\xb2\xa6\xaf\x79\x8d\xe5\x95\x55\xb4\xb7\xda\x8c\x09\x2e\x17\xa9\x81\x5c\xfd\x2f\x42\xe6\xc8\x16\x43\xb3\xb5\xc8\x56\x83\x62\x9d\xb4\x3a\xfd\x5e\xa9\xfd\xf0\x73\x75\x3c\xf6\x75\x4c\x03\xf4\x27\x93\xa7\xe9\xc0\xc1\x5a\x95\x42\x7e\x14\xef\xba\xb5\x2a\xb7\xcf\x5b\x17\x67\x1d\xe8\xb5\x86\xa3\xce\x00\x46\xfd\xf5\xd3\xb4\xdb\x3f\x9b\xbe\x7b\xdf\xed\x34\x8f\xef\xd7\xbc\xe3\x67\xbf\xe5\x2c\x65\x97\xa3\x78\xd9\x1f\xee\x97\xca\xe7\x93\xaf\x65\x78\xf3\x0d\x11\x9f\xb3\xc2\xcf\x7d\x40\xb1\x38\xaa\x99\x6b\x57\x94\x19\x26\x16\x30\x97\x2a\xcb\x86\x21\x18\x09\x33\x4c\x77\xfb\x2d\x54\x68\x10\x60\x9c\x4a\x04\x52\x08\x0c\x0c\x93\x42\x57\xcb\x39\x4b\x89\x30\x8c\x67\xda\x40\x96\xb0\xdd\xe1\x40\xd0\xd9\xdc\xaf\x20\x94\xa0\x39\x62\x0c\x9e\x7d\x16\x58\x2a\xc0\xf3\x3e\xdb\xf6\xec\x0f\xbb\xe4\xfa\xa7\xc2\xae\x09\x73\x25\xa3\xac\xbd\x82\x58\x6a\x66\xc7\xca\xfb\x04\x3e\xe4\x7f\xe1\xb8\x54\x6c\x91\x37\x70\xdf\x81\xd7\xaf\x3b\xfd\x77\x8e\xd0\x51\xe5\xf5\x41\x5b\xd5\x67\xa5\x82\x2f\x7d\xde\x1f\x8e\x9a\xc7\x59\xef\xd2\xc8\xba\x95\xe3\x42\xc1\x5f\x87\x9d\x41\xf3\x58\x49\x69\x8a\xe7\x37\xd5\xb6\x79\x5c\x3c\xdf\xee\x5f\x5c\x74\xda\xa3\xe9\xa0\x33\x1a\x7c\x6c\x7a\x8d\x57\x8e\xd0\x70\xd4\x1a\x8c\x60\xd8\x6d\x7d\xe8\xb8\xc3\x79\xdf\xf2\x9c\xb2\x29\x7d\xd3\x83\x71\xa6\x0d\x0a\x20\xe4\x33\x62\x4c\x64\x9c\x3e\x6b\x14\x61\xd6\x98\x11\x12\xd1\x1b\x62\xe9\xa1\x9b\x5e\xd6\x8a\x91\x00\xf2\xec\x2f\xe7\x5a\xae\xed\x43\x9a\x66\x48\xba\xf3\x09\xc9\x7a\xb7\xe6\xae\x89\x23\xb6\x01\x6d\x3a\x74\x22\x89\x46\xd5\xb4\x31\x2a\xff\xbf\x9b\x83\x46\x23\x2a\xee\x0f\x1a\x8d\xde\xa6\x43\xc8\x1c\xbf\xd7\xe6\xe5\xf0\x61\x14\x9b\xdb\x53\xa6\x7c\xf8\xf2\xb5\x40\x6e\xef\x3f\x27\x1b\xea\xd1\xd8\x85\x94\x6f\xd7\xb2\x45\xdb\x9c\xb2\x68\xb4\xfe\xc7\x4f\x11\x90\x7b\x3f\xf9\x7b\xf1\x77\x7f\xea\x6d\x4e\xd1\xba\x27\x43\xd4\xb6\x41\x18\x20\x0d\xaf\x14\x33\xd8\x17\x01\x6e\x7b\x00\x6d\xa4\xa2\x0b\xbb\x94\xd6\xd9\x51\x43\x88\x73\x9a\x70\x53\x3a\x18\xd3\xa2\x88\xae\xcd\xd8\xd0\x9d\xb1\x12\x21\xa4\xe4\x9e\x84\xc4\x92\xb3\xe0\x76\xef\x2c\xe4\x52\x86\xa7\x4c\xab\x24\xb6\x39\xe6\x6d\x12\x2e\xf2\x67\x22\x4e\x40\x48\x1c\xce\xa0\xe4\x9e\x67\xc4\xe1\x6c\xef\xb8\x24\x62\xa2\xb5\xa2\x8c\xd3\x19\x47\x1f\x9e\x97\x40\x23\xc7\xc0\x48\x95\xca\x47\xd4\x04\xcb\xae\x7b\x1e\xe2\x1c\x86\xfc\x15\x00\x00\xff\xff\xa1\xdc\xb2\x6b\xb4\x11\x00\x00") + +func testE2eTestingManifestsStatefulsetMysqlUpgradeStatefulsetYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetMysqlUpgradeStatefulsetYaml, + "test/e2e/testing-manifests/statefulset/mysql-upgrade/statefulset.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetMysqlUpgradeStatefulsetYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetMysqlUpgradeStatefulsetYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/mysql-upgrade/statefulset.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetMysqlUpgradeTesterYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x52\x41\x6e\xdb\x30\x10\xbc\xeb\x15\xfb\x01\xc6\x76\x7a\x09\x78\x4b\x60\xa0\x97\x1c\x0c\x04\xe8\x7d\x45\x0e\x24\xa2\x2b\x92\x25\xd7\x2a\xd4\xd7\x17\x4a\x22\x5b\xb2\xbd\x37\x71\xb4\x83\x99\x9d\xe1\x1c\x7e\xa1\xd4\x90\xa2\x25\xce\xb9\xee\xc6\x43\x0b\xe5\x43\xf3\x3b\x44\x6f\xe9\x88\x2c\x69\x1a\x10\xb5\x19\xa0\xec\x59\xd9\x36\x44\x91\x07\x58\x1a\xa6\xfa\x47\x8c\xa2\xaa\xa9\x28\x23\x4a\x53\x33\xdc\x8c\x17\x64\x09\x8e\xab\xa5\x1f\x0d\x91\x62\xc8\xc2\x8a\x19\x21\x5a\xf3\xcc\x23\xdc\x42\xea\xf2\x45\xb3\x0a\x4b\x6b\xd2\xf9\x71\x21\x9e\xc7\xa5\xa8\x1c\x22\xca\x65\xc9\x7c\x0b\xba\xdd\x9a\x27\x0c\xdc\xc1\x52\xe7\xca\x53\x48\xbb\x2e\xa5\x4e\x60\xae\x14\xbb\x2f\x13\x78\xc6\xa7\x11\xbb\x7f\x3a\x6c\x57\x4f\x67\x91\x53\x92\xe0\x26\x4b\xaf\xf2\x97\xa7\x7a\xc1\x73\x2a\xba\x12\x6e\xae\xca\x4e\xa9\xa8\xa5\x97\xfd\xcb\xfe\x82\x16\xb0\x0f\x11\xb5\x9e\x4a\x6a\x71\xdd\x22\xea\x55\xf3\x4f\xe8\xfa\x89\x28\xb3\xf6\x96\x76\x3d\x58\xb4\xff\xb7\x85\xee\xc9\x89\x42\x0c\x1a\x58\x8e\x10\x9e\x3e\xe0\x52\xf4\xd5\xd2\xf3\xea\x87\x8c\x12\x92\x5f\x41\xc6\x98\x66\x9d\x7e\xfe\x34\x79\x93\xff\x29\xf9\x63\xa8\xe5\x9c\x35\xa4\xf8\x76\xf6\x1d\x1e\x15\x61\xbe\x1c\x8a\xc9\xbe\x6d\xb6\x79\x66\xdf\x6e\x53\x59\x72\x1c\x42\x7c\x1d\x39\x08\xb7\x02\x4b\xf3\xc9\x2b\x04\x4e\x53\xf9\x2e\x09\xab\xeb\xdf\x37\xcd\xb8\xeb\xc5\xad\x81\x71\x11\xfd\x81\x32\x06\x87\x8d\xd0\xb5\xaa\x07\x0d\xbb\xef\xcf\xa2\x74\x15\xb2\xd9\x9e\x7e\xab\xf8\x01\xa9\x4e\x19\x96\xde\x13\xfb\x37\x16\x8e\x0e\xa5\xf9\x1f\x00\x00\xff\xff\x5d\xc0\x88\x73\x6f\x03\x00\x00") + +func testE2eTestingManifestsStatefulsetMysqlUpgradeTesterYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetMysqlUpgradeTesterYaml, + "test/e2e/testing-manifests/statefulset/mysql-upgrade/tester.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetMysqlUpgradeTesterYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetMysqlUpgradeTesterYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/mysql-upgrade/tester.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetRedisServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x41\x4b\x43\x31\x10\x84\xef\xf9\x15\x43\x7b\x13\x1a\x11\x41\x31\x37\xc1\x8b\x97\x22\x14\xbc\x6f\x93\x91\x86\xa6\x49\xd8\xec\x7b\xe0\xbf\x97\xf7\xda\x9e\xbc\xed\xec\xec\x7c\xcb\x6c\xf1\x8e\x13\x25\x15\x8e\x81\x41\x9d\x73\x24\xac\x21\x2a\xc5\x88\x8f\xfd\x01\xca\xd8\x34\x0d\x27\x3d\x7f\x53\x47\x6e\x35\x60\x7e\x72\xe7\x5c\x53\xc0\xe1\x1a\x71\x17\x9a\x24\x31\x09\x0e\x90\x5a\x9b\x89\xe5\x56\xc7\x22\x71\xe7\x7a\x29\xfd\x24\xfe\x3c\x1d\xa9\x95\xc6\xe1\x73\x7b\xb4\x56\xa8\x62\xdc\x4d\x55\x29\xe9\x77\xc7\x9a\x7a\xcb\xd5\x46\xc0\xc6\x74\xe2\xc6\x01\x55\x2e\x0c\x50\xa6\x3c\x1c\x50\xe4\xc8\x72\x43\x4b\xef\x77\x63\x74\xc6\x65\xd9\x9b\xda\xea\xee\xd6\x31\xe0\xe5\xf9\xf5\x6d\x3d\xbe\x62\x3a\xa9\x0e\xd8\xe2\xc1\xaf\x41\x9f\xf8\x23\x53\x31\x3f\xe6\xe8\x63\x99\x86\x51\x7d\x69\x51\x8a\x03\x6e\xfa\xf3\x2b\x60\xdf\x2a\xdd\x52\xa6\x30\x5a\xd3\x7f\xff\xdd\x5f\x00\x00\x00\xff\xff\x7d\x9c\x76\xf2\x4c\x01\x00\x00") + +func testE2eTestingManifestsStatefulsetRedisServiceYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetRedisServiceYaml, + "test/e2e/testing-manifests/statefulset/redis/service.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetRedisServiceYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetRedisServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/redis/service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetRedisStatefulsetYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x55\xc1\x6e\xe3\x46\x0c\xbd\xeb\x2b\x08\xa1\x87\xf6\x20\xa9\x4e\x90\x16\x1d\xc0\x87\x20\x49\x7b\x4a\x62\xc4\x45\x7b\x58\x2c\x02\x7a\x44\xcb\xdc\x8c\x66\xb4\x33\x94\xb3\xc6\x62\xff\x7d\x31\x96\x2d\xcb\xf2\x7a\x37\xc7\xd5\xc9\x26\xf9\x1e\x39\xe4\xe3\x0c\x36\xfc\x1f\xf9\xc0\xce\x2a\xc0\xa6\x09\xc5\x7a\xb2\x20\xc1\x49\xf2\xc2\xb6\x54\x30\x17\x14\x5a\xb6\x66\x4e\x92\xd4\x24\x58\xa2\xa0\x4a\x00\x2c\xd6\xa4\xc0\x97\x49\x68\x48\x47\x43\x20\xbf\x66\x4d\x0f\x5b\x7b\xea\xa9\xe4\x90\x26\x00\x9e\x1a\xc3\x1a\x83\x82\xcb\x04\x40\xa8\x6e\x0c\x0a\x45\x00\xc0\x90\x2f\x7e\x06\x17\x64\xc2\xfe\x1f\xc4\x72\x14\x6c\x99\xb6\xa6\x7d\xa6\xf8\xb1\x65\xb9\x71\x56\x90\x2d\xf9\x1e\x92\xed\xca\x62\x1b\x04\x8d\xe9\x89\xb8\xc6\x8a\x14\x54\xda\xe7\xec\x8a\xca\xb9\xca\xd0\xb3\xee\xe1\xc5\x36\x47\xb6\x43\x65\x97\xf9\x45\xfe\xbb\xa2\x0b\x3a\xc6\xcf\x5a\x63\x66\xce\xb0\xde\x28\xb8\x36\xaf\xb8\x09\x87\x42\x7d\x35\x28\x3b\x83\x34\xeb\xc9\xd8\x8a\x9b\x16\xae\x91\xf4\xd8\xff\xea\xfc\x4b\x56\xb2\x9f\x16\xfb\x5f\x87\x80\xb5\x33\x6d\x4d\xf7\xae\xb5\x72\x44\xdb\x1d\xce\x35\xd2\xdb\x00\xea\x18\x35\x43\x59\x29\x48\xc7\x69\xba\xf8\xc8\x5f\xb2\x3f\x87\x19\xa7\xdf\xc3\x16\xce\x49\x10\x8f\xcd\xb8\x8b\x25\x2d\x18\xad\xfa\x40\x21\xf0\xa1\x45\xda\xd5\x35\xda\xf2\xa8\x0b\x3d\x77\xd1\x10\xf9\x6c\xc9\xb6\xa4\xc1\x31\xc7\x5d\xcb\x9c\xcd\x82\xa0\x97\xe9\x00\xb9\xb7\xe5\x61\x75\xdc\xc1\x9d\xde\xa6\xbd\xd2\xba\x8f\xec\xfa\xb4\x65\xb3\xc7\xdb\xe7\x87\xeb\xfb\xbb\xf9\xec\xfa\xe6\x6e\xd0\x88\x35\x9a\x96\xfe\xf6\xae\x56\x03\x23\xc0\x92\xc9\x94\x4f\xb4\x3c\xb6\x46\x3d\x1e\x56\x65\x3d\x19\x39\xb7\xa0\xae\xa9\x7b\x5d\xe7\x31\x7b\x68\x50\xd3\xcf\x31\x5a\x7d\x76\x61\x0e\x4b\xf6\xc3\x41\x37\xce\x1f\x97\xde\xb3\xce\x9c\x17\x05\x7f\x5c\xfe\xf9\xd7\xa0\xa0\x8e\x3f\xce\xff\x7b\x52\x89\xc7\xeb\xb6\x70\xb7\x8b\x71\xba\x03\xc8\x58\x2a\xe3\xf8\x5c\x3b\xbb\xec\xfd\x9e\xb0\x64\x4b\x21\xcc\xbc\x5b\xd0\x70\x8a\xf4\xe9\x70\x85\x9c\x29\xa6\x4b\x10\x56\x23\x43\xa6\x47\x86\xf4\xa4\x66\x6d\x18\xb2\x15\xfc\xf2\xeb\xca\x05\x89\xe7\xfe\x0d\x1a\xb6\x55\x3a\x00\xc6\x6b\x8b\xd1\xdc\x92\xc1\xcd\x9c\xb4\xb3\x65\x50\x30\xb9\x1a\x44\x08\xd7\xe4\x5a\xe9\x9d\x57\x6f\x94\x4e\xd4\xdb\x59\x29\x14\xd1\xfb\x76\xb5\x15\x07\x4f\x97\xf4\x44\x2f\x43\x28\xd5\x8d\x6c\x6e\xd9\x2b\xf8\xfc\x65\x14\x36\xd6\xe7\x28\xb4\x23\xbf\x31\xc8\xf5\xbf\xbb\x87\x61\x9b\x29\x3b\x79\x19\xbe\x75\x46\xb4\xd6\x09\x0a\x3b\x3b\x68\x47\x47\x99\xa3\x69\x56\x98\xbf\xb4\x0b\xf2\x96\x84\x42\xbc\xf6\x83\x38\x8f\x15\x65\xda\x60\x08\x0a\xd0\x6e\x64\xc5\xb6\x3a\x79\x5a\x50\x6b\x0a\xe1\xde\x95\x14\x14\xbc\x83\xf4\x89\xb0\xfc\xdf\xb3\xd0\xa3\xd5\x94\xc2\xfb\x64\x2f\xb2\xe0\x5a\xaf\x69\x90\xdc\xd3\xc7\x96\xc2\x70\x3a\x00\xbb\xac\x0a\x26\xff\x70\xf2\x35\x00\x00\xff\xff\xc6\x6d\x8b\xb4\x6c\x07\x00\x00") + +func testE2eTestingManifestsStatefulsetRedisStatefulsetYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetRedisStatefulsetYaml, + "test/e2e/testing-manifests/statefulset/redis/statefulset.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetRedisStatefulsetYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetRedisStatefulsetYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/redis/statefulset.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetZookeeperServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8f\xb1\x6a\x33\x31\x10\x84\x7b\x3d\xc5\x60\x77\x3f\x9c\x7e\x92\x34\xe6\xba\x40\x9a\x34\x26\x60\x48\xbf\x96\x26\x58\x9c\x2c\x89\xd5\x9e\x21\x7e\xfa\x70\x67\x07\xe2\x6e\x67\x66\xf7\x63\x76\x8b\x57\x9c\x28\x31\xb3\x77\x74\xea\x25\x05\xc2\x2a\x82\x52\x8c\x78\xdb\x1f\xa0\x0c\x55\x63\x77\xd2\xd2\x27\xb5\xa7\x5a\x46\x5c\x9e\xdc\x94\x4a\x1c\x71\xb8\x9d\xb8\x33\x4d\xa2\x98\x8c\x0e\x90\x52\xaa\x89\xa5\x5a\xfa\x22\xf1\xcb\xf5\x92\xdb\x49\xfc\x34\x1f\xa9\x85\xc6\xee\x53\xfd\x6f\x35\x53\xc5\x38\xcc\x45\x29\xf1\x7b\x60\x89\xad\xa6\x62\x7d\xc4\xc6\x74\xe6\xc6\x01\x45\xce\x1c\x71\x9d\x1c\x90\xe5\xc8\x7c\xe7\x4a\x6b\xab\xdb\x1b\xc3\xe2\xb4\xaa\xb6\x46\xc3\x3a\x8e\x78\xde\xed\x76\xeb\xe6\x0d\xd0\x48\xfd\x93\xbe\x3c\xa6\x99\x12\xa9\x03\x33\xc3\xd2\xdd\x01\x5b\xfc\xf3\xd7\xc9\x47\x7e\xc9\x9c\xcd\xf7\x4b\xf0\x21\xcf\xdd\xa8\x3e\xd7\x20\xd9\x01\x77\xfd\xfe\x31\x62\x5f\x0b\xdd\xf2\xec\x02\xa8\xfa\x58\xd1\xfd\x04\x00\x00\xff\xff\x4b\x37\xba\x4f\x69\x01\x00\x00") + +func testE2eTestingManifestsStatefulsetZookeeperServiceYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetZookeeperServiceYaml, + "test/e2e/testing-manifests/statefulset/zookeeper/service.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetZookeeperServiceYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetZookeeperServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/zookeeper/service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testE2eTestingManifestsStatefulsetZookeeperStatefulsetYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\xc1\x6e\xe3\x36\x10\xbd\xeb\x2b\x06\xea\x59\x52\xbd\x41\x80\x80\x40\x0e\x41\xb2\xed\x29\xbb\xc6\xba\x68\x0f\x45\xb1\x18\x53\x63\x99\x31\xc5\x61\xc9\x91\xb7\x76\xd1\x7f\x2f\x64\x5b\x32\xed\xc4\x46\x8a\xae\x4e\xf6\xcc\xbc\x79\xc3\xa7\x37\x22\x7a\xf3\x2b\x85\x68\xd8\x29\x40\xef\x63\xb5\x9e\xcc\x49\x70\x92\xad\x8c\xab\x15\xcc\x04\x85\x16\x9d\x9d\x91\x64\x2d\x09\xd6\x28\xa8\x32\x00\x87\x2d\x29\xd8\x32\x67\xd1\x93\xee\x23\x91\xc2\xda\x68\xfa\xb4\x4b\xe4\xdb\x55\x9e\x01\x04\xf2\xd6\x68\x8c\x0a\x6e\x32\x00\xa1\xd6\x5b\x14\xea\xab\x01\xd2\x6e\xfd\x63\x71\x4e\x36\x0e\xff\xa0\x1f\x46\xc1\x76\xb5\xfb\x3f\x70\xf4\x8f\x71\x46\x1e\xd9\x09\x1a\x47\x61\xac\x2f\x0e\x13\x19\x17\x05\xad\x1d\xbb\x98\x16\x1b\x52\xd0\xe8\x50\x1a\xae\x1a\xe6\xc6\xd2\x57\x3d\xc2\xab\x2d\xf3\x8a\xc8\x53\x28\x0e\xc8\xe2\xa6\xbc\x2d\x7f\x2c\xd0\xfa\x25\x2a\xfa\x40\xa7\x9d\xa6\x9d\xb5\x53\xb6\x46\x6f\x14\x3c\xd8\x6f\xb8\x89\xc7\x79\x43\x93\x4c\x5f\x40\x5e\x8c\x2d\x8d\x13\xbe\xaf\xd8\x4b\x7e\x9a\xff\xc6\x61\x55\xd4\x26\xdc\x57\xc3\xaf\x63\xc1\x9a\x6d\xd7\xd2\x33\x77\x4e\x4e\xda\xee\x8f\xc9\x5e\xc6\x18\x40\xdb\x57\x4d\x51\x96\x0a\xf2\x9e\xa6\xca\x5f\x01\x7a\x82\xda\x84\x4b\xa0\x73\xfe\x01\x36\x67\x96\x28\x01\xfd\xb9\xa0\x2f\xb8\x46\xc5\x9e\xdc\x4b\xbd\x2a\xee\x8a\x97\x70\x14\x4a\x73\xdb\xa2\xab\x4f\xb4\x18\x09\x2a\x4f\x14\x8a\x85\x71\x35\x25\x87\x3d\xd7\xae\x60\x57\x44\xc1\x20\xf7\x09\x72\x88\x95\x71\x79\xaa\xe3\xc1\x79\xf7\x7b\xcf\xed\x1f\x72\xeb\xd7\xaa\x4d\x3f\x3f\x7d\xfd\xf4\xf0\xfc\x71\x36\x7d\x78\xfc\x98\x48\xb1\x46\xdb\xd1\x4f\x81\x5b\x95\x04\x01\x16\x86\x6c\xfd\x85\x16\xa7\xd1\xde\x99\xc7\x95\x59\x4f\xce\x92\x3b\xd0\x5e\xd6\xc1\xe1\x65\xcf\x1e\x3d\x6a\xfa\x2e\x6f\xf7\x7f\xbf\xdc\x23\xb0\x9f\xee\x0a\x50\x5a\x7f\x5c\x90\x01\xad\x2f\xee\xde\x61\x59\xdf\xe7\x12\xcf\xe1\xf4\xe8\x63\xdf\x29\x07\x51\xf0\xe1\xee\xee\x2e\x99\x6b\xcf\xd0\x9b\xe7\x32\xe4\xe6\x2d\x88\x25\xac\x29\x14\x64\x49\x8b\x61\x77\xcd\xa5\xbb\xd5\x19\xcf\x5b\xcd\x8d\xab\xb6\xab\x19\x85\x35\x85\x32\x2e\x2f\x9a\x75\x67\xca\x62\xc1\x81\x9a\xc0\x9d\xab\xc7\x54\x20\xac\x8d\xa3\x18\xa7\x81\xe7\x94\xba\x88\xfe\x3a\x7e\xcf\x2e\x8c\x73\xe8\xbd\x3c\x0b\x14\xfa\x2c\x90\xbf\x39\xf5\xa3\x35\x65\x5c\x82\x8d\x90\x7c\x0b\xf6\xdf\x4e\x83\xf6\x89\x2c\x6e\x66\xa4\xd9\xd5\x51\xc1\xe4\x36\xa9\x10\xd3\x12\x77\x32\x26\x6f\xdf\x69\xd9\xab\x4e\x3a\x35\xd2\xfb\xed\x5e\xa5\x99\x1f\x60\xc7\x0d\xb2\x24\x18\x1c\x0d\x2f\x5d\x14\x58\x70\x80\x9a\xe6\x5d\xd3\x18\xd7\xfc\xb7\xe5\x18\x77\x23\x4b\x0f\xf9\xca\xd9\xe9\x1c\xd4\x7a\xd9\x3c\x99\xa0\xe0\xef\x7f\xb2\xeb\x54\x67\xa5\xfb\xe6\x8f\x16\x4d\xfb\xcb\xe1\x2a\xdc\x31\x15\xaf\xee\xc2\xb7\x34\x45\xe7\x58\xb0\xf7\x70\x22\xff\xbe\x65\xb9\xbb\xad\xca\x55\x37\xa7\xe0\x48\x28\xf6\x77\x5d\x14\x0e\xd8\x50\xa1\x2d\xc6\xa8\x00\xdd\x46\x96\x83\x3e\xe9\x7d\x8a\x5a\x53\x8c\xcf\x5c\x53\x54\xf0\x3b\xe4\x5f\x08\xeb\xdf\x82\x11\xfa\xec\x34\xe5\xf0\xc7\xa1\x2c\x50\xe4\x2e\x68\x4a\xc8\x03\xfd\xd9\x51\x4c\xdd\x00\x70\x60\x55\x30\xf9\xd9\x64\xff\x06\x00\x00\xff\xff\x0d\xde\x3d\xf3\x5c\x08\x00\x00") + +func testE2eTestingManifestsStatefulsetZookeeperStatefulsetYamlBytes() ([]byte, error) { + return bindataRead( + _testE2eTestingManifestsStatefulsetZookeeperStatefulsetYaml, + "test/e2e/testing-manifests/statefulset/zookeeper/statefulset.yaml", + ) +} + +func testE2eTestingManifestsStatefulsetZookeeperStatefulsetYaml() (*asset, error) { + bytes, err := testE2eTestingManifestsStatefulsetZookeeperStatefulsetYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/e2e/testing-manifests/statefulset/zookeeper/statefulset.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x94\xc1\x8a\xe3\x30\x0c\x86\xef\x79\x0a\xe3\x53\x1b\xc6\xe4\x5e\xe8\x93\x0c\x65\x51\x53\xc5\x63\xc6\xb1\x8c\x25\x27\x93\xb7\x5f\x9c\x0e\xec\xb2\x64\x8a\xb6\x87\x1e\xa4\xef\xff\xf9\x1d\xc9\xce\x30\x7e\x82\xc7\xd3\x03\x27\xa8\x51\x7e\x2d\x81\xc3\x3d\xc4\x20\x9b\xb9\x9a\x77\x3b\x0c\x7f\x0a\x97\x5c\xef\x31\x8c\xf6\x76\xee\xba\x29\x44\xf4\x85\x6a\x3e\x75\xc6\x18\x93\x60\x46\x73\x35\x96\xa9\x96\x11\xd9\xbe\xed\x55\x2e\x23\x9b\xab\xf1\x91\xee\xa7\xf7\xbd\xd2\x7e\xb6\xef\x87\xfe\x9b\xb8\x9d\xdf\xba\x9f\xdd\xbe\xb3\xb9\xe6\x73\x64\x69\xfb\xde\x36\x87\xd6\x10\xf0\xbc\x27\x86\x2a\x34\x43\x02\x8f\x0f\x7b\x7b\xf6\x5e\x9e\xa9\x84\x05\x04\x1b\xfa\x73\x10\x88\xf1\x20\xc4\x5f\x47\xba\x1c\x44\xdd\x1b\xc3\x20\xc8\x32\x84\x19\x3c\xf2\x30\xc6\xca\x82\x05\x72\x70\xad\x8c\xe5\xf2\x8f\xf3\x81\x06\x93\x94\x2d\x53\x48\xa2\xd7\x4c\xf0\x89\x3e\x08\x63\x59\x54\xbc\xa7\x5c\xe8\x6b\x53\x90\x31\x2c\x98\x90\x59\x83\x92\x67\xe7\x31\x61\x01\x21\x4d\x8a\x99\x6a\x92\x56\x50\xb0\xc9\xad\xb0\xb9\x0f\x91\xac\x81\x51\x65\x89\x82\x5f\x38\xea\x48\x6d\x4c\x72\x9c\xe0\x39\xb9\xff\xc4\x9d\x76\x24\x89\x12\xae\x6d\x8d\x35\x43\xc9\x28\xed\x0f\x8b\x9b\x42\x7a\xa8\x96\x23\x53\x11\x37\x51\x59\xa1\x3c\xf4\x2b\xd8\x54\x2a\xb0\xe0\xf3\xd1\x70\x23\x25\xae\xb3\x4a\xb3\x2f\xb6\xfb\x20\x96\x76\x43\x15\x82\xfd\x83\xae\x78\x3f\xbe\x11\xb7\xd7\x4f\xc8\xb9\xfb\x1d\x00\x00\xff\xff\x40\x1d\x71\xe2\x25\x05\x00\x00") + +func testImagesBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesBuild, + "test/images/BUILD", + ) +} + +func testImagesBuild() (*asset, error) { + bytes, err := testImagesBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x52\xd1\x6e\xe3\x36\x10\x7c\x2e\xbf\x62\x10\xdd\x43\x02\xd8\x72\xe2\x3e\x5c\xeb\x22\x28\x74\x89\x9b\x08\x97\x93\x5a\xcb\xb9\xc0\x4f\x05\x2d\xad\xa4\xc5\x51\xa4\x4a\x52\xb1\xfd\xf7\x05\xe5\xb8\x57\x5f\xf8\x46\xee\xcc\xec\x70\x76\x23\xdc\x99\xfe\x60\xb9\x69\x3d\xe6\xd7\x37\x1f\xb1\x6e\x09\x9f\x87\x2d\x59\x4d\x9e\x1c\x92\xc1\xb7\xc6\xba\x58\x44\x22\xc2\x13\x97\xa4\x1d\x55\x18\x74\x45\x16\xbe\x25\x24\xbd\x2c\x5b\x3a\x55\x26\xf8\x4a\xd6\xb1\xd1\x98\xc7\xd7\xb8\x0c\x80\x8b\xb7\xd2\xc5\xd5\x6f\x22\xc2\xc1\x0c\xe8\xe4\x01\xda\x78\x0c\x8e\xe0\x5b\x76\xa8\x59\x11\x68\x5f\x52\xef\xc1\x1a\xa5\xe9\x7a\xc5\x52\x97\x84\x1d\xfb\x76\x6c\xf3\x26\x12\x8b\x08\x9b\x37\x09\xb3\xf5\x92\x35\x24\x4a\xd3\x1f\x60\xea\xff\xe3\x20\xfd\x68\x38\x9c\xd6\xfb\x7e\x31\x9b\xed\x76\xbb\x58\x8e\x66\x63\x63\x9b\x99\x3a\x02\xdd\xec\x29\xbd\x5b\x66\xc5\x72\x3a\x8f\xaf\x47\xca\xb3\x56\xe4\x1c\x2c\xfd\x33\xb0\xa5\x0a\xdb\x03\x64\xdf\x2b\x2e\xe5\x56\x11\x94\xdc\xc1\x58\xc8\xc6\x12\x55\xf0\x26\xf8\xdd\x59\xf6\xac\x9b\x09\x9c\xa9\xfd\x4e\x5a\x12\x11\x2a\x76\xde\xf2\x76\xf0\x67\x61\x9d\xdc\xb1\x3b\x03\x18\x0d\xa9\x71\x91\x14\x48\x8b\x0b\x7c\x4a\x8a\xb4\x98\x88\x08\x2f\xe9\xfa\x31\x7f\x5e\xe3\x25\x59\xad\x92\x6c\x9d\x2e\x0b\xe4\x2b\xdc\xe5\xd9\x7d\xba\x4e\xf3\xac\x40\xfe\x07\x92\x6c\x83\xcf\x69\x76\x3f\x01\xb1\x6f\xc9\x82\xf6\xbd\x0d\xfe\x8d\x05\x87\x18\xa9\x0a\x99\x15\x44\x67\x06\x6a\x73\x34\xe4\x7a\x2a\xb9\xe6\x12\x4a\xea\x66\x90\x0d\xa1\x31\xaf\x64\x35\xeb\x06\x3d\xd9\x8e\x5d\x18\xa6\x83\xd4\x95\x88\xa0\xb8\x63\x2f\xfd\xf8\xf2\xee\x53\xb1\x10\xab\xe5\x43\x5a\xac\x57\x1b\xfc\x7e\x8b\xa6\xb4\x31\x9b\xd9\xb7\xff\x36\x69\x4a\x73\x9a\x7a\x72\x7e\xca\x9d\x6c\xc8\x89\x87\x3c\x59\x7d\xb9\xfd\x28\xfe\x5a\x7e\x79\xfe\xba\x5c\x15\x69\x9e\xdd\xbe\xce\xe3\x5f\xe3\x1b\xf1\x90\x3f\x25\xd9\xc3\xdf\xa7\xd7\x9b\xf8\x97\xf8\x67\x41\xfb\xde\x58\x2f\x04\xd7\xba\xa2\x1a\x2f\x8f\xc9\x5a\x7c\xb8\x24\x6b\x8d\x1d\x2f\x21\x55\xf9\x7d\x6e\xaf\xd2\x72\x18\xd9\x04\xb4\x5f\xa0\x93\xdf\x08\x52\xa9\x11\x79\xab\xc9\x5f\x09\xd2\x15\xd7\x42\x44\xf8\x34\xb0\xaa\x50\x9a\x8a\x8e\x5b\x9e\xd8\xc6\x2d\xc6\xe5\x09\xe0\x05\xee\xd9\x52\xe9\x8d\x3d\x40\xcb\x8e\x5c\x98\xfa\x36\x50\x8e\xe8\xe5\x5e\x76\xbd\xa2\x23\xe1\xbc\x4d\xa9\x06\xe7\xc9\xca\x9e\xc7\x8f\x93\x15\x52\xa9\x45\xa8\x4f\x4b\xa3\xc3\xf6\x92\x15\xe2\xec\xba\x10\x3f\xc5\xb3\x31\xa0\xe9\xe0\x59\xc5\xae\x3d\xf6\xc2\x87\xcb\x20\x79\x75\x84\xf7\x83\x6b\x7f\xd4\x79\xc7\x0b\xa0\xef\xb4\xf8\xcf\xc7\x3c\xdb\x8c\x24\x9c\x24\x7e\x50\xf8\x37\x00\x00\xff\xff\xe6\x6a\x11\x6b\x0b\x04\x00\x00") + +func testImagesMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesMakefile, + "test/images/Makefile", + ) +} + +func testImagesMakefile() (*asset, error) { + bytes, err := testImagesMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesClusterapiTesterBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\x2a\x2d\xae\x4c\xca\xaf\xe0\x4a\x2c\xca\xb5\x4d\x2c\xca\x35\x36\x2a\x33\xd3\x47\x12\x33\x33\xb1\x05\x93\x65\x16\x70\xd1\x82\x82\x64\x33\x93\x9c\x54\x5b\x28\x0d\x17\x2f\x36\xb6\x34\xa8\xb0\x05\x93\x70\x31\x40\x00\x00\x00\xff\xff\xc9\xd8\x77\x8f\x64\x00\x00\x00") + +func testImagesClusterapiTesterBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesClusterapiTesterBaseimage, + "test/images/clusterapi-tester/BASEIMAGE", + ) +} + +func testImagesClusterapiTesterBaseimage() (*asset, error) { + bytes, err := testImagesClusterapiTesterBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/clusterapi-tester/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesClusterapiTesterBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x92\xd1\x8a\xab\x30\x10\x86\xef\x7d\x8a\x90\xab\x5a\x4e\x1b\xce\xdd\x41\x28\x9c\xf7\x28\x22\xa3\x99\x66\x87\x8e\x49\x48\xa2\xd0\x3e\xfd\xa2\xb1\xdd\xba\x5b\x84\xbd\xd2\x4c\xfe\xfc\xf3\xcd\xcf\x78\xe8\xae\x60\x70\xa7\xf1\x02\x03\xa7\x66\xa4\x48\x2d\x31\xa5\x9b\x38\x89\xb3\x54\xea\xab\x50\xf9\xa1\x65\xea\x64\x5d\x16\x05\x3b\xd0\xbb\x42\x08\x21\xe4\x7f\x72\x4d\x0b\x77\xe4\x26\x0c\x8c\xb1\x31\x4e\x29\xe3\x2a\x8d\x97\x63\x7b\x67\xf9\x27\xab\x8c\x6b\x5a\xb2\x10\x6e\x2f\x05\xa6\x36\xe4\x4a\x59\x14\x4f\x41\xb6\xb5\xd0\xa3\x38\x09\xd9\xf1\x10\x13\x06\xf0\x74\x48\x38\xfd\x2d\xef\x97\xb7\x93\xa4\x32\xae\x79\xe0\x7f\xb7\x5c\xce\x6b\xcf\xb7\xfa\x49\x10\x43\x17\xe7\xb1\x7f\x74\x3d\x1a\x27\xeb\x2c\xd2\xe8\x67\xd1\x7c\x98\x47\x51\xca\x5f\x8d\xea\x98\xd0\xa6\xe5\x13\x31\x35\x06\x2d\x06\x48\xa8\x15\xd9\x84\xc1\x02\x3f\xef\xde\x23\xbf\x18\x8e\x68\xb5\x0b\xea\xfa\x2f\x1e\xc9\x29\xf0\xd4\x43\xf7\x41\x16\xc3\x6d\xee\x05\x9e\xa2\xea\x31\x81\x1a\xff\xfe\xd2\x2b\x33\x1c\x8c\x53\x01\xe3\x06\x48\x3d\x47\x78\x21\x46\x13\xdc\xe0\xd7\x09\x2e\x5b\x73\x98\x02\x5b\x67\x67\xd8\xb5\xbb\xb3\xdc\xef\x65\x5d\xe6\x8b\x04\x26\x87\x0a\x43\x72\x3d\x58\x30\xa8\x1f\x59\x6e\x6e\x5b\xa0\x11\x12\xca\x4d\x10\x60\x7e\x03\x71\x96\xd5\x8a\xb0\xde\x26\x29\x8b\xcf\x00\x00\x00\xff\xff\x2e\x36\xfd\xeb\x06\x03\x00\x00") + +func testImagesClusterapiTesterBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesClusterapiTesterBuild, + "test/images/clusterapi-tester/BUILD", + ) +} + +func testImagesClusterapiTesterBuild() (*asset, error) { + bytes, err := testImagesClusterapiTesterBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/clusterapi-tester/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesClusterapiTesterDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xc1\x6e\xdb\x3c\x10\x84\xef\x7c\x8a\x81\x74\xf9\x7f\xc0\x91\xd3\x1c\x7a\x68\x4f\xaa\xad\xb4\x42\x12\xa9\xb0\x94\x06\x46\xd1\x03\x2d\xad\xa5\x05\x64\x92\x25\x57\x55\xfc\xf6\x85\x1c\x07\xa8\x61\x9e\x88\x9d\xe1\xf0\xe3\x30\xc6\xca\xba\xa3\xe7\xae\x17\xdc\xdd\x7e\xf8\x88\xba\x27\x3c\x8c\x3b\xf2\x86\x84\x02\xd2\x51\x7a\xeb\x43\xa2\x62\x15\xe3\x91\x1b\x32\x81\x5a\x8c\xa6\x25\x0f\xe9\x09\xa9\xd3\x4d\x4f\xef\xca\x02\x3f\xc8\x07\xb6\x06\x77\xc9\x2d\xfe\x9b\x0d\xd1\x59\x8a\xfe\xff\xac\x62\x1c\xed\x88\x83\x3e\xc2\x58\xc1\x18\x08\xd2\x73\xc0\x9e\x07\x02\xbd\x36\xe4\x04\x6c\xd0\xd8\x83\x1b\x58\x9b\x86\x30\xb1\xf4\xa7\x6b\xce\x21\x89\x8a\xb1\x3d\x47\xd8\x9d\x68\x36\xd0\x68\xac\x3b\xc2\xee\xff\xf5\x41\xcb\x09\x78\x5e\xbd\x88\xfb\xb4\x5c\x4e\xd3\x94\xe8\x13\x6c\x62\x7d\xb7\x1c\xde\x8c\x61\xf9\x98\xaf\xb2\xa2\xca\x6e\xee\x92\xdb\xd3\x91\x67\x33\x50\x08\xf0\xf4\x7b\x64\x4f\x2d\x76\x47\x68\xe7\x06\x6e\xf4\x6e\x20\x0c\x7a\x82\xf5\xd0\x9d\x27\x6a\x21\x76\xe6\x9d\x3c\x0b\x9b\x6e\x81\x60\xf7\x32\x69\x4f\x2a\x46\xcb\x41\x3c\xef\x46\xb9\x28\xeb\x9d\x8e\xc3\x85\xc1\x1a\x68\x83\x28\xad\x90\x57\x11\xbe\xa4\x55\x5e\x2d\x54\x8c\x97\xbc\xfe\x56\x3e\xd7\x78\x49\x37\x9b\xb4\xa8\xf3\xac\x42\xb9\xc1\xaa\x2c\xd6\x79\x9d\x97\x45\x85\xf2\x1e\x69\xb1\xc5\x43\x5e\xac\x17\x20\x96\x9e\x3c\xe8\xd5\xf9\x99\xdf\x7a\xf0\x5c\x23\xb5\x73\x67\x15\xd1\x05\xc0\xde\xbe\x01\x05\x47\x0d\xef\xb9\xc1\xa0\x4d\x37\xea\x8e\xd0\xd9\x3f\xe4\x0d\x9b\x0e\x8e\xfc\x81\xc3\xfc\x99\x01\xda\xb4\x2a\xc6\xc0\x07\x16\x2d\xa7\xc9\xd5\xa3\x12\xa5\xee\x37\xe5\xd3\x8c\x9f\xe5\x4f\xe9\xd7\x4c\xa5\xeb\x35\x9a\x61\x0c\x42\x5e\x3b\xbe\x11\x9a\x77\x58\x5e\x8d\x54\x56\xd4\x9b\xed\xf7\x32\x2f\x6a\xfc\x8c\xae\xf5\xe8\x97\xfa\x1b\x00\x00\xff\xff\x09\xa8\x82\x42\xa6\x02\x00\x00") + +func testImagesClusterapiTesterDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesClusterapiTesterDockerfile, + "test/images/clusterapi-tester/Dockerfile", + ) +} + +func testImagesClusterapiTesterDockerfile() (*asset, error) { + bytes, err := testImagesClusterapiTesterDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/clusterapi-tester/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesClusterapiTesterMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x4f\xe3\x38\x14\x85\x9f\xd7\xbf\xe2\xa8\xe1\xa1\x95\x4a\xca\xa2\x15\x0f\xac\xd0\x2a\xdb\x76\x20\x02\x25\xa3\xa4\x80\x78\x42\x4e\x72\x9b\x5c\xc9\xb5\x3d\xb6\x33\xa1\xff\x7e\xe4\x02\xd2\xa0\xf1\x93\x7d\xef\xb9\xc7\x9f\x8f\x13\xac\x8d\x3d\x3a\xee\x87\x80\xcb\x8b\xbf\xaf\xb0\x1b\x08\xf7\x63\x43\x4e\x53\x20\x8f\x6c\x0c\x83\x71\x3e\x15\x89\x48\xf0\xc0\x2d\x69\x4f\x1d\x46\xdd\x91\x43\x18\x08\x99\x95\xed\x40\x9f\x9d\x25\x9e\xc8\x79\x36\x1a\x97\xe9\x05\xe6\x51\x30\xfb\x68\xcd\x16\xff\x8a\x04\x47\x33\xe2\x20\x8f\xd0\x26\x60\xf4\x84\x30\xb0\xc7\x9e\x15\x81\xde\x5a\xb2\x01\xac\xd1\x9a\x83\x55\x2c\x75\x4b\x98\x38\x0c\xa7\x6b\x3e\x4c\x52\x91\xe0\xe5\xc3\xc2\x34\x41\xb2\x86\x44\x6b\xec\x11\x66\xff\xbb\x0e\x32\x9c\x80\xe3\x1a\x42\xb0\xd7\xab\xd5\x34\x4d\xa9\x3c\xc1\xa6\xc6\xf5\x2b\xf5\x2e\xf4\xab\x87\x7c\xbd\x2d\xea\xed\xf9\x65\x7a\x71\x1a\x79\xd4\x8a\xbc\x87\xa3\x1f\x23\x3b\xea\xd0\x1c\x21\xad\x55\xdc\xca\x46\x11\x94\x9c\x60\x1c\x64\xef\x88\x3a\x04\x13\x79\x27\xc7\x81\x75\xbf\x84\x37\xfb\x30\x49\x47\x22\x41\xc7\x3e\x38\x6e\xc6\xf0\x25\xac\x4f\x3a\xf6\x5f\x04\x46\x43\x6a\xcc\xb2\x1a\x79\x3d\xc3\xff\x59\x9d\xd7\x4b\x91\xe0\x39\xdf\xdd\x95\x8f\x3b\x3c\x67\x55\x95\x15\xbb\x7c\x5b\xa3\xac\xb0\x2e\x8b\x4d\xbe\xcb\xcb\xa2\x46\xf9\x0d\x59\xf1\x82\xfb\xbc\xd8\x2c\x41\x1c\x06\x72\xa0\x37\xeb\x22\xbf\x71\xe0\x18\x23\x75\x31\xb3\x9a\xe8\x0b\xc0\xde\xbc\x03\x79\x4b\x2d\xef\xb9\x85\x92\xba\x1f\x65\x4f\xe8\xcd\x4f\x72\x9a\x75\x0f\x4b\xee\xc0\x3e\x7e\xa6\x87\xd4\x9d\x48\xa0\xf8\xc0\x41\x86\x53\xe5\x8f\x47\xa5\x42\xd4\xd5\xba\xc6\x0d\x5a\x35\xfa\x40\x4e\x5a\x3e\x0f\x14\x77\x22\xab\xd6\x77\xf8\xef\x06\xf2\xd0\x5d\xfd\x23\x76\x59\x75\xbb\xdd\xc5\xf3\xd9\x7c\xfd\x58\x6d\xf2\x6a\x21\x6e\xcb\x87\xac\xb8\x7d\x7d\xda\x56\x75\x5e\x16\xb1\xa7\x64\x1c\x8e\x9e\xaf\x9b\xbc\x42\x14\x6b\x13\x3a\x76\x38\x9b\xfb\x81\x94\x82\x9d\xba\xc5\x42\xd0\x9b\x35\x2e\x08\xd1\xb0\xbe\x16\x7f\xa5\xe9\x8a\x0f\xb2\xa7\xf3\x31\xb0\x4a\xfd\x80\x86\x35\xce\xe6\x91\x6c\x21\x44\xfa\xfd\xae\x2c\x5e\xae\x63\x51\xfc\x0a\x00\x00\xff\xff\x57\x97\xcf\x7e\xf9\x02\x00\x00") + +func testImagesClusterapiTesterMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesClusterapiTesterMakefile, + "test/images/clusterapi-tester/Makefile", + ) +} + +func testImagesClusterapiTesterMakefile() (*asset, error) { + bytes, err := testImagesClusterapiTesterMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/clusterapi-tester/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesClusterapiTesterVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesClusterapiTesterVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesClusterapiTesterVersion, + "test/images/clusterapi-tester/VERSION", + ) +} + +func testImagesClusterapiTesterVersion() (*asset, error) { + bytes, err := testImagesClusterapiTesterVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/clusterapi-tester/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesClusterapiTesterClusterapiTesterGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\xdf\x6b\xe3\x46\x10\x7e\xd6\xfe\x15\x53\x41\x41\x0e\xbe\x95\x13\xfa\x10\x52\xee\xc1\x75\x62\xce\x5c\xb0\x4b\x9c\x6b\x38\x28\x1c\x9b\xd5\x48\x1a\xb2\xda\xd5\xed\x8e\xec\x73\x8f\xfc\xef\x65\x25\xff\x48\x38\x08\x94\xde\xa3\x76\xbe\x99\xef\xfb\xe6\x87\xf2\x33\x31\x73\xed\xce\x53\x55\x33\x5c\x4c\xce\x7f\x83\xfb\x1a\xe1\x63\xf7\x88\xde\x22\x63\x80\x69\xc7\xb5\xf3\x41\x0a\x71\x4b\x1a\x6d\xc0\x02\x3a\x5b\xa0\x07\xae\x11\xa6\xad\xd2\x35\xc2\x3e\x32\x86\xbf\xd0\x07\x72\x16\x2e\xe4\x04\xb2\x08\x48\xf7\xa1\x74\xf4\xbb\xd8\xb9\x0e\x1a\xb5\x03\xeb\x18\xba\x80\xc0\x35\x05\x28\xc9\x20\xe0\x37\x8d\x2d\x03\x59\xd0\xae\x69\x0d\x29\xab\x11\xb6\xc4\x75\x4f\xb2\x2f\x21\xc5\xe7\x7d\x01\xf7\xc8\x8a\x2c\x28\xd0\xae\xdd\x81\x2b\x5f\xa2\x40\xb1\x10\x00\x00\x35\x73\x7b\x95\xe7\xdb\xed\x56\xaa\x5e\xa5\x74\xbe\xca\xcd\x80\x0a\xf9\xed\x62\x76\xb3\x5c\xdf\xbc\xbb\x90\x13\x21\x3e\x59\x83\x21\x80\xc7\xaf\x1d\x79\x2c\xe0\x71\x07\xaa\x6d\x0d\x69\xf5\x68\x10\x8c\xda\x82\xf3\xa0\x2a\x8f\x58\x00\xbb\xa8\x73\xeb\x89\xc9\x56\x63\x08\xae\xe4\xad\xf2\x28\x0a\x0a\xec\xe9\xb1\xe3\x57\x0d\x3a\xa8\xa2\x00\x2f\x01\xce\x82\xb2\x90\x4e\xd7\xb0\x58\xa7\xf0\xc7\x74\xbd\x58\x8f\xc5\xc3\xe2\xfe\xc3\xea\xd3\x3d\x3c\x4c\xef\xee\xa6\xcb\xfb\xc5\xcd\x1a\x56\x77\x30\x5b\x2d\xaf\x17\xf7\x8b\xd5\x72\x0d\xab\x39\x4c\x97\x9f\xe1\xe3\x62\x79\x3d\x06\x24\xae\xd1\x03\x7e\x6b\x7d\xd4\xee\x3c\x50\x6c\x1d\x16\x52\xac\x11\x5f\x91\x97\x6e\x10\x13\x5a\xd4\x54\x92\x06\xa3\x6c\xd5\xa9\x0a\xa1\x72\x1b\xf4\x96\x6c\x05\x2d\xfa\x86\x42\x1c\x5e\x00\x65\x0b\x61\xa8\x21\x56\xdc\x7f\xff\x60\x47\x8a\xb3\x5c\x88\x3c\x87\x29\x84\xc8\x8a\xd0\xba\x02\xb8\x56\x0c\x25\xf9\xc0\x60\x28\x70\x00\x65\x0c\x58\x57\x60\xc8\x03\xfa\x0d\x69\x0c\xc0\xb5\x77\x5d\x35\xcc\xf5\xb4\x64\xb1\x94\x6a\x69\x1c\x9f\x2d\x44\x30\x06\x50\x70\x31\x99\xc4\x4e\xe5\x35\x2a\xc3\xf5\x3f\x52\xb4\x4a\x3f\x45\xd9\x8d\x22\x2b\x04\x35\xad\xf3\x0c\x99\x48\x52\xe3\xaa\x54\x88\x24\x2d\x1b\x4e\x45\x92\x5a\xe4\x3c\xce\x3f\xbe\x35\xc8\x6a\x73\x0e\xe9\xd3\x65\x90\xe4\x72\xd5\x52\xa3\x74\x4d\x16\xfd\x2e\x6f\x9f\xaa\xf8\x10\xf2\x08\xca\x37\xe7\xa9\x48\x3c\x06\xd6\x86\xd0\xf2\x31\x65\xf8\x7c\x57\xb9\x3c\x06\x53\x91\x0c\x0f\x01\x4f\x90\xa7\xa3\x95\xbe\xe6\x00\xc8\x8f\xb8\x2f\x15\x5a\xf4\x8a\xb1\xc8\xc9\x32\x7a\xab\xcc\x31\x96\x8a\x91\x10\x65\x67\x75\xef\x2a\x1b\xc1\x77\x91\x68\x3d\x06\xf4\x1e\xae\xde\xc3\x49\x8f\x5c\xd8\x99\xe9\x02\xa3\x9f\x39\x5b\x52\x95\x8d\x44\x42\x65\x8f\xfb\xe5\x3d\x58\x32\x31\x33\x31\xae\x92\x73\xc5\xca\x94\x59\x3a\x57\x64\x86\x8d\xd5\x1e\x15\x23\x0c\x85\xae\xe0\xd7\x4d\xda\x13\x8c\x44\xf2\x2c\x44\x12\xd5\xcf\xfa\xd0\x91\xf6\x28\x4f\x2e\x71\x3b\x77\x07\x4a\xad\x7f\x12\x69\x12\x37\x64\x6a\x4c\xe4\x1a\x26\x24\x6f\x29\xf0\xaa\xed\x37\xee\xfb\xb3\x48\xfa\xc5\x39\xea\x39\x49\x94\x33\xe7\x31\x1b\xc9\x65\x8c\x67\xa3\x3e\x2d\xdb\x57\xfb\x0f\xe2\x62\xc6\xb0\x9c\x3f\x28\x73\x95\xfc\xd3\x93\xe5\x32\x4b\x7b\x92\xab\x74\x24\x92\x78\x43\x5f\xc6\x7d\x46\x3f\x16\x65\x2b\x1c\xf2\xe5\x82\xb1\x09\x47\xaa\x43\xea\xdf\xdc\x97\x8d\x10\xb9\x54\x0d\x0e\xc5\x0f\x87\xf0\x86\xb1\xf5\x1e\x92\xed\xfb\x12\x93\x43\xab\x34\x5e\x63\xa9\x3a\xc3\xff\xcf\xf2\x41\xc0\x5b\xae\x0f\x0a\x5e\x1a\x0f\x1b\x7d\xf2\x7d\x28\xf2\xb6\xf5\xb0\xd1\x2f\x9c\xbf\x22\xe8\xb4\xc6\x10\x62\xf9\x78\xa6\xf2\x83\xb2\x85\xc1\x79\x67\x75\x96\x1e\xae\x3d\x1d\x43\xbc\x8a\x6c\xdb\xff\xc9\xe5\x1d\x86\xd6\xd9\x80\x0f\x9e\x18\xfd\x18\x3c\x9c\xed\xdf\xbf\x76\x18\xb8\x3f\x9b\xa4\x6c\x58\xce\xdb\x81\x64\x3b\x86\x74\xf5\x14\x29\x9e\x47\xe2\xd4\x91\xac\xcf\x8a\x1d\x44\x3b\xb5\x45\xb4\x8a\x59\x7a\x75\x39\xb9\x9c\xc4\x69\x91\x19\x8d\xc4\xb3\xf8\x37\x00\x00\xff\xff\x4b\xcc\x32\xd4\x16\x07\x00\x00") + +func testImagesClusterapiTesterClusterapiTesterGoBytes() ([]byte, error) { + return bindataRead( + _testImagesClusterapiTesterClusterapiTesterGo, + "test/images/clusterapi-tester/clusterapi-tester.go", + ) +} + +func testImagesClusterapiTesterClusterapiTesterGo() (*asset, error) { + bytes, err := testImagesClusterapiTesterClusterapiTesterGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/clusterapi-tester/clusterapi-tester.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesClusterapiTesterPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8f\xdd\x4e\xc3\x30\x0c\x85\xef\xfb\x14\x7e\x81\x6e\x2b\x7f\x9a\x72\x8d\x80\x3b\x2a\x31\x71\xef\x25\x87\xc5\x5a\x9a\x54\xb1\x8b\x34\x9e\x1e\x75\x6c\x03\x69\xe2\x2e\xfe\xbe\x9c\x63\x99\x47\x79\x47\x55\x29\xd9\xd1\x67\xd7\xec\x25\x07\x47\x7d\x09\xcd\x00\xe3\xc0\xc6\xae\x21\xca\x3c\xc0\x91\x4f\x93\x1a\x2a\x8f\xd2\x1a\xe6\x57\xa3\x23\xfc\xec\x7d\xc9\xc6\x92\x51\x75\x9e\x5a\x92\x81\x77\x70\xb4\xf3\x75\x21\x65\xb9\x9f\xb6\xa8\x19\x06\x6d\x71\x83\x63\xb6\x3d\xfe\xd0\xe5\x55\x65\xcb\x43\x78\xb8\x73\xdd\x62\xd5\x10\xfd\xbf\x78\x76\x15\x1c\x24\x43\xb5\xaf\x65\x0b\x77\x64\x44\xd1\x6c\x7c\x86\x9d\x47\xa2\x91\x2d\x3a\x5a\x46\x70\xb2\xf8\xf5\x8b\x4b\x35\x47\xeb\xd5\x7a\x75\x41\xea\x23\xe6\x75\x2f\x9b\x4d\x7f\x82\x92\xc5\x84\xd3\x23\x12\x1f\xde\xe0\x4b\x0e\xea\xa8\x3b\x47\x4c\x06\x94\xc9\x2e\xe2\xfe\xc4\x3f\x58\xd2\x54\xb1\x89\x15\x1a\x4b\x0a\x8e\x6e\x4f\x66\x44\x95\x12\xae\x9b\x74\xf2\x1e\xaa\x7f\x12\x5d\x33\x5f\xa8\xc6\xd5\xfa\x92\xc4\x1f\x1c\xbd\xe6\xa7\x9f\xe2\xe6\x3b\x00\x00\xff\xff\x0d\x47\xd0\x8f\xb5\x01\x00\x00") + +func testImagesClusterapiTesterPodYamlBytes() ([]byte, error) { + return bindataRead( + _testImagesClusterapiTesterPodYaml, + "test/images/clusterapi-tester/pod.yaml", + ) +} + +func testImagesClusterapiTesterPodYaml() (*asset, error) { + bytes, err := testImagesClusterapiTesterPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/clusterapi-tester/pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesCudaVectorAddBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\xcd\x2b\xcb\x4c\xc9\x4c\xd4\x4f\x2e\x4d\x49\xb4\xb2\xd0\x33\xd0\x4d\x49\x2d\x4b\xcd\xd1\x2d\x4d\x2a\xcd\x2b\x29\x35\x34\xd3\x33\x30\xe1\x2a\x28\x48\x36\x33\xc9\x49\x45\x56\xa9\x0b\x15\xc3\xa1\x03\x10\x00\x00\xff\xff\xb8\x00\xe7\xa1\x5a\x00\x00\x00") + +func testImagesCudaVectorAddBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesCudaVectorAddBaseimage, + "test/images/cuda-vector-add/BASEIMAGE", + ) +} + +func testImagesCudaVectorAddBaseimage() (*asset, error) { + bytes, err := testImagesCudaVectorAddBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/cuda-vector-add/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesCudaVectorAddDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x6f\xa3\x38\x14\x85\xdf\xfd\x2b\x8e\xc2\xaa\xda\x5d\x05\x9c\xed\xcb\x4a\xbb\x4f\x94\xa4\x2d\x4a\x03\x1d\x48\x5a\x55\x1a\x29\x72\xe0\x06\xac\x31\x36\xb5\x4d\xd3\xfc\xfb\x11\x49\x3a\x6a\x35\xf7\xcd\xf7\x1e\x1f\x7f\xf7\x38\x40\x62\xfa\xa3\x95\x4d\xeb\x71\x3d\xfb\xe7\x5f\xac\x5b\xc2\x72\xd8\x91\xd5\xe4\xc9\x21\x1e\x7c\x6b\xac\x8b\x58\xc0\x02\x3c\xc8\x8a\xb4\xa3\x1a\x83\xae\xc9\xc2\xb7\x84\xb8\x17\x55\x4b\x1f\x93\x29\x9e\xc8\x3a\x69\x34\xae\xa3\x19\xfe\x1c\x05\x93\xcb\x68\xf2\xd7\xff\x2c\xc0\xd1\x0c\xe8\xc4\x11\xda\x78\x0c\x8e\xe0\x5b\xe9\xb0\x97\x8a\x40\xef\x15\xf5\x1e\x52\xa3\x32\x5d\xaf\xa4\xd0\x15\xe1\x20\x7d\x7b\x7a\xe6\x62\x12\xb1\x00\x2f\x17\x0b\xb3\xf3\x42\x6a\x08\x54\xa6\x3f\xc2\xec\x3f\xeb\x20\xfc\x09\x78\xac\xd6\xfb\xfe\x3f\xce\x0f\x87\x43\x24\x4e\xb0\x91\xb1\x0d\x57\x67\xa1\xe3\x0f\x69\xb2\xc8\xca\x45\x78\x1d\xcd\x4e\x57\x36\x5a\x91\x73\xb0\xf4\x3a\x48\x4b\x35\x76\x47\x88\xbe\x57\xb2\x12\x3b\x45\x50\xe2\x00\x63\x21\x1a\x4b\x54\xc3\x9b\x91\xf7\x60\xa5\x97\xba\x99\xc2\x99\xbd\x3f\x08\x4b\x2c\x40\x2d\x9d\xb7\x72\x37\xf8\x2f\x61\x7d\xd0\x49\xf7\x45\x60\x34\x84\xc6\x24\x2e\x91\x96\x13\xdc\xc4\x65\x5a\x4e\x59\x80\xe7\x74\x7d\x9f\x6f\xd6\x78\x8e\x8b\x22\xce\xd6\xe9\xa2\x44\x5e\x20\xc9\xb3\x79\xba\x4e\xf3\xac\x44\x7e\x8b\x38\x7b\xc1\x32\xcd\xe6\x53\x90\xf4\x2d\x59\xd0\x7b\x6f\x47\x7e\x63\x21\xc7\x18\xa9\x1e\x33\x2b\x89\xbe\x00\xec\xcd\x19\xc8\xf5\x54\xc9\xbd\xac\xa0\x84\x6e\x06\xd1\x10\x1a\xf3\x46\x56\x4b\xdd\xa0\x27\xdb\x49\x37\x7e\xa6\x83\xd0\x35\x0b\xa0\x64\x27\xbd\xf0\xa7\xce\x6f\x4b\x45\x8c\xdd\x16\xf9\x6a\xc4\x5f\xa4\xab\xf8\x6e\xc1\x58\x52\xe4\x65\xb9\xbd\xd9\xa4\x0f\xf3\x6d\x92\x3f\xbe\xe0\x95\xba\x21\xfc\xb6\x58\x6d\xe2\x22\xb9\x0f\xdd\xe8\x55\x81\x0f\xce\xf2\x9d\xd4\x9c\xb1\x62\x93\x41\xf4\x3e\x6c\xc8\x63\xe8\x6b\xe1\x09\x57\x57\xbf\x3a\x52\x3b\x2f\x94\x42\x78\x44\x18\x6a\x13\x5e\xce\xa1\xa5\xca\x74\x1d\xe9\xda\xe1\x3b\xc3\xa5\xaa\xa1\x16\xa1\x13\x5d\xaf\xc8\x85\x7f\x24\x9b\x79\xbc\x7d\x5c\xde\x6d\x9f\x16\x45\x99\xe6\xd9\x68\x7b\xd6\xda\x0e\xa1\xdd\x83\xbf\x09\xcb\x95\xdc\x71\xd1\x7b\xae\xa4\xf3\x8e\xff\xcd\xd8\x73\x5e\x2c\xe7\x69\x71\x46\x54\xa6\x12\x8a\x8f\xbe\xfc\xe2\xcb\x67\xdb\x72\x0c\x99\xf8\x1b\x55\xde\xd8\xb8\xae\x4f\x2b\x74\xe2\x07\x31\x96\xac\xe6\x88\x3e\x4d\x7e\x06\x00\x00\xff\xff\x4b\xe6\x49\xa2\x6a\x03\x00\x00") + +func testImagesCudaVectorAddDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesCudaVectorAddDockerfile, + "test/images/cuda-vector-add/Dockerfile", + ) +} + +func testImagesCudaVectorAddDockerfile() (*asset, error) { + bytes, err := testImagesCudaVectorAddDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/cuda-vector-add/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesCudaVectorAddVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesCudaVectorAddVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesCudaVectorAddVersion, + "test/images/cuda-vector-add/VERSION", + ) +} + +func testImagesCudaVectorAddVersion() (*asset, error) { + bytes, err := testImagesCudaVectorAddVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/cuda-vector-add/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesDnsutilsBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\xcc\x29\xc8\xcc\x4b\xb5\x32\xd6\x33\xe3\x4a\x2c\xca\xb5\x4d\x2c\xca\x35\x36\x2a\x33\xd3\x47\x15\x06\xa9\x03\x91\x65\x16\xc8\x12\x05\x05\xc9\x66\x26\x39\xa9\xb6\x50\x1a\x59\x0a\x10\x00\x00\xff\xff\xe5\x8d\xa8\xc0\x5c\x00\x00\x00") + +func testImagesDnsutilsBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesDnsutilsBaseimage, + "test/images/dnsutils/BASEIMAGE", + ) +} + +func testImagesDnsutilsBaseimage() (*asset, error) { + bytes, err := testImagesDnsutilsBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/dnsutils/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesDnsutilsDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x92\x41\x6f\x9c\x3e\x14\xc4\xef\xfe\x14\xa3\xe5\xf2\xff\x4b\x0b\xa4\x39\xf4\xd0\x9e\x08\x21\x0d\x4a\x02\x2d\xec\x36\xca\x29\x32\xf0\x16\x9e\xca\xda\x8e\x6d\x4a\xf6\xdb\x57\x90\x44\xea\xaa\x3e\x7a\xc6\xe3\x9f\xc7\x2f\x40\xaa\xcd\xc9\x72\x3f\x78\x5c\x5e\x7c\xfa\x8c\xdd\x40\xb8\x9b\x1a\xb2\x8a\x3c\x39\x24\x93\x1f\xb4\x75\x91\x08\x44\x80\x7b\x6e\x49\x39\xea\x30\xa9\x8e\x2c\xfc\x40\x48\x8c\x6c\x07\xfa\x50\xb6\xf8\x49\xd6\xb1\x56\xb8\x8c\x2e\xf0\xdf\x62\xd8\xbc\x4b\x9b\xff\xbf\x8a\x00\x27\x3d\xe1\x28\x4f\x50\xda\x63\x72\x04\x3f\xb0\xc3\x81\x47\x02\xbd\xb6\x64\x3c\x58\xa1\xd5\x47\x33\xb2\x54\x2d\x61\x66\x3f\xac\xd7\xbc\x87\x44\x22\xc0\xd3\x7b\x84\x6e\xbc\x64\x05\x89\x56\x9b\x13\xf4\xe1\x6f\x1f\xa4\x5f\x81\x97\x35\x78\x6f\xbe\xc4\xf1\x3c\xcf\x91\x5c\x61\x23\x6d\xfb\x78\x7c\x33\xba\xf8\x3e\x4f\xb3\xa2\xce\xc2\xcb\xe8\x62\x3d\xb2\x57\x23\x39\x07\x4b\x2f\x13\x5b\xea\xd0\x9c\x20\x8d\x19\xb9\x95\xcd\x48\x18\xe5\x0c\x6d\x21\x7b\x4b\xd4\xc1\xeb\x85\x77\xb6\xec\x59\xf5\x5b\x38\x7d\xf0\xb3\xb4\x24\x02\x74\xec\xbc\xe5\x66\xf2\x67\x65\x7d\xd0\xb1\x3b\x33\x68\x05\xa9\xb0\x49\x6a\xe4\xf5\x06\x57\x49\x9d\xd7\x5b\x11\xe0\x31\xdf\xdd\x96\xfb\x1d\x1e\x93\xaa\x4a\x8a\x5d\x9e\xd5\x28\x2b\xa4\x65\x71\x9d\xef\xf2\xb2\xa8\x51\xde\x20\x29\x9e\x70\x97\x17\xd7\x5b\x10\xfb\x81\x2c\xe8\xd5\xd8\x85\x5f\x5b\xf0\x52\x23\x75\x4b\x67\x35\xd1\x19\xc0\x41\xbf\x01\x39\x43\x2d\x1f\xb8\xc5\x28\x55\x3f\xc9\x9e\xd0\xeb\xdf\x64\x15\xab\x1e\x86\xec\x91\xdd\xf2\x99\x0e\x52\x75\x22\xc0\xc8\x47\xf6\xd2\xaf\x3b\xff\x3c\x2a\x12\xe2\xa6\x2a\x1f\x16\xfc\x2c\x7f\x48\xbe\x65\x42\xa4\x55\x59\xd7\xcf\x57\xfb\xfc\xfe\xfa\x39\x2d\xbf\x3f\xe1\x85\x8e\x53\xf8\x23\x7b\xd8\x27\x55\x7a\x1b\xba\x25\xab\x45\x3c\x39\x1b\x37\xac\x62\x21\xaa\x7d\x01\x69\x7e\x41\x76\x1d\xc2\x50\xe9\xb0\x5d\x87\xab\x61\xd5\x85\x5e\xeb\xd1\x89\x3f\x01\x00\x00\xff\xff\x1c\x07\x13\x10\xaf\x02\x00\x00") + +func testImagesDnsutilsDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesDnsutilsDockerfile, + "test/images/dnsutils/Dockerfile", + ) +} + +func testImagesDnsutilsDockerfile() (*asset, error) { + bytes, err := testImagesDnsutilsDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/dnsutils/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesDnsutilsVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesDnsutilsVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesDnsutilsVersion, + "test/images/dnsutils/VERSION", + ) +} + +func testImagesDnsutilsVersion() (*asset, error) { + bytes, err := testImagesDnsutilsVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/dnsutils/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesEntrypointTesterBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xdd\x8a\x83\x30\x10\x85\xef\xf3\x14\x21\x57\x5a\xb6\xf5\x5e\x28\xec\x7b\x88\x84\x89\x8e\xc3\xb0\x53\x47\x62\x2c\xd8\xa7\x5f\xac\xee\x8f\xa5\x78\x99\x99\x73\x3e\xbe\xcc\x00\xcd\x17\x10\x66\x2d\x76\x30\x49\xf2\x77\x1e\x39\xb0\x70\x9a\xed\xd5\x56\xae\x28\xfe\x06\xe5\x30\x05\xe1\xc6\xd5\xb9\x31\xa2\xd0\x66\xc6\x5a\x6b\xdd\x27\xab\x0f\xf0\x40\xf1\x71\x12\x1c\x3d\x69\x51\x90\x96\x2d\x76\x97\xf0\x10\xf7\xb1\xa6\x48\x7d\xe0\x1e\xe2\xfc\x6f\x20\x1c\xe2\x3a\xc9\x8d\xf9\x0d\xac\xd8\x1e\x6e\x68\xaf\xd6\x61\x9f\xe2\x3c\x28\xf7\xe9\x9c\x70\x4c\x18\xb7\xfe\xd6\x5d\x22\x25\xa9\xff\xd1\x7f\x45\x6e\xef\x3d\xf3\x6d\x7e\x09\x8c\xb1\x19\x9f\xdf\xc6\xe1\x42\xea\xea\x27\xa5\x63\x41\x8a\x3a\x0d\x7b\xc8\x76\xb8\xf3\xd2\xd9\xd7\x49\x34\x64\x95\x3b\x9d\x5c\x9d\xaf\x8b\x04\xb4\x72\x61\x4a\x7a\x83\x1e\x08\xdb\x85\xbe\xec\x0e\x0f\x1e\xf9\x0e\x09\x8f\x45\x40\xe4\x8d\x44\xe5\xca\x9d\x61\x7d\x6c\x92\x9b\xef\x00\x00\x00\xff\xff\x81\x58\x3b\x85\x09\x02\x00\x00") + +func testImagesEntrypointTesterBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesEntrypointTesterBuild, + "test/images/entrypoint-tester/BUILD", + ) +} + +func testImagesEntrypointTesterBuild() (*asset, error) { + bytes, err := testImagesEntrypointTesterBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/entrypoint-tester/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesEntrypointTesterDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xb1\x6e\xdb\x30\x10\x86\x77\x3e\xc5\x0f\x69\x69\x01\x47\x76\x3d\x14\x41\x3b\xa9\xb6\x83\x0a\x49\xa4\xc0\x52\x9a\x06\x41\x06\x5a\x3a\x4b\x07\xc8\x24\x4b\x9e\xaa\xf8\xed\x0b\x39\x09\x5a\xa3\x9c\x08\xde\xc7\xe3\xc7\xff\x62\xac\xac\x3b\x7a\x6e\x3b\xc1\x72\xf1\xe9\x33\xaa\x8e\x70\x3d\xec\xc8\x1b\x12\x0a\x48\x07\xe9\xac\x0f\x89\x8a\x55\x8c\x1b\xae\xc9\x04\x6a\x30\x98\x86\x3c\xa4\x23\xa4\x4e\xd7\x1d\xbd\x57\x66\xf8\x41\x3e\xb0\x35\x58\x26\x0b\x7c\x98\x80\xe8\xad\x14\x7d\xfc\xaa\x62\x1c\xed\x80\x83\x3e\xc2\x58\xc1\x10\x08\xd2\x71\xc0\x9e\x7b\x02\xbd\xd4\xe4\x04\x6c\x50\xdb\x83\xeb\x59\x9b\x9a\x30\xb2\x74\xa7\x67\xde\x9a\x24\x2a\xc6\xe3\x5b\x0b\xbb\x13\xcd\x06\x1a\xb5\x75\x47\xd8\xfd\xbf\x1c\xb4\x9c\x84\xa7\xd5\x89\xb8\x2f\xf3\xf9\x38\x8e\x89\x3e\xc9\x26\xd6\xb7\xf3\xfe\x15\x0c\xf3\x9b\x6c\xb5\xc9\xcb\xcd\xc5\x32\x59\x9c\xae\xdc\x9b\x9e\x42\x80\xa7\x5f\x03\x7b\x6a\xb0\x3b\x42\x3b\xd7\x73\xad\x77\x3d\xa1\xd7\x23\xac\x87\x6e\x3d\x51\x03\xb1\x93\xef\xe8\x59\xd8\xb4\x33\x04\xbb\x97\x51\x7b\x52\x31\x1a\x0e\xe2\x79\x37\xc8\x59\x58\xef\x76\x1c\xce\x00\x6b\xa0\x0d\xa2\xb4\x44\x56\x46\xf8\x96\x96\x59\x39\x53\x31\x1e\xb2\xea\x7b\x71\x5f\xe1\x21\xdd\x6e\xd3\xbc\xca\x36\x25\x8a\x2d\x56\x45\xbe\xce\xaa\xac\xc8\x4b\x14\x57\x48\xf3\x47\x5c\x67\xf9\x7a\x06\x62\xe9\xc8\x83\x5e\x9c\x9f\xfc\xad\x07\x4f\x31\x52\x33\x65\x56\x12\x9d\x09\xec\xed\xab\x50\x70\x54\xf3\x9e\x6b\xf4\xda\xb4\x83\x6e\x09\xad\xfd\x4d\xde\xb0\x69\xe1\xc8\x1f\x38\x4c\xc3\x0c\xd0\xa6\x51\x31\x7a\x3e\xb0\x68\x39\x9d\xfc\xf7\xa9\x44\xa9\xab\x6d\x71\x8b\x50\x7b\x2d\x75\xa7\xd2\xf5\x1a\xe4\x40\xee\xef\xee\x62\xa9\x36\x3f\xef\x8a\x72\x83\xcb\xc5\xe5\x42\x6d\xf2\x6a\xfb\x78\x57\x64\x79\x85\xa7\x68\x4e\x2e\x7a\x56\xab\xdb\x35\x9e\xa2\x86\xf6\x7a\xe8\x25\x9a\x21\xd2\xbe\x1d\x0e\x64\x24\x44\xcf\xea\x4f\x00\x00\x00\xff\xff\xd4\xb5\x6f\xb2\xab\x02\x00\x00") + +func testImagesEntrypointTesterDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesEntrypointTesterDockerfile, + "test/images/entrypoint-tester/Dockerfile", + ) +} + +func testImagesEntrypointTesterDockerfile() (*asset, error) { + bytes, err := testImagesEntrypointTesterDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/entrypoint-tester/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesEntrypointTesterMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x4f\xdb\x3e\x14\xc5\x9f\xff\xfe\x14\x47\x0d\x0f\xad\x54\x52\xfe\x68\xe2\x81\x09\x4d\x59\xdb\x41\x04\x4a\xa6\x24\x80\x78\x42\x4e\x72\x9b\x5c\x29\xb5\x3d\xdb\x59\xe8\xb7\x9f\x5c\x40\x5a\x35\xbf\xf9\x9e\xe3\xe3\x9f\x8f\x23\xac\xb5\x39\x58\xee\x7a\x8f\xcb\x8b\xff\xaf\x50\xf5\x84\xfb\xb1\x26\xab\xc8\x93\x43\x32\xfa\x5e\x5b\x17\x8b\x48\x44\x78\xe0\x86\x94\xa3\x16\xa3\x6a\xc9\xc2\xf7\x84\xc4\xc8\xa6\xa7\x4f\x65\x89\x27\xb2\x8e\xb5\xc2\x65\x7c\x81\x79\x30\xcc\x3e\xa4\xd9\xe2\xab\x88\x70\xd0\x23\xf6\xf2\x00\xa5\x3d\x46\x47\xf0\x3d\x3b\xec\x78\x20\xd0\x5b\x43\xc6\x83\x15\x1a\xbd\x37\x03\x4b\xd5\x10\x26\xf6\xfd\xf1\x9a\x8f\x90\x58\x44\x78\xf9\x88\xd0\xb5\x97\xac\x20\xd1\x68\x73\x80\xde\xfd\xed\x83\xf4\x47\xe0\xb0\x7a\xef\xcd\xf5\x6a\x35\x4d\x53\x2c\x8f\xb0\xb1\xb6\xdd\x6a\x78\x37\xba\xd5\x43\xba\xde\x66\xe5\xf6\xfc\x32\xbe\x38\x1e\x79\x54\x03\x39\x07\x4b\xbf\x46\xb6\xd4\xa2\x3e\x40\x1a\x33\x70\x23\xeb\x81\x30\xc8\x09\xda\x42\x76\x96\xa8\x85\xd7\x81\x77\xb2\xec\x59\x75\x4b\x38\xbd\xf3\x93\xb4\x24\x22\xb4\xec\xbc\xe5\x7a\xf4\x27\x65\x7d\xd2\xb1\x3b\x31\x68\x05\xa9\x30\x4b\x4a\xa4\xe5\x0c\xdf\x93\x32\x2d\x97\x22\xc2\x73\x5a\xdd\xe5\x8f\x15\x9e\x93\xa2\x48\xb2\x2a\xdd\x96\xc8\x0b\xac\xf3\x6c\x93\x56\x69\x9e\x95\xc8\x7f\x20\xc9\x5e\x70\x9f\x66\x9b\x25\x88\x7d\x4f\x16\xf4\x66\x6c\xe0\xd7\x16\x1c\x6a\xa4\x36\x74\x56\x12\x9d\x00\xec\xf4\x3b\x90\x33\xd4\xf0\x8e\x1b\x0c\x52\x75\xa3\xec\x08\x9d\xfe\x4d\x56\xb1\xea\x60\xc8\xee\xd9\x85\xcf\x74\x90\xaa\x15\x11\x06\xde\xb3\x97\xfe\x38\xf9\xe7\x51\xb1\x10\x65\xb1\x2e\x6f\xc8\x88\xa4\x58\xdf\xe1\xdb\x0d\xe4\xbe\xbd\xfa\x22\xaa\xa4\xb8\xdd\x56\x61\x7f\x36\x5f\x3f\x16\x9b\xb4\x58\x88\xdb\xfc\x21\xc9\x6e\x5f\x9f\xb6\x45\x99\xe6\x59\xd0\x06\xe9\xc9\xf9\x10\xf1\xba\x49\x0b\x04\xb3\xd2\xbe\x65\x8b\xb3\xb9\xeb\x69\x18\x60\xa6\x76\xb1\x10\xf4\x66\xb4\xf5\x42\xd4\xac\xae\xc5\x7f\x71\xbc\xe2\xbd\xec\xe8\x7c\xf4\x3c\xc4\xae\x47\xcd\x0a\x67\xf3\x00\xb2\x10\x22\xfe\x79\x97\x67\x2f\xd7\x61\x28\xfe\x04\x00\x00\xff\xff\x3c\xab\x65\xa6\xe8\x02\x00\x00") + +func testImagesEntrypointTesterMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesEntrypointTesterMakefile, + "test/images/entrypoint-tester/Makefile", + ) +} + +func testImagesEntrypointTesterMakefile() (*asset, error) { + bytes, err := testImagesEntrypointTesterMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/entrypoint-tester/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesEntrypointTesterVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesEntrypointTesterVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesEntrypointTesterVersion, + "test/images/entrypoint-tester/VERSION", + ) +} + +func testImagesEntrypointTesterVersion() (*asset, error) { + bytes, err := testImagesEntrypointTesterVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/entrypoint-tester/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesEntrypointTesterEpGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x92\xc1\x6a\xdb\x40\x10\x86\xcf\x9e\xa7\xf8\x11\x94\xda\xc1\x95\xdc\x40\x2f\x29\x3d\xa8\x89\x4b\x45\x82\x5d\x2c\xa5\x21\xd0\xcb\x5a\x1a\x49\x43\xa5\xdd\xed\xee\x2a\xb2\x29\x7d\xf7\x22\xc7\x85\x84\x1e\x87\xf9\xf9\xe6\xdb\x99\x4d\x2e\xe8\xda\xd8\xa3\x93\xa6\x0d\xb8\x5c\xbd\xff\x80\xa2\x65\xdc\x0e\x7b\x76\x9a\x03\x7b\xa4\x43\x68\x8d\xf3\x31\xd1\x9d\x94\xac\x3d\x57\x18\x74\xc5\x0e\xa1\x65\xa4\x56\x95\x2d\xe3\xdc\x59\xe2\x3b\x3b\x2f\x46\xe3\x32\x5e\x61\x3e\x05\xa2\x73\x2b\x5a\x7c\xa4\xa3\x19\xd0\xab\x23\xb4\x09\x18\x3c\x23\xb4\xe2\x51\x4b\xc7\xe0\x43\xc9\x36\x40\x34\x4a\xd3\xdb\x4e\x94\x2e\x19\xa3\x84\xf6\x34\xe4\x8c\x88\xe9\xf1\x0c\x30\xfb\xa0\x44\x43\xa1\x34\xf6\x08\x53\xbf\x4c\x41\x05\x22\x00\x68\x43\xb0\x57\x49\x32\x8e\x63\xac\x4e\x96\xb1\x71\x4d\xd2\x3d\xa7\x7c\x72\x97\x5d\xaf\x37\xf9\xfa\xdd\x65\xbc\x22\xba\xd7\x1d\x7b\x0f\xc7\xbf\x06\x71\x5c\x61\x7f\x84\xb2\xb6\x93\x52\xed\x3b\x46\xa7\x46\x18\x07\xd5\x38\xe6\x0a\xc1\x4c\x9e\xa3\x93\x20\xba\x59\xc2\x9b\x3a\x8c\xca\x31\x55\xe2\x83\x93\xfd\x10\x5e\x2d\xe8\x9f\x95\x78\xbc\x0c\x18\x0d\xa5\x11\xa5\x39\xb2\x3c\xc2\xe7\x34\xcf\xf2\x25\x3d\x64\xc5\xd7\xed\x7d\x81\x87\x74\xb7\x4b\x37\x45\xb6\xce\xb1\xdd\xe1\x7a\xbb\xb9\xc9\x8a\x6c\xbb\xc9\xb1\xfd\x82\x74\xf3\x88\xdb\x6c\x73\xb3\x04\x4b\x68\xd9\x81\x0f\xd6\x4d\xee\xc6\x41\xa6\xd5\x71\x15\x53\xce\xfc\x6a\x78\x6d\x9e\x65\xbc\xe5\x52\x6a\x29\xd1\x29\xdd\x0c\xaa\x61\x34\xe6\x89\x9d\x16\xdd\xc0\xb2\xeb\xc5\x4f\xc7\xf3\x50\xba\xa2\x4e\x7a\x09\x2a\x9c\xea\xff\x9e\x13\xd3\x45\x42\x64\x55\xf9\x73\x82\xf4\x4a\x34\x91\xf4\xd6\xb8\x80\x39\xcd\xa2\xba\x0f\x11\xcd\x22\xe3\x23\x5a\x10\x25\x09\x8a\xe9\xd2\xd6\x99\xc6\xa9\x1e\xd6\x89\x0e\xfe\x84\x53\xae\x19\x7a\x9e\x2a\x09\x6f\x3d\xac\xf2\xd3\xf7\x52\xba\x02\x1f\x24\xf8\x98\xea\x41\x97\x27\xfe\x7c\x81\xdf\x34\x53\xae\xf1\xb8\xfa\x04\xe3\xe3\xd4\x35\x9e\x66\x75\x1f\xe2\x6f\x13\xaf\x9e\x47\x6f\x9e\x7e\xe8\x68\x39\x31\xfd\x82\x66\xc6\xc7\xeb\x83\x84\xf9\x6a\x41\x7f\xe8\x6f\x00\x00\x00\xff\xff\x74\xae\x46\x0a\xe5\x02\x00\x00") + +func testImagesEntrypointTesterEpGoBytes() ([]byte, error) { + return bindataRead( + _testImagesEntrypointTesterEpGo, + "test/images/entrypoint-tester/ep.go", + ) +} + +func testImagesEntrypointTesterEpGo() (*asset, error) { + bytes, err := testImagesEntrypointTesterEpGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/entrypoint-tester/ep.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesFakegitserverBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcf\x6a\x83\x40\x10\xc6\xef\xfb\x14\xcb\x9e\x34\xb4\xf1\x2e\x04\xfa\x1e\x22\xcb\xac\x8e\xc3\x90\x89\x23\xeb\x2a\x24\x4f\x5f\x8c\x36\xad\x25\x78\xf4\xfb\xf3\xf3\xdb\x19\xa0\xb9\x02\x61\xd6\x62\x07\x93\x24\x3f\xf3\xc8\x81\x85\xd3\xdd\x5e\x6c\xe5\x8a\xe2\x57\x28\x87\x29\x08\x37\xae\xce\x8d\x11\x85\x36\x33\xd6\x5a\xeb\xbe\x58\x7d\x80\x07\x8a\x8f\x93\xe0\xe8\x49\x8b\x82\xb4\x6c\xb1\x3b\x87\x87\xb8\x8f\x35\x45\xea\x03\xf7\x10\xef\x7f\x04\xe1\x10\x57\x25\x37\xe6\x15\x58\xb1\x3d\xdc\xd0\x5e\xac\xeb\xe0\x8a\xc4\x69\xc4\x38\x63\xdc\xba\x5b\x6f\xb1\x4b\x52\xff\x33\xfd\x3f\x6e\xfb\xde\xf3\xde\xe6\x97\xc0\x18\x9b\xf1\xf9\xe4\xd7\xdf\xce\xa4\xae\x7e\xc2\x3a\x16\xa4\xa8\xd3\xb0\x67\x6d\xb7\xfb\x5c\xaa\x7b\x0a\x89\x86\xac\x72\xa7\x93\xab\xf3\xd5\x48\x40\x2b\x1e\xa6\xa4\x37\xe8\x81\xb0\x5d\xe8\x8b\x77\x78\xf3\xc8\x33\x24\x3c\x1e\x02\x22\x6f\x46\x54\xae\xdc\x2d\xac\x8f\x97\xe4\xe6\x3b\x00\x00\xff\xff\xcc\x06\xfa\x7a\x0c\x02\x00\x00") + +func testImagesFakegitserverBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesFakegitserverBuild, + "test/images/fakegitserver/BUILD", + ) +} + +func testImagesFakegitserverBuild() (*asset, error) { + bytes, err := testImagesFakegitserverBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/fakegitserver/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesFakegitserverDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x6f\x9b\x40\x10\x85\xef\xfb\x2b\x9e\xe0\xd2\x4a\x2e\xa4\x39\xf4\xd0\x9e\xa8\xe3\xd4\x28\x29\x44\x86\x34\xb2\xaa\x1e\xd6\x30\xc0\xa8\x78\x97\xee\x0e\xc1\xfe\xf7\x15\xb6\x23\xd5\xea\x1e\xe7\xbd\x7d\xfb\xed\x9b\x10\x4b\x3b\x1c\x1d\xb7\x9d\xe0\xf6\xe6\xe3\x27\x94\x1d\xe1\x61\xdc\x91\x33\x24\xe4\x91\x8c\xd2\x59\xe7\x23\x15\xaa\x10\x8f\x5c\x91\xf1\x54\x63\x34\x35\x39\x48\x47\x48\x06\x5d\x75\xf4\xa6\x2c\xf0\x83\x9c\x67\x6b\x70\x1b\xdd\xe0\xdd\x6c\x08\x2e\x52\xf0\xfe\x8b\x0a\x71\xb4\x23\xf6\xfa\x08\x63\x05\xa3\x27\x48\xc7\x1e\x0d\xf7\x04\x3a\x54\x34\x08\xd8\xa0\xb2\xfb\xa1\x67\x6d\x2a\xc2\xc4\xd2\x9d\x9e\xb9\x84\x44\x2a\xc4\xf6\x12\x61\x77\xa2\xd9\x40\xa3\xb2\xc3\x11\xb6\xf9\xd7\x07\x2d\x27\xe0\xf9\x74\x22\xc3\xe7\x38\x9e\xa6\x29\xd2\x27\xd8\xc8\xba\x36\xee\xcf\x46\x1f\x3f\xa6\xcb\x55\x56\xac\x3e\xdc\x46\x37\xa7\x2b\xcf\xa6\x27\xef\xe1\xe8\xcf\xc8\x8e\x6a\xec\x8e\xd0\xc3\xd0\x73\xa5\x77\x3d\xa1\xd7\x13\xac\x83\x6e\x1d\x51\x0d\xb1\x33\xef\xe4\x58\xd8\xb4\x0b\x78\xdb\xc8\xa4\x1d\xa9\x10\x35\x7b\x71\xbc\x1b\xe5\xaa\xac\x37\x3a\xf6\x57\x06\x6b\xa0\x0d\x82\xa4\x40\x5a\x04\xf8\x9a\x14\x69\xb1\x50\x21\x5e\xd2\x72\x9d\x3f\x97\x78\x49\x36\x9b\x24\x2b\xd3\x55\x81\x7c\x83\x65\x9e\xdd\xa5\x65\x9a\x67\x05\xf2\x7b\x24\xd9\x16\x0f\x69\x76\xb7\x00\xb1\x74\xe4\x40\x87\xc1\xcd\xfc\xd6\x81\xe7\x1a\xa9\x9e\x3b\x2b\x88\xae\x00\x1a\x7b\x06\xf2\x03\x55\xdc\x70\x85\x5e\x9b\x76\xd4\x2d\xa1\xb5\xaf\xe4\x0c\x9b\x16\x03\xb9\x3d\xfb\x79\x99\x1e\xda\xd4\x2a\x44\xcf\x7b\x16\x2d\xa7\xc9\x7f\x9f\x8a\x94\xba\xdf\xe4\xdf\xe1\x2b\xa7\xa5\xea\xd4\x32\x7f\xda\xe2\x5b\x5a\xae\x93\x62\x1d\xc9\x41\x10\x9f\x47\x8d\xfe\x4d\x2d\x8b\x27\xf7\x4a\x0e\xb1\x5a\x65\xe5\x66\xfb\x94\xa7\x59\x89\x9f\x41\x7c\xa5\x06\xbf\x94\xfa\x1b\x00\x00\xff\xff\x28\xa3\xd0\x01\xa0\x02\x00\x00") + +func testImagesFakegitserverDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesFakegitserverDockerfile, + "test/images/fakegitserver/Dockerfile", + ) +} + +func testImagesFakegitserverDockerfile() (*asset, error) { + bytes, err := testImagesFakegitserverDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/fakegitserver/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesFakegitserverMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xc1\x6e\xdb\x3c\x10\x84\xcf\x3f\x9f\x62\x60\xf9\x60\x03\x8e\x9c\x3f\x28\x72\x70\x91\x16\xaa\xed\xda\x42\x02\xa9\x90\x94\x04\x39\x05\xb4\xb4\x96\x16\x95\x49\x96\xa4\x22\xfb\xed\x0b\x39\x49\xd1\xa0\xbc\x71\x67\xb8\xfb\xed\x30\xc0\x52\x9b\x93\xe5\xba\xf1\xb8\xba\xfc\xff\x1a\x45\x43\xb8\xed\x76\x64\x15\x79\x72\x88\x3a\xdf\x68\xeb\x42\x11\x88\x00\x77\x5c\x92\x72\x54\xa1\x53\x15\x59\xf8\x86\x10\x19\x59\x36\xf4\xae\xcc\xf0\x40\xd6\xb1\x56\xb8\x0a\x2f\x31\x19\x0c\xa3\x37\x69\x34\xfd\x2c\x02\x9c\x74\x87\x83\x3c\x41\x69\x8f\xce\x11\x7c\xc3\x0e\x7b\x6e\x09\x74\x2c\xc9\x78\xb0\x42\xa9\x0f\xa6\x65\xa9\x4a\x42\xcf\xbe\x39\x8f\x79\x6b\x12\x8a\x00\x4f\x6f\x2d\xf4\xce\x4b\x56\x90\x28\xb5\x39\x41\xef\xff\xf6\x41\xfa\x33\xf0\x70\x1a\xef\xcd\x62\x3e\xef\xfb\x3e\x94\x67\xd8\x50\xdb\x7a\xde\xbe\x1a\xdd\xfc\x2e\x5e\xae\x93\x7c\x7d\x71\x15\x5e\x9e\x9f\xdc\xab\x96\x9c\x83\xa5\x5f\x1d\x5b\xaa\xb0\x3b\x41\x1a\xd3\x72\x29\x77\x2d\xa1\x95\x3d\xb4\x85\xac\x2d\x51\x05\xaf\x07\xde\xde\xb2\x67\x55\xcf\xe0\xf4\xde\xf7\xd2\x92\x08\x50\xb1\xf3\x96\x77\x9d\xff\x10\xd6\x3b\x1d\xbb\x0f\x06\xad\x20\x15\x46\x51\x8e\x38\x1f\xe1\x5b\x94\xc7\xf9\x4c\x04\x78\x8c\x8b\x6d\x7a\x5f\xe0\x31\xca\xb2\x28\x29\xe2\x75\x8e\x34\xc3\x32\x4d\x56\x71\x11\xa7\x49\x8e\xf4\x3b\xa2\xe4\x09\xb7\x71\xb2\x9a\x81\xd8\x37\x64\x41\x47\x63\x07\x7e\x6d\xc1\x43\x8c\x54\x0d\x99\xe5\x44\x1f\x00\xf6\xfa\x15\xc8\x19\x2a\x79\xcf\x25\x5a\xa9\xea\x4e\xd6\x84\x5a\xbf\x90\x55\xac\x6a\x18\xb2\x07\x76\xc3\x67\x3a\x48\x55\x89\x00\x2d\x1f\xd8\x4b\x7f\xae\xfc\xb3\x54\x28\x44\x9e\x2d\x73\xdc\x60\x2f\x7f\x52\xcd\xde\x91\x7d\x21\x2b\xa2\x6c\xb9\xc5\xd7\x1b\xc8\x43\x75\xfd\x49\x14\x51\xb6\x59\x17\xc3\x7d\x3c\x59\xde\x67\xab\x38\x9b\x8a\x4d\x7a\x17\x25\x9b\xe7\x87\x75\x96\xc7\x69\x32\x68\xad\xf4\xe4\xfc\xd0\xef\x79\x15\x67\x18\xcc\x4a\xfb\x8a\x2d\xc6\x13\xd7\x50\xdb\xc2\xf4\xd5\x74\x2a\xe8\x68\xb4\xf5\x42\xc4\x9b\x24\xcd\xd6\x58\xdc\xfc\xd1\x6b\xf6\xb0\xf4\x72\x61\xa4\x75\x84\xed\x3a\x5a\xe1\x0b\xc6\x93\xd7\xf1\xd3\xf9\x26\x2e\xb6\x51\xbe\x0d\xfd\xd1\x4f\x85\xd8\xb1\x5a\x88\xff\xc2\x70\xce\x07\x59\xd3\x45\xe7\xb9\x0d\x5d\x83\x1d\x2b\x8c\x27\xc3\x52\x53\x21\xc2\x1f\xdb\x34\x79\x5a\x0c\x45\xf1\x3b\x00\x00\xff\xff\x9e\x87\x9c\x0d\x34\x03\x00\x00") + +func testImagesFakegitserverMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesFakegitserverMakefile, + "test/images/fakegitserver/Makefile", + ) +} + +func testImagesFakegitserverMakefile() (*asset, error) { + bytes, err := testImagesFakegitserverMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/fakegitserver/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesFakegitserverVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesFakegitserverVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesFakegitserverVersion, + "test/images/fakegitserver/VERSION", + ) +} + +func testImagesFakegitserverVersion() (*asset, error) { + bytes, err := testImagesFakegitserverVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/fakegitserver/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesFakegitserverGitserverGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xc1\x6e\xe3\x36\x14\x3c\x87\x5f\x31\xe0\xc9\x0e\x14\xc9\xcd\xa1\x28\xb6\x27\x35\x9b\xc5\x0a\x1b\xd8\x80\xe5\xad\x91\x5b\x68\xe9\x59\x7a\x08\x45\x32\x24\x15\xc5\x28\xf2\xef\x05\x65\x17\x48\x50\xec\x4d\xe2\x0c\x66\xe6\xcd\x7b\xc5\xb5\xb8\xb3\xee\xe4\xb9\xeb\x23\x6e\x57\xbf\xfd\x8e\x5d\x4f\xf8\x31\x1e\xc8\x1b\x8a\x14\x50\x8e\xb1\xb7\x3e\xe4\x42\x3c\x70\x43\x26\x50\x8b\xd1\xb4\xe4\x11\x7b\x42\xe9\x54\xd3\x13\x2e\x48\x86\xbf\xc9\x07\xb6\x06\xb7\xf9\x0a\x8b\x44\x90\x17\x48\x2e\xff\x14\x27\x3b\x62\x50\x27\x18\x1b\x31\x06\x42\xec\x39\xe0\xc8\x9a\x40\x6f\x0d\xb9\x08\x36\x68\xec\xe0\x34\x2b\xd3\x10\x26\x8e\xfd\x6c\x72\x91\xc8\xc5\xe3\x45\xc0\x1e\xa2\x62\x03\x85\xc6\xba\x13\xec\xf1\x23\x0b\x2a\x0a\x01\x00\x7d\x8c\xee\x4b\x51\x4c\xd3\x94\xab\x39\x65\x6e\x7d\x57\xe8\x33\x2b\x14\x0f\xd5\xdd\xfd\xba\xbe\xbf\xb9\xcd\x57\x42\xfc\x34\x9a\x42\x80\xa7\x97\x91\x3d\xb5\x38\x9c\xa0\x9c\xd3\xdc\xa8\x83\x26\x68\x35\xc1\x7a\xa8\xce\x13\xb5\x88\x36\xe5\x9c\x3c\x47\x36\x5d\x86\x60\x8f\x71\x52\x9e\x44\xcb\x21\x7a\x3e\x8c\xf1\x53\x41\xff\xa5\xe2\x80\x8f\x04\x6b\xa0\x0c\x64\x59\xa3\xaa\x25\xfe\x2a\xeb\xaa\xce\xc4\xbe\xda\x7d\xdf\xfc\xdc\x61\x5f\x6e\xb7\xe5\x7a\x57\xdd\xd7\xd8\x6c\x71\xb7\x59\x7f\xad\x76\xd5\x66\x5d\x63\xf3\x0d\xe5\xfa\x11\x3f\xaa\xf5\xd7\x0c\xc4\xb1\x27\x0f\x7a\x73\x3e\x65\xb7\x1e\x9c\xaa\xa3\x36\x17\x35\xd1\x27\xf3\xa3\x3d\x87\x09\x8e\x1a\x3e\x72\x03\xad\x4c\x37\xaa\x8e\xd0\xd9\x57\xf2\x86\x4d\x07\x47\x7e\xe0\x90\x96\x17\xa0\x4c\x2b\x34\x0f\x1c\x55\x9c\xff\xff\x37\x4e\x2e\xae\x0b\x21\x9c\x6a\x9e\x93\xc8\xa0\xd8\x08\xc1\x83\xb3\x3e\x62\x21\xae\x24\x5b\x29\xae\xa4\xa1\x58\xa4\x25\x48\xb1\x14\xe2\x38\x9a\x06\x3d\x69\x6d\x17\xd3\xbc\x9a\x7c\x4b\xc1\x59\x13\x68\xef\x39\x92\xcf\xe0\x71\x7d\x79\x7f\x19\x29\xc4\x25\xfe\x11\x57\x6c\xf3\x19\xae\xa3\x67\xd3\x2d\xa6\x0c\xb2\x82\x1a\xa0\x70\x54\xcf\x84\x8e\x23\x02\xf9\x57\xf2\x72\x29\xc4\xbb\x10\x45\x81\x7d\x4f\x06\xad\x4d\x23\x3d\x25\xbc\xd1\xd6\x10\xb4\x6d\x94\xee\x6d\x88\x5f\xfe\x58\xad\x56\x4f\x19\xd2\x2d\x4e\xac\xf5\x05\x57\x06\x34\xb8\x78\x9a\x25\x3d\x39\x0b\xa3\x06\x6a\x21\x13\x5d\xa6\x75\xcd\x0a\x79\x72\x48\x57\xd8\x28\x03\xa5\x83\x9d\xef\xf8\x97\x3e\x18\x4e\x37\x49\xec\x26\x89\x3d\xa5\xcb\xf1\x94\x3e\x11\x7b\x75\xb6\xc9\xcf\xc5\xa4\x06\x17\xf3\xc4\x73\x05\xdf\x95\x69\x35\x7d\x1b\x4d\xb3\x90\x85\xcc\xce\xbd\x2d\x2f\xe0\x03\x87\x48\xa6\x34\x6d\x9d\x26\x5f\xc8\xd9\x49\x66\x30\xac\x97\xe2\x5d\xfc\x1b\x00\x00\xff\xff\x68\x0f\xa2\xe1\xd0\x03\x00\x00") + +func testImagesFakegitserverGitserverGoBytes() ([]byte, error) { + return bindataRead( + _testImagesFakegitserverGitserverGo, + "test/images/fakegitserver/gitserver.go", + ) +} + +func testImagesFakegitserverGitserverGo() (*asset, error) { + bytes, err := testImagesFakegitserverGitserverGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/fakegitserver/gitserver.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesGoproxyGitignore = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcf\x2f\x28\xca\xaf\xa8\xe4\x02\x04\x00\x00\xff\xff\xb5\x01\x4d\x6d\x08\x00\x00\x00") + +func testImagesGoproxyGitignoreBytes() ([]byte, error) { + return bindataRead( + _testImagesGoproxyGitignore, + "test/images/goproxy/.gitignore", + ) +} + +func testImagesGoproxyGitignore() (*asset, error) { + bytes, err := testImagesGoproxyGitignoreBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/goproxy/.gitignore", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesGoproxyBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\xcd\x6e\x83\x30\x0c\xc7\xef\x79\x8a\x28\xa7\x52\x6d\xcd\x1d\xa9\xd2\xde\xa3\x42\x91\x43\xdc\x2c\x9a\x8b\x51\x48\xaa\x95\xa7\x9f\x68\x60\x1b\x15\xe2\x88\xff\x1f\xfe\xe1\xf4\xd0\x7e\x81\xc7\x83\xc3\x2b\x64\x4a\xe6\x1e\x86\x60\x03\x85\xf4\x90\x67\x79\x51\x5a\xff\x0d\xea\x3e\x5b\x0a\xad\x6a\x2a\x21\x88\xc1\x1d\x84\x94\x52\xaa\x8f\xc0\xc6\xc2\x88\x64\x62\x26\x1c\x8c\x67\xad\x3d\xd7\x0e\xaf\x27\x3b\x92\x7a\x2b\x2e\xcf\xc6\x86\x0e\xe2\xe3\xdf\x80\x82\x8d\x65\x52\x09\xf1\x6b\x28\xb5\x1d\xdc\x50\x9e\x27\x5b\x1f\xf9\x7b\x49\xcd\x89\x49\xa8\x3d\x9b\x05\xfa\xb5\x68\xfe\x7e\x6d\xda\xf0\x4f\x86\x21\xb6\xc3\xf3\x67\xe7\x5d\x27\xcf\xaa\x29\x92\xc3\x7e\x58\xee\x80\x9d\xe3\xa8\x7d\x48\x9f\xd9\x9e\x5a\xbe\x69\x24\x18\x21\x92\x9e\x63\x5b\x40\xcd\x93\xe8\x1a\x08\x7d\xe4\xdc\xaf\x81\xe6\xd3\xbf\x4f\xfb\xd7\x28\x9e\xd8\x1e\x2e\xea\x78\x54\x4d\x55\x84\x04\xbe\x80\x40\x4e\x7c\x83\x0e\x3c\xba\x05\x72\xf7\xc9\x62\xb8\x43\xc2\x7d\x10\x20\xda\x80\xb8\xa8\x7a\x45\xd8\xec\x93\x54\xe2\x27\x00\x00\xff\xff\x47\x35\x96\x27\x4b\x02\x00\x00") + +func testImagesGoproxyBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesGoproxyBuild, + "test/images/goproxy/BUILD", + ) +} + +func testImagesGoproxyBuild() (*asset, error) { + bytes, err := testImagesGoproxyBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/goproxy/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesGoproxyDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x8f\x9b\x3c\x10\x86\xef\xfe\x15\xaf\xe0\xf2\x7d\x52\x4a\xd2\x3d\x54\xab\xf6\x44\x13\x56\x45\xbb\x85\x55\x60\xbb\x8d\xaa\x1e\x1c\x33\x81\x91\x88\xed\xda\xa6\x84\x7f\x5f\x91\x4d\xa4\x46\xf5\xc5\x92\xe7\xf1\xf8\xf1\x3b\x31\xd6\xc6\x4e\x8e\xdb\x2e\xe0\x6e\xf5\xfe\x03\xea\x8e\xf0\x38\xec\xc9\x69\x0a\xe4\x91\x0e\xa1\x33\xce\x27\x22\x16\x31\x9e\x58\x91\xf6\xd4\x60\xd0\x0d\x39\x84\x8e\x90\x5a\xa9\x3a\xba\x56\x16\xf8\x46\xce\xb3\xd1\xb8\x4b\x56\xf8\x6f\x06\xa2\x4b\x29\xfa\xff\x93\x88\x31\x99\x01\x47\x39\x41\x9b\x80\xc1\x13\x42\xc7\x1e\x07\xee\x09\x74\x52\x64\x03\x58\x43\x99\xa3\xed\x59\x6a\x45\x18\x39\x74\xe7\x67\x2e\x4d\x12\x11\x63\x77\x69\x61\xf6\x41\xb2\x86\x84\x32\x76\x82\x39\xfc\xcd\x41\x86\xb3\xf0\xbc\xba\x10\xec\xc7\xe5\x72\x1c\xc7\x44\x9e\x65\x13\xe3\xda\x65\xff\x06\xfa\xe5\x53\xbe\xce\x8a\x2a\x7b\x77\x97\xac\xce\x57\x5e\x74\x4f\xde\xc3\xd1\xaf\x81\x1d\x35\xd8\x4f\x90\xd6\xf6\xac\xe4\xbe\x27\xf4\x72\x84\x71\x90\xad\x23\x6a\x10\xcc\xec\x3b\x3a\x0e\xac\xdb\x05\xbc\x39\x84\x51\x3a\x12\x31\x1a\xf6\xc1\xf1\x7e\x08\x37\x61\x5d\xed\xd8\xdf\x00\x46\x43\x6a\x44\x69\x85\xbc\x8a\xf0\x39\xad\xf2\x6a\x21\x62\xbc\xe6\xf5\x97\xf2\xa5\xc6\x6b\xba\xdd\xa6\x45\x9d\x67\x15\xca\x2d\xd6\x65\xb1\xc9\xeb\xbc\x2c\x2a\x94\x0f\x48\x8b\x1d\x1e\xf3\x62\xb3\x00\x71\xe8\xc8\x81\x4e\xd6\xcd\xfe\xc6\x81\xe7\x18\xa9\x99\x33\xab\x88\x6e\x04\x0e\xe6\x4d\xc8\x5b\x52\x7c\x60\x85\x5e\xea\x76\x90\x2d\xa1\x35\xbf\xc9\x69\xd6\x2d\x2c\xb9\x23\xfb\x79\x98\x1e\x52\x37\x22\x46\xcf\x47\x0e\x32\x9c\x4f\xfe\xf9\x54\x22\xc4\xc3\xb6\xfc\x0a\xaf\x9c\x0c\xaa\x13\xe9\x66\x83\xd6\x58\x67\x4e\xd3\x75\x17\xd9\xf7\xe7\xb2\xca\x70\xbf\xba\x5f\x89\xac\xa8\xb7\xbb\xe7\x32\x2f\x6a\xfc\x88\x96\x17\x22\xfa\x29\xfe\x04\x00\x00\xff\xff\xd6\xf9\x45\xa8\x91\x02\x00\x00") + +func testImagesGoproxyDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesGoproxyDockerfile, + "test/images/goproxy/Dockerfile", + ) +} + +func testImagesGoproxyDockerfile() (*asset, error) { + bytes, err := testImagesGoproxyDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/goproxy/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesGoproxyMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x4f\xdb\x3e\x14\xc5\x9f\xff\xfe\x14\x47\x0d\x0f\xad\x54\x52\xfe\x68\xe2\x81\x09\x4d\x59\xdb\x41\x04\x4a\xa6\x24\x80\x78\x42\x4e\x72\x9b\x5c\x29\xb5\x3d\xdb\x59\xda\x6f\x3f\xb9\x80\x34\x34\xbf\xf9\x9e\xe3\xe3\x9f\x8f\x23\xac\xb5\x39\x5a\xee\x7a\x8f\xcb\x8b\xff\xaf\x50\xf5\x84\xfb\xb1\x26\xab\xc8\x93\x43\x32\xfa\x5e\x5b\x17\x8b\x48\x44\x78\xe0\x86\x94\xa3\x16\xa3\x6a\xc9\xc2\xf7\x84\xc4\xc8\xa6\xa7\x0f\x65\x89\x27\xb2\x8e\xb5\xc2\x65\x7c\x81\x79\x30\xcc\xde\xa5\xd9\xe2\xab\x88\x70\xd4\x23\xf6\xf2\x08\xa5\x3d\x46\x47\xf0\x3d\x3b\xec\x78\x20\xd0\xa1\x21\xe3\xc1\x0a\x8d\xde\x9b\x81\xa5\x6a\x08\x13\xfb\xfe\x74\xcd\x7b\x48\x2c\x22\xbc\xbc\x47\xe8\xda\x4b\x56\x90\x68\xb4\x39\x42\xef\xfe\xf6\x41\xfa\x13\x70\x58\xbd\xf7\xe6\x7a\xb5\x9a\xa6\x29\x96\x27\xd8\x58\xdb\x6e\x35\xbc\x19\xdd\xea\x21\x5d\x6f\xb3\x72\x7b\x7e\x19\x5f\x9c\x8e\x3c\xaa\x81\x9c\x83\xa5\x5f\x23\x5b\x6a\x51\x1f\x21\x8d\x19\xb8\x91\xf5\x40\x18\xe4\x04\x6d\x21\x3b\x4b\xd4\xc2\xeb\xc0\x3b\x59\xf6\xac\xba\x25\x9c\xde\xf9\x49\x5a\x12\x11\x5a\x76\xde\x72\x3d\xfa\x4f\x65\x7d\xd0\xb1\xfb\x64\xd0\x0a\x52\x61\x96\x94\x48\xcb\x19\xbe\x27\x65\x5a\x2e\x45\x84\xe7\xb4\xba\xcb\x1f\x2b\x3c\x27\x45\x91\x64\x55\xba\x2d\x91\x17\x58\xe7\xd9\x26\xad\xd2\x3c\x2b\x91\xff\x40\x92\xbd\xe0\x3e\xcd\x36\x4b\x10\xfb\x9e\x2c\xe8\x60\x6c\xe0\xd7\x16\x1c\x6a\xa4\x36\x74\x56\x12\x7d\x02\xd8\xe9\x37\x20\x67\xa8\xe1\x1d\x37\x18\xa4\xea\x46\xd9\x11\x3a\xfd\x9b\xac\x62\xd5\xc1\x90\xdd\xb3\x0b\x9f\xe9\x20\x55\x2b\x22\x0c\xbc\x67\x2f\xfd\x69\xf2\xcf\xa3\x62\x21\xca\x62\x5d\xde\x74\xda\x58\x7d\x38\x8a\xa4\x58\xdf\xe1\xdb\x0d\xe4\xbe\xbd\xfa\x22\xaa\xa4\xb8\xdd\x56\x61\x7f\x36\x5f\x3f\x16\x9b\xb4\x58\x88\xdb\xfc\x21\xc9\x6e\x5f\x9f\xb6\x45\x99\xe6\x59\xd0\x06\xe9\xc9\xf9\x90\xf3\xba\x49\x0b\x04\xb3\xd2\xbe\x65\x8b\xb3\xb9\xeb\x69\x18\x60\xa6\x76\xb1\x10\x74\x30\xda\x7a\x21\x6a\x56\xd7\xe2\xbf\x38\x5e\xf1\x5e\x76\x74\x3e\x7a\x1e\x62\xd7\xa3\x66\x85\xb3\x79\xa0\x59\x08\x11\xff\xbc\xcb\xb3\x97\xeb\x30\x14\x7f\x02\x00\x00\xff\xff\x8c\x7c\x55\x9f\xed\x02\x00\x00") + +func testImagesGoproxyMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesGoproxyMakefile, + "test/images/goproxy/Makefile", + ) +} + +func testImagesGoproxyMakefile() (*asset, error) { + bytes, err := testImagesGoproxyMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/goproxy/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesGoproxyVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesGoproxyVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesGoproxyVersion, + "test/images/goproxy/VERSION", + ) +} + +func testImagesGoproxyVersion() (*asset, error) { + bytes, err := testImagesGoproxyVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/goproxy/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesGoproxyGoproxyGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x5f\x6b\xdb\x4a\x10\xc5\x9f\x3d\x9f\xe2\xa0\x27\x3b\xf8\x4a\xbe\x81\x0b\x21\x97\x3c\xa8\xf9\x43\x44\x82\x5d\x22\x27\x21\x8f\x6b\x69\x2c\x0d\x95\x77\xb7\xbb\xa3\x28\x6e\xe9\x77\x2f\x72\x5c\x48\xe8\x9b\xc4\xf9\xcd\x39\x67\x67\xb2\x13\xba\x74\x7e\x1f\xa4\x69\x15\xa7\x8b\x7f\xff\xc3\xba\x65\xdc\xf5\x1b\x0e\x96\x95\x23\xf2\x5e\x5b\x17\x62\x4a\x74\x2f\x15\xdb\xc8\x35\x7a\x5b\x73\x80\xb6\x8c\xdc\x9b\xaa\x65\x1c\x95\x39\x9e\x38\x44\x71\x16\xa7\xe9\x02\xd3\x11\x48\x8e\x52\x32\xfb\x9f\xf6\xae\xc7\xce\xec\x61\x9d\xa2\x8f\x0c\x6d\x25\x62\x2b\x1d\x83\xdf\x2a\xf6\x0a\xb1\xa8\xdc\xce\x77\x62\x6c\xc5\x18\x44\xdb\x43\xc8\xd1\x22\xa5\x97\xa3\x81\xdb\xa8\x11\x0b\x83\xca\xf9\x3d\xdc\xf6\x23\x05\xa3\x44\x00\xd0\xaa\xfa\xf3\x2c\x1b\x86\x21\x35\x87\x96\xa9\x0b\x4d\xd6\xbd\x53\x31\xbb\x2f\x2e\xaf\x97\xe5\xf5\x3f\xa7\xe9\x82\xe8\xd1\x76\x1c\x23\x02\x7f\xef\x25\x70\x8d\xcd\x1e\xc6\xfb\x4e\x2a\xb3\xe9\x18\x9d\x19\xe0\x02\x4c\x13\x98\x6b\xa8\x1b\x7b\x0e\x41\x54\x6c\x33\x47\x74\x5b\x1d\x4c\x60\xaa\x25\x6a\x90\x4d\xaf\x9f\x16\xf4\xa7\x95\x44\x7c\x04\x9c\x85\xb1\x48\xf2\x12\x45\x99\xe0\x4b\x5e\x16\xe5\x9c\x9e\x8b\xf5\xed\xea\x71\x8d\xe7\xfc\xe1\x21\x5f\xae\x8b\xeb\x12\xab\x07\x5c\xae\x96\x57\xc5\xba\x58\x2d\x4b\xac\x6e\x90\x2f\x5f\x70\x57\x2c\xaf\xe6\x60\xd1\x96\x03\xf8\xcd\x87\xb1\xbb\x0b\x90\x71\x75\x5c\xa7\x54\x32\x7f\x0a\xdf\xba\xf7\x32\xd1\x73\x25\x5b\xa9\xd0\x19\xdb\xf4\xa6\x61\x34\xee\x95\x83\x15\xdb\xc0\x73\xd8\x49\x1c\x8f\x17\x61\x6c\x4d\x9d\xec\x44\x8d\x1e\xfe\xff\x7a\x4e\x4a\x27\x19\x91\x37\xd5\xb7\xd1\x64\x67\xc4\x12\xc9\xce\xbb\xa0\x98\xd2\x24\xe9\x5c\x93\xd0\x24\xb1\xac\xd9\x78\x85\x84\x68\x92\x34\xa2\x6d\xbf\x49\x2b\xb7\xcb\xb8\x33\x3f\x4c\xe8\xb2\xc6\xf9\xe0\xde\xf6\x09\xcd\x88\xb6\xbd\xad\x0e\x46\xd3\x19\x7e\xd2\xe4\x20\xe0\xfc\x02\x47\x26\x5d\xf2\xf0\x75\xfc\xb8\x55\xf5\x25\x87\x57\x0e\xd3\xd9\x11\x4b\x9f\x38\x6c\x5c\x64\x5c\x40\x43\xcf\x34\xe9\x5c\x93\xde\x18\x35\xdd\x74\x4c\x4f\xef\x25\x2a\xdb\xdc\xd6\x87\xb9\x69\x72\x7e\xb6\x38\x5b\x24\x73\x1c\x86\x67\x33\xfa\x45\xbf\x03\x00\x00\xff\xff\x68\x60\x2e\x45\x04\x03\x00\x00") + +func testImagesGoproxyGoproxyGoBytes() ([]byte, error) { + return bindataRead( + _testImagesGoproxyGoproxyGo, + "test/images/goproxy/goproxy.go", + ) +} + +func testImagesGoproxyGoproxyGo() (*asset, error) { + bytes, err := testImagesGoproxyGoproxyGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/goproxy/goproxy.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesGoproxyPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\x4b\x6a\x04\x31\x0c\x44\xf7\x3e\x85\x2e\xe0\xf9\x84\x10\x06\x9f\xa2\x21\x90\xbd\xda\x2e\x06\xd3\x63\xcb\x48\x4a\x48\x6e\x1f\xfa\x13\x66\x91\x6d\xd5\x7b\x25\xf1\xa8\x1f\x50\xab\xd2\x13\x7d\x5d\xc3\x52\x7b\x49\x34\x49\x09\x0d\xce\x85\x9d\x53\x20\xea\xdc\x90\xe8\x2e\x43\xe5\xfb\x27\x10\x3d\x78\xc6\xc3\xd6\x86\x88\xc7\x78\x56\x36\x90\xd7\x38\x4b\x77\xae\x1d\xba\x41\xf1\xdf\x00\x51\x6d\x7c\x5f\xa3\xac\xa7\x2a\xe7\xe5\x73\x86\x76\x38\x2c\xe2\x05\xd1\x61\x1e\x37\xc2\xce\x87\x14\xb9\x95\xb7\xd7\x74\x3d\x5d\x36\x7d\x88\xfa\xf1\x40\x7c\x5e\x9b\x44\x3d\xd1\xed\x72\xdb\x21\x05\x97\xda\x61\x36\xa9\xcc\xd8\x69\x22\xcf\xe3\x5d\xf2\x02\xff\x0b\xf6\xb5\xc3\x0b\xbf\x01\x00\x00\xff\xff\x49\xcd\x8a\x7d\x11\x01\x00\x00") + +func testImagesGoproxyPodYamlBytes() ([]byte, error) { + return bindataRead( + _testImagesGoproxyPodYaml, + "test/images/goproxy/pod.yaml", + ) +} + +func testImagesGoproxyPodYaml() (*asset, error) { + bytes, err := testImagesGoproxyPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/goproxy/pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesHostexecBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\xcc\x29\xc8\xcc\x4b\xb5\x32\xd6\x33\xe3\x4a\x2c\xca\xb5\x4d\x2c\xca\x35\x36\x2a\x33\xd3\x47\x15\x06\xa9\x03\x91\x65\x16\xc8\x12\x05\x05\xc9\x66\x26\x39\xa9\xb6\x50\x1a\x59\x0a\x10\x00\x00\xff\xff\xe5\x8d\xa8\xc0\x5c\x00\x00\x00") + +func testImagesHostexecBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesHostexecBaseimage, + "test/images/hostexec/BASEIMAGE", + ) +} + +func testImagesHostexecBaseimage() (*asset, error) { + bytes, err := testImagesHostexecBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/hostexec/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesHostexecDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x92\x41\x8f\xdb\x36\x10\x85\xef\xfc\x15\x0f\x16\x10\xb4\x85\x65\x6d\x7d\xe8\xc1\xed\x45\xb1\x9d\x46\xc8\x5a\x4a\x2d\xbb\xc1\x9e\x02\x9a\x1a\x49\x84\x65\x92\x21\x47\xab\xf5\xbf\x2f\x24\x7b\x17\x5d\x44\x27\x91\x7c\xf3\xf8\xf1\xcd\x44\x58\x5b\x77\xf5\xba\x69\x19\xcb\x87\xdf\xff\xc0\xa1\x25\x7c\xe9\x4f\xe4\x0d\x31\x05\xa4\x3d\xb7\xd6\x87\x85\x88\x44\x84\x47\xad\xc8\x04\xaa\xd0\x9b\x8a\x3c\xb8\x25\xa4\x4e\xaa\x96\x5e\x4f\xe6\xf8\x97\x7c\xd0\xd6\x60\xb9\x78\xc0\x2f\xa3\x60\x76\x3f\x9a\xfd\xfa\xa7\x88\x70\xb5\x3d\x2e\xf2\x0a\x63\x19\x7d\x20\x70\xab\x03\x6a\xdd\x11\xe8\x45\x91\x63\x68\x03\x65\x2f\xae\xd3\xd2\x28\xc2\xa0\xb9\x9d\xae\xb9\x9b\x2c\x44\x84\xa7\xbb\x85\x3d\xb1\xd4\x06\x12\xca\xba\x2b\x6c\xfd\x7f\x1d\x24\x4f\xc0\xe3\xd7\x32\xbb\x55\x92\x0c\xc3\xb0\x90\x13\xec\xc2\xfa\x26\xe9\x6e\xc2\x90\x3c\x66\xeb\x6d\x5e\x6e\xe3\xe5\xe2\x61\x2a\x39\x9a\x8e\x42\x80\xa7\x1f\xbd\xf6\x54\xe1\x74\x85\x74\xae\xd3\x4a\x9e\x3a\x42\x27\x07\x58\x0f\xd9\x78\xa2\x0a\x6c\x47\xde\xc1\x6b\xd6\xa6\x99\x23\xd8\x9a\x07\xe9\x49\x44\xa8\x74\x60\xaf\x4f\x3d\xbf\x0b\xeb\x95\x4e\x87\x77\x02\x6b\x20\x0d\x66\x69\x89\xac\x9c\xe1\x63\x5a\x66\xe5\x5c\x44\xf8\x96\x1d\x3e\x17\xc7\x03\xbe\xa5\xfb\x7d\x9a\x1f\xb2\x6d\x89\x62\x8f\x75\x91\x6f\xb2\x43\x56\xe4\x25\x8a\x4f\x48\xf3\x27\x7c\xc9\xf2\xcd\x1c\xa4\xb9\x25\x0f\x7a\x71\x7e\xe4\xb7\x1e\x7a\x8c\x91\xaa\x31\xb3\x92\xe8\x1d\x40\x6d\x6f\x40\xc1\x91\xd2\xb5\x56\xe8\xa4\x69\x7a\xd9\x10\x1a\xfb\x4c\xde\x68\xd3\xc0\x91\xbf\xe8\x30\x36\x33\x40\x9a\x4a\x44\xe8\xf4\x45\xb3\xe4\x69\xe7\xa7\x47\x2d\x84\xf8\xb4\x2f\x76\x23\xfe\x36\xdb\xa5\x7f\x6f\x85\x58\xef\x8b\xb2\xfc\xfe\xf1\x98\x3d\x6e\xbe\xaf\x8b\xaf\x4f\xf8\x41\x97\x3e\xfe\x67\xbb\x3b\xa6\xfb\xf5\xe7\x38\x8c\x5e\x0a\x49\x1f\x7c\x72\xd2\x26\x11\x22\x82\x36\x81\x65\xd7\xc1\x90\xa2\x10\xa4\xbf\xc2\x49\x75\x96\x0d\x85\x95\x88\x10\x43\xf5\xbe\x9b\xc3\xa8\xd5\x38\x3d\xb7\xe6\xa0\xb3\x3c\xb6\x9f\x96\x04\xa6\xc0\x61\x12\x6a\xe7\x6d\xcf\xb4\x5c\x41\x1b\xd5\xf5\x15\x05\x84\x70\x2b\xd2\x06\xb9\xad\xe8\xab\xf5\x7c\x2f\xd8\x1f\x73\x48\x77\x46\x1c\xf7\xae\x92\x4c\x90\x55\x35\x5d\x05\x43\xac\x24\xc7\xd6\x91\x39\x85\xea\xcd\x15\x1f\x3e\xc0\x5f\x10\xfb\x1a\xc9\xb3\xf4\x89\x1a\xe7\x2a\x91\xee\x9c\xfc\x36\xbe\x62\x90\x9a\xc7\x8c\xe9\x99\xbc\x58\xef\x36\x93\xb6\x46\x52\xeb\xda\x8e\xa5\x97\xf3\xf4\xf7\xb6\xa6\x17\x52\x50\x92\xf1\xd7\xb4\x25\xfe\x0b\x00\x00\xff\xff\x8b\x60\xbc\x94\x95\x03\x00\x00") + +func testImagesHostexecDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesHostexecDockerfile, + "test/images/hostexec/Dockerfile", + ) +} + +func testImagesHostexecDockerfile() (*asset, error) { + bytes, err := testImagesHostexecDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/hostexec/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesHostexecVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesHostexecVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesHostexecVersion, + "test/images/hostexec/VERSION", + ) +} + +func testImagesHostexecVersion() (*asset, error) { + bytes, err := testImagesHostexecVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/hostexec/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesHostexecPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\xbd\x8a\xc3\x30\x10\x84\x7b\x3d\xc5\xbe\x80\xec\xf3\x71\x5c\xa1\xf6\xfa\x23\x55\xfa\xb5\x34\x38\xc2\xd6\x0f\xda\x75\xe2\xbc\x7d\xb0\x43\x20\x90\x76\xbe\x6f\x86\xe1\x1a\xcf\x68\x12\x4b\x76\x74\x1d\xcc\x1c\x73\x70\x74\x2a\xc1\x24\x28\x07\x56\x76\x86\x28\x73\x82\xa3\x4b\x11\xc5\x06\x6f\x88\x16\x1e\xb1\xc8\x8e\x88\xb8\xd6\x37\x26\x15\x7e\xcf\x7d\xc9\xca\x31\xa3\x1d\x96\xfd\x9c\x20\x8a\x89\x27\x38\x9a\x7c\xeb\x62\xe9\xe7\x75\x44\xcb\x50\x88\xc5\x37\xac\x42\xd4\x1e\x86\xf4\xaf\x96\xe5\x14\x7e\x7f\xdc\xd0\x7d\x19\x22\x81\x5f\x5b\xd4\xfb\x5f\xc9\x8a\x4d\x9f\x5f\x76\xf3\x1f\x7a\x2b\x6d\x76\xa4\x6d\x85\x79\x04\x00\x00\xff\xff\x85\xc4\xc1\xaa\xe0\x00\x00\x00") + +func testImagesHostexecPodYamlBytes() ([]byte, error) { + return bindataRead( + _testImagesHostexecPodYaml, + "test/images/hostexec/pod.yaml", + ) +} + +func testImagesHostexecPodYaml() (*asset, error) { + bytes, err := testImagesHostexecPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/hostexec/pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesImageUtilSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x57\xdd\x72\xdb\x38\xd2\xbd\xe7\x53\xf4\x50\xaa\x19\x69\xca\x24\x93\x7c\x29\x7f\x59\x67\x55\x15\x5a\xd6\x3a\x2a\xff\x68\x57\x94\x67\x2a\xe3\x75\xa9\x20\xb2\x49\x61\x4d\x02\x1c\x00\xb4\xec\x91\xf5\xee\x5b\x0d\x92\xfa\xb1\x9d\xd9\xbd\xda\x5c\xc4\x04\xd0\xe8\x3e\x38\x7d\xba\x01\x75\x7e\x08\x16\x5c\x04\x0b\xa6\x97\x8e\xd3\x81\xa1\x2c\x9f\x14\xcf\x96\x06\x3e\xbc\x7b\xff\xff\x30\x5b\x22\x5c\x54\x0b\x54\x02\x0d\x6a\x08\x2b\xb3\x94\x4a\xfb\x4e\xc7\xe9\xc0\x25\x8f\x51\x68\x4c\xa0\x12\x09\x2a\x30\x4b\x84\xb0\x64\xf1\x12\xdb\x95\x23\xf8\x05\x95\xe6\x52\xc0\x07\xff\x1d\xf4\xc8\xc0\x6d\x96\xdc\xfe\x67\xa7\x03\x4f\xb2\x82\x82\x3d\x81\x90\x06\x2a\x8d\x60\x96\x5c\x43\xca\x73\x04\x7c\x8c\xb1\x34\xc0\x05\xc4\xb2\x28\x73\xce\x44\x8c\xb0\xe2\x66\x69\xc3\x34\x4e\x7c\xa7\x03\xdf\x1a\x17\x72\x61\x18\x17\xc0\x20\x96\xe5\x13\xc8\x74\xdf\x0e\x98\xb1\x80\xe9\xdf\xd2\x98\xf2\x24\x08\x56\xab\x95\xcf\x2c\x58\x5f\xaa\x2c\xc8\x6b\x43\x1d\x5c\x8e\x87\xa3\xeb\x68\xe4\x7d\xf0\xdf\xd9\x2d\x37\x22\x47\xad\x41\xe1\xef\x15\x57\x98\xc0\xe2\x09\x58\x59\xe6\x3c\x66\x8b\x1c\x21\x67\x2b\x90\x0a\x58\xa6\x10\x13\x30\x92\xf0\xae\x14\x37\x5c\x64\x47\xa0\x65\x6a\x56\x4c\xa1\xd3\x81\x84\x6b\xa3\xf8\xa2\x32\x07\x64\xb5\xe8\xb8\x3e\x30\x90\x02\x98\x00\x37\x8c\x60\x1c\xb9\x70\x1a\x46\xe3\xe8\xc8\xe9\xc0\xaf\xe3\xd9\xd7\xc9\xcd\x0c\x7e\x0d\xa7\xd3\xf0\x7a\x36\x1e\x45\x30\x99\xc2\x70\x72\x7d\x36\x9e\x8d\x27\xd7\x11\x4c\xfe\x06\xe1\xf5\x37\xb8\x18\x5f\x9f\x1d\x01\x72\xb3\x44\x05\xf8\x58\x2a\xc2\x2f\x15\x70\xa2\x11\x13\xe2\x2c\x42\x3c\x00\x90\xca\x1a\x90\x2e\x31\xe6\x29\x8f\x21\x67\x22\xab\x58\x86\x90\xc9\x07\x54\x82\x8b\x0c\x4a\x54\x05\xd7\x94\x4c\x0d\x4c\x24\x4e\x07\x72\x5e\x70\xc3\x8c\x9d\x79\x75\x28\xdf\x71\x34\x1a\xf0\x24\xa0\x52\xf8\xc8\x4d\x3b\x14\xb2\x12\x1a\xb7\xc3\x92\x97\x98\x32\x9e\x3b\xce\x2c\x8c\x2e\x06\xdd\xf7\xce\xf8\x2a\x3c\x1f\x0d\xba\x1f\x1c\xe7\xe2\xe6\x74\x34\x9f\x4e\x26\xb3\x81\xdb\xed\xc5\x09\xb8\xdd\x5e\xc2\x95\x60\x05\x82\xdb\x5d\x9f\x86\xd1\xd7\x79\x34\xb9\x99\x0e\x47\x1b\xb7\x1f\xf8\x7e\xe0\xfb\x2e\xfc\xf8\x23\x94\xab\x04\xbc\xbf\xf7\x5d\x52\xf3\x15\x2b\x4b\x42\x2f\x53\xc8\x24\x84\xd3\xe1\x57\xca\x12\x8b\x4d\xc5\x72\x60\x2a\x5e\x72\x83\xb1\xa9\x14\x6a\xd0\x4b\x5e\x96\x98\x40\xc9\x94\x21\xfb\xa2\xca\x0d\x27\x93\xe0\x77\x2c\x2a\xaf\xd2\xa8\x3c\x4d\xe7\x8d\xa1\x54\xf2\x5f\x18\x1b\x27\xc1\x38\x67\x0a\xc1\x0b\xe1\x1f\xa3\xab\x1b\x72\x1f\x0d\x7a\x70\xeb\xb2\x22\x39\xfe\xe8\xde\x0d\xdc\xc7\x4f\xc7\xf3\xe3\x8f\x2e\x4d\xa9\x82\x26\xe8\x4f\x3d\xaa\x0d\x18\x45\xa8\x2d\xca\x32\x3e\xfe\x98\x23\xcd\xb6\x9f\x70\xeb\xea\xff\xfb\xcb\xbb\x47\x9a\xab\x3f\xa0\x4f\xc7\x9a\xa2\xa9\x94\xd0\x90\x73\x6d\xb1\xb2\x3c\x07\x5d\x95\xa5\x54\x24\xa0\xc3\x73\xa5\x4a\x16\xa4\xa2\x91\x25\xd6\x56\x97\x43\xfb\x42\x15\x2f\x75\xaf\x0f\x6b\x07\x20\xae\x0c\x78\x09\xb8\x03\x17\xbc\x14\xde\x43\x77\x6d\x8d\x37\xc1\x76\x9f\xb3\xd9\x8f\xbb\x60\x1a\x79\x41\x02\x11\x8d\xf0\x2b\xea\x03\x5c\xc0\x99\x8c\xef\x51\xd9\x12\x26\x55\x31\xf1\x04\x19\x7f\x40\x71\x00\xca\xc9\xd0\x9c\x32\x8d\x63\x72\xd1\x40\xa0\x75\x4a\x3f\x00\xc6\x4b\x09\xdd\x5e\xa6\xb0\xa4\x3c\xd3\xc2\x66\xe0\xee\x1d\xe1\xb9\xc1\x3b\x00\x2f\xfd\xd0\xaf\x91\xcd\x6c\xe7\xa8\x44\x4c\x7a\x84\x15\xcf\x73\x58\x54\x3c\x4f\xc0\xa0\x36\x50\x63\xb5\x80\xf2\xdc\xca\xf4\x80\x23\xa7\x03\x05\x0a\xda\x59\x1f\xe2\x90\x2d\x1f\xc6\xa2\xde\xb3\xd0\x48\x6d\x48\xa6\x2f\x2c\xa8\x3c\xb9\xd9\x8f\xba\x1f\xea\x30\x31\x75\xce\x3c\xb0\x12\x39\x02\xa6\x0a\xda\x6d\xf5\x70\x04\x4d\xde\x8f\xc0\x26\xdb\xb1\xbe\x1a\x7e\x78\x0a\xb7\xb7\x94\x9d\xd7\xb9\x81\xbb\xbb\xcf\x14\x49\x38\xd4\xe0\x28\x88\x1e\x74\x7b\xdb\x1c\xf7\x89\xd3\x5c\xe3\xfe\xea\xfa\x87\xad\x60\x6f\xbf\xdc\x6d\x1c\x80\x94\x3b\xf4\x3f\xe1\x26\x94\x5c\x40\x4d\xbd\xde\x7c\x86\x44\xda\xbd\x36\x31\xee\x29\x81\xa2\x9a\xda\x91\xda\x42\xb2\x05\x76\xd2\x6c\xdc\xf8\xbe\xef\x3a\x76\x63\x07\x86\x0a\x99\x41\x60\x60\xb0\x28\xa5\x62\xea\x09\x12\xae\x30\x36\x52\x3d\x59\x17\xf8\x80\xea\xe9\x20\x2b\xd4\x65\xea\x66\x4e\x24\xd6\xc1\x62\x29\x0c\x0a\xd3\x38\x25\x83\x26\xc9\x5b\x0b\xab\xf6\x37\x82\xd8\x2d\x34\x3f\x4f\xb8\x1a\x74\x7b\xc5\x3d\x0d\xc0\x4b\xfa\x76\x25\x2e\xc1\xdb\x9d\x23\xf8\x19\xba\xeb\xd6\x78\x63\x0d\x5e\xd3\x7f\xc5\xee\xd1\xea\xfc\x80\x7d\xc2\x55\xb0\x7b\x84\x05\x6f\x64\x68\x68\x14\x53\x9b\x68\x0a\x95\xc0\x96\x0a\xed\x95\xa2\x39\xdd\xaa\x54\x44\x98\x6c\xf7\x13\x1f\x8b\x96\x65\xb2\x4e\x6c\x51\xd5\x27\x6c\xac\x6c\x0c\x6f\xb8\xa3\x9e\xe2\x11\xfd\x83\x86\x7d\x98\x85\xd3\xf3\xd1\x6c\xf0\xf2\x20\x29\xb7\x7f\xca\x4a\x2f\x93\x57\xa7\xec\x34\x2c\x1a\x96\xd9\xf1\x2c\x3c\x1f\x74\x7b\x7f\xfd\x65\x34\x8d\xc6\x93\xeb\xbe\x73\x48\xc5\x77\x04\x08\xbb\x85\x41\xb7\xb7\x5f\xea\xad\x32\xfa\x8d\x1d\xf5\x0c\x8f\x83\xab\x9f\xb7\x3b\x9e\x6d\x63\xaf\xbf\x37\xcf\x99\xbb\xd7\x50\x5a\xf8\x0d\xd2\xad\x34\x6c\x7b\xfe\xb9\xed\xcd\x0b\x2e\x28\xf1\x46\x1e\xb0\x46\xe3\x9d\x54\x6c\x6b\x3f\x14\x5b\x6d\x25\x05\x3c\x7e\x3a\x86\x32\x67\x26\x95\xaa\xd8\x3b\x6e\xdb\x8f\x86\xd3\x49\x14\xcd\x4f\x6f\xc6\x97\x67\xf3\x7d\x70\xfd\x97\x1c\xd4\xdb\xda\xfe\xe5\xc2\x60\x00\xcd\xb5\xf0\xd2\x72\xc7\x43\xb0\xef\x3d\x48\x5e\x1d\x7e\xaf\x8e\x0f\xe9\x6b\x8b\xf9\xb9\xbb\xde\xd5\x75\x97\x22\xdf\xbd\x45\x62\x4d\xe0\x14\x33\xae\x0d\xaa\x17\x04\xb6\xad\x6b\xd7\xb6\x4a\x25\x63\xd4\x5a\x2a\xdd\x3e\xcb\x88\xc4\xb8\x52\x0a\x85\x01\x29\x76\x4e\x1b\xca\x55\x25\xc0\xf3\x54\x01\x9e\x57\x2a\xfe\xc0\x73\xcc\x30\xf9\x93\x0b\xf5\x44\xb5\x50\x3c\x4f\x21\xbd\x0e\x5a\x87\x71\xa5\x72\xf0\x74\x74\x69\xdf\x6d\xfa\x24\x08\x32\x6e\x96\xd5\xc2\x8f\x65\x11\x7c\xdf\x61\xa0\x30\x47\x46\xef\xb9\x44\xae\x44\x2e\x59\x12\xd4\xcc\x34\x4a\xde\x04\xf5\xc5\x3c\xb7\x1b\xdf\x20\xad\xf1\xe3\x1b\xa6\xfc\xec\x0f\x78\x06\xc3\x14\x78\x8f\x7f\xd4\x25\x77\x58\x34\x07\xa9\x38\x4c\x61\xf0\x16\xf7\x4d\x05\xb6\x4a\x6e\x38\xab\xd5\xe9\x79\x65\x95\xe7\xe0\x19\xe8\xae\xa7\xa3\xf3\x71\x34\x9b\x7e\xdb\x04\x6d\x91\x7b\x8d\x9a\x4e\xba\xeb\x59\x78\xbe\x01\xbf\xf6\x50\xca\x92\x9a\x47\x42\x99\xf8\xde\x65\x48\xf5\xfe\xaa\x97\x68\x87\xa6\xff\x77\x17\xcc\x7f\xb8\x5f\x9a\x6e\xb3\x8d\xbf\x6d\x3b\xb4\x98\xc5\xb9\xac\x92\x16\xbe\xe7\xd5\x27\xfa\x2f\x58\xfa\x13\x66\xe8\xfb\x65\xaf\xcd\x24\xc4\x32\x41\x67\xc1\x45\x43\x0c\x99\x44\xd3\xa1\x85\xfc\xe5\xb3\x75\xe7\xbc\x21\x75\x6e\xc0\x7b\x00\x8a\x49\x7d\xb7\x8e\x5e\x7f\xfd\x56\x2f\x6c\x9f\xb3\x9b\x93\x20\x93\x81\x56\x71\x70\xff\x49\xfb\x5c\x06\xf7\xdb\x1f\x58\x27\xbf\xc1\x3f\xb7\xa2\xca\x24\xbd\xc3\x4f\xba\xeb\xf3\xc9\x65\x78\x7d\x3e\x6f\xc5\xbb\x67\xb2\xfd\xe9\x06\x5e\x0c\xee\x6e\x7e\x5b\x3f\x09\x7c\x37\x56\x40\x4f\xa3\xa0\x16\x42\xd0\x5d\x47\xd3\xe1\xfc\x6c\x3c\xdd\xd0\x13\xfa\xb5\xa3\xe1\xf9\x64\x3e\xba\x0e\x4f\x2f\x47\x67\x83\x77\x70\x3e\x09\xa7\x57\x03\x02\x16\x4e\xaf\x36\x76\x68\x6f\x1e\xfa\xb3\x21\x0a\x1b\x35\x33\xf0\xb8\xd0\x86\xe5\xb9\xae\xd2\x94\x3f\x42\x9c\x49\xf0\xbc\x3c\x49\x73\x96\x69\xf8\xc9\x5b\xfd\x44\x3f\x02\xb6\x54\xd5\x30\x36\xe0\x07\xbb\xa7\x7e\x3d\xd5\x77\xf7\xf2\xa8\x97\x3c\x35\x8e\x83\x0f\x2c\xb7\x7b\xa3\x8b\x0d\xb8\xdd\x2f\xae\xf3\xef\x00\x00\x00\xff\xff\x71\x44\x48\xda\xcc\x0e\x00\x00") + +func testImagesImageUtilShBytes() ([]byte, error) { + return bindataRead( + _testImagesImageUtilSh, + "test/images/image-util.sh", + ) +} + +func testImagesImageUtilSh() (*asset, error) { + bytes, err := testImagesImageUtilShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/image-util.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesIperfBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\x4f\x2e\xd2\xcb\xcc\xd7\x4f\xcf\xcf\x4f\xcf\x49\x8d\x4f\xce\xcf\x2b\x49\xcc\xcc\x4b\x2d\x2a\xd6\x2f\x4d\x2a\xcd\x2b\x29\xd5\x2d\xce\xc9\xcc\xb5\x32\xd0\x33\x34\xe2\x4a\x2c\xca\x25\x4a\xb5\x6e\x62\x11\x42\x07\x91\x36\xe8\x82\x95\x42\x74\x15\x14\x24\x9b\x99\xe4\xa4\x12\xa7\x0f\xaa\x18\xa2\x13\x10\x00\x00\xff\xff\xc3\x84\xdc\xda\xd2\x00\x00\x00") + +func testImagesIperfBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesIperfBaseimage, + "test/images/iperf/BASEIMAGE", + ) +} + +func testImagesIperfBaseimage() (*asset, error) { + bytes, err := testImagesIperfBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/iperf/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesIperfDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x51\x4f\xdc\x3a\x10\x85\xdf\xfd\x2b\x8e\x36\x12\xba\xf7\x6a\xb3\xe1\xf2\xd0\x87\xf6\x29\x2c\x4b\x89\x80\x4d\xbb\xd9\x2d\x42\xaa\x84\x9c\x64\x36\x19\xc9\xb1\x8d\xed\x10\xf6\xdf\x57\x09\x4b\x01\xb5\x7e\x9b\x33\x67\x8e\x3f\x8f\x23\x2c\x8d\x3d\x38\x6e\xda\x80\xb3\xd3\xff\x3f\x61\xdb\x12\xae\xfb\x92\x9c\xa6\x40\x1e\x69\x1f\x5a\xe3\xfc\x42\x44\x22\xc2\x0d\x57\xa4\x3d\xd5\xe8\x75\x4d\x0e\xa1\x25\xa4\x56\x56\x2d\xbd\x76\xe6\xf8\x41\xce\xb3\xd1\x38\x5b\x9c\xe2\x9f\xd1\x30\x3b\xb6\x66\xff\x7e\x11\x11\x0e\xa6\x47\x27\x0f\xd0\x26\xa0\xf7\x84\xd0\xb2\xc7\x9e\x15\x81\x9e\x2b\xb2\x01\xac\x51\x99\xce\x2a\x96\xba\x22\x0c\x1c\xda\xe9\x9a\x63\xc8\x42\x44\xb8\x3f\x46\x98\x32\x48\xd6\x90\xa8\x8c\x3d\xc0\xec\xdf\xfb\x20\xc3\x04\x3c\x9e\x36\x04\xfb\x39\x49\x86\x61\x58\xc8\x09\x76\x61\x5c\x93\xa8\x17\xa3\x4f\x6e\xb2\xe5\x6a\x5d\xac\xe2\xb3\xc5\xe9\x34\xb2\xd3\x8a\xbc\x87\xa3\xc7\x9e\x1d\xd5\x28\x0f\x90\xd6\x2a\xae\x64\xa9\x08\x4a\x0e\x30\x0e\xb2\x71\x44\x35\x82\x19\x79\x07\xc7\x81\x75\x33\x87\x37\xfb\x30\x48\x47\x22\x42\xcd\x3e\x38\x2e\xfb\xf0\x61\x59\xaf\x74\xec\x3f\x18\x8c\x86\xd4\x98\xa5\x05\xb2\x62\x86\xf3\xb4\xc8\x8a\xb9\x88\x70\x97\x6d\xaf\xf2\xdd\x16\x77\xe9\x66\x93\xae\xb7\xd9\xaa\x40\xbe\xc1\x32\x5f\x5f\x64\xdb\x2c\x5f\x17\xc8\x2f\x91\xae\xef\x71\x9d\xad\x2f\xe6\x20\x0e\x2d\x39\xd0\xb3\x75\x23\xbf\x71\xe0\x71\x8d\x54\x8f\x3b\x2b\x88\x3e\x00\xec\xcd\x0b\x90\xb7\x54\xf1\x9e\x2b\x28\xa9\x9b\x5e\x36\x84\xc6\x3c\x91\xd3\xac\x1b\x58\x72\x1d\xfb\xf1\x33\x3d\xa4\xae\x45\x04\xc5\x1d\x07\x19\x26\xe5\x8f\x47\x2d\x84\xb8\xdc\xe4\xb7\x23\xfe\x2a\xbb\x4d\xbf\xae\x84\x58\x6e\xf2\xa2\x78\x38\xdf\x65\x37\x17\x0f\xcb\xfc\xdb\x3d\x1e\xa9\xeb\xe3\xef\xab\xdb\x5d\xba\x59\x5e\xc5\x7e\xcc\xaa\x90\xf4\xde\x25\x25\xeb\x44\x88\xcd\x6e\x0d\x69\x43\xdc\x50\x40\x6f\x6b\x19\x08\x27\x27\xbf\x15\xd6\x3e\x48\xa5\x10\x1f\x10\xc7\xda\xc4\xc7\x3a\x76\x54\x99\xae\x23\x5d\x7b\xb0\x25\xb7\x47\x29\x7d\x8b\x9f\x02\xef\x87\x2b\x45\x52\x8f\xa3\x47\xdd\x75\x88\xdd\x1e\xc9\x93\x74\x89\xe2\x32\x91\x36\x24\x8a\x7d\xf0\xc9\x7f\xaf\x16\xa5\x11\xfb\x37\xbc\x97\xec\xa9\x54\xa6\x92\xea\x4d\x9c\xb8\x95\x47\x2c\x55\x70\xed\xdf\x2d\xbf\x02\x00\x00\xff\xff\x49\x10\xa2\x30\x68\x03\x00\x00") + +func testImagesIperfDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesIperfDockerfile, + "test/images/iperf/Dockerfile", + ) +} + +func testImagesIperfDockerfile() (*asset, error) { + bytes, err := testImagesIperfDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/iperf/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesIperfVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesIperfVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesIperfVersion, + "test/images/iperf/VERSION", + ) +} + +func testImagesIperfVersion() (*asset, error) { + bytes, err := testImagesIperfVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/iperf/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesJessieDnsutilsBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\x49\x4d\xca\x4c\xcc\xb3\xca\x4a\x2d\x2e\xce\x4c\xe5\x4a\x2c\xca\xb5\x4d\x2c\xca\x35\x36\x2a\x33\xd7\xc7\x90\x31\x33\xb1\x05\x93\x65\x16\x68\x72\x05\x05\xc9\x66\x26\x39\xa9\xb6\x50\x1a\x4d\x16\x10\x00\x00\xff\xff\xef\xf0\x59\x96\x68\x00\x00\x00") + +func testImagesJessieDnsutilsBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesJessieDnsutilsBaseimage, + "test/images/jessie-dnsutils/BASEIMAGE", + ) +} + +func testImagesJessieDnsutilsBaseimage() (*asset, error) { + bytes, err := testImagesJessieDnsutilsBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/jessie-dnsutils/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesJessieDnsutilsDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x4f\xdb\x30\x14\x85\xdf\xfd\x2b\x8e\x1a\x09\x6d\x52\x9b\x30\x1e\xf6\xb0\x3d\x85\x52\x46\x04\x24\x5b\xd2\x0e\x21\x4d\x42\x6e\x72\x9b\x5c\x29\xb5\x8d\x7d\xb3\xd0\x7f\x3f\xa5\x80\xb4\x0a\x3f\xfa\x1c\x1f\x7f\xf7\xdc\x08\x4b\xeb\x0e\x9e\xdb\x4e\x70\x71\xfe\xe5\x2b\xd6\x1d\xe1\x76\xd8\x92\x37\x24\x14\x90\x0e\xd2\x59\x1f\x62\x15\xa9\x08\x77\x5c\x93\x09\xd4\x60\x30\x0d\x79\x48\x47\x48\x9d\xae\x3b\x7a\x57\xe6\xf8\x4d\x3e\xb0\x35\xb8\x88\xcf\xf1\x69\x32\xcc\xde\xa4\xd9\xe7\xef\x2a\xc2\xc1\x0e\xd8\xeb\x03\x8c\x15\x0c\x81\x20\x1d\x07\xec\xb8\x27\xd0\x4b\x4d\x4e\xc0\x06\xb5\xdd\xbb\x9e\xb5\xa9\x09\x23\x4b\x77\xfc\xe6\x2d\x24\x56\x11\x1e\xdf\x22\xec\x56\x34\x1b\x68\xd4\xd6\x1d\x60\x77\xff\xfb\xa0\xe5\x08\x3c\x9d\x4e\xc4\x7d\x4b\x92\x71\x1c\x63\x7d\x84\x8d\xad\x6f\x93\xfe\xd5\x18\x92\xbb\x6c\xb9\xca\xab\xd5\xe2\x22\x3e\x3f\x3e\xd9\x98\x9e\x42\x80\xa7\xe7\x81\x3d\x35\xd8\x1e\xa0\x9d\xeb\xb9\xd6\xdb\x9e\xd0\xeb\x11\xd6\x43\xb7\x9e\xa8\x81\xd8\x89\x77\xf4\x2c\x6c\xda\x39\x82\xdd\xc9\xa8\x3d\xa9\x08\x0d\x07\xf1\xbc\x1d\xe4\xa4\xac\x77\x3a\x0e\x27\x06\x6b\xa0\x0d\x66\x69\x85\xac\x9a\xe1\x32\xad\xb2\x6a\xae\x22\x3c\x64\xeb\x9b\x62\xb3\xc6\x43\x5a\x96\x69\xbe\xce\x56\x15\x8a\x12\xcb\x22\xbf\xca\xd6\x59\x91\x57\x28\xae\x91\xe6\x8f\xb8\xcd\xf2\xab\x39\x88\xa5\x23\x0f\x7a\x71\x7e\xe2\xb7\x1e\x3c\xd5\x48\xcd\xd4\x59\x45\x74\x02\xb0\xb3\xaf\x40\xc1\x51\xcd\x3b\xae\xd1\x6b\xd3\x0e\xba\x25\xb4\xf6\x2f\x79\xc3\xa6\x85\x23\xbf\xe7\x30\x2d\x33\x40\x9b\x46\x45\xe8\x79\xcf\xa2\xe5\x78\xf3\x61\xa8\x58\xa9\xeb\xb2\xb8\x9f\xf0\x57\xd9\x7d\xfa\x63\xa5\xd4\xb2\x2c\xaa\xea\xe9\x72\x93\xdd\x5d\x3d\x2d\x8b\x9f\x8f\x78\xa6\xfd\xb0\xf8\xb5\xba\xdf\xa4\xe5\xf2\x66\x11\xa6\xac\x1a\xc9\x10\x7c\xb2\x65\x93\x28\x55\x6e\x72\x68\x27\x8b\x96\x04\x8b\x67\x0c\xae\xd1\x42\x38\x3b\xc3\x1f\x35\x6d\xf2\x5d\x62\x13\x44\xf7\x3d\x16\x07\x34\x26\x0c\xc2\x7d\xf8\x68\xaa\x7b\xd2\x46\xfd\x0b\x00\x00\xff\xff\x39\xa5\x3d\xf7\xdf\x02\x00\x00") + +func testImagesJessieDnsutilsDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesJessieDnsutilsDockerfile, + "test/images/jessie-dnsutils/Dockerfile", + ) +} + +func testImagesJessieDnsutilsDockerfile() (*asset, error) { + bytes, err := testImagesJessieDnsutilsDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/jessie-dnsutils/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesJessieDnsutilsVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesJessieDnsutilsVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesJessieDnsutilsVersion, + "test/images/jessie-dnsutils/VERSION", + ) +} + +func testImagesJessieDnsutilsVersion() (*asset, error) { + bytes, err := testImagesJessieDnsutilsVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/jessie-dnsutils/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesKittenBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\xcd\x5d\x0a\x42\x21\x10\xc5\xf1\xf7\xf6\x32\xf7\x5a\x89\x50\xd0\x62\xd4\x0e\x22\x35\x25\x33\xf6\xb1\xfc\x68\xa8\x05\xe8\xdb\x79\xf9\xfd\x4f\xe4\x73\xf0\xa7\x92\x65\xa9\xf7\xf5\xf2\x48\x90\x1b\x3a\x94\xb0\x03\x75\x68\xa7\xca\xb1\x40\x57\xdb\x2f\x24\x85\x3c\x21\x64\xec\xb8\x5d\xdc\x26\x0a\x4f\x70\xe1\x3f\x9e\x7a\xff\x32\x0b\xb4\x96\x83\xbf\x62\x3c\xf1\x83\x16\xd1\xfd\xc1\xbd\xc7\x13\xc6\x2c\xf0\x09\x00\x00\xff\xff\xcf\x73\x31\xc1\x45\x01\x00\x00") + +func testImagesKittenBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesKittenBaseimage, + "test/images/kitten/BASEIMAGE", + ) +} + +func testImagesKittenBaseimage() (*asset, error) { + bytes, err := testImagesKittenBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/kitten/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesKittenDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x73\xd3\x30\x14\x84\xef\xfa\x15\x3b\xf1\x05\x66\x82\x13\x72\xe0\x00\x27\x93\xa6\xe0\x69\x6b\x33\x71\x4a\x27\x47\xc5\x7e\xb1\x5f\x51\x24\x21\x3d\xe3\xe6\xdf\x33\x4e\x53\x68\xa6\x3a\xbd\xd1\xae\x56\x9f\x56\x09\x96\xce\x1f\x03\xb7\x9d\x60\x31\xff\xf8\x09\x9b\x8e\x70\xd3\xef\x28\x58\x12\x8a\xc8\x7a\xe9\x5c\x88\xa9\x4a\x54\x82\x5b\xae\xc9\x46\x6a\xd0\xdb\x86\x02\xa4\x23\x64\x5e\xd7\x1d\xbd\x28\x53\xfc\xa4\x10\xd9\x59\x2c\xd2\x39\xde\x8d\x86\xc9\x59\x9a\xbc\xff\xa2\x12\x1c\x5d\x8f\x83\x3e\xc2\x3a\x41\x1f\x09\xd2\x71\xc4\x9e\x0d\x81\x9e\x6a\xf2\x02\xb6\xa8\xdd\xc1\x1b\xd6\xb6\x26\x0c\x2c\xdd\xe9\x9a\x73\x48\xaa\x12\x6c\xcf\x11\x6e\x27\x9a\x2d\x34\x6a\xe7\x8f\x70\xfb\xd7\x3e\x68\x39\x01\x8f\xab\x13\xf1\x9f\x67\xb3\x61\x18\x52\x7d\x82\x4d\x5d\x68\x67\xe6\xd9\x18\x67\xb7\xf9\x72\x55\x54\xab\x0f\x8b\x74\x7e\x3a\x72\x6f\x0d\xc5\x88\x40\xbf\x7b\x0e\xd4\x60\x77\x84\xf6\xde\x70\xad\x77\x86\x60\xf4\x00\x17\xa0\xdb\x40\xd4\x40\xdc\xc8\x3b\x04\x16\xb6\xed\x14\xd1\xed\x65\xd0\x81\x54\x82\x86\xa3\x04\xde\xf5\x72\x51\xd6\x0b\x1d\xc7\x0b\x83\xb3\xd0\x16\x93\xac\x42\x5e\x4d\xf0\x35\xab\xf2\x6a\xaa\x12\x3c\xe4\x9b\xef\xe5\xfd\x06\x0f\xd9\x7a\x9d\x15\x9b\x7c\x55\xa1\x5c\x63\x59\x16\x57\xf9\x26\x2f\x8b\x0a\xe5\x35\xb2\x62\x8b\x9b\xbc\xb8\x9a\x82\x58\x3a\x0a\xa0\x27\x1f\x46\x7e\x17\xc0\x63\x8d\xd4\x8c\x9d\x55\x44\x17\x00\x7b\xf7\x0c\x14\x3d\xd5\xbc\xe7\x1a\x46\xdb\xb6\xd7\x2d\xa1\x75\x7f\x28\x58\xb6\x2d\x3c\x85\x03\xc7\xf1\x33\x23\xb4\x6d\x54\x02\xc3\x07\x16\x2d\xa7\x9d\x37\x8f\x4a\x95\xba\x5e\x97\x77\x23\xfe\x2a\xbf\xcb\xbe\xad\xd4\xb2\xfc\xb1\x45\x27\x07\x33\xfb\xc5\x22\x64\xd3\x47\xdf\xe2\xff\xf8\x4a\x6f\xb4\xe8\xf4\x31\x3a\x8b\x7f\x93\xfa\x1b\x00\x00\xff\xff\x3d\x50\x58\xd6\x99\x02\x00\x00") + +func testImagesKittenDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesKittenDockerfile, + "test/images/kitten/Dockerfile", + ) +} + +func testImagesKittenDockerfile() (*asset, error) { + bytes, err := testImagesKittenDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/kitten/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesKittenVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesKittenVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesKittenVersion, + "test/images/kitten/VERSION", + ) +} + +func testImagesKittenVersion() (*asset, error) { + bytes, err := testImagesKittenVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/kitten/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesKittenHtmlDataJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xe6\x52\x50\x50\xca\xcc\x4d\x4c\x4f\x55\xb2\x52\x50\xca\xce\x2c\x29\x49\xcd\xd3\xcb\x2a\x48\x57\xe2\xaa\xe5\x02\x04\x00\x00\xff\xff\x27\x07\xd0\xf9\x1c\x00\x00\x00") + +func testImagesKittenHtmlDataJsonBytes() ([]byte, error) { + return bindataRead( + _testImagesKittenHtmlDataJson, + "test/images/kitten/html/data.json", + ) +} + +func testImagesKittenHtmlDataJson() (*asset, error) { + bytes, err := testImagesKittenHtmlDataJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/kitten/html/data.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesLivenessBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xdb\x8a\x83\x30\x10\x86\xef\xf3\x14\x21\x57\xb5\xec\xd6\x7b\xa1\xb0\xef\x21\x12\x26\x3a\x0e\xc3\x4e\x1d\x49\x54\x68\x9f\x7e\xb1\x71\x0f\x2e\xc5\xcb\xfc\x87\x8f\x3f\x33\x42\xfb\x09\x84\xa7\x0e\x7b\x98\x65\xf2\x0b\x27\x0e\x2c\x3c\xdd\xed\xd5\xd6\xae\x2c\x7f\x85\x6a\x9c\x83\x70\xeb\x9a\xc2\x18\x51\xe8\x4e\xc6\x5a\x6b\xdd\x07\xab\x0f\xf0\x40\xf1\x71\x16\x4c\x9e\xb4\x2c\x49\xab\x0e\xfb\x4b\x78\x88\x7b\xcb\x29\x52\x1f\x78\x80\x78\xff\x23\x08\x87\x98\x95\xc2\x98\x9f\x40\xc6\x0e\x70\x43\x7b\xb5\x4e\x78\xc1\x01\x53\xda\x6a\x5b\x65\x75\x2a\x52\xff\xbd\xfa\x3f\x69\x7b\xef\x51\x2f\xf3\x6b\x20\xc5\x36\x3d\x7f\x9b\x30\x2e\x18\x2f\xa4\xae\x79\x92\x7a\x16\xa4\xa8\xf3\xb8\x07\x6d\x37\x7b\x5f\x7b\x7b\x04\x89\x86\x53\xed\xce\x67\xd7\x14\xd9\x98\x80\x32\x1b\xe6\x49\x6f\x30\x00\x61\xb7\xd2\x57\xef\xf0\xd6\x91\x17\x98\xf0\x78\x08\x88\xbc\x18\x51\xbb\x6a\xb7\xb0\x39\x5e\x52\x98\xaf\x00\x00\x00\xff\xff\x3b\xcb\x78\xfd\x04\x02\x00\x00") + +func testImagesLivenessBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesLivenessBuild, + "test/images/liveness/BUILD", + ) +} + +func testImagesLivenessBuild() (*asset, error) { + bytes, err := testImagesLivenessBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/liveness/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesLivenessDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x8f\xda\x30\x10\x85\xef\xfe\x15\x4f\xe4\xd2\x4a\x34\x6c\x39\xf4\xd0\x9e\x52\x96\x55\xa3\xdd\x26\x15\x61\xbb\xe2\x68\x92\x21\x19\x29\xd8\xee\x78\x42\x96\x7f\x5f\x85\x65\xa5\xa2\xfa\xe8\xf9\xfc\xfc\xf9\x39\xc1\xca\x87\xb3\x70\xdb\x29\x96\x77\x9f\xbf\x60\xdb\x11\x1e\x87\x3d\x89\x23\xa5\x88\x6c\xd0\xce\x4b\x4c\x4d\x62\x12\x3c\x71\x4d\x2e\x52\x83\xc1\x35\x24\xd0\x8e\x90\x05\x5b\x77\xf4\x3e\x99\xe3\x37\x49\x64\xef\xb0\x4c\xef\xf0\x61\x02\x66\xd7\xd1\xec\xe3\x37\x93\xe0\xec\x07\x1c\xed\x19\xce\x2b\x86\x48\xd0\x8e\x23\x0e\xdc\x13\xe8\xb5\xa6\xa0\x60\x87\xda\x1f\x43\xcf\xd6\xd5\x84\x91\xb5\xbb\x5c\x73\x0d\x49\x4d\x82\xdd\x35\xc2\xef\xd5\xb2\x83\x45\xed\xc3\x19\xfe\xf0\x2f\x07\xab\x17\xe1\x69\x75\xaa\xe1\xeb\x62\x31\x8e\x63\x6a\x2f\xb2\xa9\x97\x76\xd1\xbf\x81\x71\xf1\x94\xaf\xd6\x45\xb5\xfe\xb4\x4c\xef\x2e\x47\x9e\x5d\x4f\x31\x42\xe8\xcf\xc0\x42\x0d\xf6\x67\xd8\x10\x7a\xae\xed\xbe\x27\xf4\x76\x84\x17\xd8\x56\x88\x1a\xa8\x9f\x7c\x47\x61\x65\xd7\xce\x11\xfd\x41\x47\x2b\x64\x12\x34\x1c\x55\x78\x3f\xe8\x4d\x59\xef\x76\x1c\x6f\x00\xef\x60\x1d\x66\x59\x85\xbc\x9a\xe1\x7b\x56\xe5\xd5\xdc\x24\x78\xc9\xb7\x3f\xca\xe7\x2d\x5e\xb2\xcd\x26\x2b\xb6\xf9\xba\x42\xb9\xc1\xaa\x2c\xee\xf3\x6d\x5e\x16\x15\xca\x07\x64\xc5\x0e\x8f\x79\x71\x3f\x07\xb1\x76\x24\xa0\xd7\x20\x93\xbf\x17\xf0\x54\x23\x35\x53\x67\x15\xd1\x8d\xc0\xc1\xbf\x09\xc5\x40\x35\x1f\xb8\x46\x6f\x5d\x3b\xd8\x96\xd0\xfa\x13\x89\x63\xd7\x22\x90\x1c\x39\x4e\x9f\x19\x61\x5d\x63\x12\xf4\x7c\x64\xb5\x7a\xd9\xf9\xef\x51\xa9\x31\x0f\x9b\xf2\x27\x62\x2d\x56\xeb\xce\x98\x55\xf9\x6b\x87\x9e\x4f\xe4\x26\x9f\x45\x24\x39\x91\x98\xbf\x01\x00\x00\xff\xff\xd3\x90\x91\xcc\x70\x02\x00\x00") + +func testImagesLivenessDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesLivenessDockerfile, + "test/images/liveness/Dockerfile", + ) +} + +func testImagesLivenessDockerfile() (*asset, error) { + bytes, err := testImagesLivenessDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/liveness/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesLivenessMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x4f\xdb\x30\x14\x85\x9f\xe7\x5f\x71\xd4\xf0\xd0\x4a\x25\x65\x68\xe2\x81\x09\x4d\x59\xdb\x41\x04\x4a\xa6\x24\x80\x78\x42\x4e\x72\x9b\x5c\xc9\xb5\x33\xdb\x21\xf4\xdf\x4f\x2e\x20\x0d\xcd\x6f\xbe\xe7\xf8\xf8\xf3\x71\x84\xb5\x19\x0e\x96\xbb\xde\xe3\xfc\xec\xeb\x05\xaa\x9e\x70\x3b\xd6\x64\x35\x79\x72\x48\x46\xdf\x1b\xeb\x62\x11\x89\x08\x77\xdc\x90\x76\xd4\x62\xd4\x2d\x59\xf8\x9e\x90\x0c\xb2\xe9\xe9\x43\x59\xe2\x81\xac\x63\xa3\x71\x1e\x9f\x61\x1e\x0c\xb3\x77\x69\xb6\xf8\x2e\x22\x1c\xcc\x88\xbd\x3c\x40\x1b\x8f\xd1\x11\x7c\xcf\x0e\x3b\x56\x04\x7a\x6d\x68\xf0\x60\x8d\xc6\xec\x07\xc5\x52\x37\x84\x89\x7d\x7f\xbc\xe6\x3d\x24\x16\x11\x9e\xde\x23\x4c\xed\x25\x6b\x48\x34\x66\x38\xc0\xec\xfe\xf5\x41\xfa\x23\x70\x58\xbd\xf7\xc3\xe5\x6a\x35\x4d\x53\x2c\x8f\xb0\xb1\xb1\xdd\x4a\xbd\x19\xdd\xea\x2e\x5d\x6f\xb3\x72\x7b\x7a\x1e\x9f\x1d\x8f\xdc\x6b\x45\xce\xc1\xd2\x9f\x91\x2d\xb5\xa8\x0f\x90\xc3\xa0\xb8\x91\xb5\x22\x28\x39\xc1\x58\xc8\xce\x12\xb5\xf0\x26\xf0\x4e\x96\x3d\xeb\x6e\x09\x67\x76\x7e\x92\x96\x44\x84\x96\x9d\xb7\x5c\x8f\xfe\x53\x59\x1f\x74\xec\x3e\x19\x8c\x86\xd4\x98\x25\x25\xd2\x72\x86\x9f\x49\x99\x96\x4b\x11\xe1\x31\xad\x6e\xf2\xfb\x0a\x8f\x49\x51\x24\x59\x95\x6e\x4b\xe4\x05\xd6\x79\xb6\x49\xab\x34\xcf\x4a\xe4\xbf\x90\x64\x4f\xb8\x4d\xb3\xcd\x12\xc4\xbe\x27\x0b\x7a\x1d\x6c\xe0\x37\x16\x1c\x6a\xa4\x36\x74\x56\x12\x7d\x02\xd8\x99\x37\x20\x37\x50\xc3\x3b\x6e\xa0\xa4\xee\x46\xd9\x11\x3a\xf3\x42\x56\xb3\xee\x30\x90\xdd\xb3\x0b\x9f\xe9\x20\x75\x2b\x22\x28\xde\xb3\x97\xfe\x38\xf9\xef\x51\xb1\x10\x65\xb1\x2e\x71\x05\xc5\x2f\xa4\xc9\x39\x91\x14\xeb\x1b\xfc\xb8\x82\xdc\xb7\x17\xdf\x44\x95\x14\xd7\xdb\x2a\xec\x4f\xe6\xeb\xfb\x62\x93\x16\x0b\x71\x9d\xdf\x25\xd9\xf5\xf3\xc3\xb6\x28\xd3\x3c\x0b\x9a\x92\x9e\x9c\x0f\x51\xcf\x9b\xb4\x40\x30\x6b\xe3\x5b\xb6\x38\x99\xbb\x9e\x94\xc2\x30\xb5\x8b\x85\xa0\xd7\xc1\x58\x2f\x44\xcd\xfa\x52\x7c\x89\xe3\x15\xef\x65\x47\xa7\xa3\x67\x15\xbb\x1e\x35\x6b\x9c\xcc\x03\xd0\x42\x88\xf8\xf7\x4d\x9e\x3d\x5d\x86\xa1\xf8\x1b\x00\x00\xff\xff\x65\x4d\x13\x20\xf0\x02\x00\x00") + +func testImagesLivenessMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesLivenessMakefile, + "test/images/liveness/Makefile", + ) +} + +func testImagesLivenessMakefile() (*asset, error) { + bytes, err := testImagesLivenessMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/liveness/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesLivenessVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesLivenessVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesLivenessVersion, + "test/images/liveness/VERSION", + ) +} + +func testImagesLivenessVersion() (*asset, error) { + bytes, err := testImagesLivenessVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/liveness/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesLivenessServerGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\x5d\x6b\xe3\x46\x17\xbe\xd6\xfc\x8a\x07\xc1\x0b\x52\xf0\x3b\xf2\x9a\x16\x96\x94\x16\xdc\x6c\x42\xcc\x06\x1b\x22\x6f\xc3\x52\x7a\x31\x96\x8e\xa4\x61\x47\x33\xda\x99\xa3\x28\x6e\xc9\x7f\x2f\x23\x3b\x74\xb3\xcd\x55\xaf\xf4\x71\x9e\xf3\x7c\x9c\x73\x8a\x0b\x71\xe5\x86\xa3\xd7\x6d\xc7\x58\x2d\xdf\xfd\x80\x7d\x47\xf8\x38\x1e\xc8\x5b\x62\x0a\x58\x8f\xdc\x39\x1f\xa4\x10\x77\xba\x22\x1b\xa8\xc6\x68\x6b\xf2\xe0\x8e\xb0\x1e\x54\xd5\x11\xce\x95\x05\x7e\x23\x1f\xb4\xb3\x58\xc9\x25\xb2\x08\x48\xcf\xa5\x34\xff\x49\x1c\xdd\x88\x5e\x1d\x61\x1d\x63\x0c\x04\xee\x74\x40\xa3\x0d\x81\x9e\x2a\x1a\x18\xda\xa2\x72\xfd\x60\xb4\xb2\x15\x61\xd2\xdc\xcd\x22\x67\x0a\x29\x3e\x9f\x09\xdc\x81\x95\xb6\x50\xa8\xdc\x70\x84\x6b\xbe\x45\x41\xb1\x10\x00\xd0\x31\x0f\x97\x45\x31\x4d\x93\x54\xb3\x4b\xe9\x7c\x5b\x98\x13\x2a\x14\x77\x9b\xab\xeb\x6d\x79\xfd\xff\x95\x5c\x0a\xf1\xc9\x1a\x0a\x01\x9e\xbe\x8e\xda\x53\x8d\xc3\x11\x6a\x18\x8c\xae\xd4\xc1\x10\x8c\x9a\xe0\x3c\x54\xeb\x89\x6a\xb0\x8b\x3e\x27\xaf\x59\xdb\x76\x81\xe0\x1a\x9e\x94\x27\x51\xeb\xc0\x5e\x1f\x46\x7e\x35\xa0\x17\x57\x3a\xe0\x5b\x80\xb3\x50\x16\xe9\xba\xc4\xa6\x4c\xf1\xeb\xba\xdc\x94\x0b\xf1\xb0\xd9\xdf\xee\x3e\xed\xf1\xb0\xbe\xbf\x5f\x6f\xf7\x9b\xeb\x12\xbb\x7b\x5c\xed\xb6\x1f\x36\xfb\xcd\x6e\x5b\x62\x77\x83\xf5\xf6\x33\x3e\x6e\xb6\x1f\x16\x20\xcd\x1d\x79\xd0\xd3\xe0\xa3\x77\xe7\xa1\xe3\xe8\xa8\x96\xa2\x24\x7a\x25\xde\xb8\x93\x99\x30\x50\xa5\x1b\x5d\xc1\x28\xdb\x8e\xaa\x25\xb4\xee\x91\xbc\xd5\xb6\xc5\x40\xbe\xd7\x21\x2e\x2f\x40\xd9\x5a\x18\xdd\x6b\x56\x3c\x7f\xff\x2b\x8e\x14\x17\x85\x10\x45\x81\x35\x42\x54\x25\x04\xf2\x8f\x33\x46\x71\xcc\xaa\x8c\x7e\x3c\xe9\xbe\x5b\x22\x50\xe5\x6c\x1d\x16\x91\xc1\xc2\xd3\xe0\x3c\x47\xd2\x8e\x94\xe1\xee\x18\x61\x91\x2b\xf2\x7b\x0a\x1c\x17\xaa\x39\x20\xeb\xdc\x40\xcd\x68\xcc\x31\x47\xe8\x9c\x67\xd0\x93\x0e\x4c\xb6\x22\x29\x06\x55\x7d\x89\x01\x7a\xa5\xad\x10\xba\x8f\x9c\xc8\x44\x92\x36\x3d\xa7\x22\x49\x8d\x6b\xe3\xc3\x12\x17\xf1\x10\xe2\x3b\xeb\x9e\x52\x91\x0b\xd1\x8c\xb6\x9a\x1b\xb3\x1c\x7f\x89\x24\xb0\xf2\x71\x27\x97\x3f\x23\x42\xe4\xd6\x4d\x59\x2e\x92\xd8\x26\x6f\x95\xad\x0d\xdd\x8c\xb6\xca\xd2\xe2\x0c\x4c\x17\x88\x0c\xd9\x34\x9f\x98\xbc\xa7\x30\x38\x1b\xe8\xc1\x6b\x26\xbf\x80\xc7\xc5\xf9\xff\xd7\x91\x02\xcf\x12\xc9\x24\xe7\xf2\x2d\xa9\x9a\x7c\xb6\x5a\x2e\x73\x91\x24\xb5\x62\x15\x55\xb3\x7f\x64\x65\x39\x1e\xb2\xb3\x4e\x9e\xcb\x92\xbd\xb6\x6d\x74\xf3\xc2\x90\xfd\xfe\xc7\xe1\xc8\x94\xc5\xde\x3c\x17\xc9\xf3\x9b\x4e\x4f\x93\xfd\xf3\xbf\x38\xad\x47\x3f\x6f\xfd\xf5\x38\x5e\xf9\x12\x49\xa2\x1b\xbc\x00\x65\x79\x5a\x6f\x96\xe3\x97\xb8\xed\x48\xf2\x5d\xde\x1f\x4f\x79\xbf\xcf\xd0\xf4\x2c\xcb\xc1\x6b\xcb\x4d\x96\x92\xf7\xce\x5f\xe2\x7f\x8f\xe9\xe2\x0d\xea\x3c\x66\x4d\x9e\x41\x26\xd0\x5b\x0a\xab\xb7\x15\x52\xf7\x25\x3d\x75\x9e\x26\x65\x5c\x2b\x6f\x14\x2b\x93\xcd\xc1\xef\xe6\x73\x5a\xdb\xba\x8c\xd7\x9b\xa5\x97\xef\x97\xef\x97\xe9\x02\x56\x9b\x3c\x17\xcf\xe2\xef\x00\x00\x00\xff\xff\xfa\xeb\xa3\xd6\x1c\x05\x00\x00") + +func testImagesLivenessServerGoBytes() ([]byte, error) { + return bindataRead( + _testImagesLivenessServerGo, + "test/images/liveness/server.go", + ) +} + +func testImagesLivenessServerGo() (*asset, error) { + bytes, err := testImagesLivenessServerGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/liveness/server.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesLogsGeneratorBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\x2a\x2d\xae\x4c\xca\xaf\xe0\x4a\x2c\xca\xb5\x4d\x2c\xca\x35\x36\x2a\x33\xd3\x47\x12\x33\x33\xb1\x05\x93\x65\x16\x70\xd1\x82\x82\x64\x33\x93\x9c\x54\x5b\x28\x0d\x17\x07\x04\x00\x00\xff\xff\xb3\x6b\xfb\x8a\x50\x00\x00\x00") + +func testImagesLogsGeneratorBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesLogsGeneratorBaseimage, + "test/images/logs-generator/BASEIMAGE", + ) +} + +func testImagesLogsGeneratorBaseimage() (*asset, error) { + bytes, err := testImagesLogsGeneratorBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/logs-generator/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesLogsGeneratorBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xcd\xaa\xe3\x30\x0c\x85\xf7\x79\x0a\xe3\x55\x53\xa6\xf1\x76\x08\x14\xe6\x3d\x4a\x08\x72\xa2\xaa\xa2\x8a\x15\x1c\xa7\xd0\x3e\xfd\x90\x9f\x76\x26\xf7\xf6\x76\x29\xe9\xe8\xe8\x7c\xd8\x3d\x34\x57\x20\xdc\xb5\x78\x86\x51\x52\x7d\xe3\x81\x3d\x0b\xa7\xbb\x39\x9a\x93\x75\xee\x5f\xa3\xec\x47\x2f\xdc\xd8\x2a\xcf\x32\x51\x68\x77\x99\x31\xc6\xd8\x3f\xac\xb5\x87\x07\x4a\x1d\x47\xc1\xa1\x26\x75\x8e\xb4\x6c\xf1\x5c\xf8\x87\xd8\x5f\x8b\x8a\xb4\xf6\x1c\x20\xde\xff\x6b\x08\xfb\xb8\x74\xf2\x2c\x7b\x09\x16\xdb\x00\x1d\x9a\xa3\xb1\xa2\x34\x1c\x08\x03\x46\x48\x1a\xd7\xe5\x75\x71\x9a\x97\xa4\xf5\x33\xfb\x57\xbf\xb5\xde\x1a\xbe\xd5\x4f\x82\x21\x36\xc3\xcc\x3c\x9d\xac\x5f\x27\x0b\x52\x5b\x2d\x8a\x16\xfb\x59\x31\x17\x33\x84\x73\x37\x0c\xad\x46\x47\x9c\x2e\xa3\x2f\x1a\xed\x1c\xa9\x40\x20\x47\xa2\xf4\x3e\xdc\xf7\xed\xeb\xef\xa1\x60\x75\xd0\x73\x07\xcd\x85\x03\xc6\xbb\xeb\xaf\xe4\xc6\xc4\xe2\x22\x84\xf6\x67\xa3\x6a\x86\x3d\xb3\x20\x45\x1d\xfb\x2d\xeb\xfa\xb8\x87\x09\x6d\x4b\x49\xa2\x7e\x77\xb2\xfb\xbd\xad\xf2\x65\x90\x80\x16\x7c\x18\x93\x76\x10\x80\xb0\x7d\x82\x7f\xfc\x14\x91\x6f\x90\xd0\x7e\x0c\x02\x22\x6f\x42\x9c\x6c\xb9\x49\x58\x7d\x4e\x92\x67\x7f\x03\x00\x00\xff\xff\xc1\xa7\x8f\x79\xad\x02\x00\x00") + +func testImagesLogsGeneratorBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesLogsGeneratorBuild, + "test/images/logs-generator/BUILD", + ) +} + +func testImagesLogsGeneratorBuild() (*asset, error) { + bytes, err := testImagesLogsGeneratorBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/logs-generator/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesLogsGeneratorDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x41\x6f\x9b\x30\x14\xc7\xef\xfe\x14\x7f\xc1\x0e\x9b\x14\x92\xb6\x87\x1d\x36\xed\xc0\x12\xda\xa1\xa6\x30\x01\x6d\x55\x4d\x53\xe5\xc0\x0b\x58\x72\x6c\x66\x3f\x46\xa3\xa9\xdf\x7d\x22\x4d\xa5\x75\xdd\x38\x20\xd9\xef\xe7\xe7\xdf\xfb\x3b\xc4\xd2\xf6\x7b\xa7\xda\x8e\x71\x76\x72\xfa\x1e\x55\x47\xb8\x1c\x36\xe4\x0c\x31\x79\xc4\x03\x77\xd6\xf9\xb9\x08\x45\x88\xb5\xaa\xc9\x78\x6a\x30\x98\x86\x1c\xb8\x23\xc4\xbd\xac\x3b\x7a\xae\xcc\x70\x43\xce\x2b\x6b\x70\x36\x3f\xc1\xdb\x09\x08\x8e\xa5\xe0\xdd\x47\x11\x62\x6f\x07\xec\xe4\x1e\xc6\x32\x06\x4f\xe0\x4e\x79\x6c\x95\x26\xd0\x43\x4d\x3d\x43\x19\xd4\x76\xd7\x6b\x25\x4d\x4d\x18\x15\x77\x87\x6b\x8e\x4d\xe6\x22\xc4\xdd\xb1\x85\xdd\xb0\x54\x06\x12\xb5\xed\xf7\xb0\xdb\x3f\x39\x48\x3e\x08\x4f\x5f\xc7\xdc\x7f\x58\x2c\xc6\x71\x9c\xcb\x83\xec\xdc\xba\x76\xa1\x9f\x40\xbf\x58\xa7\xcb\x24\x2b\x93\xe8\x6c\x7e\x72\x38\x72\x6d\x34\x79\x0f\x47\x3f\x06\xe5\xa8\xc1\x66\x0f\xd9\xf7\x5a\xd5\x72\xa3\x09\x5a\x8e\xb0\x0e\xb2\x75\x44\x0d\xd8\x4e\xbe\xa3\x53\xac\x4c\x3b\x83\xb7\x5b\x1e\xa5\x23\x11\xa2\x51\x9e\x9d\xda\x0c\xfc\x22\xac\x67\x3b\xe5\x5f\x00\xd6\x40\x1a\x04\x71\x89\xb4\x0c\xf0\x39\x2e\xd3\x72\x26\x42\xdc\xa6\xd5\x97\xfc\xba\xc2\x6d\x5c\x14\x71\x56\xa5\x49\x89\xbc\xc0\x32\xcf\x56\x69\x95\xe6\x59\x89\xfc\x1c\x71\x76\x87\xcb\x34\x5b\xcd\x40\x8a\x3b\x72\xa0\x87\xde\x4d\xfe\xd6\x41\x4d\x31\x52\x33\x65\x56\x12\xbd\x10\xd8\xda\x27\x21\xdf\x53\xad\xb6\xaa\x86\x96\xa6\x1d\x64\x4b\x68\xed\x4f\x72\x46\x99\x16\x3d\xb9\x9d\xf2\xd3\x63\x7a\x48\xd3\x88\x10\x5a\xed\x14\x4b\x3e\xec\xbc\x1a\x6a\x2e\xc4\x79\x91\x5f\x4d\xfa\x49\x7a\x15\x5f\x24\x42\x24\xd9\x0d\xd6\xf9\x45\x79\x7f\x91\x64\x49\x11\x57\x79\x71\xbf\x4e\xb3\xa4\xbc\xaf\xf2\x2a\x5e\xe3\xf4\x5f\xc0\xea\xba\x88\xa7\xe9\x70\xea\x85\x58\xe6\x5f\xef\xa0\x6d\xeb\xa3\x96\x0c\x39\xc9\xd6\x61\x21\xc4\xf2\x6a\x85\x6f\x81\xef\x82\x19\x82\xa8\x9e\xfe\x8b\xbf\xa0\x28\xd2\xb6\x65\xeb\xb9\x21\x77\x5c\x45\x5a\x19\xf2\x11\x5b\x96\xfa\xd3\x9b\x5f\xff\xf7\x7a\x44\x14\xb9\xc1\x44\xcd\xe0\x0e\xb3\xbe\x86\x9f\x1d\x1f\x83\xef\xe2\x77\x00\x00\x00\xff\xff\xad\x9d\x6f\x88\x40\x03\x00\x00") + +func testImagesLogsGeneratorDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesLogsGeneratorDockerfile, + "test/images/logs-generator/Dockerfile", + ) +} + +func testImagesLogsGeneratorDockerfile() (*asset, error) { + bytes, err := testImagesLogsGeneratorDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/logs-generator/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesLogsGeneratorMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x4f\xdb\x3e\x14\xc5\x9f\xff\xfe\x14\x47\x0d\x0f\xad\x54\x52\xfe\x68\xe2\x81\x09\x4d\x59\xdb\x41\x04\x4a\xa6\x24\x80\x78\x42\x4e\x72\x9b\x5c\xc9\xb5\x33\xdb\x59\xe8\xb7\x9f\x5c\x40\x5a\x35\xbf\xf9\x9e\xe3\xe3\x9f\x8f\x23\xac\xcd\x70\xb0\xdc\xf5\x1e\x97\x17\xff\x5f\xa1\xea\x09\xf7\x63\x4d\x56\x93\x27\x87\x64\xf4\xbd\xb1\x2e\x16\x91\x88\xf0\xc0\x0d\x69\x47\x2d\x46\xdd\x92\x85\xef\x09\xc9\x20\x9b\x9e\x3e\x95\x25\x9e\xc8\x3a\x36\x1a\x97\xf1\x05\xe6\xc1\x30\xfb\x90\x66\x8b\xaf\x22\xc2\xc1\x8c\xd8\xcb\x03\xb4\xf1\x18\x1d\xc1\xf7\xec\xb0\x63\x45\xa0\xb7\x86\x06\x0f\xd6\x68\xcc\x7e\x50\x2c\x75\x43\x98\xd8\xf7\xc7\x6b\x3e\x42\x62\x11\xe1\xe5\x23\xc2\xd4\x5e\xb2\x86\x44\x63\x86\x03\xcc\xee\x6f\x1f\xa4\x3f\x02\x87\xd5\x7b\x3f\x5c\xaf\x56\xd3\x34\xc5\xf2\x08\x1b\x1b\xdb\xad\xd4\xbb\xd1\xad\x1e\xd2\xf5\x36\x2b\xb7\xe7\x97\xf1\xc5\xf1\xc8\xa3\x56\xe4\x1c\x2c\xfd\x1a\xd9\x52\x8b\xfa\x00\x39\x0c\x8a\x1b\x59\x2b\x82\x92\x13\x8c\x85\xec\x2c\x51\x0b\x6f\x02\xef\x64\xd9\xb3\xee\x96\x70\x66\xe7\x27\x69\x49\x44\x68\xd9\x79\xcb\xf5\xe8\x4f\xca\xfa\xa4\x63\x77\x62\x30\x1a\x52\x63\x96\x94\x48\xcb\x19\xbe\x27\x65\x5a\x2e\x45\x84\xe7\xb4\xba\xcb\x1f\x2b\x3c\x27\x45\x91\x64\x55\xba\x2d\x91\x17\x58\xe7\xd9\x26\xad\xd2\x3c\x2b\x91\xff\x40\x92\xbd\xe0\x3e\xcd\x36\x4b\x10\xfb\x9e\x2c\xe8\x6d\xb0\x81\xdf\x58\x70\xa8\x91\xda\xd0\x59\x49\x74\x02\xb0\x33\xef\x40\x6e\xa0\x86\x77\xdc\x40\x49\xdd\x8d\xb2\x23\x74\xe6\x37\x59\xcd\xba\xc3\x40\x76\xcf\x2e\x7c\xa6\x83\xd4\xad\x88\xa0\x78\xcf\x5e\xfa\xe3\xe4\x9f\x47\xc5\x42\x94\xc5\xba\xbc\x51\xa6\x73\xe7\x1d\x69\xb2\xd2\x1b\x2b\x92\x62\x7d\x87\x6f\x37\x90\xfb\xf6\xea\x8b\xa8\x92\xe2\x76\x5b\x85\xfd\xd9\x7c\xfd\x58\x6c\xd2\x62\x21\x6e\xf3\x87\x24\xbb\x7d\x7d\xda\x16\x65\x9a\x67\x41\x53\xd2\x93\xf3\x21\xee\x75\x93\x16\x08\x66\x6d\x7c\xcb\x16\x67\x73\xd7\x93\x52\x18\xa6\x76\xb1\x10\xf4\x36\x18\xeb\x85\xa8\x59\x5f\x8b\xff\xe2\x78\xc5\x7b\xd9\xd1\xf9\xe8\x59\xc5\xae\x47\xcd\x1a\x67\xf3\x00\xb5\x10\x22\xfe\x79\x97\x67\x2f\xd7\x61\x28\xfe\x04\x00\x00\xff\xff\x2e\x8d\x74\x12\xf4\x02\x00\x00") + +func testImagesLogsGeneratorMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesLogsGeneratorMakefile, + "test/images/logs-generator/Makefile", + ) +} + +func testImagesLogsGeneratorMakefile() (*asset, error) { + bytes, err := testImagesLogsGeneratorMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/logs-generator/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesLogsGeneratorVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesLogsGeneratorVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesLogsGeneratorVersion, + "test/images/logs-generator/VERSION", + ) +} + +func testImagesLogsGeneratorVersion() (*asset, error) { + bytes, err := testImagesLogsGeneratorVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/logs-generator/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesLogsGeneratorLogs_generatorGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\xdd\x8e\x9b\x48\x13\xbd\xa6\x9f\xa2\x84\x34\x12\x24\x18\xc8\x7c\xfa\xa2\xd5\x24\x73\xe1\x4d\x26\x59\x94\x59\x3b\x1a\x7b\x36\x8a\xa2\x5c\xb4\xa1\x80\x96\x9b\x6e\xb6\x7f\xec\x58\x51\xde\x7d\x55\x60\x8f\xf1\x8e\xb4\x12\x12\x0d\x75\xea\xd4\xe9\x53\x5d\x9d\xbd\x60\xef\x74\x7f\x30\xa2\x69\x1d\x5c\xe7\xaf\x5e\xc3\xba\x45\xf8\xe4\x37\x68\x14\x3a\xb4\x30\xf7\xae\xd5\xc6\xa6\x8c\xdd\x8b\x12\x95\xc5\x0a\xbc\xaa\xd0\x80\x6b\x11\xe6\x3d\x2f\x5b\x84\x63\x24\x81\xbf\xd0\x58\xa1\x15\x5c\xa7\x39\x44\x04\x08\x8f\xa1\x30\x7e\xc3\x0e\xda\x43\xc7\x0f\xa0\xb4\x03\x6f\x11\x5c\x2b\x2c\xd4\x42\x22\xe0\x8f\x12\x7b\x07\x42\x41\xa9\xbb\x5e\x0a\xae\x4a\x84\xbd\x70\xed\x50\xe4\x48\x91\xb2\xaf\x47\x02\xbd\x71\x5c\x28\xe0\x50\xea\xfe\x00\xba\x9e\xa2\x80\x3b\xc6\x00\x00\x5a\xe7\xfa\x9b\x2c\xdb\xef\xf7\x29\x1f\x54\xa6\xda\x34\x99\x1c\x51\x36\xbb\x2f\xde\xdd\x2d\x56\x77\xb3\xeb\x34\x67\xec\x51\x49\xb4\x16\x0c\xfe\xed\x85\xc1\x0a\x36\x07\xe0\x7d\x2f\x45\xc9\x37\x12\x41\xf2\x3d\x68\x03\xbc\x31\x88\x15\x38\x4d\x3a\xf7\x46\x38\xa1\x9a\x04\xac\xae\xdd\x9e\x1b\x64\x95\xb0\xce\x88\x8d\x77\x17\x06\x9d\x54\x09\x0b\x53\x80\x56\xc0\x15\x84\xf3\x15\x14\xab\x10\x7e\x9f\xaf\x8a\x55\xc2\xbe\x14\xeb\x3f\x96\x8f\x6b\xf8\x32\x7f\x78\x98\x2f\xd6\xc5\xdd\x0a\x96\x0f\xf0\x6e\xb9\x78\x5f\xac\x8b\xe5\x62\x05\xcb\x0f\x30\x5f\x7c\x85\x4f\xc5\xe2\x7d\x02\x28\x5c\x8b\x06\xf0\x47\x6f\x48\xbb\x36\x20\xc8\x3a\xac\x52\xb6\x42\xbc\x28\x5e\xeb\x51\x8c\xed\xb1\x14\xb5\x28\x41\x72\xd5\x78\xde\x20\x34\x7a\x87\x46\x09\xd5\x40\x8f\xa6\x13\x96\x9a\x67\x81\xab\x8a\x49\xd1\x09\xc7\xdd\xf0\xfd\x6c\x3b\x29\x7b\x91\x31\xd6\xf3\x72\x4b\x24\x1d\x17\x8a\x31\xd1\xf5\xda\x38\x88\x58\x10\xd6\x92\x37\x21\xbd\x3b\x47\x2f\x27\x3a\x0c\x19\x0b\xc2\x46\xb8\xd6\x6f\xd2\x52\x77\x59\xa3\x49\x43\xd6\x48\x3d\x20\xb7\xbf\xd9\x54\xe8\x8c\xf7\xa2\xe3\x65\x2b\x14\x9a\x43\xd6\x6f\x9b\xcc\x3b\x21\x33\xc3\x55\x15\xb2\x98\xb1\x1d\x37\xc4\x4f\x9d\xfd\x13\x5d\xab\x2b\x0b\xb7\xf0\xed\x3b\xd9\xaa\x9a\x9f\x2c\x08\xc2\x8f\x77\xeb\x30\xa1\xc5\xe7\xe5\xea\xb4\x7a\x1c\x16\xbf\x58\xa0\x78\x87\xb6\xe7\x25\x3e\x4b\xdb\xfa\x0d\xce\xec\xc1\x3a\xec\xc6\xa4\x0a\x6b\xee\xa5\x1b\x3f\x94\x1d\x09\xce\x0a\xa4\x50\x68\xd7\xda\x71\x09\xb7\x40\xbb\x4d\x0b\xe5\xa2\x50\xea\x66\x36\x84\x66\x8e\x62\x61\x02\x79\x02\xe1\x88\x1b\xfe\x83\x6b\xb9\x03\xdb\x6a\x2f\x2b\xd8\x20\x34\xa8\xd0\x70\x37\x9e\x38\xf2\x17\x55\x75\x3a\xcf\xc6\xab\x30\x66\x41\xe5\xcd\xd0\x05\x80\x53\xa9\xf7\xc7\x3f\x51\x68\xbc\x9a\x9d\xe2\x17\xc5\x9e\x92\x2e\xb8\x62\xc6\x6a\xaf\xca\xa1\x5f\x51\x0c\x3f\x59\x30\xf0\x7d\xe6\xc6\x62\x14\x33\x16\x88\x1a\x5e\x4c\xb6\xf6\xf6\x16\x72\x42\x05\xd4\xa5\xf4\x03\x77\x5c\xd6\x51\x58\xa8\x1d\x97\x82\xe6\x80\x30\xca\x77\x1b\x34\x54\x67\x48\xbc\x81\xab\x2a\x4c\xa6\x2c\x31\x39\x37\x52\x3f\xa9\xfa\x6f\xe2\x13\xec\x06\xae\x76\xc4\x75\xfa\x3e\x32\x9d\x3c\xbb\xd7\x8d\x8d\x26\x85\x2e\x90\xbf\x18\xcb\x32\x58\x7a\xd7\x7b\x67\x61\xb2\xa7\xb1\x0d\x24\x57\x37\x96\x66\xd9\xba\x4a\x7b\x07\x5e\x89\x5a\x9b\x4e\x1e\x86\x61\x39\x11\x8d\x7e\x5d\x54\x9c\x70\x09\xe5\x92\xb3\xd5\x74\xca\x9f\x7a\x33\xb8\x5b\xa1\xe4\x07\xb8\xb9\x3d\x63\xb2\x4b\x54\x74\x61\x13\x1d\xf3\x74\x85\x58\x45\x03\x68\xa1\xf7\x51\x9c\x3e\x2a\xf1\x63\xc1\x95\x8e\x62\x6a\x90\x13\xe5\x96\x08\x07\xc0\x5a\x94\xdb\x68\xa8\x11\xb3\x80\x54\x8b\x8a\x62\xf9\x1b\x5a\xbc\x9d\x6c\x9a\x7e\xbc\x7c\x79\x36\xbc\x50\xb5\x8e\x26\x9b\xba\x17\x0a\x23\x51\xc5\x31\x0b\x82\xb7\x33\xaa\x41\x4e\x8f\x16\x7e\x3c\xc2\x2c\xf0\x5e\x58\x34\x3b\x34\x33\x29\xb6\x38\xd0\x8f\x57\x34\xdf\xa1\xa1\x6b\x40\xa2\x6a\x5c\x4b\xde\xbe\xca\x73\xb0\x87\x6e\xa3\xa5\x7d\xe6\xe0\xb1\x18\x99\x17\xc3\x38\x82\xa4\xac\x1b\xe6\x99\xf4\x4f\xa6\xfb\xdb\x60\x49\xa1\x9c\x8a\x24\xaa\x68\x12\x89\xe3\xef\x93\x79\xa6\xb4\xf3\x70\xff\x2b\xeb\x1c\xa0\x24\x16\xf4\xba\x5a\xf0\x6e\xc8\x19\x1d\x1f\x34\x44\x4f\x49\x0f\x5c\x35\x18\xfd\x2f\x81\xff\x93\x21\xde\x48\x42\xd6\x9d\x4b\x57\xbd\x11\xca\xd5\x51\x48\xd7\x54\xb6\x7b\x95\x9d\x99\xb3\x2b\x9b\xf5\xba\xa2\x77\x98\x9c\xa5\x24\x70\x2c\x16\xb3\xc0\x3a\xee\xbc\x7d\xaa\x7a\xae\x74\x9d\xe7\x09\xbc\xce\x73\xea\xaf\x41\xe7\x8d\xba\xac\x76\x55\xc1\x95\x1d\x1e\x9a\x2c\x51\x25\x30\x7a\x95\x80\x37\x32\x81\x91\x97\x4e\xfc\x3f\x01\x00\x00\xff\xff\xfb\x8d\x88\x7e\xca\x07\x00\x00") + +func testImagesLogsGeneratorLogs_generatorGoBytes() ([]byte, error) { + return bindataRead( + _testImagesLogsGeneratorLogs_generatorGo, + "test/images/logs-generator/logs_generator.go", + ) +} + +func testImagesLogsGeneratorLogs_generatorGo() (*asset, error) { + bytes, err := testImagesLogsGeneratorLogs_generatorGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/logs-generator/logs_generator.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesMounttestBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xd1\x8a\xac\x30\x0c\x86\xef\xfb\x14\xa5\x57\x3a\x9c\x33\xde\x0b\x03\xfb\x1e\x22\x92\x6a\x2c\x61\xa3\x91\xda\x0e\xcc\x3c\xfd\x52\xeb\xe2\x0a\x83\x97\x4d\xfe\x7c\x7c\xfd\x17\xe8\xbf\xc1\x61\x31\xe0\x08\x91\x43\xf7\xa4\x95\x2c\x31\x85\x97\x7e\xe8\xc6\x54\xd5\x31\xa8\x97\x68\x99\x7a\xd3\x96\x4a\xb1\xc0\x50\x28\xad\xb5\x36\x5f\x24\x9d\x85\x37\x72\xe7\x23\xe3\xda\x39\xa9\x2a\x27\xf5\x80\xe3\xdd\xbe\xd9\xfc\xcb\x29\x27\x9d\xa5\x19\xfc\xeb\xcf\x80\xc9\xfa\x3c\x29\x95\x3a\xde\x99\x3b\xc3\x84\xfa\xb1\xe5\x7e\xdd\x8e\x7c\x0a\xac\xbe\x5f\x37\xc7\x29\xdc\x9d\x98\x76\xa3\x8c\xc4\xe8\xbc\xc4\xe5\x0c\xd9\x7f\xf9\x3f\xdd\x9c\xcf\x1d\x8b\x2d\x1a\x73\xbb\x99\xb6\xcc\x8b\x00\x2e\x73\x21\x06\x99\x60\x06\x87\x43\xa2\xa7\xdd\x65\x3b\x9e\x9e\x10\xf0\x5a\x04\x98\x3f\x48\x34\xa6\x3e\x19\xb6\xd7\x26\xb9\xad\x5c\xe7\x19\x3f\x49\x9c\x43\xc0\x35\xec\xfc\xbd\xb1\xb4\xaa\x3f\x16\x59\xaa\x9f\x00\x00\x00\xff\xff\x09\x88\x2f\xcd\x01\x02\x00\x00") + +func testImagesMounttestBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesMounttestBuild, + "test/images/mounttest/BUILD", + ) +} + +func testImagesMounttestBuild() (*asset, error) { + bytes, err := testImagesMounttestBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/mounttest/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesMounttestDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xc1\x6f\xd3\x30\x14\xc6\xef\xfe\x2b\x3e\x25\x17\x90\x4a\x52\x7a\xe0\x00\xa7\xd0\x75\x22\xda\x48\xa6\x26\x63\xaa\x10\x07\x37\x79\x4d\x9e\x94\xda\xc6\x7e\x21\xeb\x7f\x8f\xd2\x75\x88\x6a\x3e\xfa\xfb\xf9\xf9\xe7\xcf\x31\xd6\xd6\x9d\x3c\x77\xbd\x60\xb5\xfc\xf8\x09\x75\x4f\xb8\x1b\xf7\xe4\x0d\x09\x05\x64\xa3\xf4\xd6\x87\x44\xc5\x2a\xc6\x3d\x37\x64\x02\xb5\x18\x4d\x4b\x1e\xd2\x13\x32\xa7\x9b\x9e\x5e\x93\x05\x7e\x90\x0f\x6c\x0d\x56\xc9\x12\xef\x66\x20\xba\x44\xd1\xfb\x2f\x2a\xc6\xc9\x8e\x38\xea\x13\x8c\x15\x8c\x81\x20\x3d\x07\x1c\x78\x20\xd0\x73\x43\x4e\xc0\x06\x8d\x3d\xba\x81\xb5\x69\x08\x13\x4b\x7f\xbe\xe6\x32\x24\x51\x31\x76\x97\x11\x76\x2f\x9a\x0d\x34\x1a\xeb\x4e\xb0\x87\xff\x39\x68\x39\x0b\xcf\xab\x17\x71\x9f\xd3\x74\x9a\xa6\x44\x9f\x65\x13\xeb\xbb\x74\x78\x01\x43\x7a\x9f\xaf\x37\x45\xb5\xf9\xb0\x4a\x96\xe7\x23\x8f\x66\xa0\x10\xe0\xe9\xf7\xc8\x9e\x5a\xec\x4f\xd0\xce\x0d\xdc\xe8\xfd\x40\x18\xf4\x04\xeb\xa1\x3b\x4f\xd4\x42\xec\xec\x3b\x79\x16\x36\xdd\x02\xc1\x1e\x64\xd2\x9e\x54\x8c\x96\x83\x78\xde\x8f\x72\x55\xd6\xab\x1d\x87\x2b\xc0\x1a\x68\x83\x28\xab\x90\x57\x11\xbe\x66\x55\x5e\x2d\x54\x8c\xa7\xbc\xfe\x56\x3e\xd6\x78\xca\xb6\xdb\xac\xa8\xf3\x4d\x85\x72\x8b\x75\x59\xdc\xe4\x75\x5e\x16\x15\xca\x5b\x64\xc5\x0e\x77\x79\x71\xb3\x00\xb1\xf4\xe4\x41\xcf\xce\xcf\xfe\xd6\x83\xe7\x1a\xa9\x9d\x3b\xab\x88\xae\x04\x0e\xf6\x45\x28\x38\x6a\xf8\xc0\x0d\x06\x6d\xba\x51\x77\x84\xce\xfe\x21\x6f\xd8\x74\x70\xe4\x8f\x1c\xe6\xcf\x0c\xd0\xa6\x55\x31\x06\x3e\xb2\x68\x39\xef\xbc\x79\x54\xa2\xd4\xed\xb6\xfc\x8e\xd0\x78\x2d\x4d\xaf\xd6\xe5\xc3\x0e\x47\x3b\x1a\x11\x0a\x82\x54\x6d\x8a\x7a\xbb\x7b\x28\xf3\xa2\xc6\xcf\x28\xfd\x97\x44\xbf\xd4\xdf\x00\x00\x00\xff\xff\x62\xac\xcd\x37\x84\x02\x00\x00") + +func testImagesMounttestDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesMounttestDockerfile, + "test/images/mounttest/Dockerfile", + ) +} + +func testImagesMounttestDockerfile() (*asset, error) { + bytes, err := testImagesMounttestDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/mounttest/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesMounttestMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x4f\xdb\x3e\x14\xc5\x9f\xff\xfe\x14\x47\x0d\x0f\xad\x54\x52\xfe\x68\xe2\x81\x09\x4d\x59\xda\x41\x04\x4a\xa6\x24\x80\x78\x42\x4e\x72\x9b\x5c\x29\xb1\x3d\xdb\x59\xe8\xb7\x9f\x52\x40\x5a\x35\xbf\xf9\x9e\x73\xaf\x7f\x3e\x37\x40\xac\xcd\xc1\x72\xdb\x79\x5c\x5e\xfc\x7f\x85\xb2\x23\xdc\x8f\x15\x59\x45\x9e\x1c\xa2\xd1\x77\xda\xba\x50\x04\x22\xc0\x03\xd7\xa4\x1c\x35\x18\x55\x43\x16\xbe\x23\x44\x46\xd6\x1d\x7d\x2a\x6b\x3c\x91\x75\xac\x15\x2e\xc3\x0b\x2c\x67\xc3\xe2\x43\x5a\xac\xbe\x8a\x00\x07\x3d\x62\x90\x07\x28\xed\x31\x3a\x82\xef\xd8\x61\xcf\x3d\x81\xde\x6a\x32\x1e\xac\x50\xeb\xc1\xf4\x2c\x55\x4d\x98\xd8\x77\xc7\x67\x3e\x86\x84\x22\xc0\xcb\xc7\x08\x5d\x79\xc9\x0a\x12\xb5\x36\x07\xe8\xfd\xdf\x3e\x48\x7f\x04\x9e\x4f\xe7\xbd\xb9\xde\x6c\xa6\x69\x0a\xe5\x11\x36\xd4\xb6\xdd\xf4\xef\x46\xb7\x79\x48\xe2\x5d\x5a\xec\xce\x2f\xc3\x8b\x63\xcb\xa3\xea\xc9\x39\x58\xfa\x35\xb2\xa5\x06\xd5\x01\xd2\x98\x9e\x6b\x59\xf5\x84\x5e\x4e\xd0\x16\xb2\xb5\x44\x0d\xbc\x9e\x79\x27\xcb\x9e\x55\xbb\x86\xd3\x7b\x3f\x49\x4b\x22\x40\xc3\xce\x5b\xae\x46\x7f\x12\xd6\x27\x1d\xbb\x13\x83\x56\x90\x0a\x8b\xa8\x40\x52\x2c\xf0\x3d\x2a\x92\x62\x2d\x02\x3c\x27\xe5\x5d\xf6\x58\xe2\x39\xca\xf3\x28\x2d\x93\x5d\x81\x2c\x47\x9c\xa5\xdb\xa4\x4c\xb2\xb4\x40\xf6\x03\x51\xfa\x82\xfb\x24\xdd\xae\x41\xec\x3b\xb2\xa0\x37\x63\x67\x7e\x6d\xc1\x73\x8c\xd4\xcc\x99\x15\x44\x27\x00\x7b\xfd\x0e\xe4\x0c\xd5\xbc\xe7\x1a\xbd\x54\xed\x28\x5b\x42\xab\x7f\x93\x55\xac\x5a\x18\xb2\x03\xbb\x79\x99\x0e\x52\x35\x22\x40\xcf\x03\x7b\xe9\x8f\x95\x7f\x3e\x15\x0a\x51\xe4\x71\x71\x33\xe8\x51\x79\x4f\xce\x8b\x28\x8f\xef\xf0\xed\x06\x72\x68\xae\xbe\x88\x32\xca\x6f\x77\xe5\x7c\x3f\x5b\xc6\x8f\xf9\x36\xc9\x57\xe2\x36\x7b\x88\xd2\xdb\xd7\xa7\x5d\x5e\x24\x59\x3a\x6b\xbd\x3c\xb6\x16\x79\xfc\xba\x4d\x72\xcc\x66\xa5\x7d\xc3\x16\x67\x4b\xd7\x51\xdf\xc3\x4c\xcd\x6a\x25\xe8\xcd\x68\xeb\x85\xa8\x58\x5d\x8b\xff\xc2\x70\xc3\x83\x6c\xe9\x7c\xf4\xdc\x87\xae\x43\xc5\x0a\x67\xcb\x99\x67\x25\x44\xf8\xf3\x2e\x4b\x5f\xae\xe7\xa2\xf8\x13\x00\x00\xff\xff\xc1\x47\x9c\x48\xef\x02\x00\x00") + +func testImagesMounttestMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesMounttestMakefile, + "test/images/mounttest/Makefile", + ) +} + +func testImagesMounttestMakefile() (*asset, error) { + bytes, err := testImagesMounttestMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/mounttest/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesMounttestVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesMounttestVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesMounttestVersion, + "test/images/mounttest/VERSION", + ) +} + +func testImagesMounttestVersion() (*asset, error) { + bytes, err := testImagesMounttestVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/mounttest/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesMounttestMtGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x58\x5f\x6f\xdb\x46\x12\x7f\x16\x3f\xc5\x1c\x01\xf7\xc8\x80\xa6\x68\x5f\xce\xbe\x3a\xe7\x07\xc7\x76\x72\x42\x53\x3b\xb0\xe4\x06\x45\x5b\x18\x2b\x6a\x28\x2d\x42\xee\x32\xbb\xcb\xc8\x42\xe1\xef\x7e\x98\x5d\x52\xa6\x28\xc9\x51\x9c\xe6\xa1\x01\x2a\x97\xdc\x9d\x7f\xbf\x99\xfd\xcd\x2c\xfb\x2f\xbc\x73\x59\x2e\x14\x9f\xce\x0c\x1c\x26\x07\xff\x86\xd1\x0c\xe1\xa7\x6a\x8c\x4a\xa0\x41\x0d\x67\x95\x99\x49\xa5\x63\xcf\x7b\xc7\x53\x14\x1a\x27\x50\x89\x09\x2a\x30\x33\x84\xb3\x92\xa5\x33\x84\x7a\x25\x82\x5f\x50\x69\x2e\x05\x1c\xc6\x09\x04\xb4\xc1\xaf\x97\xfc\xf0\x95\xb7\x90\x15\x14\x6c\x01\x42\x1a\xa8\x34\x82\x99\x71\x0d\x19\xcf\x11\xf0\x3e\xc5\xd2\x00\x17\x90\xca\xa2\xcc\x39\x13\x29\xc2\x9c\x9b\x99\x35\x52\xab\x88\xbd\x5f\x6b\x05\x72\x6c\x18\x17\xc0\x20\x95\xe5\x02\x64\xd6\xde\x05\xcc\x78\x1e\x00\xc0\xcc\x98\xf2\xa4\xdf\x9f\xcf\xe7\x31\xb3\x5e\xc6\x52\x4d\xfb\xb9\xdb\xa5\xfb\xef\x06\xe7\x97\x57\xc3\xcb\xfd\xc3\x38\xf1\xbc\x5b\x91\xa3\xd6\xa0\xf0\x53\xc5\x15\x4e\x60\xbc\x00\x56\x96\x39\x4f\xd9\x38\x47\xc8\xd9\x1c\xa4\x02\x36\x55\x88\x13\x30\x92\xfc\x9c\x2b\x6e\xb8\x98\x46\xa0\x65\x66\xe6\x4c\xa1\x37\xe1\xda\x28\x3e\xae\xcc\x0a\x40\x8d\x57\x5c\x43\x7b\x83\x14\xc0\x04\xf8\x67\x43\x18\x0c\x7d\x78\x7d\x36\x1c\x0c\x23\xef\xc3\x60\xf4\xbf\xeb\xdb\x11\x7c\x38\xbb\xb9\x39\xbb\x1a\x0d\x2e\x87\x70\x7d\x03\xe7\xd7\x57\x17\x83\xd1\xe0\xfa\x6a\x08\xd7\x6f\xe0\xec\xea\x57\xf8\x69\x70\x75\x11\x01\x72\x33\x43\x05\x78\x5f\x2a\xf2\x5d\x2a\xe0\x04\x1d\x4e\x62\x6f\x88\xb8\x62\x3c\x93\xce\x19\x5d\x62\xca\x33\x9e\x42\xce\xc4\xb4\x62\x53\x84\xa9\xfc\x8c\x4a\x70\x31\x85\x12\x55\xc1\x35\x25\x4f\x03\x13\x13\x2f\xe7\x05\x37\xcc\xd8\xe7\xb5\x70\x62\xef\x45\xdf\xf3\x4a\x96\x7e\x24\x25\x05\xe3\xc2\xf3\x78\x51\x4a\x65\x20\xf0\x7a\x7e\x96\xb3\xa9\x4f\x7f\x0b\x43\x7f\xb8\xec\x73\x59\x19\x9e\xd3\x83\xd4\xf4\xab\x17\x3a\x65\xb9\x7d\x61\x78\x81\xbe\x17\x7a\xde\x67\xa6\x48\x3a\xd3\xa3\x45\x89\xef\x99\x99\x41\xe7\xdf\x29\xf8\xbe\xd7\xa3\x82\xf9\x59\x4e\x36\xec\x78\x5c\x7f\x8f\xaa\x78\x6a\xfd\x7a\x2e\x50\xad\x6d\x70\xeb\x02\xe7\x6f\x48\x05\x33\xb3\xe4\xe8\xe5\xcb\xa7\xd7\x8f\x8e\xbe\xb0\x9e\x3c\xb9\x7e\x7c\x7c\xbc\xb6\xae\x90\x4d\x68\xc3\xb9\x14\x06\x85\x69\x79\xb9\x71\x7d\x20\xde\x49\x59\xda\x5d\xcd\xba\x51\x8b\x8b\x4a\xd9\xdc\x75\xe2\x3b\xf8\x4f\xe2\xf5\xc6\x0a\xd9\xc7\x6b\x71\x79\x5f\x62\x6a\x70\x52\xeb\x71\x1b\x8c\xaa\x90\x72\x91\x55\x22\x05\x2e\xb8\x09\x42\xf8\xd3\xeb\x51\x42\xe3\xa1\x51\x5c\x4c\x7f\x61\x2a\xf8\xe1\x31\x47\x11\xf8\x99\xbe\x33\x8b\x12\xfd\x08\x7c\xfa\xcf\xba\x62\x24\x94\x8a\x0b\x63\x8b\x26\xd3\x40\x1b\xa8\x0c\xfd\x70\x83\xb2\x56\x42\x49\x1d\xcf\xf1\xae\x90\x93\x27\x14\xd2\x2a\x8c\xb9\xd1\x20\xb3\x6d\x1a\x9b\x12\x68\x34\x52\x7d\x6f\xd7\x48\xab\x4f\x69\x5b\x16\x4c\xa3\x4e\xd2\x8b\xed\xfa\xe4\xdc\x1e\xaa\xdb\xc1\x05\x1d\x26\x78\x3b\xb8\xd8\xa2\xbc\x53\x6d\x11\xf8\x02\xe7\x77\xd6\x04\x3d\x77\x2d\x10\xed\x20\xfd\x0f\x69\xa5\x4a\x80\x4c\xc9\xc2\x51\x25\xc5\x00\x56\xe8\x4b\x76\x8e\x8e\x56\xed\x1c\x1d\x3d\xc3\xce\xd1\xd1\x97\xed\x24\x1d\x3b\xc9\x73\xec\x24\x5f\xb2\x73\x7c\x7c\xbc\x62\xe7\xf8\xf8\xf8\xeb\xed\x90\xd0\x06\x3b\x1b\x4e\x63\x53\x02\xa9\x7b\xd5\x35\x65\xb5\xdb\xb2\xa7\xce\x56\x6f\xb2\xe6\x76\xd0\xff\x78\x9a\x3b\x56\xee\xb8\xb8\xcb\xa5\x2c\x77\xb3\xc6\x05\xd0\xe6\x55\xab\x03\x61\x6a\x93\x2d\x82\x88\xc0\xb7\xcf\x77\x96\x86\x23\x62\x88\x08\xfc\x1b\x7a\x05\xf4\x0a\x26\x15\xf9\x6a\x4d\x58\xfb\x8d\xb6\xd7\x52\xe6\x56\xdd\x66\x3a\x89\xc0\xb7\x0b\x77\x52\xdc\x61\xbd\xd4\x42\x8c\x78\x26\x02\xff\x35\x6d\x01\x59\x19\x6a\xe2\xd6\x63\x29\xa0\xd9\xde\x44\x13\x41\x40\xd3\x82\xcd\xd5\xfe\xfe\x26\x50\x80\x3c\x02\x29\xf2\x45\xe8\x87\xde\x83\xe7\xf5\xfb\x30\xa2\xe1\xa2\x54\x72\xaa\x58\x41\x29\xce\x24\x9d\x70\x2d\x0b\x04\x83\x9a\xa8\x43\x2c\x71\xd3\x0b\x6d\xb0\x00\x46\x3d\x3a\x35\xcc\xb8\x09\xc0\xcc\x90\x14\x91\x6e\x0d\x25\xd3\x7a\xf9\x9a\xa6\x17\x15\x3b\x92\xa4\xe6\xd7\x22\xc9\xf7\x4c\x69\x0c\x42\xcf\xeb\xd5\xed\xac\x87\x4a\x01\xa0\x52\x52\xb9\x07\x0d\xa7\xf0\xdb\x1f\xf6\xc5\x9f\x0f\x5e\x8f\xb6\xf6\xfb\x70\x9e\x23\x73\x2d\xb6\x2a\x98\xfe\x08\x5a\xc2\x1c\x21\x65\x02\x34\x1a\x60\x62\xd1\x22\xbd\x39\xc2\x9c\x09\x13\x7b\xbd\xba\x8d\xc6\xb7\x24\x13\x24\x49\x92\xd4\xea\xae\xae\x47\x97\x27\x8e\x89\xd4\x04\x6d\x06\x65\x06\x78\x8f\x69\x65\xdb\x42\x3d\x33\x7d\x66\x8a\xcb\x4a\xd3\xd4\x55\xd0\xc9\xc8\xb9\x40\x2b\xef\x82\xe6\x1a\xb8\x05\x9a\x4b\xc1\x72\x7b\x76\x58\x9e\xcb\xb9\x06\x06\x9a\x8b\xa9\xad\x38\x27\x69\xe4\x09\x09\x5a\xe1\x83\x18\xe0\x7c\x86\xe9\xc7\x9a\xfd\x2d\xf9\xcb\x0c\x18\x94\xcc\xcc\xec\x96\xc3\x18\xe0\x83\x3d\x93\x0c\x04\xce\x5d\xf5\x52\x86\x39\x65\x85\x99\xc7\x9d\xff\x6a\x29\x63\x66\x99\xb2\x7f\xea\x65\xb1\x13\x48\x63\xb4\x27\x61\xe9\xc2\xf9\x8c\x89\x69\x53\xb7\x6d\x08\xac\xbc\xa4\x20\xe8\x45\x4a\x98\xce\x79\x9e\x83\x2d\x56\x57\x19\xb1\xe7\xd9\xa4\x9d\x82\x6b\x73\xc1\x63\xb7\x0b\xbd\x1e\xcf\x28\x99\xf0\x8f\x53\x10\x3c\xa7\xb4\x37\x39\x65\x65\x89\x62\x12\xd0\x53\x44\x5b\x42\xaf\xf7\xb0\xd4\x44\xce\xd9\x78\xaf\x1c\x6f\x05\x6b\xbc\x4f\xbf\xdf\x49\x3d\xd1\x3d\xfd\x7e\x2f\xf5\x89\x55\x9f\x7c\x1f\xf5\x96\xdc\xe9\xf7\xd9\xea\x9b\xf9\x22\x68\x0f\x1a\xdf\xa4\x8d\x66\x8b\xa0\x3d\x64\x7c\x93\x36\x3b\x5b\x04\x2b\x53\xc6\x37\x41\xd9\x6a\x27\xc1\x86\xf6\xf5\x57\xe9\x76\xad\xaa\x6b\xa1\xdd\xc0\x3a\x8d\x66\x73\xa3\x78\x86\x3b\x3c\x83\x1c\x85\x7d\x1d\x92\x54\x62\x65\xa4\x8e\x2f\xef\xb9\x09\x0e\xea\x5d\xcd\x73\xd2\x74\x84\x0b\xcc\xb8\x70\x1c\xfe\x8e\x8b\xea\x1e\x02\xbd\xd0\x7d\x6d\x98\xc9\x74\x3c\x0b\x61\xdf\x92\x83\x25\x2b\x51\x15\x63\x54\xee\xde\x54\x94\x99\x86\x42\x56\x82\x98\x21\x95\x42\x1b\xa2\xc9\xea\x7e\x44\x0b\x3f\xb3\x29\x4f\xe1\x14\x92\xfb\xe4\x20\x39\x3c\xf8\xf1\xc7\x97\xf5\xec\x5c\x53\x07\xd1\x18\x68\xdb\xee\x43\xd7\x04\xc8\x57\x9e\x59\x7e\x83\x53\x9a\xd8\xad\xf3\x0a\x4d\xa5\x04\xc5\xef\x9c\x1f\x57\x19\x9c\x9c\x42\xc3\xef\x43\xeb\xe4\x9d\xa1\x86\x51\xa3\xb5\xb6\x6a\x6d\x45\xf0\xc3\xb8\xca\xc2\x57\x5d\x40\xb3\xc2\xc4\xef\x69\x3a\xcd\x02\xdf\xb9\x61\xe7\x1f\x17\x7c\xb0\xf7\x29\x3c\x81\xbd\xcf\xbf\x0b\x3f\x02\xa7\xc5\x81\xdd\xb8\x85\x4a\x2d\x91\x1f\x57\x59\x4c\xa1\x91\xf3\x5d\x1c\xba\x96\x2c\x6a\xd0\xd0\xff\xde\xa7\x13\x87\xe6\xd2\x0e\x65\x0a\x30\xd7\xb8\x83\xe4\x8a\x7b\x8d\x13\x75\xaa\x5b\xe8\x3d\x34\xf8\x37\x87\xfe\xb9\x19\x20\x05\x5c\x64\x32\x6a\xd0\x96\xda\x02\x1d\x94\xdb\xce\xd0\x16\x8c\xad\xd0\xce\x08\xaf\x82\x30\xb1\xe1\xdb\xe6\xb8\x86\x41\xe3\x60\x6c\xc3\x0c\xc3\xad\x30\x58\xb6\xfa\x1b\xc3\xd0\xdc\xcd\x76\xc3\x21\xb6\xe1\x3e\x01\x87\xa3\xdb\xbf\xf0\x60\x3e\x75\x2c\x9f\x7b\x28\x9f\x87\x94\xbd\x94\xda\x4b\xe7\xb6\x43\x73\xcb\x27\xe1\x26\x99\xb7\x4f\xc8\xbc\xb5\x32\x1b\xd0\xec\x36\x9b\xe7\x62\x5a\x0f\x72\xaf\x17\x06\xf5\xb2\xce\xdc\x17\xa3\xf8\xa6\xb6\xf1\x35\xf5\x46\x7e\xd1\x74\xb7\x7a\x01\x93\x6a\x3d\xbc\x1d\x30\x6d\xe4\xb7\xd6\x9f\x0b\x38\x68\x07\x11\x86\x6b\xa4\xe4\x1a\x07\x17\xdc\x70\x96\x37\x9f\x5c\x9c\x28\x9c\x82\xe3\xbb\x7d\x1a\x3f\x51\x2d\x07\xe2\xdf\x85\xdf\x42\x7a\x65\x42\x6a\x41\x1d\xb9\x0b\xac\xd4\xf1\x9b\x9a\xf3\xbe\x0a\xfc\x55\xb8\xad\x91\xa5\x85\x08\x7e\xfb\x63\xbc\x30\x18\xac\xfa\x1d\x3a\x93\x3b\x66\xa3\xfe\x52\xfa\x38\xe6\xef\x9a\x85\xfa\x79\x53\x95\x85\xdb\x6a\xb0\x1e\x4a\x56\xe0\x59\xfd\x20\xc6\xe9\x42\xb9\xe5\x13\xd8\x58\xca\xfc\x2b\xc0\x6b\x1e\x29\x6d\x5d\x0f\x77\x9e\x7e\x9a\x40\xba\x4a\xb2\x7a\x00\xfe\xf6\x30\x9a\x8b\x68\xbb\x42\xeb\xc4\x36\xd7\xd3\xe6\x5f\x7d\x4d\xad\xcb\x57\x2d\x46\xbc\x40\xaa\x0e\xc3\x0b\x8c\x87\x98\x4a\x31\x81\x17\xee\xa9\xf1\x24\x58\xf1\x8b\xc8\x45\x2a\xa2\x30\x65\x96\x82\x57\x72\x1e\x84\xaf\x6a\x25\x5c\xa4\x18\xd8\xf5\x10\xfe\x0b\x4b\x2b\xcd\x72\x8e\x58\x06\x87\x8d\x11\x67\xd2\xde\xae\x37\xb0\xc4\x3a\x49\x34\xa0\x51\x39\xad\xd7\xe6\x4a\x71\x5e\xae\x53\xc5\x9e\xa6\xc2\xac\x91\xe6\x62\x6a\x4b\xb4\x51\xb9\x2c\x53\xeb\x08\x17\x15\x81\xf7\xd0\xa9\xf8\x27\xc8\xe2\x51\xcf\x66\xc2\xb0\x0e\x6f\x49\xa8\x75\x9e\x67\x1b\x25\x29\xc0\x0e\xad\xd8\xed\x2b\x7e\xdd\x8a\xee\x47\x95\x18\x1a\x23\x27\xb0\xa7\x63\xb8\xa9\x63\xf6\xa3\x8e\x36\x1b\x72\x3b\x66\x1b\xb4\xfb\x88\xec\x10\x78\x3c\x08\x74\x74\x1f\xbc\xff\x07\x00\x00\xff\xff\x6a\xa5\x74\x04\x52\x1a\x00\x00") + +func testImagesMounttestMtGoBytes() ([]byte, error) { + return bindataRead( + _testImagesMounttestMtGo, + "test/images/mounttest/mt.go", + ) +} + +func testImagesMounttestMtGo() (*asset, error) { + bytes, err := testImagesMounttestMtGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/mounttest/mt.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesMounttestUserBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xcd\x41\x0a\x02\x31\x0c\x46\xe1\xbd\x77\xe9\xcc\xa8\x43\x41\xc1\xc3\xd4\xfa\x53\x8a\xa6\x2d\x49\x0a\x1e\x5f\x0c\x7a\x80\x6c\x1f\x7c\xbc\x44\x8f\xb8\xdf\x4a\xe6\xa5\xf6\xf5\x39\xef\xe0\x06\x85\x04\x9c\x10\x14\xa2\xa1\x52\x2a\x90\x95\xfa\x6c\x6a\xc1\xc4\xf5\xb8\x6c\x87\xc4\xe4\x93\x4c\x7f\xe7\x7d\x7e\x85\xd9\x31\x72\xdc\x5f\x70\xe9\x9f\x31\x2f\xe7\xcb\xf6\x76\x69\x13\x66\x3f\x01\x00\x00\xff\xff\x2e\x5b\x6c\x98\x2c\x01\x00\x00") + +func testImagesMounttestUserBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesMounttestUserBaseimage, + "test/images/mounttest-user/BASEIMAGE", + ) +} + +func testImagesMounttestUserBaseimage() (*asset, error) { + bytes, err := testImagesMounttestUserBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/mounttest-user/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesMounttestUserDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xcd\x8e\x9b\x30\x14\x85\xf7\x7e\x8a\xa3\xb0\x69\xa5\x94\xfc\x2c\xba\x68\x57\x34\xc3\xb4\x68\x66\x40\x0a\x49\x47\xb3\x74\xe0\x06\xae\x44\x6c\xd7\xbe\x94\xe1\xed\x2b\x98\x8c\xd4\x68\xbc\xf4\xfd\x7c\xfc\xf9\x38\xc2\xce\xba\xd1\x73\xd3\x0a\xb6\xeb\xcd\x57\x1c\x5a\xc2\x43\x7f\x22\x6f\x48\x28\x20\xe9\xa5\xb5\x3e\xc4\x2a\x52\x11\x1e\xb9\x22\x13\xa8\x46\x6f\x6a\xf2\x90\x96\x90\x38\x5d\xb5\xf4\x3e\x59\xe2\x37\xf9\xc0\xd6\x60\x1b\xaf\xf1\x69\x02\x16\xd7\xd1\xe2\xf3\x77\x15\x61\xb4\x3d\x2e\x7a\x84\xb1\x82\x3e\x10\xa4\xe5\x80\x33\x77\x04\x7a\xad\xc8\x09\xd8\xa0\xb2\x17\xd7\xb1\x36\x15\x61\x60\x69\xe7\x6b\xae\x21\xb1\x8a\xf0\x72\x8d\xb0\x27\xd1\x6c\xa0\x51\x59\x37\xc2\x9e\xff\xe7\xa0\x65\x16\x9e\x56\x2b\xe2\xbe\xad\x56\xc3\x30\xc4\x7a\x96\x8d\xad\x6f\x56\xdd\x1b\x18\x56\x8f\xd9\x2e\xcd\xcb\xf4\xcb\x36\x5e\xcf\x47\x8e\xa6\xa3\x10\xe0\xe9\x4f\xcf\x9e\x6a\x9c\x46\x68\xe7\x3a\xae\xf4\xa9\x23\x74\x7a\x80\xf5\xd0\x8d\x27\xaa\x21\x76\xf2\x1d\x3c\x0b\x9b\x66\x89\x60\xcf\x32\x68\x4f\x2a\x42\xcd\x41\x3c\x9f\x7a\xb9\x29\xeb\xdd\x8e\xc3\x0d\x60\x0d\xb4\xc1\x22\x29\x91\x95\x0b\xfc\x48\xca\xac\x5c\xaa\x08\xcf\xd9\xe1\x57\x71\x3c\xe0\x39\xd9\xef\x93\xfc\x90\xa5\x25\x8a\x3d\x76\x45\x7e\x97\x1d\xb2\x22\x2f\x51\xdc\x23\xc9\x5f\xf0\x90\xe5\x77\x4b\x10\x4b\x4b\x1e\xf4\xea\xfc\xe4\x6f\x3d\x78\xaa\x91\xea\xa9\xb3\x92\xe8\x46\xe0\x6c\xdf\x84\x82\xa3\x8a\xcf\x5c\xa1\xd3\xa6\xe9\x75\x43\x68\xec\x5f\xf2\x86\x4d\x03\x47\xfe\xc2\x61\xfa\xcc\x00\x6d\x6a\x15\xa1\xe3\x0b\x8b\x96\x79\xe7\xc3\xa3\x62\xa5\xee\xf7\xc5\xd3\xa4\x9f\x66\x4f\xc9\xcf\x54\x1d\xcb\x74\x8f\xcd\x7a\xbd\x51\xff\x02\x00\x00\xff\xff\xb3\x69\xf0\x70\x65\x02\x00\x00") + +func testImagesMounttestUserDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesMounttestUserDockerfile, + "test/images/mounttest-user/Dockerfile", + ) +} + +func testImagesMounttestUserDockerfile() (*asset, error) { + bytes, err := testImagesMounttestUserDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/mounttest-user/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesMounttestUserVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesMounttestUserVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesMounttestUserVersion, + "test/images/mounttest-user/VERSION", + ) +} + +func testImagesMounttestUserVersion() (*asset, error) { + bytes, err := testImagesMounttestUserVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/mounttest-user/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNWayHttpBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\x2a\x2d\xae\x4c\xca\xaf\xe0\x4a\x2c\xca\xb5\x4d\x2c\xca\x35\x36\x2a\x33\xd3\x47\x12\x33\x33\xb1\x05\x93\x65\x16\x70\xd1\x82\x82\x64\x33\x93\x9c\x54\x5b\x28\x0d\x17\x2f\x36\xb6\x34\xa8\xb0\x05\x93\x70\x31\x40\x00\x00\x00\xff\xff\xc9\xd8\x77\x8f\x64\x00\x00\x00") + +func testImagesNWayHttpBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesNWayHttpBaseimage, + "test/images/n-way-http/BASEIMAGE", + ) +} + +func testImagesNWayHttpBaseimage() (*asset, error) { + bytes, err := testImagesNWayHttpBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/n-way-http/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNWayHttpBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcb\x8a\xac\x30\x10\x86\xf7\x79\x8a\x90\x95\x36\xc7\x76\x2f\x34\x9c\xf7\x10\x09\x15\x2d\x33\xc5\x54\x5b\x12\xa3\x83\xfd\xf4\x83\x1d\xe7\xe2\xd0\xb8\xcc\x7f\xf9\xf8\x53\x23\xb4\xef\xe0\x31\xeb\xb0\x87\x99\xa3\x5d\x68\x22\x47\x4c\x71\xd5\x37\x5d\x9b\xb2\xfc\x11\xaa\x71\x76\x4c\xad\x69\x72\xa5\x58\xa0\xcb\x94\xd6\x5a\x9b\xff\x24\xd6\xc1\x03\xd9\x86\x99\x71\xb2\x5e\xca\xd2\x4b\xd5\x61\x7f\x75\x0f\x36\xff\x52\xca\x8b\x75\x34\x40\x58\x7f\x09\x4c\x2e\x24\x25\x57\xea\x3b\x90\xb0\x03\xdc\x51\xdf\xb4\x19\x8a\x0f\x58\x8b\xb7\x18\xc7\xbd\xb8\x97\x36\xaf\xf2\x62\xbf\x76\xff\x65\xed\xef\x23\xec\x65\x7e\x0b\x4c\xa1\x9d\x9e\xff\x9d\x30\x2c\x18\xae\x5e\x4c\xf3\x24\xf5\xc4\xe8\x83\xcc\xe3\x11\xb4\x5f\xad\xd8\x7a\x47\x84\x67\x71\x59\x6d\x2e\x17\xd3\xe4\xc9\x88\xe0\x13\x1b\xe6\x28\x77\x18\xc0\x63\xb7\xd1\x37\xef\xf4\xda\x81\x16\x88\x78\x3e\x04\x98\x5f\x8c\xa8\x4d\x75\x58\xd8\x9c\x2f\xc9\xd5\x67\x00\x00\x00\xff\xff\x31\x09\xf8\xc5\x06\x02\x00\x00") + +func testImagesNWayHttpBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesNWayHttpBuild, + "test/images/n-way-http/BUILD", + ) +} + +func testImagesNWayHttpBuild() (*asset, error) { + bytes, err := testImagesNWayHttpBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/n-way-http/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNWayHttpDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x8f\x9b\x30\x14\x84\xef\xfe\x15\x23\xb8\xb4\x52\x02\x69\x0e\x3d\xb4\x27\x9a\x65\x5b\xb4\xbb\xb0\x0a\x6c\x57\x51\xd5\x83\x03\x2f\xf0\x24\x62\xbb\xb6\x29\xcb\xbf\xaf\x60\xb3\x6a\xa3\xfa\xe8\x19\x3f\x7f\x6f\x26\xc4\x4e\x9b\xc9\x72\xdb\x79\x6c\x37\x1f\x3e\xa2\xea\x08\x77\xc3\x91\xac\x22\x4f\x0e\xc9\xe0\x3b\x6d\x5d\x24\x42\x11\xe2\x9e\x6b\x52\x8e\x1a\x0c\xaa\x21\x0b\xdf\x11\x12\x23\xeb\x8e\xde\x94\x15\xbe\x93\x75\xac\x15\xb6\xd1\x06\xef\x66\x43\x70\x91\x82\xf7\x9f\x45\x88\x49\x0f\x38\xcb\x09\x4a\x7b\x0c\x8e\xe0\x3b\x76\x38\x71\x4f\xa0\x97\x9a\x8c\x07\x2b\xd4\xfa\x6c\x7a\x96\xaa\x26\x8c\xec\xbb\xe5\x9b\xcb\x90\x48\x84\x38\x5c\x46\xe8\xa3\x97\xac\x20\x51\x6b\x33\x41\x9f\xfe\xf5\x41\xfa\x05\x78\x3e\x9d\xf7\xe6\x53\x1c\x8f\xe3\x18\xc9\x05\x36\xd2\xb6\x8d\xfb\x57\xa3\x8b\xef\xb3\x5d\x9a\x97\xe9\x7a\x1b\x6d\x96\x27\x4f\xaa\x27\xe7\x60\xe9\xd7\xc0\x96\x1a\x1c\x27\x48\x63\x7a\xae\xe5\xb1\x27\xf4\x72\x84\xb6\x90\xad\x25\x6a\xe0\xf5\xcc\x3b\x5a\xf6\xac\xda\x15\x9c\x3e\xf9\x51\x5a\x12\x21\x1a\x76\xde\xf2\x71\xf0\x57\x61\xbd\xd1\xb1\xbb\x32\x68\x05\xa9\x10\x24\x25\xb2\x32\xc0\x97\xa4\xcc\xca\x95\x08\xf1\x9c\x55\xdf\x8a\xa7\x0a\xcf\xc9\x7e\x9f\xe4\x55\x96\x96\x28\xf6\xd8\x15\xf9\x4d\x56\x65\x45\x5e\xa2\xb8\x45\x92\x1f\x70\x97\xe5\x37\x2b\x10\xfb\x8e\x2c\xe8\xc5\xd8\x99\x5f\x5b\xf0\x1c\x23\x35\x73\x66\x25\xd1\x15\xc0\x49\xbf\x02\x39\x43\x35\x9f\xb8\x46\x2f\x55\x3b\xc8\x96\xd0\xea\xdf\x64\x15\xab\x16\x86\xec\x99\xdd\x5c\xa6\x83\x54\x8d\x08\xd1\xf3\x99\xbd\xf4\xcb\xcd\x7f\x4b\x45\x42\xdc\xee\x8b\x87\x19\x3f\xcd\x1e\x92\xaf\xa9\xd8\x15\x8f\x07\xa8\xf5\x28\xa7\xf5\xdc\x01\x62\x91\xe6\xd5\xfe\xf0\x58\x64\x79\x85\x1f\x41\xfc\x57\x0a\x7e\x8a\x3f\x01\x00\x00\xff\xff\xfb\x61\x6b\x5d\x88\x02\x00\x00") + +func testImagesNWayHttpDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesNWayHttpDockerfile, + "test/images/n-way-http/Dockerfile", + ) +} + +func testImagesNWayHttpDockerfile() (*asset, error) { + bytes, err := testImagesNWayHttpDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/n-way-http/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNWayHttpMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x4f\xdb\x3e\x14\xc5\x9f\xff\xfe\x14\x47\x0d\x0f\xad\xd4\xa6\xfc\xd1\xc4\x03\x13\x9a\xb2\xb6\x83\x08\x94\x4c\x49\x00\xf1\x84\x9c\xe4\x36\xb9\x52\x6a\x7b\xb6\xb3\xd0\x6f\x3f\xb9\x80\x34\x34\xbf\xf9\x9e\xe3\xe3\x9f\x8f\x23\x6c\xb4\x39\x5a\xee\x7a\x8f\x8b\xf3\xff\x2f\x51\xf5\x84\xbb\xb1\x26\xab\xc8\x93\x43\x32\xfa\x5e\x5b\x17\x8b\x48\x44\xb8\xe7\x86\x94\xa3\x16\xa3\x6a\xc9\xc2\xf7\x84\xc4\xc8\xa6\xa7\x0f\x65\x89\x47\xb2\x8e\xb5\xc2\x45\x7c\x8e\x79\x30\xcc\xde\xa5\xd9\xe2\xab\x88\x70\xd4\x23\x0e\xf2\x08\xa5\x3d\x46\x47\xf0\x3d\x3b\xec\x79\x20\xd0\x6b\x43\xc6\x83\x15\x1a\x7d\x30\x03\x4b\xd5\x10\x26\xf6\xfd\xe9\x9a\xf7\x90\x58\x44\x78\x7e\x8f\xd0\xb5\x97\xac\x20\xd1\x68\x73\x84\xde\xff\xed\x83\xf4\x27\xe0\xb0\x7a\xef\xcd\xd5\x7a\x3d\x4d\x53\x2c\x4f\xb0\xb1\xb6\xdd\x7a\x78\x33\xba\xf5\x7d\xba\xd9\x65\xe5\x6e\x75\x11\x9f\x9f\x8e\x3c\xa8\x81\x9c\x83\xa5\x5f\x23\x5b\x6a\x51\x1f\x21\x8d\x19\xb8\x91\xf5\x40\x18\xe4\x04\x6d\x21\x3b\x4b\xd4\xc2\xeb\xc0\x3b\x59\xf6\xac\xba\x25\x9c\xde\xfb\x49\x5a\x12\x11\x5a\x76\xde\x72\x3d\xfa\x4f\x65\x7d\xd0\xb1\xfb\x64\xd0\x0a\x52\x61\x96\x94\x48\xcb\x19\xbe\x27\x65\x5a\x2e\x45\x84\xa7\xb4\xba\xcd\x1f\x2a\x3c\x25\x45\x91\x64\x55\xba\x2b\x91\x17\xd8\xe4\xd9\x36\xad\xd2\x3c\x2b\x91\xff\x40\x92\x3d\xe3\x2e\xcd\xb6\x4b\x10\xfb\x9e\x2c\xe8\xd5\xd8\xc0\xaf\x2d\x38\xd4\x48\x6d\xe8\xac\x24\xfa\x04\xb0\xd7\x6f\x40\xce\x50\xc3\x7b\x6e\x30\x48\xd5\x8d\xb2\x23\x74\xfa\x37\x59\xc5\xaa\x83\x21\x7b\x60\x17\x3e\xd3\x41\xaa\x56\x44\x18\xf8\xc0\x5e\xfa\xd3\xe4\x9f\x47\xc5\x42\x94\xc5\xa6\xbc\x56\xab\x49\x1e\x57\xa1\x74\x91\x14\x9b\x5b\x7c\xbb\x86\x3c\xb4\x97\x5f\x44\x95\x14\x37\xbb\x2a\xec\xcf\xe6\x9b\x87\x62\x9b\x16\x0b\x71\x93\xdf\x27\xd9\xcd\xcb\xe3\xae\x28\xd3\x3c\x0b\xda\x20\x3d\x39\x1f\xa2\x5e\xb6\x69\x81\x60\x56\xda\xb7\x6c\x71\x36\x77\x3d\x0d\x03\xcc\xd4\x2e\x16\x82\x5e\x8d\xb6\x5e\x88\x9a\xd5\x95\xf8\x2f\x8e\xd7\x7c\x90\x1d\xad\x46\xcf\x43\xec\x7a\xd4\xac\x70\x36\x0f\x40\x0b\x21\xe2\x9f\xb7\x79\xf6\x7c\x15\x86\xe2\x4f\x00\x00\x00\xff\xff\x97\xe4\xd1\x68\xf0\x02\x00\x00") + +func testImagesNWayHttpMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesNWayHttpMakefile, + "test/images/n-way-http/Makefile", + ) +} + +func testImagesNWayHttpMakefile() (*asset, error) { + bytes, err := testImagesNWayHttpMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/n-way-http/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNWayHttpVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesNWayHttpVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesNWayHttpVersion, + "test/images/n-way-http/VERSION", + ) +} + +func testImagesNWayHttpVersion() (*asset, error) { + bytes, err := testImagesNWayHttpVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/n-way-http/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNWayHttpServerGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x5d\x6f\xdb\x36\x17\xbe\x16\x7f\xc5\x03\x02\x01\xa4\x54\x96\x9c\x14\x2f\xde\x22\x5d\x2f\xbc\x34\x5d\x8d\x06\x76\x11\xb9\x0b\x7a\x49\x4b\x47\x12\x57\x89\xd4\x48\xca\x8a\x31\xf4\xbf\x0f\xa4\xb5\xac\xce\x2e\x06\xec\x4a\x36\xcf\xc7\xf3\x71\x0e\x99\x5f\xb2\x5b\x3d\x1c\x8d\x6c\x5a\x87\xeb\xe5\xd5\xff\xb0\x6b\x09\x9f\xc6\x3d\x19\x45\x8e\x2c\x56\xa3\x6b\xb5\xb1\x19\x63\xf7\xb2\x24\x65\xa9\xc2\xa8\x2a\x32\x70\x2d\x61\x35\x88\xb2\x25\xcc\x91\x14\xbf\x92\xb1\x52\x2b\x5c\x67\x4b\xc4\x3e\x81\xcf\x21\x9e\xbc\x65\x47\x3d\xa2\x17\x47\x28\xed\x30\x5a\x82\x6b\xa5\x45\x2d\x3b\x02\x3d\x95\x34\x38\x48\x85\x52\xf7\x43\x27\x85\x2a\x09\x93\x74\x6d\x00\x99\x5b\x64\xec\xeb\xdc\x40\xef\x9d\x90\x0a\x02\xa5\x1e\x8e\xd0\xf5\x8f\x59\x10\x8e\x31\x00\x68\x9d\x1b\x6e\xf2\x7c\x9a\xa6\x4c\x04\x96\x99\x36\x4d\xde\x9d\xb2\x6c\x7e\xbf\xbe\xbd\xdb\x14\x77\x8b\xeb\x6c\xc9\xd8\x17\xd5\x91\xb5\x30\xf4\xfb\x28\x0d\x55\xd8\x1f\x21\x86\xa1\x93\xa5\xd8\x77\x84\x4e\x4c\xd0\x06\xa2\x31\x44\x15\x9c\xf6\x3c\x27\x23\x9d\x54\x4d\x0a\xab\x6b\x37\x09\x43\xac\x92\xd6\x19\xb9\x1f\xdd\x99\x41\x7f\xb1\x92\x16\x3f\x26\x68\x05\xa1\xc0\x57\x05\xd6\x05\xc7\xcf\xab\x62\x5d\xa4\xec\x71\xbd\xfb\xb8\xfd\xb2\xc3\xe3\xea\xe1\x61\xb5\xd9\xad\xef\x0a\x6c\x1f\x70\xbb\xdd\xbc\x5f\xef\xd6\xdb\x4d\x81\xed\x07\xac\x36\x5f\xf1\x69\xbd\x79\x9f\x82\xa4\x6b\xc9\x80\x9e\x06\xe3\xb9\x6b\x03\xe9\xad\xa3\x2a\x63\x05\xd1\x19\x78\xad\x4f\x64\xec\x40\xa5\xac\x65\x89\x4e\xa8\x66\x14\x0d\xa1\xd1\x07\x32\x4a\xaa\x06\x03\x99\x5e\x5a\x3f\x3c\x0b\xa1\x2a\xd6\xc9\x5e\x3a\xe1\xc2\xff\x7f\xc8\xc9\xd8\x65\xce\x58\x9e\x63\x85\x89\xf6\x96\xcc\x21\xc4\x85\x83\x19\x95\x85\x0a\xe6\xa3\x15\xaa\xea\xc8\xd8\x0c\x77\x4f\xa2\x1f\x3a\x82\x54\x07\x5d\x86\xa6\x37\xbe\x7a\x81\xb9\x74\x31\x68\xe3\xf0\x66\xf9\x66\x89\xc5\x60\xa8\x96\x4f\xa8\xb5\xc6\x42\x8d\x3d\xae\x96\x58\x58\x27\x8c\xc3\xd2\xd7\x3c\xca\xae\x43\x23\x0f\xa4\xe0\xf7\xe9\x6a\x89\xbc\xd6\x3a\x96\x09\x48\x55\x83\x96\xca\xd9\x13\x13\xeb\xed\x38\x82\xca\x56\x63\xce\x98\x5a\x52\x61\xc8\x64\x9d\xf7\xe9\x8c\xc2\x09\xe3\xf5\x0c\xfa\x0c\x55\x1a\x12\x8e\xf0\xdb\x68\x1d\xb4\xa2\x67\x94\x14\xc2\x05\xe8\xd7\x6c\x10\xe5\x37\x6f\x66\x2f\xa4\x62\x4c\xf6\x41\x4c\xcc\x22\x5e\x77\xa2\xe1\xfe\xdb\x3b\xff\xe9\x74\xf8\xa7\xc8\xe5\xde\x1f\xce\x12\xc6\x0e\xc2\xf8\xd4\x50\x02\xbc\x83\x2f\xc9\xd6\xca\xc5\xdc\x1f\xf1\x34\x98\x92\x82\x7f\xf6\x09\x6a\xec\xf7\x64\xc2\x38\x67\x15\x36\xe3\x09\x8b\x66\xcb\xe6\xea\xc2\x19\xa9\x9a\x98\x9f\x4e\x79\x0a\x5e\x6b\xed\x3f\xa7\x80\xbf\x7a\x15\x84\xc5\x20\x5c\x8b\x39\x29\x61\x91\x97\xfd\x82\x82\x1a\x7b\x9e\xe2\xca\xe3\x6f\x4e\xd0\xba\xfe\xd1\x66\x3d\xbb\x13\x48\x9c\xfc\x3b\xab\x0f\x47\x3c\x85\x6f\xb0\x56\x15\x3d\xf9\x92\x70\x98\x42\xab\xee\x88\x5e\x7c\x23\x0b\x1b\x96\x34\x5c\xf7\x85\x77\x9f\x27\xde\x99\x7a\x54\x65\xb0\x34\x4e\xf0\x07\x8b\x42\xd7\xcf\xc2\x58\x8a\x13\x16\xe5\x39\x76\xfe\xf5\x28\xb5\xf2\x4f\x01\x19\x7f\xc1\x82\x30\xa7\xe1\xc8\xba\xb0\xad\xbf\xdc\xde\xe1\xfe\xff\x21\xc9\xe8\xae\x23\x83\xa9\x95\x65\xeb\xef\x0c\x95\xce\x82\xe7\x3c\xb4\x72\x1a\x86\xdc\x68\xfc\x93\x72\xbd\x5c\xc2\x90\x1d\x74\x58\xf3\xc8\x0f\x2a\xfb\x18\x16\xf9\xc3\xa8\xca\x98\xe7\x3c\x85\xa7\x16\x4f\x61\xc9\xb3\x87\x39\xf7\xd1\x48\x47\x26\x85\xc1\xe5\x7c\x1e\x06\x14\xb8\x47\x53\x16\xc2\x1f\x49\x54\x64\xe2\x10\x2f\x9c\x70\xa3\xdd\x7e\x4a\x58\x14\xd5\xbd\xcb\x3e\x0c\x46\x2a\x17\x4f\x29\xb8\xfe\xe6\xfd\xfc\x9e\xb0\xc8\x4f\x5a\xe2\xe6\x1d\x2e\x83\x6b\x6f\x21\xf1\xd3\xfc\xfb\xd5\xa5\x1a\xfb\xb7\x90\xaf\x5e\x05\x84\x30\xcc\x9b\x77\xf0\xad\x8a\xd0\xaa\x8e\xf9\xc5\xe1\xa2\xe2\x29\x2e\x4f\x43\x4e\x21\x3d\xd8\x4b\x45\x67\x15\xf9\xc5\x81\xa7\x61\x33\x92\xff\x20\xf3\xdf\x74\xbe\x10\x1a\x60\x58\x14\x94\x7e\x67\x51\xa7\x9b\xec\xf3\xcc\xe3\xec\x5d\xb8\xa8\x9e\x5f\x85\x8b\xc3\xe9\x7e\xfa\xa3\xd3\xc2\xcd\x0a\xb5\xdf\xa9\x67\xa1\xde\x9b\x74\x36\x2a\x99\x87\x78\x2f\xad\x23\xb5\x52\x55\xe1\x7b\x9f\xcb\xbe\xf9\xbb\x4b\x92\x42\xc9\x2e\x61\xdf\xd9\x9f\x01\x00\x00\xff\xff\x90\x35\xd5\xd0\x1a\x07\x00\x00") + +func testImagesNWayHttpServerGoBytes() ([]byte, error) { + return bindataRead( + _testImagesNWayHttpServerGo, + "test/images/n-way-http/server.go", + ) +} + +func testImagesNWayHttpServerGo() (*asset, error) { + bytes, err := testImagesNWayHttpServerGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/n-way-http/server.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNautilusBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\xcd\x5d\x0a\x42\x21\x10\xc5\xf1\xf7\xf6\x32\xf7\x5a\x89\x50\xd0\x62\xd4\x0e\x22\x35\x25\x33\xf6\xb1\xfc\x68\xa8\x05\xe8\xdb\x79\xf9\xfd\x4f\xe4\x73\xf0\xa7\x92\x65\xa9\xf7\xf5\xf2\x48\x90\x1b\x3a\x94\xb0\x03\x75\x68\xa7\xca\xb1\x40\x57\xdb\x2f\x24\x85\x3c\x21\x64\xec\xb8\x5d\xdc\x26\x0a\x4f\x70\xe1\x3f\x9e\x7a\xff\x32\x0b\xb4\x96\x83\xbf\x62\x3c\xf1\x83\x16\xd1\xfd\xc1\xbd\xc7\x13\xc6\x2c\xf0\x09\x00\x00\xff\xff\xcf\x73\x31\xc1\x45\x01\x00\x00") + +func testImagesNautilusBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesNautilusBaseimage, + "test/images/nautilus/BASEIMAGE", + ) +} + +func testImagesNautilusBaseimage() (*asset, error) { + bytes, err := testImagesNautilusBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nautilus/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNautilusDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xc1\x72\xda\x30\x10\x86\xef\x7a\x8a\x7f\xf0\xa5\x9d\xa1\x86\x72\xe8\xa1\x3d\xb9\x84\xb4\x9e\x24\x76\x07\x93\x66\x38\x0a\x7b\xb1\x37\x23\x24\x55\x5a\xd7\xe1\xed\x3b\x26\xa4\x03\x13\x9d\x24\xed\xa7\xd5\xa7\x5f\x09\x96\xce\x1f\x03\xb7\x9d\x60\x31\xff\xfc\x05\x9b\x8e\x70\xd7\xef\x28\x58\x12\x8a\xc8\x7a\xe9\x5c\x88\xa9\x4a\x54\x82\x7b\xae\xc9\x46\x6a\xd0\xdb\x86\x02\xa4\x23\x64\x5e\xd7\x1d\xbd\x55\xa6\xf8\x4d\x21\xb2\xb3\x58\xa4\x73\x7c\x18\x81\xc9\xb9\x34\xf9\xf8\x4d\x25\x38\xba\x1e\x07\x7d\x84\x75\x82\x3e\x12\xa4\xe3\x88\x3d\x1b\x02\xbd\xd4\xe4\x05\x6c\x51\xbb\x83\x37\xac\x6d\x4d\x18\x58\xba\xd3\x35\xe7\x26\xa9\x4a\xb0\x3d\xb7\x70\x3b\xd1\x6c\xa1\x51\x3b\x7f\x84\xdb\x5f\x72\xd0\x72\x12\x1e\x47\x27\xe2\xbf\xce\x66\xc3\x30\xa4\xfa\x24\x9b\xba\xd0\xce\xcc\x2b\x18\x67\xf7\xf9\x72\x55\x54\xab\x4f\x8b\x74\x7e\x3a\xf2\x68\x0d\xc5\x88\x40\x7f\x7a\x0e\xd4\x60\x77\x84\xf6\xde\x70\xad\x77\x86\x60\xf4\x00\x17\xa0\xdb\x40\xd4\x40\xdc\xe8\x3b\x04\x16\xb6\xed\x14\xd1\xed\x65\xd0\x81\x54\x82\x86\xa3\x04\xde\xf5\x72\x15\xd6\x9b\x1d\xc7\x2b\xc0\x59\x68\x8b\x49\x56\x21\xaf\x26\xf8\x9e\x55\x79\x35\x55\x09\x9e\xf2\xcd\xcf\xf2\x71\x83\xa7\x6c\xbd\xce\x8a\x4d\xbe\xaa\x50\xae\xb1\x2c\x8b\x9b\x7c\x93\x97\x45\x85\xf2\x16\x59\xb1\xc5\x5d\x5e\xdc\x4c\x41\x2c\x1d\x05\xd0\x8b\x0f\xa3\xbf\x0b\xe0\x31\x46\x6a\xc6\xcc\x2a\xa2\x2b\x81\xbd\x7b\x15\x8a\x9e\x6a\xde\x73\x0d\xa3\x6d\xdb\xeb\x96\xd0\xba\xbf\x14\x2c\xdb\x16\x9e\xc2\x81\xe3\xf8\x99\x11\xda\x36\x2a\x81\xe1\x03\x8b\x96\xd3\xce\xbb\x47\xa5\x4a\xdd\xae\xcb\x87\x51\x7f\x95\x3f\x64\x3f\x56\x6a\x59\xfe\xda\xa2\x93\x83\x99\x59\xdd\x0b\x9b\x3e\xa6\xcf\xbe\xc5\xe5\xe2\x82\x69\xb4\xe8\xf4\x39\x3a\x8b\xff\x33\xf5\x2f\x00\x00\xff\xff\x77\x1e\x88\xbc\x9d\x02\x00\x00") + +func testImagesNautilusDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesNautilusDockerfile, + "test/images/nautilus/Dockerfile", + ) +} + +func testImagesNautilusDockerfile() (*asset, error) { + bytes, err := testImagesNautilusDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nautilus/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNautilusVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesNautilusVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesNautilusVersion, + "test/images/nautilus/VERSION", + ) +} + +func testImagesNautilusVersion() (*asset, error) { + bytes, err := testImagesNautilusVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nautilus/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNautilusHtmlDataJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xe6\x52\x50\x50\xca\xcc\x4d\x4c\x4f\x55\xb2\x52\x50\xca\x4b\x2c\x2d\xc9\xcc\x29\x2d\xd6\xcb\x2a\x48\x57\xe2\xaa\xe5\x02\x04\x00\x00\xff\xff\xbe\x2a\xe3\xd9\x1e\x00\x00\x00") + +func testImagesNautilusHtmlDataJsonBytes() ([]byte, error) { + return bindataRead( + _testImagesNautilusHtmlDataJson, + "test/images/nautilus/html/data.json", + ) +} + +func testImagesNautilusHtmlDataJson() (*asset, error) { + bytes, err := testImagesNautilusHtmlDataJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nautilus/html/data.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetGitignore = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd2\xcf\x4b\x2d\xe1\x02\x04\x00\x00\xff\xff\xdf\x93\xd0\xbb\x05\x00\x00\x00") + +func testImagesNetGitignoreBytes() ([]byte, error) { + return bindataRead( + _testImagesNetGitignore, + "test/images/net/.gitignore", + ) +} + +func testImagesNetGitignore() (*asset, error) { + bytes, err := testImagesNetGitignoreBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/net/.gitignore", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\xcc\x29\xc8\xcc\x4b\xb5\x32\xd6\x33\xe3\x4a\x2c\xca\xb5\x4d\x2c\xca\x35\x36\x2a\x33\xd3\x47\x15\x06\xa9\x03\x91\x65\x16\xc8\x12\x05\x05\xc9\x66\x26\x39\xa9\xb6\x50\x1a\x59\x0a\x10\x00\x00\xff\xff\xe5\x8d\xa8\xc0\x5c\x00\x00\x00") + +func testImagesNetBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesNetBaseimage, + "test/images/net/BASEIMAGE", + ) +} + +func testImagesNetBaseimage() (*asset, error) { + bytes, err := testImagesNetBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/net/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\x41\x6b\xc3\x30\x0c\x85\xef\xf9\x15\xc6\xa7\xa6\x6c\xf5\x3d\x50\xd8\xff\x28\x21\xc8\x89\x6a\xc4\x14\x2b\xd8\x4e\xa1\xfd\xf5\xa3\x71\xba\xb5\x25\xf3\xd1\xcf\x4f\x8f\xef\x49\x13\xf4\xdf\xe0\x70\x37\xe0\x19\x66\x4e\xdd\x85\x22\x59\x62\x4a\x57\x75\x54\x27\x6d\xcc\x9f\xd0\x4c\xb3\x65\xea\x75\x5b\x57\x15\x0b\x0c\xbb\x4a\x29\xa5\xf4\x17\x49\x67\xe1\x86\xdc\x85\x99\x31\x76\x4e\x8c\x71\xd2\x0c\x78\x3e\xd8\x1b\xeb\x8f\xec\x72\xd2\x59\xf2\x10\xae\x4f\x02\x93\x0d\x59\xa9\xab\xea\xd7\x90\x63\x3d\x8c\xa8\x8e\x4a\x7b\x4c\xeb\xc4\xea\xbe\x8b\x8d\x93\xee\x01\xfc\x1e\xb2\xbe\x5f\x53\x36\xfd\x77\x43\x0c\x7d\x5c\x8a\x8e\x40\xfe\xe0\x44\xb7\x59\x1f\x70\x5a\xf4\xe5\xb1\xf0\x1a\x93\x30\x26\x43\x23\x38\x8c\xc6\x63\x32\xbd\x8c\xa3\xf8\x6d\x96\xc2\x98\x87\xf4\xff\x4c\xbb\xd4\x38\x13\xa3\x0b\x32\x4f\xaf\x2d\xd6\x5b\x7d\xde\xa1\x5f\xf9\x1d\x8b\xdd\x9d\xf4\x7e\xaf\xdb\x3a\x7f\x24\x70\xb9\x18\xcc\x49\x46\xf0\xe0\x70\x78\x94\x2b\xde\x38\xd0\x05\x12\xea\x22\x08\x30\x6f\x40\x3c\x2d\xab\xd9\x40\x2d\x6f\xf1\x2d\xb2\xb0\xbb\x37\x67\x5b\xee\x5b\x57\x3f\x01\x00\x00\xff\xff\xd3\x9e\xa5\xa6\xe2\x02\x00\x00") + +func testImagesNetBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesNetBuild, + "test/images/net/BUILD", + ) +} + +func testImagesNetBuild() (*asset, error) { + bytes, err := testImagesNetBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/net/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x4d\x6f\x9c\x3c\x14\x85\xf7\xfe\x15\x47\x83\x14\xbd\xaf\x34\x81\x34\x8b\x2e\xda\x15\x99\x90\x06\x25\x81\x16\x66\x1a\x65\x15\x19\xb8\x03\x57\x65\x6c\xc7\x1f\x25\xf3\xef\x2b\x48\x22\x75\x54\x76\xf8\x3e\x3e\x7e\x7c\x1c\x61\xa3\xcd\xd1\x72\x3f\x78\x5c\x5e\x7c\xfa\x8c\xed\x40\xb8\x0b\x0d\x59\x45\x9e\x1c\xd2\xe0\x07\x6d\x5d\x2c\x22\x11\xe1\x9e\x5b\x52\x8e\x3a\x04\xd5\x91\x85\x1f\x08\xa9\x91\xed\x40\x1f\x93\x35\x7e\x92\x75\xac\x15\x2e\xe3\x0b\xfc\x37\x03\xab\xf7\xd1\xea\xff\xaf\x22\xc2\x51\x07\x1c\xe4\x11\x4a\x7b\x04\x47\xf0\x03\x3b\xec\x79\x24\xd0\x6b\x4b\xc6\x83\x15\x5a\x7d\x30\x23\x4b\xd5\x12\x26\xf6\xc3\x72\xcc\x7b\x48\x2c\x22\x3c\xbd\x47\xe8\xc6\x4b\x56\x90\x68\xb5\x39\x42\xef\xff\xe6\x20\xfd\x22\x3c\x7f\x83\xf7\xe6\x4b\x92\x4c\xd3\x14\xcb\x45\x36\xd6\xb6\x4f\xc6\x37\xd0\x25\xf7\xf9\x26\x2b\xea\xec\xfc\x32\xbe\x58\xb6\xec\xd4\x48\xce\xc1\xd2\x4b\x60\x4b\x1d\x9a\x23\xa4\x31\x23\xb7\xb2\x19\x09\xa3\x9c\xa0\x2d\x64\x6f\x89\x3a\x78\x3d\xfb\x4e\x96\x3d\xab\x7e\x0d\xa7\xf7\x7e\x92\x96\x44\x84\x8e\x9d\xb7\xdc\x04\x7f\x52\xd6\x87\x1d\xbb\x13\x40\x2b\x48\x85\x55\x5a\x23\xaf\x57\xb8\x4a\xeb\xbc\x5e\x8b\x08\x8f\xf9\xf6\xb6\xdc\x6d\xf1\x98\x56\x55\x5a\x6c\xf3\xac\x46\x59\x61\x53\x16\xd7\xf9\x36\x2f\x8b\x1a\xe5\x0d\xd2\xe2\x09\x77\x79\x71\xbd\x06\xb1\x1f\xc8\x82\x5e\x8d\x9d\xfd\xb5\x05\xcf\x35\x52\x37\x77\x56\x13\x9d\x08\xec\xf5\x9b\x90\x33\xd4\xf2\x9e\x5b\x8c\x52\xf5\x41\xf6\x84\x5e\xff\x26\xab\x58\xf5\x30\x64\x0f\xec\xe6\xc7\x74\x90\xaa\x13\x11\x46\x3e\xb0\x97\x7e\x59\xf9\xe7\x52\xb1\x10\x37\x55\xf9\x30\xeb\x67\xf9\x43\xfa\x2d\x13\x62\x53\x95\x75\xfd\x7c\xb5\xcb\xef\xaf\x9f\x37\xe5\xf7\x27\xbc\xd0\x21\x9c\xff\xc8\x1e\x76\x69\xb5\xb9\x3d\x77\x73\x56\x8b\x24\x38\x9b\x34\xac\x12\x21\x16\x48\x91\x47\xa2\xc8\x8b\x6a\x57\x40\x9a\x5f\x08\xa6\x93\x9e\x70\x76\xb6\xfc\xc9\xae\x43\x1b\xec\x28\xfe\x04\x00\x00\xff\xff\x17\xf3\x8e\x7e\xba\x02\x00\x00") + +func testImagesNetDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesNetDockerfile, + "test/images/net/Dockerfile", + ) +} + +func testImagesNetDockerfile() (*asset, error) { + bytes, err := testImagesNetDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/net/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x4f\xdb\x3e\x14\xc5\x9f\xff\xfe\x14\x47\x0d\x0f\xad\x54\x52\xfe\x68\xe2\x81\x09\x4d\x59\xdb\x41\x04\x4a\xa6\x24\x80\x78\x42\x4e\x72\x9b\x5c\x29\xb5\x33\xfb\x66\xa1\xdf\x7e\x4a\x01\x69\xd5\xfc\xe6\x7b\x8e\x8f\x7f\x3e\x0e\xb0\xb6\xfd\xc1\x71\xd3\x0a\x2e\x2f\xfe\xbf\x42\xd1\x12\xee\x87\x92\x9c\x21\x21\x8f\x68\x90\xd6\x3a\x1f\xaa\x40\x05\x78\xe0\x8a\x8c\xa7\x1a\x83\xa9\xc9\x41\x5a\x42\xd4\xeb\xaa\xa5\x4f\x65\x89\x27\x72\x9e\xad\xc1\x65\x78\x81\xf9\x64\x98\x7d\x48\xb3\xc5\x57\x15\xe0\x60\x07\xec\xf5\x01\xc6\x0a\x06\x4f\x90\x96\x3d\x76\xdc\x11\xe8\xad\xa2\x5e\xc0\x06\x95\xdd\xf7\x1d\x6b\x53\x11\x46\x96\xf6\x78\xcd\x47\x48\xa8\x02\xbc\x7c\x44\xd8\x52\x34\x1b\x68\x54\xb6\x3f\xc0\xee\xfe\xf6\x41\xcb\x11\x78\x5a\xad\x48\x7f\xbd\x5a\x8d\xe3\x18\xea\x23\x6c\x68\x5d\xb3\xea\xde\x8d\x7e\xf5\x10\xaf\xb7\x49\xbe\x3d\xbf\x0c\x2f\x8e\x47\x1e\x4d\x47\xde\xc3\xd1\xaf\x81\x1d\xd5\x28\x0f\xd0\x7d\xdf\x71\xa5\xcb\x8e\xd0\xe9\x11\xd6\x41\x37\x8e\xa8\x86\xd8\x89\x77\x74\x2c\x6c\x9a\x25\xbc\xdd\xc9\xa8\x1d\xa9\x00\x35\x7b\x71\x5c\x0e\x72\x52\xd6\x27\x1d\xfb\x13\x83\x35\xd0\x06\xb3\x28\x47\x9c\xcf\xf0\x3d\xca\xe3\x7c\xa9\x02\x3c\xc7\xc5\x5d\xfa\x58\xe0\x39\xca\xb2\x28\x29\xe2\x6d\x8e\x34\xc3\x3a\x4d\x36\x71\x11\xa7\x49\x8e\xf4\x07\xa2\xe4\x05\xf7\x71\xb2\x59\x82\x58\x5a\x72\xa0\xb7\xde\x4d\xfc\xd6\x81\xa7\x1a\xa9\x9e\x3a\xcb\x89\x4e\x00\x76\xf6\x1d\xc8\xf7\x54\xf1\x8e\x2b\x74\xda\x34\x83\x6e\x08\x8d\xfd\x4d\xce\xb0\x69\xd0\x93\xdb\xb3\x9f\x3e\xd3\x43\x9b\x5a\x05\xe8\x78\xcf\xa2\xe5\x38\xf9\xe7\x51\xa1\x52\x79\xb6\xce\x6f\x0c\x89\x8a\xb2\xf5\x1d\xbe\xdd\x40\xef\xeb\xab\x2f\xaa\x88\xb2\xdb\x6d\x31\xed\xcf\xe6\xeb\xc7\x6c\x13\x67\x0b\x75\x9b\x3e\x44\xc9\xed\xeb\xd3\x36\xcb\xe3\x34\x99\xb4\x4e\x0b\x79\x99\x32\x5e\x37\x71\x86\xc9\x6c\xac\xd4\xec\x70\x36\xf7\x2d\x75\x1d\xfa\xb1\x5e\x2c\x14\xbd\xf5\xd6\x89\x52\x25\x9b\x6b\xf5\x5f\x18\xae\x78\xaf\x1b\x3a\x1f\x84\xbb\xd0\xb7\x28\xd9\xe0\x6c\x3e\x91\x2c\x94\x0a\x7f\xde\xa5\xc9\xcb\xf5\x34\x54\x7f\x02\x00\x00\xff\xff\x73\xb5\x78\x02\xe9\x02\x00\x00") + +func testImagesNetMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesNetMakefile, + "test/images/net/Makefile", + ) +} + +func testImagesNetMakefile() (*asset, error) { + bytes, err := testImagesNetMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/net/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesNetVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesNetVersion, + "test/images/net/VERSION", + ) +} + +func testImagesNetVersion() (*asset, error) { + bytes, err := testImagesNetVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/net/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetCommonBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xd1\x8a\xac\x30\x0c\x40\xdf\xfb\x15\xa5\x4f\x3a\xcc\x1d\xdf\x85\x81\xfb\x1f\x22\x25\xd5\x18\xc2\x46\x23\xb5\x1d\x98\xf9\xfa\x45\xdd\x45\x84\xc5\xc7\x36\xa7\x87\xd3\xcc\xd0\x7d\x01\x61\xd1\xe3\x00\x59\x92\x7f\xf1\xc2\x81\x85\xd3\xdb\x3e\x6d\xe3\xaa\xea\xb8\xa8\xe7\x1c\x84\x3b\xd7\x96\xc6\x88\x42\x5f\x18\x6b\xad\x75\xff\x59\x7d\x80\x0f\x8a\x8f\x59\x70\xf1\xa4\x55\x45\x5a\xf7\x38\x3c\xc2\x47\xdc\x7d\xa7\x48\xbd\x70\x88\x10\xdf\xee\x6e\x4a\x63\x8e\xf3\xae\x99\x60\x44\xfb\xdc\xb8\xdf\x94\x83\x5f\x81\x25\x76\xcb\x96\xd4\xe9\x38\xea\xf4\x20\x75\xed\x66\x1a\x58\x90\xa2\xe6\xf9\x2c\xfa\xf9\xd8\xbf\xf5\xdd\x59\x41\xa2\xa1\x68\xdc\xed\xe6\xda\x72\x1f\x24\xa0\xdd\x0d\x39\xe9\x08\x13\x10\xf6\xab\x7d\x9d\x5d\x2e\x24\xf2\x0b\x12\x5e\x87\x80\xc8\x1f\x11\x8d\xab\x4f\x85\xed\x75\x49\x69\xbe\x03\x00\x00\xff\xff\x8b\x78\xb8\x4a\xa9\x01\x00\x00") + +func testImagesNetCommonBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesNetCommonBuild, + "test/images/net/common/BUILD", + ) +} + +func testImagesNetCommonBuild() (*asset, error) { + bytes, err := testImagesNetCommonBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/net/common/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetCommonCommonGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x92\x4f\x4f\xf4\x36\x10\xc6\xcf\xf8\x53\x3c\xda\x13\xa0\x25\xa1\xa8\xa7\xf6\xb4\x05\xaa\xa6\xa0\xac\xb4\x59\x8a\x38\x7a\x9d\xd9\xc4\x22\xb1\xdd\xf1\x98\x10\x21\xbe\xfb\xab\x84\xe5\xdf\xfb\xde\x12\xcd\xe3\xdf\xfc\x66\xec\xfc\x54\x5d\xfa\x30\xb2\x6d\x5a\xc1\xc5\xf9\x6f\xbf\x63\xdb\x12\x6e\xd2\x8e\xd8\x91\x50\xc4\x2a\x49\xeb\x39\x66\x4a\xdd\x5a\x43\x2e\x52\x8d\xe4\x6a\x62\x48\x4b\x58\x05\x6d\x5a\xc2\xa1\xb2\xc4\x7f\xc4\xd1\x7a\x87\x8b\xec\x1c\xc7\x53\x60\x71\x28\x2d\x4e\xfe\x54\xa3\x4f\xe8\xf5\x08\xe7\x05\x29\x12\xa4\xb5\x11\x7b\xdb\x11\xe8\xd9\x50\x10\x58\x07\xe3\xfb\xd0\x59\xed\x0c\x61\xb0\xd2\xce\x4d\x0e\x88\x4c\x3d\x1c\x00\x7e\x27\xda\x3a\x68\x18\x1f\x46\xf8\xfd\xd7\x14\xb4\x28\x05\x00\xad\x48\xf8\x23\xcf\x87\x61\xc8\xf4\x6c\x99\x79\x6e\xf2\xee\x2d\x15\xf3\xdb\xe2\xf2\xba\xac\xae\xcf\x2e\xb2\x73\xa5\xee\x5c\x47\x31\x82\xe9\xff\x64\x99\x6a\xec\x46\xe8\x10\x3a\x6b\xf4\xae\x23\x74\x7a\x80\x67\xe8\x86\x89\x6a\x88\x9f\x3c\x07\xb6\x62\x5d\xb3\x44\xf4\x7b\x19\x34\x93\xaa\x6d\x14\xb6\xbb\x24\xdf\x16\xf4\x6e\x65\x23\xbe\x06\xbc\x83\x76\x58\xac\x2a\x14\xd5\x02\x7f\xad\xaa\xa2\x5a\xaa\xfb\x62\xfb\xcf\xfa\x6e\x8b\xfb\xd5\x66\xb3\x2a\xb7\xc5\x75\x85\xf5\x06\x97\xeb\xf2\xaa\xd8\x16\xeb\xb2\xc2\xfa\x6f\xac\xca\x07\xdc\x14\xe5\xd5\x12\x64\xa5\x25\x06\x3d\x07\x9e\xdc\x3d\xc3\x4e\xab\xa3\x3a\x53\x15\xd1\xb7\xe6\x7b\xff\x26\x13\x03\x19\xbb\xb7\x06\x9d\x76\x4d\xd2\x0d\xa1\xf1\x4f\xc4\xce\xba\x06\x81\xb8\xb7\x71\xba\xbc\x08\xed\x6a\xd5\xd9\xde\x8a\x96\xf9\xff\x97\x71\x32\x75\x9a\x2b\x15\xb4\x79\x9c\x20\xc6\xf7\xbd\x77\x4a\xd9\x3e\x78\x16\x2c\x3a\xdf\x2c\x94\xca\x73\x6c\x92\x73\xc4\xd3\xec\x1a\xa6\xb3\xe4\x64\xd2\x8c\xc4\x4f\x13\xce\x83\x93\xcb\x94\x8c\x81\x3e\x92\x4e\x88\xf7\xda\x10\x5e\xd4\x51\x9e\xa3\xa4\x61\x1d\xde\x1c\x98\x24\xf1\xe4\x06\x47\x03\xa8\x0f\x32\xc2\x1f\x6a\x51\x38\x19\x49\x4c\x13\x74\x47\x08\x3e\xa4\x4e\x0b\xd5\x33\x64\x37\x62\xcf\xbe\x9f\xfd\xff\xad\xd6\x25\xce\xde\xcf\x69\x6e\x52\x4f\x4e\x32\x75\xf4\xd9\xe9\xf8\xe4\x53\xe3\xe5\x75\x26\x6c\x92\x9b\x4f\xff\x3c\xc3\x12\xa2\x1f\xa7\xe5\x59\xf7\xee\x92\x61\x3b\xbd\x6a\x7a\x26\x93\x64\xbe\x85\x99\x20\x14\x05\xc6\xd7\x94\xa9\xa3\x4d\x72\xc7\x9d\x6f\x1a\x62\x9c\x76\xbe\xc9\x6e\xe7\xef\xe5\xc7\x34\x5f\xba\x9f\x80\x98\x3d\xab\x57\xf5\x23\x00\x00\xff\xff\xb0\x3a\x4e\xbc\xa7\x03\x00\x00") + +func testImagesNetCommonCommonGoBytes() ([]byte, error) { + return bindataRead( + _testImagesNetCommonCommonGo, + "test/images/net/common/common.go", + ) +} + +func testImagesNetCommonCommonGo() (*asset, error) { + bytes, err := testImagesNetCommonCommonGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/net/common/common.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetMainGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x56\x51\x6f\xdb\x38\x12\x7e\x16\x7f\xc5\x1c\x0f\xed\x4a\x8d\x22\xa5\xb9\x3d\x5c\xe1\x6d\x0a\xb8\xd9\x04\xcd\x6d\x9a\x04\x76\xba\xc5\xa2\xed\x03\x2d\x8d\x65\x9e\x65\x52\x25\xa9\xb8\x46\x2f\xff\xfd\x30\xa4\x64\xcb\x49\xae\x77\xc0\x3e\xd9\x14\xc9\x99\x6f\xbe\x99\xf9\x86\xf9\x0b\x76\xaa\x9b\x8d\x91\xd5\xc2\xc1\xf1\xd1\xcb\x9f\xe1\x76\x81\xf0\x5b\x3b\x43\xa3\xd0\xa1\x85\x71\xeb\x16\xda\xd8\x8c\xb1\x4b\x59\xa0\xb2\x58\x42\xab\x4a\x34\xe0\x16\x08\xe3\x46\x14\x0b\x84\x6e\x27\x85\xdf\xd1\x58\xa9\x15\x1c\x67\x47\x10\xd3\x01\xde\x6d\xf1\xe4\x17\xb6\xd1\x2d\xac\xc4\x06\x94\x76\xd0\x5a\x04\xb7\x90\x16\xe6\xb2\x46\xc0\x6f\x05\x36\x0e\xa4\x82\x42\xaf\x9a\x5a\x0a\x55\x20\xac\xa5\x5b\x78\x27\x9d\x89\x8c\xfd\xd1\x19\xd0\x33\x27\xa4\x02\x01\x85\x6e\x36\xa0\xe7\xc3\x53\x20\x1c\x63\x00\x00\x0b\xe7\x9a\x51\x9e\xaf\xd7\xeb\x4c\x78\x94\x99\x36\x55\x5e\x87\x53\x36\xbf\xbc\x38\x3d\xbb\x9a\x9e\x1d\x1e\x67\x47\x8c\x7d\x50\x35\x5a\x0b\x06\xbf\xb6\xd2\x60\x09\xb3\x0d\x88\xa6\xa9\x65\x21\x66\x35\x42\x2d\xd6\xa0\x0d\x88\xca\x20\x96\xe0\x34\xe1\x5c\x1b\xe9\xa4\xaa\x52\xb0\x7a\xee\xd6\xc2\x20\x2b\xa5\x75\x46\xce\x5a\xb7\x47\x50\x8f\x4a\x5a\x18\x1e\xd0\x0a\x84\x02\x3e\x9e\xc2\xc5\x94\xc3\xdb\xf1\xf4\x62\x9a\xb2\x8f\x17\xb7\xef\xae\x3f\xdc\xc2\xc7\xf1\x64\x32\xbe\xba\xbd\x38\x9b\xc2\xf5\x04\x4e\xaf\xaf\x7e\xbd\xb8\xbd\xb8\xbe\x9a\xc2\xf5\x39\x8c\xaf\xfe\x80\xdf\x2e\xae\x7e\x4d\x01\xa5\x5b\xa0\x01\xfc\xd6\x18\xc2\xae\x0d\x48\xa2\x0e\xcb\x8c\x4d\x11\xf7\x9c\xcf\x75\x00\x63\x1b\x2c\xe4\x5c\x16\x50\x0b\x55\xb5\xa2\x42\xa8\xf4\x1d\x1a\x25\x55\x05\x0d\x9a\x95\xb4\x94\x3c\x0b\x42\x95\xac\x96\x2b\xe9\x84\xf3\xeb\x47\xe1\x64\xec\x45\xce\x58\x23\x8a\x25\x19\x59\x09\xa9\x18\x93\xab\x46\x1b\x07\x31\x8b\xf8\x6c\xe3\xd0\x72\x16\x71\x54\x85\x2e\xa5\xaa\xf2\x7f\x59\xad\xe8\xc3\xbc\x16\x95\xff\x5d\x39\xfa\x91\x3a\x97\xba\x75\xb2\xa6\x45\xad\xfd\x96\x42\x97\x53\xee\xe8\xbf\xf6\x56\x88\x36\x55\x59\xce\x58\xc4\x97\xaf\x6c\x26\x75\xbe\xdc\xd6\x67\xee\xd0\xba\x5c\xae\x44\x85\x36\xa7\xbb\x85\x5e\xad\x82\xb3\xff\x7d\x56\x09\xc7\x59\xc2\x98\xdb\x34\x08\xa6\x55\x0a\xcd\x7b\xd1\xc0\x4a\x34\x9f\x82\xd3\x2f\xc1\x5a\x36\xf1\x7b\xbb\x83\x13\xfc\xda\xa2\x75\xff\x9c\x5e\x5f\x81\x75\xa6\x2d\x1c\x7c\x67\x51\xb0\x00\x10\xee\xb2\x48\x37\x81\x3f\xa9\x1c\x9a\xb9\x28\xf0\xfb\x3d\xbb\x67\xec\x4e\x18\xa2\x29\xcf\x81\xe8\xb0\xdb\xf4\x90\x2f\xa1\x4a\xa8\xa5\xc2\x0c\x28\x89\xad\x25\x7e\x85\xa9\x2c\xcc\xb0\xd6\x6b\x3a\xea\x2f\x96\x68\x0b\x23\x83\xf9\x8c\x45\xc1\xce\x0e\x48\x34\x45\x73\x87\xb0\x43\x12\x4d\x1e\x40\x8b\xae\x3b\x6c\xfd\x87\x7b\x6f\x37\x44\x60\xa9\x5c\x05\xd1\x00\x73\xa3\x57\xdd\x57\x50\x62\x85\x54\xfe\xdd\x52\x2a\xeb\xa8\x51\xb3\x3e\x70\x0b\x27\xb0\x12\x4b\x9c\xf4\x44\xc6\xc9\x96\xdc\x5a\x57\xd7\xad\x6b\x5a\x37\x40\x39\x03\x5f\x28\xd9\xdb\x76\x3e\x47\x43\xcc\xcc\x5b\x55\xf8\x72\x8a\x13\x3a\x20\x95\x74\xe7\x14\x5a\x9c\xb0\xa8\xd6\x55\x36\xc5\x6e\x4d\x8b\x6e\x07\xfe\x4d\xc6\xb3\x4b\xbb\xd0\xc6\x91\x9a\x24\x8c\x45\x72\x1e\xb8\xcd\x02\x11\x27\x27\xc0\xb9\x27\x46\x7b\x10\x29\xa0\x31\x30\x3a\x01\xfc\x86\x45\xeb\x3a\xc4\x71\xb8\x12\x16\x69\x67\xa0\xe3\x29\x61\x11\x19\xa5\x6b\x27\x27\xa0\x64\xed\xad\x45\xf3\x95\xcb\x6e\x8c\x54\x2e\xe6\xc1\xf2\xe8\xb3\xfa\xac\x38\x1c\x40\x58\x66\xb3\x6c\xea\x09\x8e\x13\xb2\x10\x69\x9b\x9d\x7d\x93\x2e\x3e\xa2\xd5\x3d\x60\x6d\x31\x18\xa2\x10\xbc\xa1\x79\xcc\xcf\x8c\xd1\x66\x04\xcf\xee\xb8\xc7\x99\xfc\x19\x47\x2f\xbd\x23\x36\xf4\x45\xcd\x95\xbd\x13\xaa\xac\xf1\xbc\x55\x45\xcc\x73\xd3\xaa\x9c\xa7\xb0\xf0\xdf\x26\xdb\xea\xa6\xab\x43\x5c\x44\x0c\x49\x85\x25\x4e\x0d\x69\x98\x87\x38\x20\xba\xbf\x71\x2e\x9c\xa8\x63\xef\xe8\x52\x5a\x87\x6a\xac\x4a\x7f\x20\x1e\x1c\x4e\x89\x46\x42\x7b\xbf\x4d\xfd\x20\xe1\x04\xb5\xc6\x4a\xd4\x93\xae\xb6\x46\x94\x43\x16\x51\xb3\x2c\x69\x61\x84\xaa\x70\x5b\xb0\x14\xd8\xde\xf1\x83\x13\xe0\x40\xfc\x2c\x7d\x6d\x93\xdf\x8e\xa1\xdf\x85\x89\x59\x14\x3d\xdf\x83\xc2\x7d\x50\x3c\x05\xce\x53\x16\x45\x7c\x5c\x96\x5e\x56\xa9\x1f\xbd\xae\x39\x0d\x33\xa9\xbc\xfc\xc7\x98\x55\x19\xbc\x3c\xfe\x47\x76\x94\x1d\x65\x2f\x47\xaf\x8e\x5e\x1d\x25\xd4\xb0\x8e\x46\x42\x18\x6b\x6b\x59\xd7\xc0\x0f\x28\x15\xdc\xb4\xca\xf7\xb7\x42\xb7\xd6\x66\x09\xa4\x42\xbe\x7f\x7a\x26\x57\xba\xec\x23\x01\x61\x10\x9c\x91\x55\x85\x34\x88\xdc\xc2\xe8\xb6\x5a\xf4\x96\xde\xdd\xde\xde\xf8\x29\x85\xd6\xd9\x8c\x27\x3f\x88\xab\xaf\x62\x1e\xec\xee\x22\xeb\x94\xc0\xe9\xbe\xf8\x21\x16\x77\x42\xd6\x34\xea\x46\xfc\x60\x48\xe2\x01\x4f\x7e\xe8\xa3\xeb\x8d\x14\x78\xa7\x74\x3b\x2f\x5e\x19\x7b\xfd\x73\xda\xc7\x1f\xac\x6e\x2d\xde\x08\x63\x31\xde\xeb\xd6\x0e\x5b\x68\xd7\xe7\xcf\xff\x4b\x0f\x6f\x2b\x6c\x1e\xf3\xf7\xad\x75\x60\xd1\xf5\xe3\xf0\xb0\xa3\x51\x1b\x38\xb4\x21\xb5\x16\x11\x0e\x0f\x17\x58\x37\x7c\xaf\xd8\x1e\x48\xd5\x40\xff\xbf\x0f\xb4\x30\xa8\x9e\xb4\xf0\xba\x59\x56\x6f\x0e\x5f\x93\xc2\xbc\x39\x7c\xdd\x8f\xd2\x37\xa4\x7e\xe8\x5a\xa3\x76\xf7\x09\x23\x57\xc2\x1d\x16\xb5\xb6\xb8\x16\x92\xfe\x49\x54\x8e\x8f\x40\x09\x97\x5d\xe1\xfa\x94\x76\x3e\x0a\xe9\x4e\xfd\x46\x9c\xa4\x8f\xef\x84\xe2\x78\xe2\x8e\xe7\xc3\xf8\x3b\xbb\x68\xf6\x95\xcc\x83\x0e\xd2\x9e\x82\x11\xeb\x7d\xb5\x4f\x20\xde\xea\xb1\x97\x18\x6d\x92\xdd\xfc\x4a\x41\x87\x06\x0b\x45\xf0\x89\x6c\x7d\xf1\x49\xd2\xcb\xa0\xa1\x9d\xb1\xed\x19\x42\xd7\x79\x88\x07\x42\x39\x3a\x01\x9a\xfb\xd9\x07\xb5\x12\xc6\x2e\x44\x1d\x7f\xfa\x42\x8a\x1f\xef\x00\x25\x69\x5f\x24\xc9\x2f\xfe\xce\x5f\x06\xe2\xda\xf1\xba\x85\xfa\xfd\x3e\x05\xd2\x41\xaf\x8f\xf3\x98\x5f\xa8\x3b\x51\xcb\x72\x5b\x66\x54\x73\xfb\xb2\x79\xcf\x1e\x48\x58\xe7\x76\x04\xcf\x0e\xe8\x58\xef\x9b\x6d\x27\x03\x81\x1e\x38\x0c\xd7\x2b\x34\xdd\x77\x8a\x34\x7e\xde\x4b\x6e\x0a\xfc\xaf\xc0\xd3\x27\xe6\x4f\x8f\xbd\x1f\x37\x1d\x4f\x93\x56\xc5\xc1\xde\xc0\xb7\x47\xf9\xff\xc6\x1a\x0c\x8d\xe0\xa7\x67\x77\x3f\xed\x95\x76\xef\x23\xa1\x8a\xc8\xf3\x47\x62\xde\x7d\xa0\xb9\xde\x09\x88\xe7\xab\xef\xcd\x7d\x6d\xca\x42\x4d\x3d\xb4\x11\xaf\xfd\xab\x3a\x9b\xa0\x6d\xb4\xb2\xf8\xd1\x48\x47\xa1\x18\x78\xd1\x7d\x0f\x73\xc3\x6b\xf7\x80\xf5\x47\x58\x7c\x8e\x5e\x18\x62\xaa\x35\xf5\x8d\x30\xce\x57\x53\xf7\xd0\xcb\xa6\x4d\x2d\x5d\x6c\xb2\x0f\x93\xcb\xec\x46\xb8\x45\x0a\x3c\xa7\xde\x95\x73\xa8\x51\xc5\xfd\x95\x84\xaa\xe5\x6f\xbb\x99\xe6\xb9\x8a\xd7\x81\xb8\x69\xd3\x39\x97\x3d\x73\x9d\xef\xf0\x80\xe9\xea\x64\x6b\x2a\x85\x9f\x8f\xfc\x50\x0e\x89\xe8\x92\x12\x14\x60\x74\xb2\x3d\xf7\xe9\x38\x74\x82\xc9\xde\xea\x72\x33\x7c\x0a\xec\x23\xe0\xef\xe9\x2d\xad\xaa\xad\xd7\x99\x2e\x37\xfc\x49\x27\xb4\xb3\x7d\x8f\x84\xd7\x70\x36\x41\x51\x8e\xeb\x3a\x0e\x6e\x42\xe4\x0f\xba\xe3\x07\x11\xfb\x86\x06\x83\x82\x9e\xde\xde\xf3\xa0\x2b\x9e\xc4\x40\x2f\xd2\xae\xfe\xb7\x15\x18\x3a\x7e\xf0\x5c\x7a\xf8\x5a\xea\xd5\x22\x64\x2d\x26\x3f\xc9\xe3\x2e\x2e\xb4\x72\xa8\x42\x7e\xf7\x50\x7a\xec\xc3\xf7\x25\x81\xfc\xac\x06\xaf\x9b\x67\xd6\xcf\x92\x08\x0d\xb5\xcb\x53\xcf\x9c\x7d\x12\x7a\x57\x29\xfc\xfd\x71\x88\xe4\xfb\xbc\xf3\x4d\x09\xd2\xcb\x3d\x5f\xfc\xe0\x09\x07\xbd\xb6\x5a\x74\x6d\x73\xe9\xfb\xd6\x3f\x4c\xee\xd9\x7f\x02\x00\x00\xff\xff\x50\x5e\xd3\x44\x36\x0f\x00\x00") + +func testImagesNetMainGoBytes() ([]byte, error) { + return bindataRead( + _testImagesNetMainGo, + "test/images/net/main.go", + ) +} + +func testImagesNetMainGo() (*asset, error) { + bytes, err := testImagesNetMainGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/net/main.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetNatBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\xd0\xd1\xaa\x83\x30\x0c\x06\xe0\xfb\x3e\x45\xe9\x95\x8e\x9d\xf5\x5e\x18\x9c\xf7\x10\x91\x54\x63\x09\x27\x1a\x69\xeb\x0e\xdb\xd3\x8f\xd9\x0d\x11\x86\x97\x6d\x7e\x92\x8f\x7f\x86\xee\x0f\x3c\x16\x3d\x0e\xb0\x70\x6a\x6f\x14\xc9\x11\x53\xba\xeb\xab\xae\x8d\xb5\xdb\x47\x35\x2f\x8e\xa9\x33\x4d\xa9\x14\x0b\xf4\x85\xd2\x5a\x6b\xf3\x4b\xd2\x3a\x78\x20\xb7\x61\x61\x8c\xad\x17\x6b\xbd\x54\x3d\x0e\x17\xf7\x60\x73\xce\x29\x2f\x2d\x93\x0b\x10\xee\xe6\xac\x4a\xa5\xb6\x77\x5e\x33\xc1\x88\xfa\xba\xe6\x3e\x94\x2d\xff\x0a\xc4\xd0\xc5\x95\xd4\xb1\x44\xfc\x07\x4a\x17\x2f\xa6\xc9\xc3\x1e\xe7\xf8\xf6\x26\x8c\xc9\xd2\x08\x1e\xa3\x9d\x30\xd9\x4e\xc6\x51\xa6\xea\xcb\xde\x66\x85\x0c\xc4\xe8\x83\x2c\xf3\xde\xf1\xee\xe5\xe7\x75\x76\x2f\xf0\x2c\xae\xa8\xcd\xe9\x64\x9a\x32\x0f\x12\xf8\x7c\x1d\x96\x24\x23\x4c\xe0\xb1\xff\xc8\x0e\xfb\x0c\x74\x83\x84\xc7\x10\x60\xfe\x82\xa8\x4d\xb5\x13\x36\xc7\x92\x52\x3d\x03\x00\x00\xff\xff\x19\x4f\xbe\xea\xe8\x01\x00\x00") + +func testImagesNetNatBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesNetNatBuild, + "test/images/net/nat/BUILD", + ) +} + +func testImagesNetNatBuild() (*asset, error) { + bytes, err := testImagesNetNatBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/net/nat/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetNatClosewaitGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\x6d\x6f\xe3\xb8\x11\xfe\x2c\xfe\x8a\x39\x01\xb7\x90\x03\x5b\xca\xee\x87\xa2\xd8\xbd\x5d\xc0\x75\x92\x9e\x7b\x81\x1d\xc4\xbe\x06\x87\xa2\x28\x68\x69\x24\x11\x91\x49\x95\xa4\xec\x73\x77\xf3\xdf\x8b\x21\x65\x47\xb2\x9d\xdd\x1c\xda\xf5\x07\xbf\x88\xc3\x99\x67\x5e\xf8\x3c\x74\x72\xc1\x26\xaa\xde\x69\x51\x94\x16\xde\x5d\xbe\xfd\x13\x2c\x4b\x84\x5f\x9a\x15\x6a\x89\x16\x0d\x8c\x1b\x5b\x2a\x6d\x62\xc6\x6e\x45\x8a\xd2\x60\x06\x8d\xcc\x50\x83\x2d\x11\xc6\x35\x4f\x4b\x84\x76\x65\x08\x7f\x47\x6d\x84\x92\xf0\x2e\xbe\x84\x88\x0c\xc2\x76\x29\x1c\x7c\x60\x3b\xd5\xc0\x9a\xef\x40\x2a\x0b\x8d\x41\xb0\xa5\x30\x90\x8b\x0a\x01\x7f\x4f\xb1\xb6\x20\x24\xa4\x6a\x5d\x57\x82\xcb\x14\x61\x2b\x6c\xe9\x82\xb4\x2e\x62\xf6\x5b\xeb\x40\xad\x2c\x17\x12\x38\xa4\xaa\xde\x81\xca\xbb\x56\xc0\x2d\x63\x00\x00\xa5\xb5\xf5\xfb\x24\xd9\x6e\xb7\x31\x77\x28\x63\xa5\x8b\xa4\xf2\x56\x26\xb9\x9d\x4e\xae\x67\x8b\xeb\xd1\xbb\xf8\x92\xb1\x5f\x65\x85\xc6\x80\xc6\x7f\x37\x42\x63\x06\xab\x1d\xf0\xba\xae\x44\xca\x57\x15\x42\xc5\xb7\xa0\x34\xf0\x42\x23\x66\x60\x15\xe1\xdc\x6a\x61\x85\x2c\x86\x60\x54\x6e\xb7\x5c\x23\xcb\x84\xb1\x5a\xac\x1a\xdb\x2b\xd0\x1e\x95\x30\xd0\x35\x50\x12\xb8\x84\x70\xbc\x80\xe9\x22\x84\xbf\x8c\x17\xd3\xc5\x90\x3d\x4c\x97\x3f\xcf\x7f\x5d\xc2\xc3\xf8\xfe\x7e\x3c\x5b\x4e\xaf\x17\x30\xbf\x87\xc9\x7c\x76\x35\x5d\x4e\xe7\xb3\x05\xcc\x6f\x60\x3c\xfb\x0d\x7e\x99\xce\xae\x86\x80\xc2\x96\xa8\x01\x7f\xaf\x35\x61\x57\x1a\x04\x95\x0e\xb3\x98\x2d\x10\x7b\xc1\x73\xe5\xc1\x98\x1a\x53\x91\x8b\x14\x2a\x2e\x8b\x86\x17\x08\x85\xda\xa0\x96\x42\x16\x50\xa3\x5e\x0b\x43\xcd\x33\xc0\x65\xc6\x2a\xb1\x16\x96\x5b\xf7\xfb\x24\x9d\x98\x5d\x24\x8c\xd5\x3c\x7d\x24\x27\x92\x4a\x9e\x5c\xb0\xb4\x12\x28\x6d\x62\x50\x6f\x50\xfb\xa0\x68\xa8\x4a\x30\xb9\x9d\x2f\xae\xff\xf5\x30\x9e\x2e\xc1\x8a\x35\xaa\xc6\x42\xaa\x64\x26\xc8\x3d\x55\x53\xd4\x96\x2a\x6d\x60\x36\x5e\xc6\xac\x75\x04\xbd\x97\xf7\xca\x00\xbe\xc0\xe9\xeb\x0b\x3d\xff\x69\x34\xb2\x69\x0d\x25\x97\x99\x29\xf9\x23\x8e\x46\x9f\xf6\xcf\xdd\x2b\x17\xb2\xfd\x36\xfa\x02\x25\xaf\xf2\x51\x5a\x29\xaa\x8e\x56\xeb\x6f\xb8\x87\x16\x91\x30\x84\xf6\x39\x1b\x57\x06\xb1\xae\x95\xb6\x10\xb1\x20\x44\xad\x95\x36\x21\x0b\x42\xa1\xe8\xbd\x52\x05\x7d\x48\xb4\xf4\x41\xa9\x87\x8c\x05\xe1\xe3\x9f\x4d\x2c\x54\xf2\x78\x38\x64\x09\x15\x2a\x11\x6b\x5e\xa0\x49\x24\xda\x24\x55\xeb\xb5\x92\x21\x1b\x30\x96\x24\x50\x21\x7f\xc4\x6c\xa2\xa4\xc4\xd4\x97\xcc\x00\x87\xa2\x52\x2b\x5e\xc1\x86\x6b\xe1\xc6\xd4\x96\xdc\x82\x29\x55\x53\x65\x6e\x87\x6b\x18\x4f\xad\xd8\x20\x39\x49\x9f\xb7\x73\x63\x44\x21\x31\x83\x12\x35\xc6\x6c\xc3\xf5\x69\x88\x0b\x89\x36\x5e\x4e\xee\xe8\x91\x03\xb1\xf0\x6d\xfd\xdb\x62\x3e\x03\x55\xbb\xc1\x88\x99\xdd\xd5\x08\x13\x2a\xe3\x03\x17\xd6\x9b\xcc\xfd\x22\x18\xab\x9b\xd4\xc2\x67\x16\x24\x09\x8c\xb3\xcc\x8d\xa9\x55\xb0\x12\x32\x3b\x8c\x24\x25\xce\x82\x5b\x95\xf2\x8a\x4c\x68\x93\x90\x85\xdb\xb2\x6c\x27\xc5\x2a\xd8\x72\x61\x81\xe7\x16\x35\x18\x94\x19\x8d\x14\x6d\xbe\x99\xce\x62\x16\xdc\x29\x63\x6f\x84\x6c\xcd\x17\x48\x93\x45\x7d\xb2\xec\x89\x79\x80\x69\x1f\x60\x07\x59\x9b\x08\x5c\x9c\xcf\x81\x3c\x24\x09\xcc\x70\x7b\xb4\x0e\x1a\x6d\xa3\xe9\xa8\x80\xc4\x2d\xdc\x37\x52\xa2\x8e\x59\xde\xc8\xf4\x8c\x75\x34\x00\xdf\xd0\xd8\x1b\x52\x64\xef\x00\xde\x1c\x61\xfb\xfc\xf4\x1c\x73\x5f\x48\x5e\x55\x2a\xe5\xc4\xc5\x14\x4b\xf5\xca\xdb\x50\x03\x5d\xd8\xa8\x3d\x77\x17\x47\x1e\x07\x1d\x57\xd1\x80\xea\x82\x3a\xe7\x29\x7e\x7e\xea\xc2\x38\x9f\xff\x01\xcd\x7d\x23\x3d\x83\xb8\xd5\x91\x11\x19\xee\x79\x97\x3a\xf8\x4d\x08\xf7\x8d\x8c\x2a\x55\x14\xb4\x58\xa9\x22\xbe\x75\xdf\x87\xa0\xf9\x21\xcb\x0e\xb0\x01\xb8\x83\x44\xf8\x44\xbe\x4f\x78\x08\xea\x11\xde\x7f\xec\x6c\x89\xa3\x17\xda\x36\xf8\x40\xb6\x9f\x59\x10\x78\x40\xf1\xbe\x66\x1f\xf7\xce\x58\xf0\x04\x58\x19\x74\x46\x6d\x0d\xfc\xe1\x8d\x67\xb8\x8d\x42\x21\x37\xbc\x12\x19\xd0\xf8\x84\x03\x16\x3c\x31\x16\x78\xfc\xf1\x9d\x16\xd2\xe6\x51\x48\x25\xf9\x71\x13\x0e\xa1\x1f\x63\xc0\x58\xc0\xb3\x4c\x0f\xc9\x1f\xe1\xa5\x73\x74\x8f\x46\x55\x1b\x5c\x4e\xee\x68\xc8\xa3\xd0\xa6\xf5\xc9\xc6\xf8\x70\x08\x06\x2e\x6d\xda\xfe\xc3\x47\x90\xa2\x3a\x02\xd9\xa2\x11\xc6\xa2\xc4\x7e\x9c\x5b\xf7\x70\x39\xb9\xdb\x87\xe0\xaf\x73\x17\x64\x98\xa3\x86\xbd\xcf\xd8\x95\x35\x1a\x9c\x26\xdd\x4e\xbf\x37\xa4\x63\xa8\xda\x22\xf8\x40\x2c\x20\x96\x39\x40\x3a\xf8\x1b\xa7\xa4\xef\x84\xeb\xf5\x60\xc8\xd3\xcb\x40\x26\x9e\x90\x5b\x52\xc3\x2c\x24\x1b\xc7\x52\x32\xdb\xb3\x75\x87\xe3\x6f\xa6\x33\x30\xaa\x43\xe3\x52\x6d\xfb\x54\x1e\xc3\x03\xc2\x23\x62\xed\xdc\xd0\x60\xb7\xc6\xa3\x4f\x6d\xa3\xa0\x16\x35\x82\xaa\x51\x12\x25\x6d\x50\x8b\x7c\x07\xdb\x12\x9d\x0c\x2b\xed\xae\x35\xb4\x6f\x36\x5e\x3a\x1f\x99\x56\x75\x4d\x5a\xdf\xe8\x0e\xf9\xc6\x87\x02\xbc\xff\xd8\xc9\xf1\x41\x0b\x8b\xd1\xe0\xc3\x37\xdb\x7e\xb6\x1f\x86\x80\xde\x4c\x67\x43\xc7\x94\xd4\x97\x1f\x37\x60\x3c\x13\x86\xc3\x93\x73\x10\x9f\xa5\x4c\xaa\xe0\x4f\x23\x12\xa9\x78\x4c\x54\x1b\xb9\xaf\x57\x8d\x76\xb7\x80\xe8\x55\x2e\xe0\xc2\x09\x7c\xec\x7f\x9f\xe9\xdb\x95\x92\xe8\x7a\xd5\x26\x26\x45\xd5\x52\x4c\xdb\xd1\xae\xbe\x1c\xc9\x8b\xb7\x38\x2b\x2f\xf7\xb8\x56\x16\x9d\x82\xb4\xb4\xd4\xf6\xcc\xaa\x7d\xed\xc1\xaa\x98\x05\x1d\xc3\x53\xa9\xd9\x6b\x87\x92\x30\x4d\xe6\xcf\x17\xd0\x36\x75\x16\x9c\xd1\x18\xda\xfe\xf3\xf3\xa0\xed\xaf\x37\x91\x55\x50\x88\x0d\x1e\x28\xd2\xad\x38\x38\x25\xa6\x5e\x9b\x8d\xe5\xb6\x31\x2d\x60\xe7\x88\xa0\x5a\xcd\x69\xdd\x49\x3a\x4a\xab\x77\x5f\x95\x38\xda\x75\x4b\x62\xdf\x91\xf7\xc8\xeb\x3b\x05\x3b\xbe\x23\x18\xd5\x35\xac\xe9\xb6\x6e\xac\x71\x5e\xb8\x81\x4a\xc9\x82\x3e\x09\x5c\xad\x55\xea\xef\xc4\x6b\x2e\x48\xea\x03\x0a\xd3\xb9\x20\xac\x94\xaa\x4e\x15\xb6\xed\xe2\xd7\x14\xb6\xd7\xc6\x33\x0a\xbb\x3f\xda\x1a\x9d\xe6\x79\x85\xd5\x4e\x38\x4f\x05\xd6\x1b\xbf\x4a\x60\xbd\xe9\xff\x20\xb0\x2d\x21\x5c\x1c\x79\xfc\x83\x02\xdb\x4b\xff\x44\x60\x7d\x8c\x78\xfd\xad\x90\xdf\x5d\x50\x7b\x30\x9f\x05\xb5\xc5\xf7\x5d\x05\xb5\x1f\xe3\x0f\x08\x6a\x7f\x63\xfc\x7c\xd6\x5f\xa5\xa8\x3d\xe9\xa2\x20\x57\x82\x57\x1d\x2d\x95\xa2\x7a\xbd\xa0\x8a\x1c\x7e\x38\x82\x73\x74\x7e\x68\xd3\x19\xa5\x3b\x57\x99\xc9\x5e\xe5\xe8\x48\x7b\x32\x72\x1c\x2a\xf2\xe3\x94\x8f\x18\xe2\x13\x5c\xb6\x71\x2a\xbe\xa3\xb4\xfa\x94\xfe\xd5\xcd\x47\x5c\x4e\xbd\x27\x9c\x0b\xb4\xf7\xc8\xb3\x2b\xe4\x59\x25\x24\x7a\x91\x98\xa9\x6d\x34\x88\xc7\x59\x16\xb9\x48\x83\x36\x8d\x55\x93\x53\xd0\x35\x7f\xc4\xe8\x1f\xff\x5c\xed\x2c\x0e\xe1\xed\x10\xde\x0e\x58\x60\xc4\x7f\x70\xd8\x93\x41\xf2\x1a\xad\x9a\xbc\x4d\xac\x53\xde\x37\x6f\xf6\xbf\x84\x8a\xaf\xe7\x37\x67\xbb\x27\x72\x20\x9f\x64\x75\xf9\xd2\x10\xfe\x55\x59\xc8\xb8\xe5\xb0\x6a\x2c\xfd\x71\xf6\x35\xbd\x9e\xdf\xbc\x30\x91\xad\xba\x96\xdc\x74\xee\x12\x99\x3f\xa7\x87\x46\xbe\xa8\xb9\x47\xd5\x7d\x51\x73\x4f\xbb\x78\x66\x52\x8e\x90\x91\x05\x85\x4c\x7b\xd7\xa0\x0e\xf9\xbb\xbf\x48\x27\xfc\x3f\xa0\x44\x83\x93\xff\x7a\xbe\x03\xbe\x04\xbd\x1b\x00\x0b\x82\xaf\x4e\xcc\xff\xf5\x12\xf0\xdf\x00\x00\x00\xff\xff\xbe\x37\xa5\x9a\x8a\x12\x00\x00") + +func testImagesNetNatClosewaitGoBytes() ([]byte, error) { + return bindataRead( + _testImagesNetNatClosewaitGo, + "test/images/net/nat/closewait.go", + ) +} + +func testImagesNetNatClosewaitGo() (*asset, error) { + bytes, err := testImagesNetNatClosewaitGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/net/nat/closewait.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetexecGitignore = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x4b\x2d\x49\xad\x48\x4d\xe6\x02\x04\x00\x00\xff\xff\x8a\xe9\x3e\xf6\x08\x00\x00\x00") + +func testImagesNetexecGitignoreBytes() ([]byte, error) { + return bindataRead( + _testImagesNetexecGitignore, + "test/images/netexec/.gitignore", + ) +} + +func testImagesNetexecGitignore() (*asset, error) { + bytes, err := testImagesNetexecGitignoreBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/netexec/.gitignore", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetexecBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\x2a\x2d\xae\x4c\xca\xaf\xe0\x4a\x2c\xca\xb5\x4d\x2c\xca\x35\x36\x2a\x33\xd3\x47\x12\x33\x33\xb1\x05\x93\x65\x16\x70\xd1\x82\x82\x64\x33\x93\x9c\x54\x5b\x28\x0d\x17\x2f\x36\xb6\x34\xa8\xb0\x05\x93\x70\x31\x40\x00\x00\x00\xff\xff\xc9\xd8\x77\x8f\x64\x00\x00\x00") + +func testImagesNetexecBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesNetexecBaseimage, + "test/images/netexec/BASEIMAGE", + ) +} + +func testImagesNetexecBaseimage() (*asset, error) { + bytes, err := testImagesNetexecBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/netexec/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetexecBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\xcf\x6a\xf3\x30\x10\xc4\xef\x7e\x0a\xa1\x53\x1c\xbe\x2f\xba\x16\x43\xa0\xef\x11\x8c\x59\xd9\x1b\x75\xc9\x46\x2b\xf4\x27\x34\x79\xfa\x92\xc8\x69\xeb\x12\x7c\xd4\xcc\xec\xe8\x27\x6d\x80\xf1\x04\x0e\x37\x13\x1e\xa1\x70\x1e\x2e\x94\xc8\x12\x53\xbe\xaa\xbd\x3a\x68\x63\x7e\x84\x2e\x14\xcb\x34\xea\xbe\x6d\x1a\x16\x98\x36\x8d\x52\x4a\xe9\x77\x92\xc1\xc2\x0d\x79\x88\x85\x31\x0d\x4e\x8c\x71\xd2\x4d\x78\xdc\xd9\x1b\xeb\x7f\x35\xe5\x64\xb0\xe4\x21\x5e\x7f\x09\x4c\x36\x56\xa5\x6d\x9a\xef\x40\xad\xf5\x70\x46\xb5\x57\xda\x63\xc6\x4f\x1c\xe7\xa9\x79\xe2\x6e\x74\x4e\x86\x27\xf4\xdf\xa2\xf9\xbc\x6c\x7a\x99\xbf\x07\x52\x1c\xd3\xe3\xb1\xf3\x5d\x3b\x27\xba\xaf\xd6\x84\x21\x3d\xff\x01\xfd\x24\xd1\x9c\xde\xd2\x8e\xc4\x40\xa0\x33\x8c\x1f\xe4\x31\x5e\x4d\x38\x39\x53\x32\xb1\xf1\x98\x5f\x61\xf5\x0f\xae\x23\x31\xba\x28\x25\x2c\xb1\xe6\x05\xfc\xbf\x53\x2c\x81\x1c\x8b\xdd\x1c\xf4\x76\xab\xfb\xb6\x1a\x19\x5c\xc5\x81\x92\xe5\x0c\x1e\x1c\x4e\x4f\xd4\xd5\xc5\x45\xba\x40\xc6\x75\x10\x60\x7e\x01\x71\xd0\xdd\x82\xb0\x5f\x27\x69\x9b\xaf\x00\x00\x00\xff\xff\x15\x5a\x84\x0b\x51\x02\x00\x00") + +func testImagesNetexecBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesNetexecBuild, + "test/images/netexec/BUILD", + ) +} + +func testImagesNetexecBuild() (*asset, error) { + bytes, err := testImagesNetexecBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/netexec/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetexecDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x92\x51\x4f\xdb\x3e\x14\xc5\xdf\xfd\x29\x8e\x9a\x97\xff\x5f\x2a\x49\xe1\x61\x42\xdb\x53\x68\xc3\x88\x80\x84\x25\xe9\x58\x35\x4d\xc8\x4d\x6e\x93\xab\xa5\xb6\xb1\x9d\x85\x7e\xfb\x29\xa5\x48\xa0\xf9\xc5\x96\xef\xf1\xf1\xcf\xc7\x37\xc0\x52\x9b\x83\xe5\xb6\xf3\xb8\x58\x9c\x7f\x42\xd5\x11\x6e\x87\x2d\x59\x45\x9e\x1c\xe2\xc1\x77\xda\xba\x50\x04\x22\xc0\x1d\xd7\xa4\x1c\x35\x18\x54\x43\x16\xbe\x23\xc4\x46\xd6\x1d\xbd\x55\xe6\xf8\x4e\xd6\xb1\x56\xb8\x08\x17\xf8\x6f\x12\xcc\x4e\xa5\xd9\xff\x5f\x44\x80\x83\x1e\xb0\x97\x07\x28\xed\x31\x38\x82\xef\xd8\x61\xc7\x3d\x81\x5e\x6a\x32\x1e\xac\x50\xeb\xbd\xe9\x59\xaa\x9a\x30\xb2\xef\x8e\xd7\x9c\x4c\x42\x11\x60\x73\xb2\xd0\x5b\x2f\x59\x41\xa2\xd6\xe6\x00\xbd\x7b\xaf\x83\xf4\x47\xe0\x69\x74\xde\x9b\xcf\x51\x34\x8e\x63\x28\x8f\xb0\xa1\xb6\x6d\xd4\xbf\x0a\x5d\x74\x97\x2e\x93\xac\x4c\xce\x2e\xc2\xc5\xf1\xc8\x5a\xf5\xe4\x1c\x2c\x3d\x0f\x6c\xa9\xc1\xf6\x00\x69\x4c\xcf\xb5\xdc\xf6\x84\x5e\x8e\xd0\x16\xb2\xb5\x44\x0d\xbc\x9e\x78\x47\xcb\x9e\x55\x3b\x87\xd3\x3b\x3f\x4a\x4b\x22\x40\xc3\xce\x5b\xde\x0e\xfe\x43\x58\x6f\x74\xec\x3e\x08\xb4\x82\x54\x98\xc5\x25\xd2\x72\x86\xab\xb8\x4c\xcb\xb9\x08\xf0\x98\x56\x37\xf9\xba\xc2\x63\x5c\x14\x71\x56\xa5\x49\x89\xbc\xc0\x32\xcf\x56\x69\x95\xe6\x59\x89\xfc\x1a\x71\xb6\xc1\x6d\x9a\xad\xe6\x20\xf6\x1d\x59\xd0\x8b\xb1\x13\xbf\xb6\xe0\x29\x46\x6a\xa6\xcc\x4a\xa2\x0f\x00\x3b\xfd\x0a\xe4\x0c\xd5\xbc\xe3\x1a\xbd\x54\xed\x20\x5b\x42\xab\xff\x90\x55\xac\x5a\x18\xb2\x7b\x76\xd3\x67\x3a\x48\xd5\x88\x00\x3d\xef\xd9\x4b\x7f\xdc\xf9\xe7\x51\xa1\x10\xd7\x45\x7e\x3f\xe1\x27\xe9\x7d\xfc\x35\x11\x62\x59\xe4\x65\xf9\x74\xb5\x4e\xef\x56\x4f\xcb\xfc\x61\x83\x67\xda\x0f\x67\xdf\x92\xfb\x75\x5c\x2c\x6f\xce\xdc\xe4\x55\x23\x1a\x9c\x8d\xb6\xac\x22\x21\xe2\xd5\x0a\x53\xdb\xbd\x50\xfd\x36\x8b\xe4\xc7\x43\x5e\x26\xb8\x5c\x5c\x2e\xde\xad\xcf\x85\x28\xd6\x19\xf6\xbf\x1b\xb6\x88\x06\xd3\x6b\xd9\x38\x21\x92\xac\x2a\x36\x0f\x79\x9a\x55\xf8\x39\x8b\x4e\x16\xb3\x5f\xe2\x6f\x00\x00\x00\xff\xff\xcc\x00\x10\x29\xe6\x02\x00\x00") + +func testImagesNetexecDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesNetexecDockerfile, + "test/images/netexec/Dockerfile", + ) +} + +func testImagesNetexecDockerfile() (*asset, error) { + bytes, err := testImagesNetexecDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/netexec/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetexecMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x92\x51\x4f\xdb\x3e\x14\xc5\x9f\xff\xfe\x14\x47\x0d\x0f\xad\x54\x52\xfe\x68\xe2\x81\x09\x4d\x59\xdb\x41\x04\x4a\xa6\x24\x80\x78\x42\x4e\x72\x9b\x5c\x29\xb5\x3d\xdb\x59\xda\x6f\x3f\xb9\x80\x34\xb4\xbc\xe5\x9e\xe3\xe3\x9f\x8f\x1d\x61\xad\xcd\xd1\x72\xd7\x7b\x5c\x5e\xfc\x7f\x85\xaa\x27\xdc\x8f\x35\x59\x45\x9e\x1c\x92\xd1\xf7\xda\xba\x58\x44\x22\xc2\x03\x37\xa4\x1c\xb5\x18\x55\x4b\x16\xbe\x27\x24\x46\x36\x3d\x7d\x28\x4b\x3c\x91\x75\xac\x15\x2e\xe3\x0b\xcc\x83\x61\xf6\x2e\xcd\x16\x5f\x45\x84\xa3\x1e\xb1\x97\x47\x28\xed\x31\x3a\x82\xef\xd9\x61\xc7\x03\x81\x0e\x0d\x19\x0f\x56\x68\xf4\xde\x0c\x2c\x55\x43\x98\xd8\xf7\xa7\x6d\xde\x43\x62\x11\xe1\xe5\x3d\x42\xd7\x5e\xb2\x82\x44\xa3\xcd\x11\x7a\xf7\xb7\x0f\xd2\x9f\x80\xc3\xd7\x7b\x6f\xae\x57\xab\x69\x9a\x62\x79\x82\x8d\xb5\xed\x56\xc3\x9b\xd1\xad\x1e\xd2\xf5\x36\x2b\xb7\xe7\x97\xf1\xc5\x69\xc9\xa3\x1a\xc8\x39\x58\xfa\x35\xb2\xa5\x16\xf5\x11\xd2\x98\x81\x1b\x59\x0f\x84\x41\x4e\xd0\x16\xb2\xb3\x44\x2d\xbc\x0e\xbc\x93\x65\xcf\xaa\x5b\xc2\xe9\x9d\x9f\xa4\x25\x11\xa1\x65\xe7\x2d\xd7\xa3\xff\x54\xd6\x07\x1d\xbb\x4f\x06\xad\x20\x15\x66\x49\x89\xb4\x9c\xe1\x7b\x52\xa6\xe5\x52\x44\x78\x4e\xab\xbb\xfc\xb1\xc2\x73\x52\x14\x49\x56\xa5\xdb\x12\x79\x81\x75\x9e\x6d\xd2\x2a\xcd\xb3\x12\xf9\x0f\x24\xd9\x0b\xee\xd3\x6c\xb3\x04\xb1\xef\xc9\x82\x0e\xc6\x06\x7e\x6d\xc1\xa1\x46\x6a\x43\x67\x25\xd1\x27\x80\x9d\x7e\x03\x72\x86\x1a\xde\x71\x83\x41\xaa\x6e\x94\x1d\xa1\xd3\xbf\xc9\x2a\x56\x1d\x0c\xd9\x3d\xbb\x70\x99\x0e\x52\xb5\x22\xc2\xc0\x7b\xf6\xd2\x9f\x26\xff\x1c\x2a\x16\xa2\x2c\xd6\xe5\x4d\x78\x36\x07\x6a\x44\x52\xac\xef\xf0\xed\x06\x72\xdf\x5e\x7d\x11\x55\x52\xdc\x6e\xab\xf0\x7f\x36\x5f\x3f\x16\x9b\xb4\x58\x88\xdb\xfc\x21\xc9\x6e\x5f\x9f\xb6\x45\x99\xe6\x59\xd0\x06\xe9\xc9\xf9\x90\xf3\xba\x49\x0b\x04\xb3\xd2\xbe\x65\x8b\xb3\xb9\xeb\x69\x18\x60\xa6\x76\xb1\x10\x74\x30\xda\x7a\x21\x6a\x56\xd7\xe2\xbf\x38\x5e\xf1\x5e\x76\x74\x3e\x7a\x1e\x62\xd7\xa3\x66\x85\xb3\x79\xa0\x59\x08\x11\xff\xbc\xcb\xb3\x97\xeb\x30\x14\x7f\x02\x00\x00\xff\xff\x57\x42\x5f\xff\xed\x02\x00\x00") + +func testImagesNetexecMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesNetexecMakefile, + "test/images/netexec/Makefile", + ) +} + +func testImagesNetexecMakefile() (*asset, error) { + bytes, err := testImagesNetexecMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/netexec/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetexecVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesNetexecVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesNetexecVersion, + "test/images/netexec/VERSION", + ) +} + +func testImagesNetexecVersion() (*asset, error) { + bytes, err := testImagesNetexecVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/netexec/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetexecNetexecGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3a\x5d\x73\xe3\x38\x72\xcf\xe2\xaf\xe8\x63\xd5\xcc\x52\x73\x5c\x4a\x76\x2e\x75\x5b\xde\x28\x5b\x5e\x7b\x7c\x76\x6e\xe2\x71\x2c\x7b\xa7\xae\x1c\xd7\x15\x44\xb6\x24\xdc\x90\x00\x17\x00\x6d\xeb\x66\xfd\xdf\x53\x0d\x80\x20\xf5\xe5\x2d\xef\xe4\x21\x95\xbb\x07\x9b\x14\xd0\x68\xf4\xf7\x07\xc0\xd1\xbb\xe8\x44\xd6\x2b\xc5\x17\x4b\x03\x87\xe3\x83\x3f\xc0\xcd\x12\xe1\xcf\xcd\x0c\x95\x40\x83\x1a\x8e\x1b\xb3\x94\x4a\x67\x51\xf4\x81\xe7\x28\x34\x16\xd0\x88\x02\x15\x98\x25\xc2\x71\xcd\xf2\x25\x82\x9f\x49\xe1\x27\x54\x9a\x4b\x01\x87\xd9\x18\x12\x02\x88\xfd\x54\x3c\xfc\x3e\x5a\xc9\x06\x2a\xb6\x02\x21\x0d\x34\x1a\xc1\x2c\xb9\x86\x39\x2f\x11\xf0\x29\xc7\xda\x00\x17\x90\xcb\xaa\x2e\x39\x13\x39\xc2\x23\x37\x4b\xbb\x89\x47\x91\x45\x7f\xf1\x08\xe4\xcc\x30\x2e\x80\x41\x2e\xeb\x15\xc8\x79\x1f\x0a\x98\x89\x22\x00\x80\xa5\x31\xf5\xd1\x68\xf4\xf8\xf8\x98\x31\x4b\x65\x26\xd5\x62\x54\x3a\x28\x3d\xfa\x70\x71\xf2\xfe\x72\xfa\xfe\xdb\xc3\x6c\x1c\x45\xb7\xa2\x44\xad\x41\xe1\xcf\x0d\x57\x58\xc0\x6c\x05\xac\xae\x4b\x9e\xb3\x59\x89\x50\xb2\x47\x90\x0a\xd8\x42\x21\x16\x60\x24\xd1\xf9\xa8\xb8\xe1\x62\x91\x82\x96\x73\xf3\xc8\x14\x46\x05\xd7\x46\xf1\x59\x63\xd6\x04\xd4\x52\xc5\x35\xf4\x01\xa4\x00\x26\x20\x3e\x9e\xc2\xc5\x34\x86\x1f\x8f\xa7\x17\xd3\x34\xfa\x74\x71\x73\xfe\xf1\xf6\x06\x3e\x1d\x5f\x5f\x1f\x5f\xde\x5c\xbc\x9f\xc2\xc7\x6b\x38\xf9\x78\x79\x7a\x71\x73\xf1\xf1\x72\x0a\x1f\xcf\xe0\xf8\xf2\x2f\xf0\xe7\x8b\xcb\xd3\x14\x90\x9b\x25\x2a\xc0\xa7\x5a\x11\xed\x52\x01\x27\xd1\x61\x91\x45\x53\xc4\xb5\xcd\xe7\xd2\x11\xa3\x6b\xcc\xf9\x9c\xe7\x50\x32\xb1\x68\xd8\x02\x61\x21\x1f\x50\x09\x2e\x16\x50\xa3\xaa\xb8\x26\xe5\x69\x60\xa2\x88\x4a\x5e\x71\xc3\x8c\xfd\xbd\xc5\x4e\x16\xbd\x1b\x45\x51\xcd\xf2\xcf\x84\xa4\x62\x5c\x44\x11\xaf\x6a\xa9\x0c\x24\xd1\x20\x46\x91\xcb\x82\x8b\xc5\xe8\x6f\x5a\x8a\x38\x1a\xc4\xf3\x92\x2d\xec\xb3\x32\xf4\xe0\xd2\xfd\x1f\x71\xd9\x18\x5e\xd2\x8f\x52\x5a\x00\x81\xc6\x3f\x46\xa4\xbf\xf6\xbd\x51\x16\x48\x6a\xf7\x7f\x84\x4f\x98\xd3\xab\x36\x2a\x97\xe2\xc1\xbf\x72\xb1\xb0\x00\x7a\x25\xf2\x11\x33\xb2\xe2\x16\xc8\xf0\x0a\xe3\x28\x1a\xd0\x56\x02\x0d\xc4\x9f\xbf\xd3\x19\x97\x23\x56\xf3\x8a\xe5\x4b\x2e\x50\xad\x46\xf5\xe7\xc5\x88\x00\x46\x96\x82\x61\x14\x3d\x30\x45\xbc\x10\x15\x57\xc4\x17\x00\x4c\xe0\xbb\xf1\x77\xe3\x68\xd0\x14\x61\xc8\x8d\x1d\x44\x03\xbd\xc4\xb2\xbc\x62\x66\x69\xc7\xe2\xd1\x8c\x8b\x91\x5e\xc6\xd1\x40\xa3\x7a\x40\x75\x8d\xac\x58\xc1\x04\xde\x3a\xb2\x7e\x94\xb2\xfc\x32\x7e\xa6\x7d\x46\x23\xe8\xc6\xc8\x2d\x34\x94\x92\x15\x23\x6d\xa4\x42\x90\x35\x2a\xaf\x04\x67\x32\x5c\x98\x7f\x39\x24\x1b\xd4\xbc\x6a\x4a\x66\x90\x06\x1d\x02\x98\x49\x59\x22\x13\x59\x64\x56\x35\xf6\xb1\x6a\xa3\x9a\xdc\xc0\x97\x68\xf0\xe0\x10\x44\xcf\x76\x63\x8d\x86\xfe\xb4\x55\x6d\xc0\x4c\x3f\x16\xfc\x01\x45\x87\x70\xde\x88\x1c\x12\x06\xef\x3a\xa4\x43\x5a\x99\x3c\xb0\xb2\x41\x0b\x37\x24\xf4\x7c\x0e\x6e\xe4\x4b\x34\x18\x38\xd8\x6c\x4a\x8c\x5c\x10\xf2\xe4\x2d\xcb\x1e\x52\x38\x18\x46\x83\x81\x42\xd3\x28\x11\x0d\x9e\xa3\xbd\x70\xe3\xa1\x27\x73\x81\x06\x1c\xbc\x06\xa3\x1a\x04\x3e\xef\x51\x3c\x99\xc0\xc1\x6e\x02\x17\x68\x92\xa1\x25\x8e\xe8\x71\x18\xbc\x58\xb2\x0f\x92\x15\xdd\x66\x43\x87\xe5\x39\x72\xa2\x93\x8d\xa9\x1b\xd3\x13\x9b\x42\x5d\x4b\x0a\x1b\x70\x77\xef\x0c\x2d\x1a\xa0\x52\x52\x69\xb2\x81\x30\xf6\x1c\x39\x42\xb8\xe0\xb4\xf3\x97\x68\x40\x86\x9f\x5d\x08\xf3\x13\x53\xc9\xdb\xd6\x96\x52\x88\xe9\xf5\x5b\xf2\x97\x38\xb5\x46\x95\x42\x7c\x7e\x73\x73\x05\x1f\xb8\x36\x28\x80\xa0\xe2\xe1\xc6\x72\x6f\x76\x29\xc4\x4d\xd1\x5f\x7c\x90\x42\x7c\x7b\xba\xb9\xb6\xa5\x85\x9c\xb3\x47\xcb\x15\x53\x1a\x93\x61\x34\x58\x48\xd0\x86\x29\x73\x7b\x7a\x35\xb5\x26\x9a\x78\xfc\xc3\x68\x60\x27\x88\x1e\x3f\xd3\x12\xde\x61\xdd\x07\x41\x3a\xb1\x9b\xd1\x40\x76\xce\x44\x51\xe2\x59\x23\xf2\x24\x1e\xc5\x29\x28\x29\x8d\x1b\x53\xc3\x5d\x20\x79\xc9\x51\x18\x5e\xc7\x29\xb8\xd7\x8b\xfa\x25\x70\xcc\x97\x32\x4e\x81\x1e\x2f\x82\x3d\x71\x92\x14\x3d\x5e\x02\x5b\x4a\x6d\x04\xab\x30\x4e\xa1\x7d\x7d\x09\xdc\x3a\x7c\x9c\x82\x7d\xbe\x04\xd8\xd4\xe4\xcf\x71\x0a\xee\xe5\x25\xd0\x82\x33\x42\x49\x8f\x17\x29\x45\x56\x9a\xe5\xdf\x89\x50\xf7\xd6\x01\x8f\x46\x20\x4b\x0a\xd6\x4b\x37\xa4\xf7\x71\x7a\xd9\x71\x7a\xf9\xab\x9c\x36\xa6\x90\x8f\xc2\x32\xeb\x5e\x3b\xf0\x52\x2e\xb2\x33\x66\x58\x69\x4d\x20\x73\x36\x78\x2c\x0a\x6b\x17\xc9\xbc\x32\xd9\xb4\x56\x5c\x98\x79\x12\x1f\xbd\x21\x29\x04\x5b\x4a\x41\xf0\x72\xd8\x99\x54\xcf\x38\x92\x47\x0b\x96\x5d\x7b\xb7\xfb\xa4\xb8\x41\x95\x82\x82\x77\x7e\xfc\xe7\x06\xb5\x33\x34\x22\xe0\xca\xef\xf0\xa7\xf7\x37\x30\xb2\x7e\x53\x99\xec\xcc\xef\xfb\x98\x42\x7c\xf9\xf1\xd3\x11\xbc\x79\x88\x53\xa0\x64\x90\x5d\xca\xc7\xa4\xb7\x73\xcf\x80\xbe\x6a\x67\xc2\xf3\x43\xa5\x17\x93\x37\x9a\x8c\x3d\x3b\x93\xaa\xfa\x89\xc2\x61\x12\x57\x7a\x11\x0f\x77\x10\xb6\x17\xb2\xa5\x6d\xc3\x0f\xbe\x8a\xbe\xe0\x5e\xdb\x84\xa8\xec\x1a\x2b\x69\xf0\xb8\x28\x54\x4f\x30\x9d\xcb\x7c\x9d\x60\x9e\xb8\xf9\x21\x97\x05\xee\x90\x0c\x0d\x5b\xd1\xd0\x4b\x0a\xa8\x14\x1c\x4d\xc0\x27\xf6\xec\xd8\x48\x9e\xec\x86\xe7\x73\x0b\x3c\x99\x90\x1d\xc1\x2f\xbf\xec\x42\x4b\xb3\x71\x6c\xb3\x91\xd4\xd9\xfb\x27\x6e\x12\x9a\x18\xda\xbc\xb3\xa9\x0b\xa6\x16\x4d\x85\xc2\xc0\x37\x04\xf3\x0d\x54\x8d\x36\x30\x43\x9f\x75\x71\x81\x0a\xee\xc6\xdf\x1e\x1c\xfe\xf1\x9e\x8a\x2d\xac\x6a\xb3\x4a\x61\x21\x0d\xbc\xf9\x79\x1f\x53\xad\x20\x37\x02\xca\x57\x09\x33\xc4\xa9\x6d\x2d\x2e\xd0\x9c\x7b\x87\xf6\xf6\x3d\x1a\xf9\x18\xe1\x77\x86\x36\x93\xb9\xea\x9a\xc1\xe1\x78\xdc\xa6\x53\xca\x21\xae\x5a\xa1\x6a\x55\x51\xc5\x92\xc1\x85\x01\x56\x6a\xe9\x26\xb4\xad\x56\x34\x30\x8f\x14\xf2\x25\xe6\x9f\xdb\x02\xdc\x26\x30\x8f\x60\xb6\x82\x07\xae\x4c\x83\x34\x39\x43\x2a\x30\x99\x03\xf0\x81\xc9\xd7\x14\xeb\x01\xec\xeb\xe4\xe2\xa3\xa2\x33\x8d\x5e\xd9\x95\xb9\x3a\x80\x8c\xe0\x31\xb3\x28\xcf\x91\x15\xa8\x92\xc3\xf1\x78\xa3\x14\x59\x9f\xb7\x7b\x4e\x0d\x33\x8d\xbe\x52\x98\x4b\x51\x70\x2a\xc5\xce\x18\x2f\xb1\xe8\xe5\xc2\xf5\xa0\xf8\x55\x4c\x84\x58\x3b\x8c\x82\xc5\x8e\xbb\xad\x7a\x99\xe1\x35\xdb\xd8\x9a\x4c\x07\xe7\x6a\x54\xe9\xeb\x00\x95\xdd\x5e\x7f\x68\x41\x6f\xaf\x2f\x92\x9e\x63\xfd\xce\x39\x16\x89\xcd\x22\x7c\x4f\xf5\x0e\x59\xd9\x5a\x50\xb7\x41\x15\x95\x1a\xba\xc8\xee\xc5\xf5\x23\x2b\xda\xfd\xd7\x04\x1c\x0d\xc8\x7a\x89\x06\x47\x52\xf6\x5f\x0d\xaa\x55\x32\xcc\xfe\x84\x26\x89\x69\x8e\x18\xb7\x7d\xc4\x1e\x98\xda\x57\x46\xca\xa1\xdf\x07\xe6\xa7\xe3\x21\x90\x07\x78\x9f\x88\x06\xb5\x92\x46\xe6\xb2\xdc\x8b\xdd\xcf\xd3\x0e\x46\xad\xae\x98\x62\xd5\x3e\x58\xa3\x38\xea\x78\xb8\x43\x89\xa4\xa5\x1f\x68\xd3\xc9\x1b\xfd\xb6\x45\x69\xdf\xa5\xb2\x63\x9e\x3a\x7a\xb5\x58\x5c\x58\xa4\x15\x29\xb4\xf0\x29\xd4\xb6\xd8\xf3\xb0\x29\xb4\xf4\x58\xd2\x38\x6a\xa2\xeb\xc0\x6a\xab\x44\x91\x84\x59\xf8\x77\x18\x5b\xa5\x59\x20\xa7\xf3\x8d\x78\xda\xc3\xf4\xfc\x4a\x75\xbb\x9d\x6b\x5a\x8d\xc6\x05\x0a\x2e\x1e\x58\xc9\x8b\x0c\x5e\x67\x0a\x2d\xe1\xaa\xb5\xd3\xc9\xc4\x13\xfe\xc2\xf6\xad\xd6\x3b\x02\x84\x34\x6d\x5b\x8b\xbf\x99\x86\x56\xe6\x3d\x22\x82\xa5\x4c\x5c\xb1\x1e\x47\x83\x67\xc0\x52\xe3\xe6\xac\xef\x3b\xb3\x1b\xf9\x41\x3e\xa2\xea\x70\xb5\x1b\x04\xd8\xdf\xb5\xa8\xe0\xed\xdb\xf5\xd1\xa6\xa8\xe3\x5f\x63\xbd\x11\xba\xa9\xc9\x24\xb0\x08\x8b\x33\xb0\x86\x13\xb6\x7c\x85\x0f\x5e\x79\x1f\x13\x68\xb2\xff\x90\x5c\x9c\xfb\xb1\xc4\x5b\xa1\x6b\x04\xa8\x09\x6e\x8a\x9a\xaa\x02\xd4\x1a\xde\x11\xf4\xed\xe9\x15\xfd\x5e\xe7\x6d\xd2\xe7\xa2\x5b\xd1\x9a\x1f\xad\xbb\x46\x2d\xcb\x07\xf4\xcb\x13\x0b\xee\x8c\xde\x77\x1d\x3b\x2c\xf1\x25\x81\xd8\x48\xc2\x44\x31\x92\xca\x92\xeb\x8c\x02\x98\xc2\xd7\x99\x64\x10\x0d\xe9\xab\xa7\xe3\xbf\xee\x20\xfe\xe6\xc4\x13\x6f\xf2\xff\x8b\xc4\x87\xa6\xf4\x68\x02\x15\xfb\x8c\x49\xdb\x99\xda\x66\xba\xd7\xc5\xee\x9e\x27\x6d\x87\xfa\xa0\x6d\x73\xe7\x52\x01\xa7\x05\xe3\xef\x81\xc3\xbf\x81\x8d\x00\xdf\x03\xff\xfd\xef\x2d\x93\x7b\x8d\x20\xec\xd6\x8a\x91\xa2\xe2\xed\xe9\x55\x12\x02\x5a\x67\x26\xc4\x49\x4f\xf2\x3b\x97\x52\xf1\xd0\xad\xed\x4b\xfe\x79\xb7\xf4\xbd\x28\x26\xc0\xea\x1a\x45\x91\xb8\xdf\xfb\xd2\xd7\x3e\x12\x7a\x08\xc2\x50\x1a\xa4\x34\x0c\x82\xf7\x47\x06\x56\xb0\xf5\x9d\x13\xde\x7d\x2b\xde\x2f\xfd\x70\xe7\x57\x86\x38\xed\x56\xde\xc5\x01\x7d\x7c\x0f\x93\xb0\x83\xee\xc7\x29\xc7\xc2\xf6\x52\x37\x6e\xd7\xb9\x57\xbb\x68\xb6\x32\xbd\xa4\xff\x37\x2d\x45\xf6\x9f\x4c\xe9\x25\x2b\x13\xb7\x70\xab\x88\x26\x9c\x1b\x25\xa5\x63\x20\xb1\xb8\x48\x48\x3d\x19\xbd\x18\xa7\xbd\x15\xe5\xb2\x29\x0b\x1b\xa4\x67\x48\x35\x19\x67\x25\xff\xfb\xfe\x40\xfd\xfe\xa9\xc6\xdc\x9d\x3a\xb6\x55\xd6\xe0\x79\xbd\xfa\xd9\x69\x06\x9e\xcc\x21\x24\xad\x3d\x5b\x39\xd8\xe2\xc7\x28\x26\x74\x5b\x52\xf8\x33\xc0\x6c\x8a\xe6\xa6\x1d\x3f\xc5\x39\x6b\x4a\xa3\xdd\x01\x4d\x16\xc6\xbf\x3c\xfb\x76\xf8\xc4\xf6\x4d\xb4\x3c\x57\xc8\x0c\x12\x0d\x6e\x2c\x09\xc8\xbd\x7b\x05\x71\x77\xeb\x6c\xb5\xb0\xee\xfc\xee\x64\xfa\x8d\x1e\x85\xbc\x7f\xd5\xcf\xf5\x24\xe7\x02\xe7\xa8\x20\xa0\xcf\x4e\x4a\xa9\xf1\xa2\x28\xf1\x44\x0a\x81\xb9\x3d\x12\x4c\x76\x2a\xd0\xad\x24\x62\xb2\x1f\x65\xb1\x72\x2b\x09\x74\x30\x93\xc5\x2a\x10\xe8\x8e\x5e\x33\xaa\x90\x8f\xcb\x32\x09\xf0\xbd\x58\xd6\x43\xda\x9e\x9e\xb5\xe6\x40\x80\xb6\x81\x0f\x0e\xe0\x01\x62\xa7\xd6\xae\x7f\xdd\x2b\x31\x5f\xa7\x06\x71\x0f\xfd\x80\x97\xf6\x97\x68\x90\x07\xb9\xbf\xed\xcd\x10\x39\x61\xd1\x51\x27\xa2\x94\xc6\x79\x85\xb2\x31\x47\x00\xf0\xaf\xf0\xce\x35\xfb\x53\x5b\xb9\xa7\x7d\x22\x1d\xe2\x35\xbb\xea\x45\x26\x68\x6d\x48\x85\x96\x78\x33\xf9\xed\x34\x34\xd2\x4c\x10\x2f\x01\x9f\x7a\xbc\x3e\xd5\x09\x5e\x6e\xe0\xdc\x59\x6c\xf7\x04\x49\x56\x63\x1d\x6c\x6e\x71\x58\x42\x61\x6e\x1d\x23\xa3\x65\x47\xc1\x8b\x5c\x62\x77\xaa\x27\x3a\x3a\xad\xcf\x9a\x39\xd1\x73\x77\x4f\x2e\x1c\xaa\xad\xa8\x4b\x6f\x16\xdc\x76\x0f\xc9\xac\x99\xbf\x96\xa4\x3c\x98\xa3\xbd\x12\xc1\xfd\xe4\x51\x59\xd0\x36\x2b\xbd\x04\x44\x64\xa5\x70\x30\x3e\xfc\xc3\xd0\x89\x90\x7c\x93\xac\xf2\x14\x59\x51\x72\x81\x49\x77\x64\x93\x1d\x17\x45\xb2\xa1\x58\x77\x74\xd0\x08\x13\x44\x6f\x91\x10\x86\xa4\xb7\xe3\x16\x5f\xbf\xfc\x02\x76\x59\x57\xf2\xed\xe1\x92\x1a\x61\xea\x5f\xe7\x4a\x56\xb0\xc1\x72\x9f\xd9\x6f\xde\x3c\x7c\xd3\x67\x77\xdd\x63\x7a\xa4\xdc\x8d\x8f\xec\xce\xf7\xde\x83\xba\x3e\xb2\x3b\x49\x7c\x4d\x77\x97\x57\x05\xb1\xbd\x76\x00\x61\x71\x9d\xc8\xaa\x62\xa2\xf0\x1d\x31\x81\x75\xc7\x21\xf6\xd7\xc6\xa1\x45\x65\x41\x9f\x77\xb6\xa5\x58\x96\x3f\xe4\x55\xe1\x3a\x95\xbc\xa2\xc0\x9c\x57\xc5\xc7\xa6\x13\x3b\x3e\x61\x9e\xf9\x2d\x93\x70\x1d\x92\x42\xfc\x6d\xee\x97\xd0\xec\x8c\x0b\xa4\x65\x75\x63\xc8\x3a\x77\xa6\xcd\xad\xa4\xe9\x76\xda\xce\x7b\xee\x69\xf3\x9e\x17\xb3\x87\xdc\xd3\xd8\xac\xe5\x4b\xbb\x6c\x77\x31\xb0\x25\x04\x47\xf0\x91\x2b\xb7\x43\xf2\xfc\x7f\x97\x60\xd7\x4e\xa8\xbf\xea\x1c\xc3\x1f\x7a\xbb\xac\xd8\x94\xfb\x35\x3c\xe7\x25\xa6\xf0\xd7\x20\x45\x67\x91\x67\xbc\xc4\x24\xa6\xb9\x78\x4f\x40\x22\xa4\x7d\x45\xc6\xb7\xc2\xde\xd5\x1a\xe9\xb9\xb0\x17\xcb\x59\x4c\x69\x6f\xbf\x9a\x1c\x9e\x3d\x29\xef\x57\x14\xb5\x56\x2e\xbe\x74\x42\xa2\x33\x38\x2e\xb5\x84\x26\x50\x18\xf4\xe4\x6d\xc9\x6b\x6b\x83\xab\x1d\xea\xbb\x10\x06\x95\x60\xa5\xbb\x75\xb1\xfb\xb5\x15\x70\x5f\x05\x3b\x65\xe1\xad\xd7\xd9\x77\xbf\x09\x76\x59\xc3\x8a\xab\xcd\x1a\xd1\x60\xbe\x59\x28\xdc\x60\x55\x3b\xb5\x78\xe5\x12\xb2\xb8\xd3\xf3\x2b\x95\x24\x6b\x14\xee\xee\x9f\x1a\x0c\x9b\x3a\xfe\xd1\x75\xb5\x43\x24\xbf\xa6\xb3\x2e\xcd\xf3\x39\x84\x8c\xce\x65\x76\x22\xeb\x55\x32\x4f\x2d\xba\xe1\xf7\xaf\xd2\x8c\x4f\xe3\xff\xf4\x9e\xbe\x28\xf6\x29\x22\x1a\xdc\x5a\x0f\x20\xcf\x20\xf9\xcc\x33\x77\xf8\x1e\xfc\xe1\x68\x02\x52\x67\x27\xcb\x4a\x16\x49\x07\x9a\xc2\xf8\x8f\xe3\xf1\x2b\x15\x93\x13\x92\x7f\x2a\x66\x5d\x14\x7b\x3d\xa4\xbf\xf0\x93\x92\x06\xdb\x58\x68\xa4\x5b\xd2\x69\x23\x64\xa9\xb5\x8a\xa2\x9b\x7f\xe1\x5e\xe0\xc4\xb6\x37\xc5\xcb\xc5\x40\x50\xc7\xcb\xa2\xef\x5f\x16\x5d\xfe\x2f\x5e\x16\x5d\xbe\xe2\xb2\x88\xea\x5b\x7f\x85\xe3\x8f\x1b\xdd\xc7\x21\x2d\x1e\x77\xdb\x0e\x4c\x14\xed\xcd\xe4\x15\xe4\xae\xe6\xd3\x59\xef\xd3\x80\xad\xaf\x0a\xc2\x87\x01\x0e\xfb\xda\xf9\xe0\xd1\x4b\x07\x84\x3b\xae\x90\xdb\x0f\x15\x86\xd1\x80\x69\x8d\xca\x5c\x4a\x67\xa3\xce\x0a\xdc\x0e\x5b\xdd\x98\xbb\x9a\xee\xf5\x63\x6b\x94\x84\x96\xbb\x5b\xbd\xd5\x43\xed\xe8\x58\xd6\x45\x3e\x25\xd6\xb1\xe8\xdd\xa4\xc5\xee\x4e\xde\x4e\xf8\x33\x1d\xdb\x4c\x18\x09\xae\xaf\xa0\xce\xb2\x56\x72\x86\x3a\x5b\xfb\x56\x28\xd3\x48\xbd\x72\x83\x81\x30\x12\xae\xbf\xc6\x5a\x73\x8a\xee\xd6\x0e\x9f\xb8\x41\x9b\x8c\xb7\x30\xcd\x59\x69\x7b\xa0\x67\x62\x87\xd2\x0b\xa1\x11\xed\x67\x16\x9b\xda\xe8\xc9\x80\x50\x9c\x29\x59\x91\xdc\x5c\x7b\xb8\x53\xe6\x03\x85\x39\xf2\x07\x2c\x6e\xf0\xc9\xf8\x0b\xdc\xb5\x63\xf1\xf0\x5b\xf1\x6a\x5a\xb3\x1c\x93\xd6\xfa\x9b\xf9\xdd\xf8\x48\xdc\x0f\x87\x3e\x5e\xad\x61\xa2\x86\x25\x5c\x78\xba\x98\x14\x98\x2f\x45\x12\x4f\xd1\xc9\x93\xec\xb6\xb5\xd1\x70\x76\x66\x25\xd1\x35\xba\x3d\xae\xac\x0f\xdd\x48\x62\xca\x37\xc6\xeb\xde\xb0\x21\x18\x8b\x67\x27\xdb\x3e\x58\xf2\x79\x60\xf8\x9c\xe9\x2b\x85\x73\xfe\x94\xf4\x19\x49\x21\xb6\x8e\x13\x3b\x05\x0e\x6a\x46\x9e\xd5\x93\xd3\xb4\x2e\xb9\xb9\xdc\x5c\x03\x71\x0a\x87\xc3\xf6\x3c\x92\xe0\x63\x0a\xfd\xe1\xde\x82\xb0\xd8\x4b\x8b\x43\x87\xd6\x81\x4d\xc0\x4e\xdc\x1d\xdc\xd3\xd8\xf3\x9a\xd0\xe6\x49\xfc\x3e\x5f\x4a\x92\xd9\x9b\x87\xff\x16\x2e\x3c\xd7\xaf\x10\x94\x05\xff\x0d\xf2\xd9\x52\x6b\xf8\x1a\x61\x43\xad\xf3\x4e\xab\x33\x96\x7f\x86\x16\x2e\x04\xee\xb5\xad\xb3\xa9\x33\xa3\xe1\x2b\x58\xd8\x83\xe0\x37\x30\xe5\x4e\x74\x3b\xc6\xba\x16\x75\x23\x71\x7d\x16\xf2\x51\xf8\xd3\x03\x1b\x2d\x83\x3c\x8e\x3a\x3d\xf4\xf0\xb4\xc7\x6a\x6d\x4e\x58\x33\x4f\x6f\x34\xf6\x33\xab\x2e\x2e\x87\x62\xe3\xdc\xfb\x4b\xb2\x27\x3e\xfa\x83\x89\x70\x2b\xda\xee\xb1\x05\xdb\x3b\xdb\xda\xae\xee\xbb\x0f\x7f\x62\xbb\x00\x64\x9e\x37\x4a\xf9\xd3\x10\xa9\x8e\x7a\xbd\xf4\x73\xf4\x3f\x01\x00\x00\xff\xff\x3a\x3e\x9e\x80\x66\x2c\x00\x00") + +func testImagesNetexecNetexecGoBytes() ([]byte, error) { + return bindataRead( + _testImagesNetexecNetexecGo, + "test/images/netexec/netexec.go", + ) +} + +func testImagesNetexecNetexecGo() (*asset, error) { + bytes, err := testImagesNetexecNetexecGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/netexec/netexec.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNetexecPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x91\xcd\x8e\x13\x31\x10\x84\xef\x79\x8a\x92\xb8\x32\xc9\x86\x3f\xad\x7c\x65\x25\x38\x46\x22\x70\xef\xf1\xd4\x66\xac\xf5\xd8\x23\x77\x4f\x42\x78\x7a\xe4\xc9\x64\x83\x88\x78\x01\x2e\x96\xdc\x5d\xf5\xf5\x9f\x8c\xe1\x07\x8b\x86\x9c\x1c\x8e\xdb\xd5\x4b\x48\x9d\xc3\x2e\x77\xab\x81\x26\x9d\x98\xb8\x15\x90\x64\xa0\x43\xa2\xf1\x27\xfd\x0a\x88\xd2\x32\x6a\xcd\x00\x32\x8e\xb7\x94\x8e\xf4\x35\xec\x73\x32\x09\x89\x65\x16\x35\x77\x00\x20\x0c\x72\xa0\xc3\xc1\x97\x75\xc8\x9b\x97\xa9\x65\xa9\x69\x6d\xf8\x8e\x8d\x51\xad\x99\x15\xba\x59\x4c\x8d\x0c\xdd\xa7\x0f\x6e\xbb\x7e\x98\xed\x63\x2e\xb6\x34\xd0\xdc\xaa\xed\x72\x31\x87\xc7\x87\xc7\x8b\x08\x18\x4b\xb6\xec\x73\x74\xd8\x7f\xde\xfd\x53\xbd\xbd\x53\x7f\x7f\xba\xa8\xdf\xe0\x10\x8e\x84\xf5\x41\x31\xe6\x0e\xd6\x13\x2a\x03\x11\xc3\x91\x89\xaa\x90\xd4\xa1\x50\xba\x30\xff\xc6\x92\x5b\xa2\xa5\x97\x49\xb9\x10\x4e\x84\xc4\x93\x9c\x15\x27\x49\x36\x23\xea\xb8\x91\x06\xcb\x28\x54\x93\x62\x08\x86\xf0\x5c\xdf\x96\x3e\x0f\xd4\xc5\x3c\xa5\x0a\x3f\xbf\x9d\xeb\x88\xdd\x1a\xb0\x30\xb0\xa2\x2f\xcc\x8c\xdc\x2a\xcb\x91\xb7\x5e\x16\x80\x28\x04\x1a\x0e\x49\x62\x95\x5d\x8a\xd5\xfd\x86\x74\x58\xcf\x9a\xeb\x28\xbb\xda\xbb\x5b\x56\xd1\x9b\x8d\x5f\x68\xd7\x2f\x30\x8a\xf5\x0e\x9b\x9e\x12\xad\xff\x75\x0b\xff\xbd\x71\x40\x7d\xcf\x7a\xed\xaf\xfb\xfd\x6e\x09\x86\x14\x2c\x48\x7c\x62\x94\xf3\x37\xfa\x9c\x3a\x75\xd8\x5e\x2d\x75\x94\x3c\xd9\x6b\xe2\xe3\x12\x7f\x96\x10\xa7\xc2\x7d\x5f\xa8\x7d\x8e\x9d\xc3\xfb\xeb\xa1\x58\x42\xee\xee\x49\x3a\x79\x4f\xd5\x3f\x1c\x97\xd3\xbe\x2e\xe5\x3f\x9d\xf1\x77\x00\x00\x00\xff\xff\x4f\x28\xac\x3c\xc5\x03\x00\x00") + +func testImagesNetexecPodYamlBytes() ([]byte, error) { + return bindataRead( + _testImagesNetexecPodYaml, + "test/images/netexec/pod.yaml", + ) +} + +func testImagesNetexecPodYaml() (*asset, error) { + bytes, err := testImagesNetexecPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/netexec/pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNettestBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\xd1\x8a\xe3\x30\x0c\x7c\xcf\x57\x04\x3f\x35\xe5\x5a\x71\x6f\x47\xa0\x70\xff\x51\x42\x50\x12\xd5\x27\xaa\xd8\xc1\x56\x02\xed\xd7\x1f\x8d\xd3\xed\x06\xba\x81\x65\x9f\x8c\x35\x62\x34\xd2\xcc\x80\xed\x15\x2d\xed\x3a\xba\xe0\x28\x5a\x4f\x1c\xb9\x61\x61\xbd\xe5\xa7\xfc\x6c\x00\x5e\x85\x72\x18\x1b\xe1\xd6\x54\x45\x96\x89\xc7\x6e\x97\xe5\x79\x9e\x9b\xbf\xec\xeb\x06\xef\x24\x75\x18\x85\x62\x6d\x3d\x80\xf5\x65\x47\x97\x63\x73\x17\xf3\x2b\x75\x59\x5f\x37\xec\x30\xdc\x3e\x15\x84\x9b\x90\x2a\x45\x96\xbd\xfe\x89\xd7\x61\x4f\xf9\x69\xee\x7b\x6a\x7b\xf5\x3f\x1a\x62\x68\xe3\xac\xd1\x91\x2a\x45\x3d\x5a\x6f\xaa\x04\x75\x34\xcc\xd0\xfc\x99\xa7\x01\x0c\x57\x0b\xad\x30\x39\x5d\x9e\x48\x5a\x5b\x72\x14\x50\xa9\x03\x76\x4a\xc1\xa1\x7c\x60\xe5\x97\x83\x17\xc2\x89\x5c\xe7\x03\x5c\xff\xc4\x23\x7b\xc0\x81\x7b\x6c\xff\xb1\xa3\x70\x9b\x67\xe1\xc0\x11\x7a\x52\x84\xe9\xf7\x4f\xb9\x46\x65\x81\x48\x1a\xbf\x49\x94\x96\x39\x58\x0f\x81\xe2\xc6\x46\xd5\xec\xc0\x85\x85\x6c\xf0\xe3\xb0\x36\x60\x49\xc8\xe1\x71\xef\xf5\xe9\xad\xf8\x66\x77\x36\xfb\xbd\xa9\x8a\x04\x28\xda\xe4\x09\x8e\xea\x7b\x74\x68\xa9\x7b\x9a\xb2\x99\xac\xc0\x13\x2a\x99\x4d\x21\x28\xf2\x46\xc4\xd9\x94\x2b\x85\xd5\xb6\x92\x94\xb4\x14\xc5\x35\xfd\x12\xa3\x85\x7d\x39\xd0\x03\x78\x7f\xb7\x22\xfb\x1f\x00\x00\xff\xff\xe9\x76\x1a\x1a\x3b\x03\x00\x00") + +func testImagesNettestBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesNettestBuild, + "test/images/nettest/BUILD", + ) +} + +func testImagesNettestBuild() (*asset, error) { + bytes, err := testImagesNettestBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nettest/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNettestDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x6f\x9b\x30\x14\x85\xdf\xfd\x2b\x8e\xe0\x65\x93\x32\xc8\xf2\x30\x55\xdb\x13\x4b\xa9\x86\xda\x41\x14\xe8\xba\x68\xda\x83\x03\x37\x70\x25\x62\x33\xfb\x32\x9a\x7f\x3f\x91\xa6\xd2\xa2\xfa\xd1\xf7\xf3\xf1\xe7\xe3\x10\x6b\x3b\x9c\x1c\xb7\x9d\x60\xb5\xfc\xf8\x09\x55\x47\xb8\x1f\xf7\xe4\x0c\x09\x79\x24\xa3\x74\xd6\xf9\x48\x85\x2a\xc4\x03\xd7\x64\x3c\x35\x18\x4d\x43\x0e\xd2\x11\x92\x41\xd7\x1d\xbd\x4e\x16\xf8\x41\xce\xb3\x35\x58\x45\x4b\xbc\x9b\x81\xe0\x32\x0a\xde\x7f\x51\x21\x4e\x76\xc4\x51\x9f\x60\xac\x60\xf4\x04\xe9\xd8\xe3\xc0\x3d\x81\x9e\x6b\x1a\x04\x6c\x50\xdb\xe3\xd0\xb3\x36\x35\x61\x62\xe9\xce\xd7\x5c\x42\x22\x15\x62\x77\x89\xb0\x7b\xd1\x6c\xa0\x51\xdb\xe1\x04\x7b\xf8\x9f\x83\x96\xb3\xf0\xbc\x3a\x91\xe1\x73\x1c\x4f\xd3\x14\xe9\xb3\x6c\x64\x5d\x1b\xf7\x2f\xa0\x8f\x1f\xb2\x75\x9a\x97\xe9\x87\x55\xb4\x3c\x1f\x79\x34\x3d\x79\x0f\x47\x7f\x46\x76\xd4\x60\x7f\x82\x1e\x86\x9e\x6b\xbd\xef\x09\xbd\x9e\x60\x1d\x74\xeb\x88\x1a\x88\x9d\x7d\x27\xc7\xc2\xa6\x5d\xc0\xdb\x83\x4c\xda\x91\x0a\xd1\xb0\x17\xc7\xfb\x51\xae\xca\x7a\xb5\x63\x7f\x05\x58\x03\x6d\x10\x24\x25\xb2\x32\xc0\xd7\xa4\xcc\xca\x85\x0a\xf1\x94\x55\xdf\x8a\xc7\x0a\x4f\xc9\x76\x9b\xe4\x55\x96\x96\x28\xb6\x58\x17\xf9\x6d\x56\x65\x45\x5e\xa2\xb8\x43\x92\xef\x70\x9f\xe5\xb7\x0b\x10\x4b\x47\x0e\xf4\x3c\xb8\xd9\xdf\x3a\xf0\x5c\x23\x35\x73\x67\x25\xd1\x95\xc0\xc1\xbe\x08\xf9\x81\x6a\x3e\x70\x8d\x5e\x9b\x76\xd4\x2d\xa1\xb5\x7f\xc9\x19\x36\x2d\x06\x72\x47\xf6\xf3\x67\x7a\x68\xd3\xa8\x10\x3d\x1f\x59\xb4\x9c\x77\xde\x3c\x2a\x52\xea\x6e\x5b\x7c\x87\xaf\x9d\x96\xba\x53\xeb\x62\xb3\x83\x21\x11\xf2\x82\x58\xa5\x3f\x37\x45\x99\xe2\x66\x79\xb3\x54\x69\x5e\x6d\x77\x9b\x22\xcb\x2b\xfc\x0a\xe2\x0b\x13\xfc\x56\xff\x02\x00\x00\xff\xff\x47\xe1\x53\x83\x8c\x02\x00\x00") + +func testImagesNettestDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesNettestDockerfile, + "test/images/nettest/Dockerfile", + ) +} + +func testImagesNettestDockerfile() (*asset, error) { + bytes, err := testImagesNettestDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nettest/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNettestMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x4f\xe3\x48\x10\x85\xcf\xdb\xbf\xe2\x29\xe6\x90\x48\xc1\x61\xd1\x8a\x03\x2b\xb4\xf2\x3a\x19\xb0\x40\xf6\xc8\x36\x20\x4e\xa8\x6d\x57\xec\x92\x9c\x6e\x4f\x77\x79\x4c\xfe\xfd\xc8\x01\xa4\x41\xd3\xb7\xae\xf7\xaa\xfa\xeb\x57\x01\x62\x3b\x1c\x1d\xb7\x9d\xe0\xf2\xe2\xef\x2b\x94\x1d\xe1\x7e\xac\xc8\x19\x12\xf2\x88\x46\xe9\xac\xf3\xa1\x0a\x54\x80\x07\xae\xc9\x78\x6a\x30\x9a\x86\x1c\xa4\x23\x44\x83\xae\x3b\xfa\x54\xd6\x78\x22\xe7\xd9\x1a\x5c\x86\x17\x58\xce\x86\xc5\x87\xb4\x58\xfd\xab\x02\x1c\xed\x88\x83\x3e\xc2\x58\xc1\xe8\x09\xd2\xb1\xc7\x9e\x7b\x02\xbd\xd5\x34\x08\xd8\xa0\xb6\x87\xa1\x67\x6d\x6a\xc2\xc4\xd2\x9d\x9e\xf9\x18\x12\xaa\x00\x2f\x1f\x23\x6c\x25\x9a\x0d\x34\x6a\x3b\x1c\x61\xf7\xbf\xfb\xa0\xe5\x04\x3c\x9f\x4e\x64\xb8\xde\x6c\xa6\x69\x0a\xf5\x09\x36\xb4\xae\xdd\xf4\xef\x46\xbf\x79\x48\xe2\x5d\x5a\xec\xce\x2f\xc3\x8b\x53\xcb\xa3\xe9\xc9\x7b\x38\xfa\x31\xb2\xa3\x06\xd5\x11\x7a\x18\x7a\xae\x75\xd5\x13\x7a\x3d\xc1\x3a\xe8\xd6\x11\x35\x10\x3b\xf3\x4e\x8e\x85\x4d\xbb\x86\xb7\x7b\x99\xb4\x23\x15\xa0\x61\x2f\x8e\xab\x51\xbe\x84\xf5\x49\xc7\xfe\x8b\xc1\x1a\x68\x83\x45\x54\x20\x29\x16\xf8\x3f\x2a\x92\x62\xad\x02\x3c\x27\xe5\x5d\xf6\x58\xe2\x39\xca\xf3\x28\x2d\x93\x5d\x81\x2c\x47\x9c\xa5\xdb\xa4\x4c\xb2\xb4\x40\xf6\x0d\x51\xfa\x82\xfb\x24\xdd\xae\x41\x2c\x1d\x39\xd0\xdb\xe0\x66\x7e\xeb\xc0\x73\x8c\xd4\xcc\x99\x15\x44\x5f\x00\xf6\xf6\x1d\xc8\x0f\x54\xf3\x9e\x6b\xf4\xda\xb4\xa3\x6e\x09\xad\xfd\x49\xce\xb0\x69\x31\x90\x3b\xb0\x9f\x97\xe9\xa1\x4d\xa3\x02\xf4\x7c\x60\xd1\x72\xaa\xfc\xf1\xa9\x50\xa9\x22\x8f\x8b\x1b\x43\x22\xe4\x45\x45\x79\x7c\x87\xff\x6e\xa0\x0f\xcd\xd5\x3f\xaa\x8c\xf2\xdb\x5d\x39\xdf\xcf\x96\xf1\x63\xbe\x4d\xf2\x95\xba\xcd\x1e\xa2\xf4\xf6\xf5\x69\x97\x17\x49\x96\xce\x5a\xaf\x4f\xad\x45\x1e\xbf\x6e\x93\x1c\xb3\xd9\x58\x69\xd8\xe1\x6c\xe9\x3b\xea\x7b\x0c\x53\xb3\x5a\x29\x7a\x1b\xac\x13\xa5\x2a\x36\xd7\xea\xaf\x30\xdc\xf0\x41\xb7\x74\x3e\x0a\xf7\xa1\xef\x50\xb1\xc1\xd9\x72\xa6\x59\x29\x15\x7e\xbf\xcb\xd2\x97\xeb\xb9\xa8\x7e\x05\x00\x00\xff\xff\x6e\x55\x58\x46\xed\x02\x00\x00") + +func testImagesNettestMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesNettestMakefile, + "test/images/nettest/Makefile", + ) +} + +func testImagesNettestMakefile() (*asset, error) { + bytes, err := testImagesNettestMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nettest/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNettestVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesNettestVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesNettestVersion, + "test/images/nettest/VERSION", + ) +} + +func testImagesNettestVersion() (*asset, error) { + bytes, err := testImagesNettestVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nettest/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNettestNettestGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x5a\xff\x6f\xdb\x46\xb2\xff\x59\xfc\x2b\xe6\xf1\xc1\x09\xe9\x2a\xa4\x53\xbc\x02\x85\x53\x17\xf0\xd9\x49\x63\xd4\xb1\x8d\xc8\xb9\xe0\x90\x2b\x8a\x15\x39\xa2\xf6\x4c\xed\xb2\xbb\x4b\x29\x82\xa1\xff\xfd\x61\x66\x97\x14\x25\xcb\xbd\x97\xbe\x73\x00\x5b\x22\x77\x67\x66\x67\x3e\xf3\x75\x93\x1f\x47\x17\xba\x59\x1b\x59\xcd\x1d\x7c\x7f\xf2\xfa\x7f\xe0\x7e\x8e\xf0\x6b\x3b\x45\xa3\xd0\xa1\x85\xf3\xd6\xcd\xb5\xb1\x59\x14\x5d\xcb\x02\x95\xc5\x12\x5a\x55\xa2\x01\x37\x47\x38\x6f\x44\x31\x47\x08\x6f\xc6\xf0\x77\x34\x56\x6a\x05\xdf\x67\x27\x90\xd0\x82\x38\xbc\x8a\xd3\x37\xd1\x5a\xb7\xb0\x10\x6b\x50\xda\x41\x6b\x11\xdc\x5c\x5a\x98\xc9\x1a\x01\xbf\x16\xd8\x38\x90\x0a\x0a\xbd\x68\x6a\x29\x54\x81\xb0\x92\x6e\xce\x4c\x02\x89\x2c\xfa\x47\x20\xa0\xa7\x4e\x48\x05\x02\x0a\xdd\xac\x41\xcf\x86\xab\x40\xb8\x28\x02\x00\x98\x3b\xd7\x9c\xe6\xf9\x6a\xb5\xca\x04\x4b\x99\x69\x53\xe5\xb5\x5f\x65\xf3\xeb\xab\x8b\xb7\x37\x93\xb7\xaf\xbe\xcf\x4e\xa2\xe8\x93\xaa\xd1\x5a\x30\xf8\x47\x2b\x0d\x96\x30\x5d\x83\x68\x9a\x5a\x16\x62\x5a\x23\xd4\x62\x05\xda\x80\xa8\x0c\x62\x09\x4e\x93\x9c\x2b\x23\x9d\x54\xd5\x18\xac\x9e\xb9\x95\x30\x18\x95\xd2\x3a\x23\xa7\xad\xdb\x51\x50\x27\x95\xb4\x30\x5c\xa0\x15\x08\x05\xf1\xf9\x04\xae\x26\x31\xfc\xed\x7c\x72\x35\x19\x47\x9f\xaf\xee\xdf\xdf\x7e\xba\x87\xcf\xe7\x1f\x3f\x9e\xdf\xdc\x5f\xbd\x9d\xc0\xed\x47\xb8\xb8\xbd\xb9\xbc\xba\xbf\xba\xbd\x99\xc0\xed\x3b\x38\xbf\xf9\x07\xfc\x7a\x75\x73\x39\x06\x94\x6e\x8e\x06\xf0\x6b\x63\x48\x76\x6d\x40\x92\xea\xb0\xcc\xa2\x09\xe2\x0e\xf3\x99\xf6\xc2\xd8\x06\x0b\x39\x93\x05\xd4\x42\x55\xad\xa8\x10\x2a\xbd\x44\xa3\xa4\xaa\xa0\x41\xb3\x90\x96\x8c\x67\x41\xa8\x32\xaa\xe5\x42\x3a\xe1\xf8\xfb\x93\xe3\x64\xd1\x71\x1e\x45\x79\x0e\xe7\xe0\xa4\x5a\xc3\x0a\xa7\x60\xd1\x2c\xd1\x30\xaf\x62\x8e\xc5\x03\x11\x55\xe8\x56\xda\xf0\xc7\x42\x2b\x85\x85\x93\x4b\xe9\xd6\x59\x94\xe7\xb4\xfb\xb3\xac\x6b\x28\xa5\xa8\x41\xb7\x0e\x9c\x1e\x13\x67\x3a\x11\x16\xf4\x15\xe6\x28\x0c\xcc\x8c\x5e\x8c\x01\x97\x68\xd6\xd0\xe8\x12\xdc\x5c\x38\x52\xa7\x80\x05\x2e\xa6\x68\x40\xcf\x88\x16\x9f\x0f\xcd\x52\x16\x08\x8d\xb0\x04\x53\xa9\xf8\xe9\xac\x16\x15\xbc\x0a\xef\x76\x58\xb3\xc8\x20\x48\xfc\x20\xbd\x56\x50\xc9\x25\x2a\x78\xd5\x68\xe3\xba\xc5\x7f\x97\x56\x3a\xc8\x0d\x0a\x36\xbf\x0d\xea\x2d\x5a\x63\x50\x39\xb0\x4e\x38\x1c\x93\x05\xf2\x3f\x5a\xc9\x92\xdb\x79\xeb\xa0\xd4\x2b\xb5\x47\x82\x96\xb6\xb6\x23\x42\x72\xe6\xa6\x55\x64\x80\x7c\x26\x64\x0d\x25\x3a\xb2\x83\x62\xc5\x67\x90\xd4\xd2\xa1\x11\x75\xbd\x1e\x83\x74\xb0\x92\x75\x4d\xc4\x0c\xba\xd6\x28\xd0\x0a\x3d\xf8\xb5\x45\x58\x69\x53\xda\x2c\x0d\xec\x72\xc2\x27\xa3\xae\xb5\x1e\xcf\x9a\xd1\x12\x0c\x02\x0e\xad\x23\x6d\xb2\x28\x06\x2b\x69\x1d\x9a\x3d\x1b\x35\xa2\x78\x20\x8c\x2c\x84\x54\x51\x24\x17\xa4\x11\x48\xa2\x51\x3c\x5d\x3b\xb4\x71\x34\x8a\x51\x15\xba\x24\xd9\xff\x65\xb5\xa2\x07\xa4\x6a\xfe\xbb\x70\xf4\x47\xea\x5c\xea\xd6\xc9\x9a\xbe\xd4\x9a\x5f\x29\x74\x39\xb9\x26\x7d\xd6\xd6\xff\xce\xad\xac\x94\xe0\x55\x76\xad\x0a\xff\xd7\x16\xa2\xe6\x47\x4e\x2e\x30\x8e\xa2\xd1\xf2\x35\xc4\x0f\x3f\xda\x4c\xea\x5c\x34\x72\x21\x8a\xb9\x54\x68\xd6\x79\xf3\x50\xd1\x03\x9b\x2f\xd0\x89\x7c\xf9\x9a\xf6\x3c\xb7\x8e\x84\xc9\x2d\x3a\x62\x6c\xd0\xba\xa2\x96\x64\xc1\x6e\xbd\xff\xfa\xaa\xd2\x39\xbd\x8c\xa3\x91\x7f\x60\x71\xbb\xe4\xa1\x8f\x8c\x4c\xd0\x2f\xc8\xfb\x75\xbf\x57\xa8\xd0\x08\x87\x65\x2e\x95\x43\xa3\x44\xdd\xbf\x8b\xa3\x34\x8a\x96\xc2\x90\x12\x59\x99\xfd\xcf\x19\x83\x34\xbb\x52\x2e\x89\xe9\x4d\x3c\x86\x1f\x4f\x7e\x3c\x19\x43\x7c\x47\xeb\x54\xcb\x40\x67\xd4\x30\x62\x5d\x16\xa7\xd1\xa8\x41\x34\x17\xba\x55\xee\x29\x0d\x44\x63\x89\xc8\x18\xe2\x0f\xad\x75\x30\x93\xaa\x04\xe1\xa0\x46\x61\x9d\x0f\xbc\x0b\xa1\xd6\xc0\x0b\xfb\xf8\xc0\xa8\x70\x9a\x71\xc9\x1c\x3a\x87\xda\x91\x72\xe2\x8c\x54\x55\x12\x87\x97\xf1\x18\xc8\xa8\xb4\x97\x3e\x4e\xc2\x16\xa7\x3d\xd3\xe7\x70\x27\x15\x73\x50\x62\x81\xb6\x11\x81\xc7\x1e\x87\xfe\x25\x11\x2e\x71\x26\xda\x9a\x79\xdc\xf4\x9b\x18\xfe\xd2\x12\xc9\x0c\xee\x6f\x2f\x6f\x4f\x61\x6b\x20\xb0\x73\xdd\xd6\x25\x2c\xc4\x43\x48\x36\xa5\xb4\x05\x45\x3c\x0a\xeb\xcc\xbe\xc4\x5a\xac\x27\xf3\xd6\x91\xaf\xee\xa8\x90\xdf\xbc\xb2\xe1\x55\x3c\x06\xb2\xc6\x4d\x1b\x22\x0e\x58\x2c\xb4\xf2\xee\xc3\x2b\xa1\x5b\x09\xab\x39\x2a\x30\x58\xa0\x5c\x52\xdc\x9b\x5c\xfd\x72\xff\xf6\xe3\x07\xe2\x96\x72\xc8\x9c\x50\xb4\x00\x67\x44\xf1\x60\x59\xeb\x1d\x4e\x7c\x1c\x21\xe2\xba\x35\x50\x4b\xe7\x6a\xe4\x2c\x16\x42\x2b\x85\x12\xb8\x72\x2f\x6d\xf0\x7f\x2c\x61\x89\x66\x2a\x9c\x5c\x00\x1d\x8a\x89\xf9\x20\x85\xaa\x6c\xb4\x54\x2e\x8b\xdc\xba\xc1\xc0\xd2\x3a\xd3\x16\x0e\x1e\xa3\x51\x9e\xc3\x7b\x6d\x1d\xa9\x97\x42\x04\xc1\x5b\x53\xc6\xa5\xe8\xab\x28\xd2\x42\x31\x17\xaa\xc2\xf2\xd5\x2b\x90\xc4\x50\xd4\x2b\xb1\xb6\x60\xc5\x0c\x7d\xc0\x10\x65\x16\x8d\x7a\x1a\x96\xed\x15\x31\x61\xaa\x1e\xa6\x58\xeb\x15\xcc\x24\xd6\x65\x9f\x54\x7d\xdc\xae\x75\xf1\x40\x2c\xe7\x58\x97\x30\xc5\x99\x36\xc8\xd4\x48\x53\xda\x74\x59\x35\x8b\x46\x13\x54\x03\xff\x08\x3f\x0b\xd1\x7c\xf1\xbc\x7e\x93\xca\x45\xa3\x8f\xac\x65\x2c\xff\x74\xd1\x5b\x63\xb4\xb1\x7b\x94\xbe\xfc\x16\x64\x1e\x5d\xeb\xea\x09\x9f\xc1\xeb\x89\x93\x75\x7d\xa1\x95\x13\x05\x49\x76\xc7\xfe\x32\xd5\xba\x8e\xa2\x11\x1f\x86\x02\x56\xf6\xa1\x75\xf8\x35\xda\x44\xd1\xac\x55\x05\x24\x16\x8e\x59\xe5\x29\x94\x5a\xe1\xde\xee\x24\x25\x13\xd8\x8c\x76\x67\xd7\xba\x78\x48\x18\x87\x33\x34\x10\x1e\x7e\x52\x75\x78\x6c\xb3\x83\xfc\xcf\x60\x26\x6a\x8b\xc4\x30\xcf\x3d\x3a\x26\x3e\xb1\x78\x64\x58\x88\xc9\x85\xc9\x55\x42\x76\x89\x39\x3d\xc5\x94\x63\xe2\xec\x89\x94\x03\x0a\xc9\x8a\x21\x97\x7d\x44\xdb\x68\x65\xf1\x33\xe5\x11\x33\x06\x03\xc7\xe1\xf9\x1f\x2d\x5a\xf7\x0d\x67\x90\x33\xa8\x51\x25\x36\x23\x93\xa6\xf0\xf3\x19\x1c\x6f\x03\xd7\x8b\x17\xe1\x65\x67\xca\xfd\x05\x8f\xd1\x68\x34\x5b\xb8\xec\x5d\x63\xa4\x72\xb3\x64\x35\x0e\x67\x4b\xa3\xd1\xc8\x9f\x36\x1a\x6d\x98\xcb\x33\xca\x3a\x44\xa1\xd3\xca\x1e\x91\x3c\x87\x6b\x5d\xcd\xa0\x10\xea\xa5\x83\x29\x02\xa5\x20\x2c\x61\x35\xa7\x22\x75\xae\x6b\xc6\x29\xb9\x19\x1d\x8e\x6a\x3f\xf0\x87\x6e\x2d\xbd\x10\x50\x69\x43\xf9\x4e\x61\x34\xaa\x34\xd8\x8c\xa8\x25\xf1\x25\x16\xb5\x20\x38\x01\xe9\xbf\x35\xbe\x20\x3b\xb2\xf9\x91\xf5\x45\xee\x51\x09\x96\xf0\x4e\xfe\x77\x54\x86\xe0\x81\x65\xf7\xbd\x8b\xe6\xc7\x7d\x3c\x1c\xc3\x71\x88\xbe\xe3\xa1\x72\xc7\xfb\xca\x1c\x0f\x54\x99\x46\x4f\xd4\xc0\x70\x48\x87\x30\xfa\x48\xd1\x83\x6b\x07\xcb\x51\x88\x12\x3b\x70\x9a\xc7\xd2\xc7\xa7\xc3\xe0\xa1\x7d\xff\x79\xe8\xac\x32\xa6\xf1\x1e\x45\x89\x26\x61\x22\x1e\xa5\xb7\xbf\xa6\xd1\x68\x3a\x06\x34\x06\x4e\xcf\x58\xca\xec\x83\x30\x76\x2e\xea\x2b\x55\xa2\x72\x89\x1d\x43\x4c\xf8\xff\xa7\xe3\x3c\x96\x89\xa6\x41\x55\xbe\x35\x26\x41\x63\xd2\x68\xf4\xbb\xdf\x7c\x06\x81\x47\x32\x3d\xb4\xcc\x6b\x86\x17\xdc\x69\xcb\x65\x27\x57\x94\xda\x2c\x84\xf3\x11\x2d\x19\xaa\x28\xe5\x68\x87\xd6\x71\x62\xe0\x78\xec\x0b\xb1\xb9\x50\x65\x4d\x47\xf4\x19\xc9\x89\x07\x0c\xb1\x79\x4b\x7c\x1b\x9f\x27\xba\x35\x45\x1f\x56\x47\x97\x94\x34\xa1\xfb\x3a\x90\x89\x34\x4d\x32\xf5\xf9\x60\xba\x0e\x0c\x07\xb4\x79\xd1\x96\xf6\x7e\xd0\x1e\x18\x9f\x97\x13\xfa\xa8\x94\xf4\x15\xae\xf7\x25\xaa\xa4\x09\x0d\x0c\x80\x67\xc2\x87\xd7\xe2\x37\x40\xc0\xdb\xdc\x64\x7f\xd3\xe5\x3a\xbb\xa8\xb5\x45\x1f\xf1\xfe\xff\xc0\xa0\x12\x6b\xd5\x6c\x35\xbb\x6b\x58\x06\xcb\x0d\xae\x2e\x91\x4c\x66\x12\x2f\x41\x9a\xf9\xef\xc9\x8b\x55\x93\xfa\xa8\xb5\x6a\xb2\x60\x88\xb3\x33\x88\x63\x0e\x24\x43\x42\xe4\x4d\x9c\x5c\x66\x49\x7c\xb4\x3c\x85\x5f\xb4\xeb\xcc\xef\xdd\x5a\x69\xb0\x4c\x20\x1e\x83\xcd\x3a\xc5\x13\xf5\x0d\x60\x6d\x91\x29\x72\xe0\xea\x13\xd9\xd9\x19\x28\x59\xf3\x8b\xd1\xf0\xf1\x5e\x56\x7b\xdc\x44\x23\x0a\x58\x83\x35\x5f\x7a\x71\x7f\x83\xef\xce\xe0\x35\x07\xb4\x43\xe7\x7e\xab\xfc\xb9\x57\x69\xe6\x3f\x26\x2f\x7a\x9c\x3c\x76\x42\x9e\x0e\x04\xde\xa4\x9d\x23\xf4\xc4\x40\x94\xa5\x65\x07\x0a\x30\xaf\xa5\x75\x63\x90\x33\x7e\x26\x2d\xb7\xf8\x4a\xd6\x19\x58\x58\x50\xfd\x39\xf5\x21\x93\x9a\xd3\x7d\xf4\xec\xb8\x1c\xed\xd7\x86\xf1\x11\x88\xfd\xd7\x56\x23\x36\x0b\xb9\xfc\x2c\x6c\x4a\xba\x27\xec\xcc\xfe\x73\xc2\xfa\x0d\x02\x73\x34\x0f\xe1\xac\x93\x54\x57\xb0\x40\x6b\xa9\xb3\x21\xa9\x7b\x11\x49\xe4\x81\x98\xe4\x14\x2f\x2d\x51\xe8\xfa\xcc\x15\x77\xab\x46\x37\xd4\xba\x6b\xaa\x2b\x03\x19\x39\xe3\xe6\x8c\x3d\x9b\xcb\xdd\x95\xb4\x48\x04\xa6\x58\xe8\x05\x91\x54\x15\x97\x67\x42\xc1\x0f\x27\x27\xdd\x3e\xfb\x54\x17\x9c\x2f\x42\x74\xf1\xd6\x1e\x83\x30\x95\x85\x2c\xcb\xb8\x4c\x9c\x89\x02\x1f\x37\xdf\x54\x41\xd0\x09\x06\x0a\xbb\xd6\xd5\x18\x08\xba\x93\x90\x08\x3c\x3b\xcf\x27\xcb\xb2\x74\x98\xb2\xaf\x75\x95\xc2\xcf\x2c\xb4\x37\x80\x27\xc6\x7f\xbf\xbc\x3e\xfd\x6d\xab\xe9\x43\x4a\x7c\xc6\xd4\x93\xb6\x28\xd0\xda\x59\x5b\x4f\x48\x24\xa7\xf7\x42\xd2\xb7\xd5\x16\x3e\xf5\x0d\x1d\xa7\x7b\x72\xc0\x67\xd8\x25\xe8\xed\x97\x2d\xd7\xe0\x2e\x9b\xbe\x35\xcb\x73\xb8\x6d\x0d\x77\xd7\x94\x80\xb5\xaa\xd7\x5d\x69\x3e\xfd\x17\x16\x14\x4e\xf8\x1b\x1f\x8a\x8a\x7a\x3e\x26\x75\xc9\xbe\xb4\xe3\x1e\xe2\x4e\x18\x0e\x68\x2c\x63\x97\xac\x07\x81\xa4\xd6\x55\xf6\x4e\x38\x51\x27\xbe\x41\x6b\x8c\x5e\xca\x12\xfb\x39\x85\xef\x44\x62\xc6\x72\x34\x9a\x07\x59\xfb\x8c\xa7\xb7\xee\x19\xf4\xb0\xe7\x2b\x3d\xfd\x59\x12\xb3\x5f\x40\x85\x8e\x8a\x22\x98\xf7\x2e\x7e\xb4\x8c\x99\x60\x60\x42\x82\xee\xf6\x43\x3f\x83\xb7\xbb\x43\xb3\xb8\x98\x13\x5f\x6a\xa5\x12\x6a\x0e\x48\x82\x09\x77\xed\x54\x43\xf9\xfe\x3d\xbb\xd1\x4e\xce\xd6\x89\x5f\x3e\x86\xd0\xc3\x67\xa1\x05\xa2\x85\x95\x06\xd2\x96\x57\xd4\x68\xf4\xd3\x2b\xbf\x96\x3e\x93\xc4\x77\x1e\x92\xf1\xa4\x46\x6c\x48\x58\xae\x8c\x7c\xa7\x15\xba\x05\xfc\x2a\x1d\xb9\x03\xd5\x43\x3b\xd2\x12\xf9\x91\x93\x0b\xcc\x78\x77\xc2\x1f\x2f\x5b\xc3\xa3\x94\x64\x6f\x2d\x1c\x83\x5f\xca\xc4\x79\xab\xb6\xd9\xdb\xaf\xd2\x25\x27\xf4\x6d\x93\x04\xa5\x78\x53\x9f\x9e\x79\x6b\x93\xd0\xdb\x10\x39\xfc\xe9\x2d\x14\x8d\x0e\xf6\x0c\xa7\xe0\x4c\x4b\x6f\x89\x68\xa5\xbb\xcc\x7a\x4b\xe1\xc2\x26\x2f\x98\x0d\xa1\x85\x73\xd9\x7b\xae\x16\xde\x91\xa2\x62\x1e\x29\xc5\x63\xaf\xb6\x6f\x48\xaf\x3b\xe7\xd9\x1c\x26\x4d\x9d\x17\xe5\x26\x4e\xeb\x7d\x1d\x97\x1e\x5a\xca\x41\x74\x77\x2d\x73\x3f\xb8\xd8\x4f\xb9\x76\x57\xfb\xfc\x9c\xfa\xd3\x6f\xd1\xcf\x9b\xaf\xa5\x75\xa8\xce\x55\x39\xa1\x95\xc9\x30\x3a\xc5\x27\x19\xff\x3b\x3d\x22\x49\x8f\x1b\x6d\xa8\xcc\x55\xb2\x4e\x89\x94\xc5\x1a\xa9\xac\xe9\xa2\xd0\x3b\x1e\x73\xd4\x35\x58\x39\xad\x79\xaa\xe9\x47\x0d\x3b\xd3\x41\x72\xea\x46\xfb\x49\x87\x9b\xa3\x34\x7b\x45\x5a\x08\xcb\xbb\x16\xf2\x38\xe8\x02\x19\x05\x28\x02\xd9\xbd\x5c\x30\x38\x7e\xd8\xc5\x13\xc7\x90\x2b\x05\xb5\x30\x15\x42\x51\xb7\x3c\x5d\xeb\x1c\x90\xe4\xeb\x1a\x74\x4b\xc9\xb2\x31\xe8\xdc\x9a\xe7\x9e\xca\xca\x25\x66\xa1\x91\x6e\xed\x18\x56\xe8\xf3\x0e\x8f\x63\xa9\x08\xb3\x58\x2f\x31\x4c\x10\x95\x1f\x24\x2f\xd1\x50\x1a\x12\x0e\x16\x74\xac\xd7\x27\x60\xdb\x62\xce\x44\xfa\x72\xb4\xa1\xf0\x19\x84\xa3\xa8\xd9\x4b\xff\x13\xec\x39\x4a\xdf\x30\xe4\xaf\x4f\xd2\xe3\xc1\xa9\x7c\x70\xed\x37\x9e\xfd\xe9\xc6\x7d\x85\x6c\x22\xf6\x4d\xdd\xba\x1d\x7d\x7d\x90\xaa\x75\xc8\xa2\x4e\xe4\x42\xd6\xc2\xd4\x6b\x3a\xb3\x0a\x93\xf6\x69\xbb\x68\xa0\xdb\x68\x75\x18\xfe\x3a\x5f\xf4\x0a\xab\x15\x0f\xe8\x65\x50\x35\xd3\x09\xea\xb6\x19\x1f\xb4\xdb\xfb\xfc\x31\x9f\x9e\xb1\xdb\xf3\xfc\x09\x0f\x1d\x2f\xa4\x28\x46\xfc\xc1\xb6\x3f\x8a\x46\x85\x56\x33\x59\xf5\x51\x7c\x3b\x81\xcc\xae\xd4\x85\x97\xfb\x82\x97\xfc\xfb\xa0\xfe\xc9\x1f\xdd\x69\x28\x0c\x12\x36\x3d\xed\x37\xbe\x82\xa2\xe0\xfe\x4f\x35\x08\xef\x81\x75\x46\x52\xa1\x72\xf7\xd4\x1e\x9c\x41\x1c\x6e\x39\xe8\x78\xf9\x52\x95\xd9\x76\x78\x96\x35\x46\x3b\x3d\x6d\x67\xfd\x14\xb4\x17\xbb\x1f\x68\x52\x39\xf9\x4e\x77\x22\x7b\x0e\x7f\x41\x70\x26\xf7\xac\xe0\x79\x0e\x97\xba\xa5\x2d\x7c\xad\xe0\x21\xc0\xbf\x56\xda\x3c\xf8\xa6\xa7\x73\xad\xce\xcd\xd1\xc0\xd2\xdf\x44\x79\x14\x2c\xf7\x64\xcf\x2e\xc3\x20\x70\x9d\xa4\x19\x07\x1d\x13\x6e\xae\x92\xf4\xcd\xff\x4d\xf8\x0a\xdd\x1e\xab\x7d\xd1\xb7\x35\xfe\x4e\x6a\xdb\xdf\xf3\xdf\x7e\xd3\x32\x24\x9c\x99\x66\x10\x19\xf6\x13\xc6\xd8\x8d\x5e\x91\x54\x1e\x6f\x52\x15\x98\xf0\xfb\x34\x60\x5a\xb7\xae\x7b\xc9\x79\xaf\xf7\x50\x9f\x06\xb0\xb1\x44\xa9\x42\xf7\xb9\xbb\xe5\x78\xdb\x05\x9f\xc4\x6b\x23\xf5\x6d\x08\x36\x36\xbb\x46\x2a\x62\x9e\x8e\x60\x46\x53\x83\xe2\xa1\x6b\x3a\x18\xe3\x7e\xb6\x71\xb4\xcc\x8f\x96\x30\x17\x16\x8e\x96\x83\xa8\x96\x1c\x2d\xd3\x31\xac\xe6\xb2\x98\x93\xaf\xf2\xed\x1a\xd7\xbf\x47\x4b\x10\x36\x5c\xf1\x60\x99\xc1\x67\xc1\x13\x3f\x9e\x88\xec\x06\x46\x02\x08\x55\xcf\x6d\x93\xfd\xe9\xec\x03\x1b\x9b\x8e\xbd\xf0\xd2\xba\x64\x7f\xe6\xb1\x89\x02\x84\xfc\x04\xd8\x60\x43\xa0\x2b\xf9\x46\x45\x41\x21\xf8\x1e\x12\x0d\xbe\xb4\x60\x89\x5d\x63\x74\x23\x2a\xf6\x88\x30\xd9\xe5\x5e\x2e\x20\x8c\x69\x29\x5c\xf9\x92\xd0\x38\x2c\xbb\x14\x13\xda\x8b\xad\xfc\xdc\x5c\x78\x7b\x4a\xb2\xc0\xc9\x1b\x90\xf0\x13\xbc\xfe\xe1\x0d\xc8\xef\xbe\xfb\x16\xdb\x10\x09\x6c\x38\x60\x08\x55\x21\x9d\x35\x74\x88\x03\x43\x9c\x3b\x87\x8b\xc6\x7b\x41\x5f\x5e\xc0\x11\x65\x61\x6c\xb8\xc0\x09\xcf\x26\x52\x55\x35\x26\xd8\x84\xf4\x9c\x06\xab\x1e\x84\x50\x5f\xe0\x1f\x94\xb1\x1f\x37\xd2\xc9\xb7\x97\x68\x5b\x1d\x08\x0b\xc2\x8f\x97\x67\x30\x09\xfd\x0c\x0a\xc2\x84\x1a\x0e\x52\x6a\xf9\x80\x10\x87\x0b\xdb\x47\xd9\x6c\x4e\x1f\x29\xd1\x6f\x62\x9f\x89\xff\x4c\x3f\x83\x60\x74\xd5\x35\x48\x29\xb1\xb4\xe1\x16\x81\x34\xd5\x0b\xb4\x1f\x06\x2e\xb4\xc1\x84\xfa\xe0\x8e\xe8\x16\x66\x69\xf6\x0b\xba\x64\x0b\xb5\xe5\x6b\x7a\x70\xdb\xf0\x8d\xe8\xe3\x26\x8d\x3a\xeb\x0d\x78\x3d\x6e\x0e\xb6\xad\x03\x2b\x6d\xe3\x87\xbf\x4c\xdc\x41\x0c\x4f\x05\xc9\x9f\x28\x92\x3c\x0f\x7a\x1f\x5e\xc2\xdc\x92\xc0\xc0\x61\x92\x36\xff\x3e\x06\x6b\x07\x38\xe9\x28\x67\x93\x76\x4a\x62\xfa\x59\xa8\x5f\x28\xb6\xeb\xac\xcd\xce\xcb\xd2\xa0\xb5\x18\x80\x15\xd6\x34\x3b\x6b\xee\xb4\x09\x24\x18\xb9\xd9\x95\xb2\x68\xdc\x6e\xb5\x16\x6c\x78\x64\x7d\xbd\x26\xb2\xab\xbb\x31\x34\xbc\x35\x65\x10\x86\xc1\xc5\x26\x1a\xca\xef\x8b\xb7\x1d\x7c\xf2\xb5\xb0\x07\x96\xf0\xb2\xc1\x4b\x7c\xc9\xb5\x9b\x33\xd2\x17\x40\x77\xb7\x93\x7b\xbe\x8e\x77\xb6\x2b\xe1\xc2\xda\xdd\x12\xae\x43\x7c\xdf\x52\x3f\x29\xe6\xa6\xba\x5c\x1f\x9c\x26\x86\xd9\xc8\x9d\xb6\x8e\x0e\x7e\x89\xd6\x51\xdd\xef\xcb\x7c\x9e\xb6\x9c\x86\x94\xff\x7e\xdb\x00\x6c\xfe\x6d\x0e\xe4\x99\xe1\xc2\xb3\xd8\xe6\xbd\x61\xd6\x33\x68\x9b\x5e\x22\x2e\x92\x49\x86\x04\xbf\xdb\x96\xe2\x3b\xc9\x9b\x6f\x60\xc7\xc0\x57\xb3\x94\x96\x3f\xfa\xd1\x18\x1d\x2c\x3d\x28\xce\x10\x95\x9f\x05\xff\x1f\x80\x53\x68\xb7\xb9\x39\x04\x90\x21\x42\xe1\xe8\x8f\x4e\xcc\x3d\x14\x0e\x0a\x20\x12\x7c\x77\xa6\x37\x54\xef\x19\xf8\x0b\xe1\x8c\xe4\x3b\xaf\xeb\xa4\x5f\xfe\x57\x84\x64\x1f\x32\xa1\x19\xe2\xff\x28\x00\x2f\x8f\x96\x2f\x4f\xf9\xf7\x73\x62\xf2\x74\xd0\x6c\x67\xa3\xd1\xc8\x0b\xc6\x66\xff\xa4\x82\x55\x12\x2f\xf3\x8b\x95\xf9\x2b\x82\xb5\x1d\x99\xad\x74\x94\x11\x0f\x88\xe8\x21\xe9\xed\xf4\x8c\xc0\x9e\xd7\xc1\xd9\xc9\xca\x6c\xc7\x8a\xd1\x26\xfa\xdf\x00\x00\x00\xff\xff\xea\x93\x1a\x3f\xcc\x23\x00\x00") + +func testImagesNettestNettestGoBytes() ([]byte, error) { + return bindataRead( + _testImagesNettestNettestGo, + "test/images/nettest/nettest.go", + ) +} + +func testImagesNettestNettestGo() (*asset, error) { + bytes, err := testImagesNettestNettestGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nettest/nettest.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNettestRcJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xcd\x6a\xc3\x30\x10\x84\xef\x7e\x0a\xa1\x73\x9c\x3f\x4a\x09\x06\x1f\x4a\x5e\xc0\x94\xd2\x4b\xe9\x61\x23\x6f\x83\x88\x2c\x19\x69\x93\x10\x82\xdf\xbd\xac\x12\x27\x8e\xe2\xd2\xa3\x57\xb3\xdf\x8c\x46\x3e\x67\x42\xc8\x9d\xb6\xb5\x2c\x84\x7c\xc7\xd6\x68\x05\xa4\x9d\x5d\x3b\x4b\xde\x19\x83\x5e\x4e\x58\x02\xad\xfe\x44\x1f\xb4\xb3\x2c\x3c\x2c\x2e\xd3\x06\x09\x6a\x20\x90\x85\x60\x90\x10\xd2\x42\x83\xac\xb0\x48\x84\x81\x72\xf5\xc8\x11\x42\x1a\xd8\xa0\x09\xb7\x8d\xe7\x1d\x19\xe7\x5d\x26\x44\x17\x4d\x42\x8b\xea\x6e\xe0\x2f\x19\x19\xb0\xbc\x12\x03\x1a\x54\xe4\xfc\xff\xcc\xeb\x02\x61\xd3\x1a\x20\x1c\x2e\x3c\x5d\x65\x3c\xec\xdf\xf0\x3e\xf4\xc0\x28\x0d\x1f\x27\xdc\x08\x68\x8b\x9e\xb1\x5f\x03\xec\xd0\x62\x60\x72\xc4\x4d\x40\x7f\xb8\x15\x78\x13\xe8\x06\xb6\x51\xb1\x55\x7e\xaa\xdd\x6c\xb7\xdf\xa0\xb7\x48\x18\x72\x5c\x62\x1e\xeb\x8f\x9a\x30\xeb\x5f\x03\x9a\xfa\xf5\xa5\x58\x4c\xe7\xa3\xac\x6a\x6f\x4c\xe5\x8c\x56\x27\xa6\xbe\x99\x23\x9c\x42\x2a\x04\xbf\x4d\x73\xc7\x79\xce\x19\xb5\xc2\xb2\xef\x64\xf2\xa4\x68\x9d\xa7\x72\x35\x5f\xa5\xe6\x7c\xc6\x97\x0d\x2d\x28\x2c\x6b\xfc\x81\xbd\x19\xdd\x47\xf4\xa1\x5c\xca\x87\x83\xef\x24\x1f\x9b\x8c\x05\x3c\x27\xdf\xc3\x87\xa8\x9c\x27\x59\x08\x8e\x96\xba\x32\xd1\x3b\x72\xca\x19\xee\xe4\x63\x5d\xc9\x44\xd1\x3d\xc6\xc9\xc6\x4e\xfa\x69\x77\xff\xb3\xb3\x2e\xfb\x0d\x00\x00\xff\xff\x58\x37\xde\x80\x7b\x03\x00\x00") + +func testImagesNettestRcJsonBytes() ([]byte, error) { + return bindataRead( + _testImagesNettestRcJson, + "test/images/nettest/rc.json", + ) +} + +func testImagesNettestRcJson() (*asset, error) { + bytes, err := testImagesNettestRcJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nettest/rc.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNettestServiceJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\xb1\xae\xc2\x30\x0c\x45\xf7\x7c\x85\xe5\xb9\x43\xdf\x56\x75\x7d\x3f\x50\x09\xc4\x82\x18\x4c\x6a\xa1\x88\x34\x89\x12\xab\x0b\xca\xbf\xa3\x84\x40\x3b\x30\x30\x45\xba\xf7\x9c\x1b\x3f\x14\x00\xde\x8d\x9b\x71\x04\x3c\x70\x5c\x8d\x66\xec\x4a\x48\xc1\x9c\x38\x26\xe3\x5d\xa9\xd6\xbf\x57\xba\xb0\xd0\x4c\x42\x38\x42\x51\x01\xd0\xd1\xc2\x85\x70\x2c\xc2\x49\x2a\x06\x80\x96\xae\x6c\xd3\x07\xfb\x02\xd6\x3c\x2b\x80\x5c\x97\x53\x60\xbd\xad\x06\x1f\xa5\xd8\xe7\x66\xbf\x57\x5a\x85\x23\x0c\xfd\xd0\x77\xbb\x34\x7a\xf1\xda\xdb\xf2\xc3\xf1\x7f\xc2\x5d\x25\x14\x6f\x2c\xd3\xa6\xb5\x2a\xd7\xf7\xd2\x0e\x4e\x6c\x59\x8b\x8f\xbf\x9d\xac\xb2\x7a\x06\x00\x00\xff\xff\x9a\x6c\x4e\x6b\x3b\x01\x00\x00") + +func testImagesNettestServiceJsonBytes() ([]byte, error) { + return bindataRead( + _testImagesNettestServiceJson, + "test/images/nettest/service.json", + ) +} + +func testImagesNettestServiceJson() (*asset, error) { + bytes, err := testImagesNettestServiceJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nettest/service.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNettestSlowPodJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7e\x0a\xb1\x67\x2b\xb1\x7f\x7e\x4a\x30\xe4\xd4\x17\xf0\xa1\xf4\x52\x7a\x58\x5b\x8b\x2b\x62\x6b\x8d\xb4\x89\x29\xc1\xef\x5e\xa4\x3a\x89\xd2\x9b\x34\x33\xfb\x8d\x56\xd7\x42\x29\x38\x59\x67\xa0\x51\xd0\xb2\x81\x32\x0a\x38\xdb\x77\xf2\xc1\xb2\x8b\xf2\xa5\xfe\x55\x27\x12\x34\x28\x08\x8d\x8a\x63\x4a\x81\xc3\x89\x62\x22\x8c\xbc\xe8\x79\x9b\x56\x0a\x46\xec\x68\x0c\xf7\x5c\x96\x74\x24\x42\x41\x20\xe9\x6b\xa1\xd4\x9a\xd0\x61\xa6\xfe\x81\xed\xd9\x09\x5a\x47\x3e\x22\x3e\x36\xc4\x0d\x95\xc1\x16\xea\x02\xf9\x0b\xf9\xad\x37\x99\x76\xc2\x21\xb9\x43\xef\x77\x96\xf7\xa7\x73\x47\xde\x91\x50\xd0\xf4\x8f\x74\x6c\xd7\x29\x13\xf6\xdb\x63\x34\x4e\xe6\xe5\x7f\x53\xef\xaa\x9c\x83\x7e\xc8\xeb\x93\xa6\x63\x9d\xed\xe9\x78\x5b\xa3\x7c\x72\x0d\x8d\xf8\xad\xc3\xd7\x59\x0c\x2f\xee\x58\x57\x70\xb7\x3f\x33\xf2\xcc\x5e\xfe\xa2\xaf\xd9\x39\xff\x81\x96\xbd\x40\xa3\x0e\xd5\xa1\x2a\x9f\x23\xb3\x67\xe1\x9e\xc7\xb8\xea\xdb\x6b\x0b\x99\xbb\x3e\x6a\x8b\x5c\x89\xb7\xb5\x58\x8b\x9f\x00\x00\x00\xff\xff\xe5\x3e\x28\xd8\xf5\x01\x00\x00") + +func testImagesNettestSlowPodJsonBytes() ([]byte, error) { + return bindataRead( + _testImagesNettestSlowPodJson, + "test/images/nettest/slow-pod.json", + ) +} + +func testImagesNettestSlowPodJson() (*asset, error) { + bytes, err := testImagesNettestSlowPodJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nettest/slow-pod.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNettestSlowRcJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\x31\x6f\xf2\x30\x10\x86\xf7\xfc\x0a\xcb\x33\x81\xf0\xe9\x6b\x85\x90\x98\x18\xba\xa2\xb6\xea\x52\x75\x38\x9c\x13\xb5\x70\x7c\xd1\xf9\x00\x55\x28\xff\xbd\x72\x08\xc5\x18\xaa\x8e\x5c\x1e\xbf\xef\xe3\xc3\xc7\x42\x29\xbd\xb5\xbe\xd6\x73\xa5\x9f\xb1\x75\xd6\x80\x58\xf2\x4b\xf2\xc2\xe4\x1c\xb2\x1e\x45\x04\x5a\xfb\x86\x1c\x2c\xf9\x08\xee\xa7\xa7\x69\x83\x02\x35\x08\xe8\xb9\x8a\x41\x4a\x69\x0f\x0d\x46\x22\x38\x3a\x94\x6c\x7a\x4c\x29\xed\x60\x8d\x2e\xfc\x60\x09\xe8\x51\x04\x83\xe8\x7e\xde\x15\x4a\x75\x7d\x72\x68\xd1\x5c\x52\xf9\x24\x16\x03\x66\x43\x62\x40\x87\x46\x88\xff\xce\x1c\x0e\x08\x36\xad\x03\xc1\xf4\xc0\x8d\xff\x7d\xd9\xdf\xc3\xcf\xd2\x49\x51\x2e\x3f\x94\x73\x63\x7d\xbf\xd9\x27\x06\x83\x2b\x64\x4b\xf5\x0b\x1a\xf2\x75\x6c\x7a\x18\x5d\x58\x43\x5e\xc0\x7a\xe4\xf8\xe1\x3d\x51\x48\x75\x12\xa1\x03\xae\x03\xf2\x7e\xf8\xa7\x12\xc0\x36\xb0\xe9\x89\x8d\xe1\xb1\xa5\xc9\x76\xb7\x46\xf6\x28\x18\x4a\xfc\x87\x65\xbc\x45\xd9\x33\x61\x32\x5c\xaa\x84\xa6\x7e\xfc\x3f\x9f\x8e\xab\x3c\x0b\x78\x93\xeb\xf4\xf3\x32\x56\x5b\x83\x8b\xf3\x5a\x46\x37\x44\x8d\x0e\xbe\xca\xf0\xb9\x93\x9a\x0e\x7e\x31\xad\xf4\x15\xf2\x91\x35\xb5\xc4\x72\xaf\xea\x98\xfd\x4e\x37\xb5\x22\x96\xf8\x36\xaa\x59\x95\xf7\xc7\x44\x26\x21\x43\x2e\xae\xe2\x75\xb9\xd2\x19\xd1\x5d\xeb\x14\xf7\xbe\x9c\xa7\xdd\xe5\x99\x16\x5d\xf1\x1d\x00\x00\xff\xff\x49\xdb\x13\x5a\x3d\x03\x00\x00") + +func testImagesNettestSlowRcJsonBytes() ([]byte, error) { + return bindataRead( + _testImagesNettestSlowRcJson, + "test/images/nettest/slow-rc.json", + ) +} + +func testImagesNettestSlowRcJson() (*asset, error) { + bytes, err := testImagesNettestSlowRcJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nettest/slow-rc.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNoSnatTestBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\xcc\x29\xc8\xcc\x4b\xb5\x32\xd6\x33\xe3\x4a\x2c\xca\xb5\x4d\x2c\xca\x35\x36\x2a\x33\xd3\x47\x15\x06\xa9\x03\x91\x65\x16\xc8\x12\x05\x05\xc9\x66\x26\x39\xa9\xb6\x50\x1a\x59\x0a\x10\x00\x00\xff\xff\xe5\x8d\xa8\xc0\x5c\x00\x00\x00") + +func testImagesNoSnatTestBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesNoSnatTestBaseimage, + "test/images/no-snat-test/BASEIMAGE", + ) +} + +func testImagesNoSnatTestBaseimage() (*asset, error) { + bytes, err := testImagesNoSnatTestBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/no-snat-test/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNoSnatTestBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x41\x6b\xe3\x30\x10\x85\xef\xfe\x15\x42\xa7\x38\x6c\x2c\x96\xbd\x2c\x86\x40\xff\x47\x30\x66\x64\xcb\xd3\x21\x63\x8f\x90\x64\x43\xf2\xeb\x4b\x6c\xa7\xad\xdb\x34\xa7\x1e\xf5\xe6\xcd\xe3\xd3\x63\x3c\x34\x67\x40\xb7\x6b\x5d\x07\x23\xa7\x7a\xa2\x48\x96\x98\xd2\x45\x1d\xd5\x49\x1b\xf3\x21\x94\x7e\xb4\x4c\x8d\xae\xf2\x2c\x63\x81\x76\x97\x29\xa5\x94\x7e\x21\xa9\x2d\x5c\x1d\xd7\x61\x64\x17\x6b\x14\x63\x50\xca\xd6\x75\x85\xbd\xb2\xfe\xb3\xb8\x50\x6a\x4b\x03\x84\xcb\x27\x81\xc9\x86\x45\xc9\xb3\xec\xdd\xb0\xc4\x0e\xd0\x3b\x75\x54\x7a\x90\x43\x1c\x20\x1d\x92\x8b\x69\x5d\x5d\xd7\x6e\xd3\x12\xa5\xbe\x93\x7f\x4d\x5b\xdf\xdb\xb8\x87\xfe\x9b\x21\x86\x26\xce\x3f\xee\x81\x86\x02\x45\x57\x8b\xde\x3a\x3f\xeb\xf3\x63\x06\x37\x66\x72\x43\x2b\xc1\x20\xa5\xd7\xd1\x16\x8d\xf4\x26\xfa\xee\xef\x3f\xe3\x3b\x06\x7c\x8c\xf4\x7d\xfb\xfc\x3f\x16\x24\x06\x3c\x45\x17\x26\x17\x8c\x3f\xa3\x19\x13\xb1\xf9\x9d\x14\x16\x8c\x3f\xa7\x54\x73\x4b\x1d\xb1\xc3\x20\xa3\xdf\x96\xb4\xde\xc4\xe1\xd6\xc9\xb6\x1e\x64\xb1\xbb\x93\xde\xef\x75\x95\x2f\x83\x04\xb8\xf4\x06\x63\x92\x1e\x06\x40\xd7\xde\xbb\x7b\x7a\x4b\x81\x26\x48\x4e\x3f\x05\x01\xe6\x07\x10\x27\x5d\x6e\x08\xab\xe7\x24\x79\xf6\x16\x00\x00\xff\xff\x18\x22\xe9\xa3\xe4\x02\x00\x00") + +func testImagesNoSnatTestBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesNoSnatTestBuild, + "test/images/no-snat-test/BUILD", + ) +} + +func testImagesNoSnatTestBuild() (*asset, error) { + bytes, err := testImagesNoSnatTestBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/no-snat-test/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNoSnatTestDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x6f\x9b\x30\x14\x85\xdf\xfd\x2b\x8e\xe0\x65\x93\x12\xc8\xf2\x32\x69\x7b\x62\x29\xdd\x50\x5b\xa8\x02\x5d\x15\x4d\x7b\x70\xe0\x06\xae\x44\x6c\x66\x5f\x46\xf3\xef\x27\xd2\x54\x6a\x34\x3f\xfa\x7c\xbe\xfe\x7c\x1c\x62\x63\x87\x93\xe3\xb6\x13\xac\x57\x9f\x3e\xa3\xea\x08\x77\xe3\x9e\x9c\x21\x21\x8f\x64\x94\xce\x3a\x1f\xa9\x50\x85\xb8\xe7\x9a\x8c\xa7\x06\xa3\x69\xc8\x41\x3a\x42\x32\xe8\xba\xa3\xb7\x64\x81\x9f\xe4\x3c\x5b\x83\x75\xb4\xc2\x87\x19\x08\x2e\x51\xf0\xf1\xab\x0a\x71\xb2\x23\x8e\xfa\x04\x63\x05\xa3\x27\x48\xc7\x1e\x07\xee\x09\xf4\x52\xd3\x20\x60\x83\xda\x1e\x87\x9e\xb5\xa9\x09\x13\x4b\x77\xbe\xe6\x32\x24\x52\x21\x76\x97\x11\x76\x2f\x9a\x0d\x34\x6a\x3b\x9c\x60\x0f\xef\x39\x68\x39\x0b\xcf\xab\x13\x19\xbe\xc4\xf1\x34\x4d\x91\x3e\xcb\x46\xd6\xb5\x71\xff\x0a\xfa\xf8\x3e\xdb\xa4\x79\x99\x2e\xd7\xd1\xea\x7c\xe4\xc9\xf4\xe4\x3d\x1c\xfd\x19\xd9\x51\x83\xfd\x09\x7a\x18\x7a\xae\xf5\xbe\x27\xf4\x7a\x82\x75\xd0\xad\x23\x6a\x20\x76\xf6\x9d\x1c\x0b\x9b\x76\x01\x6f\x0f\x32\x69\x47\x2a\x44\xc3\x5e\x1c\xef\x47\xb9\x2a\xeb\xcd\x8e\xfd\x15\x60\x0d\xb4\x41\x90\x94\xc8\xca\x00\xdf\x92\x32\x2b\x17\x2a\xc4\x73\x56\xfd\x28\x9e\x2a\x3c\x27\xdb\x6d\x92\x57\x59\x5a\xa2\xd8\x62\x53\xe4\x37\x59\x95\x15\x79\x89\xe2\x16\x49\xbe\xc3\x5d\x96\xdf\x2c\x40\x2c\x1d\x39\xd0\xcb\xe0\x66\x7f\xeb\xc0\x73\x8d\xd4\xcc\x9d\x95\x44\x57\x02\x07\xfb\x2a\xe4\x07\xaa\xf9\xc0\x35\x7a\x6d\xda\x51\xb7\x84\xd6\xfe\x25\x67\xd8\xb4\x18\xc8\x1d\xd9\xcf\x9f\xe9\xa1\x4d\xa3\x42\xf4\x7c\x64\xd1\x72\xde\xf9\xef\x51\x91\x52\xb7\xdb\xe2\x61\xd6\x4f\xb3\x87\xe4\x7b\xaa\xd4\xa6\x78\xdc\xc1\xd8\xa5\x37\x5a\x96\x42\x5e\x10\x2b\x95\xe6\xd5\x76\xf7\x58\x64\x79\x85\x5f\x41\xfc\x3e\x0d\x7e\xab\x7f\x01\x00\x00\xff\xff\x75\x3f\x3d\x6e\x8e\x02\x00\x00") + +func testImagesNoSnatTestDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesNoSnatTestDockerfile, + "test/images/no-snat-test/Dockerfile", + ) +} + +func testImagesNoSnatTestDockerfile() (*asset, error) { + bytes, err := testImagesNoSnatTestDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/no-snat-test/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNoSnatTestMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xd1\x6a\xdb\x4c\x10\x85\xaf\xff\x7d\x8a\x83\x95\x0b\x1b\x6c\x39\x7f\x28\x2d\xa4\x84\xa2\xda\x6e\x22\x12\xa4\x22\x29\x09\xb9\x0a\x2b\x69\x2c\x0d\xc8\xbb\xea\xee\xa8\x8a\xdf\xbe\xc8\x49\xa0\xa1\x7b\xb7\x73\xce\xcc\x7e\x7b\x26\xc0\xc6\xf6\x47\xc7\x4d\x2b\xb8\x38\xff\xff\x0b\x8a\x96\x70\x3b\x94\xe4\x0c\x09\x79\x44\x83\xb4\xd6\xf9\x50\x05\x2a\xc0\x1d\x57\x64\x3c\xd5\x18\x4c\x4d\x0e\xd2\x12\xa2\x5e\x57\x2d\xbd\x2b\x4b\x3c\x90\xf3\x6c\x0d\x2e\xc2\x73\xcc\x27\xc3\xec\x4d\x9a\x2d\xbe\xaa\x00\x47\x3b\xe0\xa0\x8f\x30\x56\x30\x78\x82\xb4\xec\xb1\xe7\x8e\x40\x2f\x15\xf5\x02\x36\xa8\xec\xa1\xef\x58\x9b\x8a\x30\xb2\xb4\xa7\x67\xde\x86\x84\x2a\xc0\xd3\xdb\x08\x5b\x8a\x66\x03\x8d\xca\xf6\x47\xd8\xfd\xdf\x3e\x68\x39\x01\x4f\xa7\x15\xe9\x2f\xd7\xeb\x71\x1c\x43\x7d\x82\x0d\xad\x6b\xd6\xdd\xab\xd1\xaf\xef\xe2\xcd\x2e\xc9\x77\xab\x8b\xf0\xfc\xd4\x72\x6f\x3a\xf2\x1e\x8e\x7e\x0d\xec\xa8\x46\x79\x84\xee\xfb\x8e\x2b\x5d\x76\x84\x4e\x8f\xb0\x0e\xba\x71\x44\x35\xc4\x4e\xbc\xa3\x63\x61\xd3\x2c\xe1\xed\x5e\x46\xed\x48\x05\xa8\xd9\x8b\xe3\x72\x90\x0f\x61\xbd\xd3\xb1\xff\x60\xb0\x06\xda\x60\x16\xe5\x88\xf3\x19\xbe\x47\x79\x9c\x2f\x55\x80\xc7\xb8\xb8\x49\xef\x0b\x3c\x46\x59\x16\x25\x45\xbc\xcb\x91\x66\xd8\xa4\xc9\x36\x2e\xe2\x34\xc9\x91\xfe\x40\x94\x3c\xe1\x36\x4e\xb6\x4b\x10\x4b\x4b\x0e\xf4\xd2\xbb\x89\xdf\x3a\xf0\x14\x23\xd5\x53\x66\x39\xd1\x07\x80\xbd\x7d\x05\xf2\x3d\x55\xbc\xe7\x0a\x9d\x36\xcd\xa0\x1b\x42\x63\x7f\x93\x33\x6c\x1a\xf4\xe4\x0e\xec\xa7\x65\x7a\x68\x53\xab\x00\x1d\x1f\x58\xb4\x9c\x2a\xff\x7c\x2a\x54\x2a\xcf\x36\xf9\x95\xb1\x2b\x6f\xb4\xac\x84\xbc\xa8\x28\xdb\xdc\xe0\xdb\x15\xf4\xa1\xfe\xfc\x49\x15\x51\x76\xbd\x2b\xa6\xfb\xd9\x7c\x73\x9f\x6d\xe3\x6c\xa1\xae\xd3\xbb\x28\xb9\x7e\x7e\xd8\x65\x79\x9c\x26\x93\xd6\xe9\x53\x6b\x9e\x6d\x9e\xb7\x71\x86\xc9\x6c\xac\xd4\xec\x70\x36\xf7\x2d\x75\x1d\xfa\xb1\x5e\x2c\x14\xbd\xf4\xd6\x89\x52\x25\x9b\x4b\xf5\x5f\x18\xae\xf9\xa0\x1b\x5a\x0d\xc2\x5d\xe8\x5b\x94\x6c\x70\x36\x9f\x90\x16\x4a\x85\x3f\x6f\xd2\xe4\xe9\x72\x2a\xaa\x3f\x01\x00\x00\xff\xff\x01\x93\xec\xa5\xf2\x02\x00\x00") + +func testImagesNoSnatTestMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesNoSnatTestMakefile, + "test/images/no-snat-test/Makefile", + ) +} + +func testImagesNoSnatTestMakefile() (*asset, error) { + bytes, err := testImagesNoSnatTestMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/no-snat-test/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNoSnatTestVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesNoSnatTestVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesNoSnatTestVersion, + "test/images/no-snat-test/VERSION", + ) +} + +func testImagesNoSnatTestVersion() (*asset, error) { + bytes, err := testImagesNoSnatTestVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/no-snat-test/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNoSnatTestMainGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x57\x6d\x6f\xdc\xb8\x11\xfe\x2c\xfe\x8a\x89\x00\x5f\x25\x57\x27\xed\xb9\x38\x34\xf0\xc1\x05\x36\x8e\xdd\x6c\xcf\x5d\xbb\x5e\xe7\x82\x43\x1a\x1c\x68\x69\xb4\x62\x2d\x91\x5c\x92\xf2\x66\xe1\xf3\x7f\x2f\x86\xd4\xbe\xd9\x4e\x73\xe9\x87\xc4\x4b\x72\x38\xaf\xcf\x3c\x43\x15\x87\xec\x54\xe9\x95\x11\xf3\xc6\xc1\xd1\xe8\x87\xbf\xc2\x4d\x83\xf0\x73\x7f\x8b\x46\xa2\x43\x0b\xe3\xde\x35\xca\xd8\x9c\xb1\x0b\x51\xa2\xb4\x58\x41\x2f\x2b\x34\xe0\x1a\x84\xb1\xe6\x65\x83\x30\x9c\x64\xf0\x0b\x1a\x2b\x94\x84\xa3\x7c\x04\x09\x09\xc4\xc3\x51\x9c\xfe\xc4\x56\xaa\x87\x8e\xaf\x40\x2a\x07\xbd\x45\x70\x8d\xb0\x50\x8b\x16\x01\x3f\x97\xa8\x1d\x08\x09\xa5\xea\x74\x2b\xb8\x2c\x11\x96\xc2\x35\xde\xc8\xa0\x22\x67\xbf\x0e\x0a\xd4\xad\xe3\x42\x02\x87\x52\xe9\x15\xa8\x7a\x57\x0a\xb8\x63\x0c\x00\xa0\x71\x4e\x1f\x17\xc5\x72\xb9\xcc\xb9\xf7\x32\x57\x66\x5e\xb4\x41\xca\x16\x17\x93\xd3\xb3\xe9\xec\xec\xfb\xa3\x7c\xc4\xd8\x7b\xd9\xa2\xb5\x60\x70\xd1\x0b\x83\x15\xdc\xae\x80\x6b\xdd\x8a\x92\xdf\xb6\x08\x2d\x5f\x82\x32\xc0\xe7\x06\xb1\x02\xa7\xc8\xcf\xa5\x11\x4e\xc8\x79\x06\x56\xd5\x6e\xc9\x0d\xb2\x4a\x58\x67\xc4\x6d\xef\xf6\x12\xb4\xf6\x4a\x58\xd8\x15\x50\x12\xb8\x84\x78\x3c\x83\xc9\x2c\x86\x37\xe3\xd9\x64\x96\xb1\x0f\x93\x9b\x77\x97\xef\x6f\xe0\xc3\xf8\xfa\x7a\x3c\xbd\x99\x9c\xcd\xe0\xf2\x1a\x4e\x2f\xa7\x6f\x27\x37\x93\xcb\xe9\x0c\x2e\xcf\x61\x3c\xfd\x15\x7e\x9e\x4c\xdf\x66\x80\xc2\x35\x68\x00\x3f\x6b\x43\xbe\x2b\x03\x82\x52\x87\x55\xce\x66\x88\x7b\xc6\x6b\x15\x9c\xb1\x1a\x4b\x51\x8b\x12\x5a\x2e\xe7\x3d\x9f\x23\xcc\xd5\x3d\x1a\x29\xe4\x1c\x34\x9a\x4e\x58\x2a\x9e\x05\x2e\x2b\xd6\x8a\x4e\x38\xee\xfc\xfa\x59\x38\x39\x3b\x2c\x18\xd3\xbc\xbc\x23\x25\x1d\x17\x92\x31\xd1\x69\x65\x1c\x24\x2c\x8a\xeb\xce\xc5\x2c\x8a\x85\x2a\x84\xea\x9d\x68\x69\x21\xd1\x0d\x7f\x0a\xaa\x0c\xfd\x56\x96\xfe\xa7\xa4\xc8\xb9\x8d\x19\x8b\xe2\xb9\x70\x4d\x7f\x9b\x97\xaa\x2b\xac\xae\x7f\xf8\x4b\xa1\xeb\x96\xcf\x49\xea\xee\xb5\xcd\x85\x2a\xb8\x16\x16\xcd\x3d\x9a\x42\xdf\xcd\x0b\xd2\x5d\x7c\x5d\xa2\x55\xa4\x3e\x65\xac\x28\x40\x68\x38\x01\xc7\xcd\x1c\x9d\x4f\x4b\xb1\x6c\x14\xef\x04\x2c\x7a\x34\x2b\x12\x30\x5e\xc2\xa0\xeb\x8d\xc4\x0a\x84\xa6\x4d\x1d\xae\x11\x5e\xb5\xaa\xfe\x64\x87\x6d\xb9\xdd\x96\xaa\xc2\xb0\xcf\xdc\x4a\x23\xfc\x93\xdb\xc5\x0d\x5a\x87\x06\xac\x33\x7d\xe9\xe0\x81\x45\x57\x94\xa0\x10\x2f\x7b\x64\xac\xee\x65\x09\x53\x5c\x6e\x65\x93\x14\x0e\x77\x6e\x3e\xb0\x28\x38\x02\xdf\x6d\x77\x1f\x58\xe4\x15\x1d\x43\xfc\x7a\xf4\x7a\x14\x67\x2c\x7a\xdc\x68\x4b\xba\x5d\x05\x29\x8c\xab\xea\xbc\xe5\x73\x9b\xd4\x16\x0e\x7d\x32\x73\x5a\xcf\xd0\xa5\xa4\xbd\xb6\xf9\xcc\xbb\xf3\x0b\x37\xc9\x77\x5d\x4e\x7a\x33\x88\xa9\x90\x71\x06\x9b\x35\x31\x82\x2f\xae\x53\xe0\x93\x0b\x45\xd9\x60\x79\x27\x95\x95\xdc\x11\x5c\x36\x79\x44\x59\x69\x25\xa4\xb3\xa0\x64\x1e\xa7\x1b\xc7\x08\x23\x89\xb7\xd9\xc1\xf1\xc9\xd3\xa8\x59\xd4\xe5\x1b\x57\x83\x9b\xa7\xaa\xeb\xb8\xac\x2e\x84\xc4\x94\xb1\xc8\xef\x4d\xa4\x70\x41\x26\x65\x11\x55\xd5\xef\x5c\xa8\xb0\x51\x61\x8d\x06\xfc\xf6\x79\xdb\xdb\x66\xd8\x67\x91\xa8\x01\x8d\x21\xb3\x5d\x7e\xdd\xcb\x24\xfd\xc9\xaf\x5f\x9d\x80\x14\x2d\xb9\x14\xd5\x9d\xcb\xcf\xb5\x11\xd2\xd5\x89\xa2\x9c\x54\x68\x4c\x06\xf1\xc1\xfd\xbf\x65\x9c\x91\x74\xca\xa2\x48\xd9\xfc\xec\xb3\x70\xc9\x0f\xe9\xff\x4a\xb9\xb7\x40\x57\x94\x2f\xe0\x80\x1e\x61\x7d\xff\x94\xbd\x31\x28\xdd\x80\xa2\xc9\x95\xcf\x9d\x7c\x7e\x3e\xc0\x69\x72\x15\x14\xf4\x6d\xeb\x8f\x49\xd3\xfa\x86\xea\xdd\x9a\xfa\x50\xde\xb3\x48\x0b\x9d\x81\xba\xa3\x30\x95\xcd\x2f\x94\xba\xeb\xf5\x99\xbc\x4f\xe2\xab\xcb\xb7\xbf\x4d\xae\xe2\xd4\x27\xe2\x95\xba\xf3\x11\x0f\xb8\xa2\xc0\xcf\xc8\xd5\x7a\x2d\x47\xca\xe0\x9e\x1b\x58\x72\xeb\x99\x9a\xe8\x85\x5c\x12\x72\x6d\x4b\x18\x25\x3b\x94\x2e\xf6\x79\x88\xe4\x97\x0c\x4f\x2f\xdf\x9e\xfd\x21\xcb\x83\xe0\x37\x9b\xf6\xc9\xb9\xe7\xad\xa8\xb8\x23\xc6\xe3\x6e\x2f\x43\xdc\x20\xf5\x3b\xaf\x2a\x62\x48\xb4\xb9\xf7\x43\xa2\xcb\xaf\xb8\xb1\x38\xb9\x4a\xb4\xd0\x29\x9c\x6c\x71\xf0\xf5\xac\x94\x4a\xd2\xec\xc1\x0a\x0e\x16\x19\x2c\x1b\x51\x36\x20\x82\xb7\x5c\xfa\x82\x06\x6b\x71\x46\xae\x84\x04\x3d\x31\x2a\xbf\x6e\xf4\x69\x42\xbe\xc1\xaa\x1c\xac\xfa\xdc\x18\x9c\x0b\xcf\x24\x0d\x97\x55\x8b\xc6\xb2\x88\xc8\x37\x7f\xe7\x97\xe7\xbd\x2c\x93\x78\xe8\xdc\x98\xf4\xd2\x8f\xf4\x25\x99\x9d\x76\x27\x62\xb8\x3b\xdd\xae\x13\x0f\x3c\x32\x9b\x06\xa3\x56\x0b\x09\xbd\x0e\x13\xc7\x53\xf1\x86\xc6\xbc\xe2\x0b\x72\x49\x8e\x65\x35\xa3\xc3\x24\x3e\x8e\xff\xbc\x66\x1a\x29\x5a\x4f\x19\x9e\x42\x07\x9f\x81\xba\x2c\xf1\x37\xaf\xd1\x6a\x25\x2d\x7e\x30\xc2\xa1\xc9\xe0\x70\xd8\x5d\xf4\x68\x5d\x3a\xf4\xe3\x7f\x94\x90\x3e\x8f\x36\x41\x63\x2c\x7c\xfc\xe4\x7b\x31\x03\x8b\x7a\x20\xdf\x74\xf8\x4b\xe9\xb7\xce\x58\x4f\x0d\xfc\x0e\x93\x8f\x9f\xc2\x41\x06\x2d\x4a\x7f\x3d\x4d\x59\x44\x73\x42\x64\x6b\x0e\x31\x5c\xce\x11\xbc\x6a\xaa\x1e\xdd\xff\x28\x3e\xc1\x09\x6d\x85\x02\x26\xa1\xec\x43\xcc\xc3\x7c\xcb\xff\xa1\x84\x4c\x48\xda\x7b\xe2\xc3\x2c\x0a\x78\xd3\x8b\xb6\xb2\xb0\x4b\xa7\x43\xdc\x19\xf4\xd6\x0f\x66\x55\x05\x44\xab\xca\xc3\x59\xd5\x1b\x96\x68\x55\xe9\x27\xf4\x40\xb1\x4f\xab\x02\xeb\x60\xa4\xd8\x46\xbe\xce\x6a\xa0\xa6\x7f\xf5\x68\x04\xda\x0d\x7d\x53\xa8\xc8\xcb\x06\xb4\x51\xf7\xa2\xf2\x03\x30\x03\x83\x56\xc3\xd1\x68\x04\xa2\x06\xde\xb6\x61\x7d\xab\x2a\xba\xd9\x71\x57\x36\x61\x06\x5e\x0d\xa3\x31\x83\x1f\x47\x23\x50\xf4\x3c\x59\x0a\x8b\x9b\x4c\xf8\x42\x2e\xe1\xc5\x52\x1a\x5c\x3c\x29\xa7\xcf\xae\x4f\xf3\xf1\xc9\xba\x88\x0f\x8f\x2c\x8a\x84\xf6\x5b\xeb\xbc\xce\x74\x2b\x5c\x62\x70\x91\xbf\xbf\xbe\xc8\x29\xa0\x55\x92\xe6\x7f\x47\x97\xc4\x42\xdb\x38\xcd\x20\xce\x88\x2e\x7c\x19\x7f\xcb\x28\x85\x9b\x2a\x92\x2a\x32\xb3\x33\x22\x7c\x25\x12\x0a\x62\x83\xeb\x67\xe3\x62\xf0\xeb\x84\x1e\x89\x28\x2b\x0f\x94\xcd\x94\xa0\xd2\xfb\x7f\xa2\xde\xa2\x08\xfe\x06\xa3\x70\x75\x99\xfb\x90\xdf\x21\xaf\xd0\x24\x3f\x8e\x46\xfe\xce\xee\x00\x5a\xd2\xe0\xa1\x56\x7e\x82\x64\x0a\x04\xe2\xd4\xcb\x87\x8c\x0e\x86\xf6\x55\x1e\x79\x95\x8f\x03\xbe\xfc\x49\x98\x2d\x94\xa2\x6b\xec\x94\xc3\x71\x55\x19\x10\xd2\xa9\x61\x3f\x94\x22\x7b\x26\x11\xee\x0d\xdc\xb2\x1e\x36\x42\x96\xaa\x23\x60\x96\x4a\x4a\x2c\xb7\xf8\x0b\x10\xfa\xb6\x02\xbf\x18\xf7\xbe\x1b\xeb\x4e\x59\x43\x55\xe8\x35\x58\xa9\x2b\xe8\x7b\x81\x1b\xb4\x9b\x28\xe8\x8d\xe2\x2b\xd7\x5b\xb4\x1e\xf9\x4e\x41\x25\xea\x1a\xa9\x65\x04\x0d\x8a\xd9\x74\x7c\x03\xb5\x51\x5d\xc0\x28\x68\xe5\xfc\x51\x0b\x35\x17\x6d\x6f\x10\x3a\x55\xa1\x0d\x51\xad\xf1\xb0\x69\xa6\x2f\x35\xd6\x66\xe2\xf7\xa6\x25\x20\x51\x68\xb3\x21\xb4\x78\xf8\x18\x39\xb0\x5b\xb6\xf5\x3c\x4d\x5e\x6f\x98\xc5\x67\x87\x80\xdb\x9b\x36\xdd\x3c\x5b\x5e\x3d\x9b\x14\x68\x8c\x27\x98\xf0\xe0\x21\x15\xf9\x1b\x55\xad\xf2\xd3\x56\x59\x24\xf2\xb9\x55\xd5\x6a\xa3\x35\x3c\xc1\xf3\x6b\xe4\xd5\xb8\x6d\x93\x8d\xf8\x1f\xb1\x60\x5e\xec\xb5\xb0\x4a\xc8\x0a\x75\xd7\xf1\x30\xe0\xbd\xf0\x30\xd7\x7e\xff\xdd\x63\x9f\xb6\xfc\xac\x1b\x7d\x69\xd2\x4d\xa4\x9f\xdf\xbb\x0f\x6e\x38\x58\x84\xea\x1c\x2c\xe2\x0c\xf6\x8d\x85\xcc\x04\xcf\x7c\x1b\x0b\x6d\x3f\x8e\x3e\xad\xed\x53\x28\x54\x9f\x87\xd0\x7e\xfe\x2d\x7f\xe2\xab\xf4\xb0\xed\x9a\x3d\xfb\xd7\xfb\x76\x5f\x9d\x40\xb7\x22\x22\x0b\xeb\x8c\xae\x77\x2b\x98\x0e\xdc\x7b\xb0\x80\xef\x3d\x7c\x08\xa5\x7b\x1c\x41\xad\x08\xd8\x5a\xfc\x3f\x2d\xd1\xf7\xdb\x4b\x86\x08\xbd\xbd\xc4\xcf\x1a\x4b\x17\xee\x26\x5a\x59\x2b\xe8\xbb\x34\x9c\x37\x46\xf5\xf3\x66\x4f\x48\x3a\x34\x35\x2f\x91\x3e\x33\xa9\x65\x97\x7c\x15\xda\x9d\xcb\x80\x78\x9a\x25\xe9\x8b\x31\xec\x4e\x2e\x29\x5a\xf6\xc8\xfe\x1b\x00\x00\xff\xff\x9b\xc6\x47\xd1\x21\x10\x00\x00") + +func testImagesNoSnatTestMainGoBytes() ([]byte, error) { + return bindataRead( + _testImagesNoSnatTestMainGo, + "test/images/no-snat-test/main.go", + ) +} + +func testImagesNoSnatTestMainGo() (*asset, error) { + bytes, err := testImagesNoSnatTestMainGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/no-snat-test/main.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNoSnatTestProxyBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\xcc\x29\xc8\xcc\x4b\xb5\x32\xd6\x33\xe3\x4a\x2c\xca\xb5\x4d\x2c\xca\x35\x36\x2a\x33\xd3\x47\x15\x06\xa9\x03\x91\x65\x16\xc8\x12\x05\x05\xc9\x66\x26\x39\xa9\xb6\x50\x1a\x59\x0a\x10\x00\x00\xff\xff\xe5\x8d\xa8\xc0\x5c\x00\x00\x00") + +func testImagesNoSnatTestProxyBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesNoSnatTestProxyBaseimage, + "test/images/no-snat-test-proxy/BASEIMAGE", + ) +} + +func testImagesNoSnatTestProxyBaseimage() (*asset, error) { + bytes, err := testImagesNoSnatTestProxyBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/no-snat-test-proxy/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNoSnatTestProxyBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x92\x41\x6b\xe3\x30\x10\x85\xef\xfe\x15\x42\xa7\x38\xac\x2d\x96\xbd\x2c\x86\xc0\xfe\x8f\x60\xcc\xc8\x96\x67\x87\x8c\x3d\x42\x92\x4d\x93\x5f\x5f\x62\x27\x6d\xdd\xa6\x39\xf5\x38\x4f\x6f\x1e\x9f\x1e\xe3\xa1\x3d\x01\xba\x5d\xe7\x7a\x98\x38\x35\x33\x45\xb2\xc4\x94\xce\xea\xa0\x8e\xda\x98\x77\xa1\xf2\x93\x65\x6a\x75\x9d\x67\x19\x0b\x74\xbb\x4c\x29\xa5\xf4\x3f\x92\xc6\xc2\xc5\x71\x13\x26\x76\xb1\x41\x31\x06\xa5\xea\x5c\x5f\xda\x0b\xeb\x5f\xab\x0b\xa5\xb1\x34\x42\x38\x7f\x10\x98\x6c\x58\x95\x3c\xcb\xde\x0c\x6b\xec\x08\x83\x53\x07\xa5\x47\x29\xe2\x08\xa9\x48\x2e\xa6\xc2\x07\x79\xb9\x07\xdc\x96\xaf\x9e\x0a\xa5\xb9\xf3\x7f\xce\xbc\xcd\xdb\xd0\x87\xfe\xab\x21\x86\x36\x2e\xff\x1e\x80\xc6\x12\x45\xd7\xab\xde\x39\xbf\xe8\xcb\xb0\xe0\x1b\x33\xbb\xb1\x93\x60\x90\xd2\xff\xc9\x96\xad\x0c\x26\xfa\xfe\xf7\x1f\xe3\x7b\x06\x7c\x8c\xf4\x75\xfb\xf4\x37\x96\x24\x06\x3c\x45\x17\x66\x17\x8c\x3f\xa1\x99\x12\xb1\xf9\x99\x14\x16\x8c\xdf\xa7\xd4\x4b\x4b\x3d\xb1\xc3\x20\x93\xdf\x96\x74\xbb\x8c\xe2\xda\xc9\xb6\x1e\x64\xb1\xbb\xa3\xde\xef\x75\x9d\xaf\x0f\x09\x70\xed\x0d\xa6\x24\x03\x8c\x80\xae\xbb\x77\xf7\xf4\xa2\x02\xcd\x90\x9c\x7e\x0a\x02\xcc\x0f\x20\x8e\xba\xda\x10\xd6\xcf\x49\xf2\xec\x35\x00\x00\xff\xff\xfd\x0a\xc8\x6c\xea\x02\x00\x00") + +func testImagesNoSnatTestProxyBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesNoSnatTestProxyBuild, + "test/images/no-snat-test-proxy/BUILD", + ) +} + +func testImagesNoSnatTestProxyBuild() (*asset, error) { + bytes, err := testImagesNoSnatTestProxyBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/no-snat-test-proxy/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNoSnatTestProxyDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x6f\x9b\x30\x14\x85\xdf\xfd\x2b\x8e\xc2\xcb\x26\x25\xd0\xf5\x65\xd2\xf6\xc4\x52\xba\xa1\xb6\x50\x05\xba\x2a\x9a\xf6\xe0\xc0\x0d\x5c\x89\xd8\x9e\x7d\x19\xe5\xdf\x4f\xa4\xad\xb4\xaa\x7e\xf4\xfd\x7c\xfc\xf9\x38\xc2\xd6\xba\xd9\x73\xd7\x0b\x2e\x2f\x3e\x7d\x46\xdd\x13\x6e\xc6\x03\x79\x43\x42\x01\xe9\x28\xbd\xf5\x21\x56\x91\x8a\x70\xcb\x0d\x99\x40\x2d\x46\xd3\x92\x87\xf4\x84\xd4\xe9\xa6\xa7\xd7\xc9\x1a\x3f\xc9\x07\xb6\x06\x97\xf1\x05\x3e\x2c\xc0\xea\x65\xb4\xfa\xf8\x55\x45\x98\xed\x88\x93\x9e\x61\xac\x60\x0c\x04\xe9\x39\xe0\xc8\x03\x81\x9e\x1a\x72\x02\x36\x68\xec\xc9\x0d\xac\x4d\x43\x98\x58\xfa\xf3\x35\x2f\x21\xb1\x8a\xb0\x7f\x89\xb0\x07\xd1\x6c\xa0\xd1\x58\x37\xc3\x1e\xff\xe7\xa0\xe5\x2c\xbc\xac\x5e\xc4\x7d\x49\x92\x69\x9a\x62\x7d\x96\x8d\xad\xef\x92\xe1\x19\x0c\xc9\x6d\xbe\xcd\x8a\x2a\xdb\x5c\xc6\x17\xe7\x23\x0f\x66\xa0\x10\xe0\xe9\xcf\xc8\x9e\x5a\x1c\x66\x68\xe7\x06\x6e\xf4\x61\x20\x0c\x7a\x82\xf5\xd0\x9d\x27\x6a\x21\x76\xf1\x9d\x3c\x0b\x9b\x6e\x8d\x60\x8f\x32\x69\x4f\x2a\x42\xcb\x41\x3c\x1f\x46\x79\x53\xd6\xab\x1d\x87\x37\x80\x35\xd0\x06\xab\xb4\x42\x5e\xad\xf0\x2d\xad\xf2\x6a\xad\x22\x3c\xe6\xf5\x8f\xf2\xa1\xc6\x63\xba\xdb\xa5\x45\x9d\x67\x15\xca\x1d\xb6\x65\x71\x95\xd7\x79\x59\x54\x28\xaf\x91\x16\x7b\xdc\xe4\xc5\xd5\x1a\xc4\xd2\x93\x07\x3d\x39\xbf\xf8\x5b\x0f\x5e\x6a\xa4\x76\xe9\xac\x22\x7a\x23\x70\xb4\xcf\x42\xc1\x51\xc3\x47\x6e\x30\x68\xd3\x8d\xba\x23\x74\xf6\x2f\x79\xc3\xa6\x83\x23\x7f\xe2\xb0\x7c\x66\x80\x36\xad\x8a\x30\xf0\x89\x45\xcb\x79\xe7\xdd\xa3\x62\xa5\xae\x77\xe5\xdd\xa2\x9f\xe5\x77\xe9\xf7\x4c\xa9\x6d\x79\xbf\x87\xb1\x9b\x60\xb4\x6c\x84\x82\x6c\x9c\xb7\x4f\x33\x12\xa5\xb2\xa2\xde\xed\xef\xcb\xbc\xa8\xf1\x6b\x95\xbc\x67\x56\xbf\xd5\xbf\x00\x00\x00\xff\xff\x8a\x33\xf7\x0c\x9a\x02\x00\x00") + +func testImagesNoSnatTestProxyDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesNoSnatTestProxyDockerfile, + "test/images/no-snat-test-proxy/Dockerfile", + ) +} + +func testImagesNoSnatTestProxyDockerfile() (*asset, error) { + bytes, err := testImagesNoSnatTestProxyDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/no-snat-test-proxy/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNoSnatTestProxyMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x6b\xe3\x38\x14\x85\x9f\x57\xbf\xe2\x10\xf7\x21\x81\xc4\xe9\x96\x65\x17\xba\x94\xc1\x93\x64\x5a\xd3\x62\x0f\xb6\xdb\xd2\xa7\x22\xdb\x37\xf6\x05\x47\xd2\x48\xf2\x38\xf9\xf7\x83\xd2\x16\xa6\x8c\xde\x74\xcf\xd1\xd1\xa7\xa3\x08\x1b\x6d\x4e\x96\xbb\xde\xe3\xea\xf2\xef\xff\x50\xf5\x84\xfb\xb1\x26\xab\xc8\x93\x43\x32\xfa\x5e\x5b\x17\x8b\x48\x44\x78\xe0\x86\x94\xa3\x16\xa3\x6a\xc9\xc2\xf7\x84\xc4\xc8\xa6\xa7\x0f\x65\x89\x27\xb2\x8e\xb5\xc2\x55\x7c\x89\x79\x30\xcc\xde\xa5\xd9\xe2\x7f\x11\xe1\xa4\x47\x1c\xe4\x09\x4a\x7b\x8c\x8e\xe0\x7b\x76\xd8\xf3\x40\xa0\x63\x43\xc6\x83\x15\x1a\x7d\x30\x03\x4b\xd5\x10\x26\xf6\xfd\xf9\x9a\xf7\x90\x58\x44\x78\x79\x8f\xd0\xb5\x97\xac\x20\xd1\x68\x73\x82\xde\xff\xee\x83\xf4\x67\xe0\xb0\x7a\xef\xcd\xf5\x7a\x3d\x4d\x53\x2c\xcf\xb0\xb1\xb6\xdd\x7a\x78\x33\xba\xf5\x43\xba\xd9\x65\xe5\x6e\x75\x15\x5f\x9e\x8f\x3c\xaa\x81\x9c\x83\xa5\x1f\x23\x5b\x6a\x51\x9f\x20\x8d\x19\xb8\x91\xf5\x40\x18\xe4\x04\x6d\x21\x3b\x4b\xd4\xc2\xeb\xc0\x3b\x59\xf6\xac\xba\x25\x9c\xde\xfb\x49\x5a\x12\x11\x5a\x76\xde\x72\x3d\xfa\x4f\x65\x7d\xd0\xb1\xfb\x64\xd0\x0a\x52\x61\x96\x94\x48\xcb\x19\xbe\x26\x65\x5a\x2e\x45\x84\xe7\xb4\xba\xcb\x1f\x2b\x3c\x27\x45\x91\x64\x55\xba\x2b\x91\x17\xd8\xe4\xd9\x36\xad\xd2\x3c\x2b\x91\x7f\x43\x92\xbd\xe0\x3e\xcd\xb6\x4b\x10\xfb\x9e\x2c\xe8\x68\x6c\xe0\xd7\x16\x1c\x6a\xa4\x36\x74\x56\x12\x7d\x02\xd8\xeb\x37\x20\x67\xa8\xe1\x3d\x37\x18\xa4\xea\x46\xd9\x11\x3a\xfd\x93\xac\x62\xd5\xc1\x90\x3d\xb0\x0b\x9f\xe9\x20\x55\x2b\x22\x0c\x7c\x60\x2f\xfd\x79\xf2\xc7\xa3\x62\x21\xca\x62\x53\xde\x28\xbd\x72\x4a\xfa\x95\x27\xe7\x57\xc6\xea\xe3\x49\x24\xc5\xe6\x0e\x5f\x6e\x20\x0f\xed\xbf\xff\x88\x2a\x29\x6e\x77\x55\xd8\x5f\xcc\x37\x8f\xc5\x36\x2d\x16\xe2\x36\x7f\x48\xb2\xdb\xd7\xa7\x5d\x51\xa6\x79\x16\xb4\x41\x86\x80\x10\xf9\xba\x4d\x0b\x04\xb3\xd2\xbe\x65\x8b\x8b\xb9\xeb\x69\x18\x60\xa6\x76\xb1\x10\x74\x34\xda\x7a\x21\x6a\x56\xd7\xe2\xaf\x38\x5e\xf3\x41\x76\xb4\x1a\x3d\x0f\xb1\xeb\x51\xb3\xc2\xc5\x3c\x80\x2d\x84\x88\xbf\xdf\xe5\xd9\xcb\x75\x18\x8a\x5f\x01\x00\x00\xff\xff\xc6\x55\xc4\x74\xf8\x02\x00\x00") + +func testImagesNoSnatTestProxyMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesNoSnatTestProxyMakefile, + "test/images/no-snat-test-proxy/Makefile", + ) +} + +func testImagesNoSnatTestProxyMakefile() (*asset, error) { + bytes, err := testImagesNoSnatTestProxyMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/no-snat-test-proxy/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNoSnatTestProxyVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesNoSnatTestProxyVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesNoSnatTestProxyVersion, + "test/images/no-snat-test-proxy/VERSION", + ) +} + +func testImagesNoSnatTestProxyVersion() (*asset, error) { + bytes, err := testImagesNoSnatTestProxyVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/no-snat-test-proxy/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNoSnatTestProxyMainGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x56\x7f\x6f\xdb\x38\x12\xfd\x5b\xfc\x14\x73\x02\xd2\x93\x72\x3a\x29\x49\x51\xdc\x21\x45\xb0\x70\xd3\x64\xeb\x6d\x36\xe9\xda\x49\x8b\xa2\x5b\x20\xb4\x34\x92\xb9\x91\x48\x66\x48\xc5\x31\x82\x7c\xf7\xc5\xd0\x8a\xd7\xf9\x51\xf4\x1f\xdb\x1c\x0e\xdf\xbc\x79\x33\x43\xba\xd8\x16\x87\xc6\x2e\x49\x35\x73\x0f\x7b\x3b\xbb\xff\x83\xf3\x39\xc2\xc7\x7e\x86\xa4\xd1\xa3\x83\x51\xef\xe7\x86\x5c\x2e\xc4\x89\x2a\x51\x3b\xac\xa0\xd7\x15\x12\xf8\x39\xc2\xc8\xca\x72\x8e\x30\xec\x64\xf0\x19\xc9\x29\xa3\x61\x2f\xdf\x81\x84\x1d\xe2\x61\x2b\x4e\xdf\x8a\xa5\xe9\xa1\x93\x4b\xd0\xc6\x43\xef\x10\xfc\x5c\x39\xa8\x55\x8b\x80\xb7\x25\x5a\x0f\x4a\x43\x69\x3a\xdb\x2a\xa9\x4b\x84\x85\xf2\xf3\x10\x64\x80\xc8\xc5\xd7\x01\xc0\xcc\xbc\x54\x1a\x24\x94\xc6\x2e\xc1\xd4\x9b\x5e\x20\xbd\x10\x00\x00\x73\xef\xed\x7e\x51\x2c\x16\x8b\x5c\x06\x96\xb9\xa1\xa6\x68\x57\x5e\xae\x38\x19\x1f\x1e\x9d\x4e\x8f\xfe\xbb\x97\xef\x08\x71\xa1\x5b\x74\x0e\x08\xaf\x7b\x45\x58\xc1\x6c\x09\xd2\xda\x56\x95\x72\xd6\x22\xb4\x72\x01\x86\x40\x36\x84\x58\x81\x37\xcc\x73\x41\xca\x2b\xdd\x64\xe0\x4c\xed\x17\x92\x50\x54\xca\x79\x52\xb3\xde\x3f\x12\xe8\x81\x95\x72\xb0\xe9\x60\x34\x48\x0d\xf1\x68\x0a\xe3\x69\x0c\xef\x46\xd3\xf1\x34\x13\x5f\xc6\xe7\x1f\xce\x2e\xce\xe1\xcb\x68\x32\x19\x9d\x9e\x8f\x8f\xa6\x70\x36\x81\xc3\xb3\xd3\xf7\xe3\xf3\xf1\xd9\xe9\x14\xce\x8e\x61\x74\xfa\x15\x3e\x8e\x4f\xdf\x67\x80\xca\xcf\x91\x00\x6f\x2d\x31\x77\x43\xa0\x58\x3a\xac\x72\x31\x45\x7c\x14\xbc\x36\x2b\x32\xce\x62\xa9\x6a\x55\x42\x2b\x75\xd3\xcb\x06\xa1\x31\x37\x48\x5a\xe9\x06\x2c\x52\xa7\x1c\x17\xcf\x81\xd4\x95\x68\x55\xa7\xbc\xf4\x61\xfd\x2c\x9d\x5c\x6c\x17\x42\x58\x59\x5e\x31\x48\x27\x95\x16\x42\x75\xd6\x90\x87\x44\x44\x71\xdd\xf9\x58\x44\xb1\x32\x85\x32\xbd\x57\x2d\x2f\x34\xfa\x82\x4b\xc2\xbf\x8d\xe3\x4f\x56\x43\x37\x2e\x16\x22\x8a\x1b\xe5\xe7\xfd\x2c\x2f\x4d\x57\x38\x5b\xef\xbe\x2e\x6c\xdd\xca\x86\xbd\xae\xfe\xef\x72\x65\x0a\x69\x95\x43\xba\x41\x2a\xec\x55\x53\x30\x68\xf1\x73\x8f\xd6\x30\x7c\x2a\x44\x51\xc0\x39\x37\xdb\x27\x53\xfd\xdb\x41\x51\xce\xb1\xbc\xd2\xc6\x69\xe9\xc1\xcb\x2b\x74\x70\xe9\x25\x35\xe8\x2f\x39\x75\xb8\x54\xd6\x5d\x82\xa4\xa6\xef\x50\x7b\x97\x05\xe3\x75\x8f\xa4\xd0\xc1\xdd\xca\xf3\x7e\x13\xe4\x17\x65\xdd\xc1\x9d\xb2\xee\x5e\x08\xbf\xb4\x08\xbf\x4b\x77\x7d\x8e\xce\x7f\x22\x73\xbb\x04\xe7\xa9\x2f\x3d\xdc\x89\xe8\x13\x2b\xb4\xca\x5b\xdc\x0b\x51\xf7\xba\x84\x53\x5c\x3c\x72\x4f\x52\xd8\x7e\x7c\xfe\x4e\x44\x84\xbe\x27\x0d\xaf\x1e\x6d\xdc\x89\x28\x20\xee\x43\xfc\x7a\x77\xef\xf5\x9b\x38\x13\xd1\xfd\x1a\x37\xe9\x9e\xe0\xa4\x30\xaa\xaa\xe3\x56\x36\x2e\xa9\x1d\x6c\x07\x85\x73\x5e\x4f\xd1\xa7\x1c\xa4\x76\xf9\x34\x70\xfb\x2c\x29\x79\xd5\xe5\x8c\x9d\x41\xcc\x65\x8d\x33\x58\xaf\xf9\x7e\x08\xa5\xf6\x06\x82\xe2\x8f\x05\x45\x5d\x59\xa3\xb4\x07\xa3\xf3\x38\x5d\xd3\xe1\x26\x49\x42\x98\x0e\xf6\x0f\x5e\xc8\x5a\x44\x5d\xbe\x26\xb8\x22\x77\x68\xba\x4e\xea\xea\x44\x69\x4c\x85\x88\x82\x6d\xac\x95\x5f\xf9\xa4\x22\xe2\x02\x07\xcb\x89\x59\x19\x2a\xac\x91\x20\x98\x8f\xdb\xde\xcd\x07\xbb\x88\x54\x0d\x48\xc4\x91\xbb\x7c\xd2\xeb\x24\x7d\x1b\xd6\xff\x3a\x00\xad\x5a\x66\x15\xd5\x9d\xcf\x8f\x2d\x29\xed\xeb\xc4\xb0\x12\x15\x12\x65\x10\x6f\xdd\xfc\xa9\xe3\x8c\xbd\x53\x11\x45\xc6\xe5\x47\xb7\xca\x27\xbb\xe9\x4f\xb4\x0e\x41\xf8\x94\x21\x86\x2f\x0a\x20\x6c\x94\xf3\x48\x30\x97\xba\x6a\x91\x44\xc4\xf3\x90\x7f\x08\xab\xe3\x5e\x97\x49\xbc\x29\x64\x9c\xc1\xc6\x8a\x73\x28\x0a\x70\x56\x69\xe8\xed\x6a\x9a\x43\xb7\xaf\x7b\x23\x80\x9d\x70\x04\x3d\xd2\xd5\x94\x37\x93\x78\x3f\xfe\xcf\x43\xdd\xb4\x6a\x43\x35\x42\x83\x0e\x14\x80\xd9\x27\xe1\xe4\x04\x9d\x35\xda\xe1\x17\x52\x1e\x29\x83\xed\xc1\x7a\xdd\xa3\xe3\xe8\x21\xcf\xbf\x8c\xd2\x47\x9c\x92\x4b\x90\xc8\xc1\xb7\xef\x21\xc1\x0c\x1c\xda\xa1\xaf\xd3\xe1\x9b\x93\x76\x9e\x5c\x90\x5c\x5e\x61\xf2\xed\xfb\x6a\x23\x83\x16\x75\x38\x9e\xa6\x22\xe2\xab\x49\x65\x0f\xb5\x21\xa9\x1b\x84\x00\xcd\x25\xe1\xf3\xdf\xd4\x77\x38\x60\x53\x1e\x02\x27\x41\xf7\x87\x9c\x87\x2b\x24\xff\xcd\x28\x9d\xb0\x77\x60\xf2\x4f\xd3\x6d\x08\x78\x31\x39\x49\xac\xb2\x19\x28\xeb\x5e\xa0\x3a\x00\x72\x13\x4c\x87\x26\x88\x87\x17\x64\xcb\x3d\x9b\xf5\x2d\x17\x67\xf0\x80\xf6\x62\xb8\x64\x01\x2f\xca\x4a\x78\xfd\x44\x5a\x8e\xde\x53\xcb\xe9\x3f\xa1\x4b\x78\x9d\x5f\x4c\x4e\xf2\x3f\x7a\xa4\x65\x92\xe6\xbf\xa2\x4f\xe2\xd5\xf5\x13\xa7\x01\xea\xf9\xb6\xb2\x2e\x66\x5d\x09\x9d\x5d\xcb\x1a\xe2\xf1\x76\x4f\x6d\xba\x9e\x85\x8d\xde\x5f\xe4\x81\xdf\x07\x94\x15\x52\xf2\x66\x67\x27\x7d\x32\x10\x8b\x0c\xe2\x55\x2f\xf3\x3d\xb8\x64\xd1\xb6\xae\x03\xfe\x3e\x6c\xdd\xc4\x19\xf4\xd4\x3e\xcc\xc8\x3d\x60\xeb\x30\xe0\xce\x4c\xb5\x5c\xb3\x58\xbd\x05\xf9\x04\x65\x35\x6a\xdb\x84\x19\xe6\xef\x4c\xb5\xe4\x58\xcf\x29\xbd\xcc\xe9\x07\xa4\x08\x65\xc5\x9c\x38\x1e\xff\x1f\xa0\x41\x75\xa8\xc9\x74\x3f\x66\xba\x49\x95\xa7\x6b\x55\xac\x6a\x35\x5d\xb2\x43\x70\x5e\xfa\xde\x41\x69\x2a\x0c\x8f\x40\xc0\x97\x4f\x5e\x10\xa3\xc3\x01\xa5\x3d\x92\x96\x2d\x3f\x32\xcf\xf9\x87\x6c\xa7\x01\xee\xd0\x54\x98\x6e\x78\x24\xb3\x41\x84\xfb\xa1\xb5\x07\x5d\xf2\xc3\xd6\x38\x4c\xb8\xbd\xfe\x0e\x00\x00\xff\xff\xbc\xbd\xf1\x95\xa5\x09\x00\x00") + +func testImagesNoSnatTestProxyMainGoBytes() ([]byte, error) { + return bindataRead( + _testImagesNoSnatTestProxyMainGo, + "test/images/no-snat-test-proxy/main.go", + ) +} + +func testImagesNoSnatTestProxyMainGo() (*asset, error) { + bytes, err := testImagesNoSnatTestProxyMainGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/no-snat-test-proxy/main.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNonewprivsGitignore = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\xcb\x2b\xe0\x02\x04\x00\x00\xff\xff\xee\x29\x1e\x77\x04\x00\x00\x00") + +func testImagesNonewprivsGitignoreBytes() ([]byte, error) { + return bindataRead( + _testImagesNonewprivsGitignore, + "test/images/nonewprivs/.gitignore", + ) +} + +func testImagesNonewprivsGitignore() (*asset, error) { + bytes, err := testImagesNonewprivsGitignoreBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nonewprivs/.gitignore", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNonewprivsBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\xcc\x29\xc8\xcc\x4b\xb5\x32\xd6\x33\xe3\x4a\x2c\xca\xb5\x4d\x2c\xca\x35\x36\x2a\x33\xd3\x47\x15\x06\xa9\x03\x91\x65\x16\xc8\x12\x05\x05\xc9\x66\x26\x39\xa9\xb6\x50\x1a\x59\x0a\x10\x00\x00\xff\xff\xe5\x8d\xa8\xc0\x5c\x00\x00\x00") + +func testImagesNonewprivsBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesNonewprivsBaseimage, + "test/images/nonewprivs/BASEIMAGE", + ) +} + +func testImagesNonewprivsBaseimage() (*asset, error) { + bytes, err := testImagesNonewprivsBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nonewprivs/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNonewprivsBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xd1\x6e\xb3\x30\x0c\x85\xef\x79\x8a\x28\x57\x50\xfd\x7f\xb9\x47\xaa\xb4\xf7\x40\x28\x72\xc0\x44\xd6\xdc\x18\x25\x81\xa9\x7d\xfa\x89\x85\xae\x43\xda\xe8\xed\xf1\xf1\x77\x7c\xe4\x09\xfa\x77\x70\x58\x0e\x38\xc2\xcc\xc9\x2c\x14\xc9\x12\x53\xba\xa9\x8b\x6a\x75\x5d\x3f\x85\x66\x9a\x2d\x53\xaf\xbb\xaa\x28\x98\x7a\xf4\x11\x63\xd9\x6a\x2f\x89\x7a\xcc\xaa\xc0\x50\x16\x4a\x29\xa5\xdf\x48\x8c\x85\x3b\xb2\x09\x33\x63\x34\x4e\xea\xda\x49\x33\xe0\x78\xb6\x77\xd6\xff\xb2\xcb\x89\xb1\xe4\x21\xdc\x7e\x08\x4c\x36\x64\xa5\x2a\x8a\x6f\x43\xc6\x7a\xb8\xa2\xba\x28\xed\xc5\xe3\xc7\x14\x68\x89\xdb\xe2\xb6\xb4\xce\x1a\x27\xe6\xd1\xe6\xc9\x5a\x4d\x09\x5c\xfc\x6a\x05\x73\x92\x2b\x78\x70\x38\xe8\xee\x91\xb3\x79\xf7\x41\x7f\xb2\x62\xe8\x33\xcb\xfb\xe9\xec\x64\xc5\xbc\x88\x18\x89\xd1\x05\x99\xa7\x7d\xc2\xf6\x80\xff\x2b\x70\xcf\x76\x2c\xb6\x6c\xf5\xe9\xa4\xbb\xea\x98\xbe\xce\x0e\x1f\x17\x68\x81\x84\xc7\x87\x00\xf3\x2f\x47\xb4\xba\xd9\x5d\xf8\xb2\xe7\x67\x00\x00\x00\xff\xff\x6a\xaf\x1a\x02\x51\x02\x00\x00") + +func testImagesNonewprivsBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesNonewprivsBuild, + "test/images/nonewprivs/BUILD", + ) +} + +func testImagesNonewprivsBuild() (*asset, error) { + bytes, err := testImagesNonewprivsBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nonewprivs/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNonewprivsDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x51\x6f\xd3\x30\x14\x85\xdf\xfd\x2b\x8e\x9a\x17\x10\x5d\x32\xf6\x82\x04\x4f\x59\xda\xb1\x68\x6b\x02\x49\xcb\x34\x21\x34\xb9\xce\x6d\x72\xa5\xd4\xf6\x6c\x87\xac\xff\x1e\x25\xdb\x24\x26\xf0\xe3\x3d\xc7\xc7\x9f\xcf\x8d\x90\x19\x7b\x72\xdc\x76\x01\x17\xe7\x1f\x3f\x61\xdb\x11\x6e\x86\x3d\x39\x4d\x81\x3c\xd2\x21\x74\xc6\xf9\x58\x44\x22\xc2\x2d\x2b\xd2\x9e\x1a\x0c\xba\x21\x87\xd0\x11\x52\x2b\x55\x47\xaf\xca\x12\x3f\xc8\x79\x36\x1a\x17\xf1\x39\xde\x4d\x86\xc5\x8b\xb4\x78\xff\x45\x44\x38\x99\x01\x47\x79\x82\x36\x01\x83\x27\x84\x8e\x3d\x0e\xdc\x13\xe8\x49\x91\x0d\x60\x0d\x65\x8e\xb6\x67\xa9\x15\x61\xe4\xd0\xcd\xcf\xbc\x84\xc4\x22\xc2\xfd\x4b\x84\xd9\x07\xc9\x1a\x12\xca\xd8\x13\xcc\xe1\x6f\x1f\x64\x98\x81\xa7\xd3\x85\x60\x3f\x27\xc9\x38\x8e\xb1\x9c\x61\x63\xe3\xda\xa4\x7f\x36\xfa\xe4\x36\xcf\xd6\x45\xbd\x3e\xbb\x88\xcf\xe7\x2b\x3b\xdd\x93\xf7\x70\xf4\x38\xb0\xa3\x06\xfb\x13\xa4\xb5\x3d\x2b\xb9\xef\x09\xbd\x1c\x61\x1c\x64\xeb\x88\x1a\x04\x33\xf1\x8e\x8e\x03\xeb\x76\x09\x6f\x0e\x61\x94\x8e\x44\x84\x86\x7d\x70\xbc\x1f\xc2\x9b\xb2\x5e\xe9\xd8\xbf\x31\x18\x0d\xa9\xb1\x48\x6b\xe4\xf5\x02\x97\x69\x9d\xd7\x4b\x11\xe1\x2e\xdf\x5e\x97\xbb\x2d\xee\xd2\xaa\x4a\x8b\x6d\xbe\xae\x51\x56\xc8\xca\x62\x95\x6f\xf3\xb2\xa8\x51\x5e\x21\x2d\xee\x71\x93\x17\xab\x25\x88\x43\x47\x0e\xf4\x64\xdd\xc4\x6f\x1c\x78\xaa\x91\x9a\xa9\xb3\x9a\xe8\x0d\xc0\xc1\x3c\x03\x79\x4b\x8a\x0f\xac\xd0\x4b\xdd\x0e\xb2\x25\xb4\xe6\x37\x39\xcd\xba\x85\x25\x77\x64\x3f\x2d\xd3\x43\xea\x46\x44\xe8\xf9\xc8\x41\x86\x79\xf2\xcf\xa7\x62\x21\xae\xaa\x72\x33\xe1\xaf\xf3\x4d\xfa\x75\x2d\x44\x56\x95\x75\xfd\x70\xb9\xcb\x6f\x57\x0f\x59\xf9\xed\x1e\x8f\x74\x1c\xce\xbe\xaf\x37\xbb\xb4\xca\xae\xcf\xfc\x94\xa5\x90\x0c\xde\x25\x7b\xd6\x89\x10\xb3\x49\x6b\xfb\x3c\xeb\x8d\x92\xfd\xac\x68\x6d\x45\xb5\x2b\xa0\xba\xa3\x69\xf0\xc1\xff\x4f\x17\xd9\x66\x85\x9f\x0b\xad\xed\xe2\x97\xf8\x13\x00\x00\xff\xff\x4c\xe3\xad\xa9\xd6\x02\x00\x00") + +func testImagesNonewprivsDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesNonewprivsDockerfile, + "test/images/nonewprivs/Dockerfile", + ) +} + +func testImagesNonewprivsDockerfile() (*asset, error) { + bytes, err := testImagesNonewprivsDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nonewprivs/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNonewprivsMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x6b\xdb\x3e\x14\xc5\x9f\xff\xfa\x14\x87\xb8\x0f\x09\xa4\x4e\xff\x65\x6c\xd0\x51\x86\x97\x64\xad\x69\xb1\x87\xed\xb6\xf4\xa9\xc8\xf6\x8d\x7d\xc1\x91\x34\x49\x9e\x9b\x6f\x3f\x94\xb6\xb0\x30\xbd\xe9\x9e\xa3\xa3\x9f\x8e\x22\xac\xb5\x39\x58\xee\x7a\x8f\xcb\x8b\xff\xbf\xa0\xea\x09\x77\x63\x4d\x56\x91\x27\x87\x64\xf4\xbd\xb6\x2e\x16\x91\x88\x70\xcf\x0d\x29\x47\x2d\x46\xd5\x92\x85\xef\x09\x89\x91\x4d\x4f\x1f\xca\x12\x8f\x64\x1d\x6b\x85\xcb\xf8\x02\xf3\x60\x98\xbd\x4b\xb3\xc5\x57\x11\xe1\xa0\x47\xec\xe5\x01\x4a\x7b\x8c\x8e\xe0\x7b\x76\xd8\xf1\x40\xa0\xd7\x86\x8c\x07\x2b\x34\x7a\x6f\x06\x96\xaa\x21\x4c\xec\xfb\xe3\x35\xef\x21\xb1\x88\xf0\xfc\x1e\xa1\x6b\x2f\x59\x41\xa2\xd1\xe6\x00\xbd\xfb\xdb\x07\xe9\x8f\xc0\x61\xf5\xde\x9b\xab\xd5\x6a\x9a\xa6\x58\x1e\x61\x63\x6d\xbb\xd5\xf0\x66\x74\xab\xfb\x74\xbd\xcd\xca\xed\xf9\x65\x7c\x71\x3c\xf2\xa0\x06\x72\x0e\x96\x7e\x8d\x6c\xa9\x45\x7d\x80\x34\x66\xe0\x46\xd6\x03\x61\x90\x13\xb4\x85\xec\x2c\x51\x0b\xaf\x03\xef\x64\xd9\xb3\xea\x96\x70\x7a\xe7\x27\x69\x49\x44\x68\xd9\x79\xcb\xf5\xe8\x4f\xca\xfa\xa0\x63\x77\x62\xd0\x0a\x52\x61\x96\x94\x48\xcb\x19\xbe\x27\x65\x5a\x2e\x45\x84\xa7\xb4\xba\xcd\x1f\x2a\x3c\x25\x45\x91\x64\x55\xba\x2d\x91\x17\x58\xe7\xd9\x26\xad\xd2\x3c\x2b\x91\xff\x40\x92\x3d\xe3\x2e\xcd\x36\x4b\x10\xfb\x9e\x2c\xe8\xd5\xd8\xc0\xaf\x2d\x38\xd4\x48\x6d\xe8\xac\x24\x3a\x01\xd8\xe9\x37\x20\x67\xa8\xe1\x1d\x37\x18\xa4\xea\x46\xd9\x11\x3a\xfd\x9b\xac\x62\xd5\xc1\x90\xdd\xb3\x0b\x9f\xe9\x20\x55\x2b\x22\x0c\xbc\x67\x2f\xfd\x71\xf2\xcf\xa3\x62\x21\xca\x62\x5d\xe2\x1a\x4a\x19\x91\x14\xeb\x5b\x7c\xbb\x86\xdc\xb7\x9f\x3f\x89\x2a\x29\x6e\xb6\x55\xd8\x9f\xcd\xd7\x0f\xc5\x26\x2d\x16\xe2\x26\xbf\x4f\xb2\x9b\x97\xc7\x6d\x51\xa6\x79\x16\xb4\x41\x7a\x72\x3e\xa4\xbc\x6c\xd2\x02\xc1\xac\xb4\x6f\xd9\xe2\x6c\xee\x7a\x1a\x06\x98\xa9\x5d\x2c\x04\xbd\x1a\x6d\xbd\x10\x35\xab\x2b\xf1\x5f\x1c\xaf\x78\x2f\x3b\x3a\x1f\x3d\x0f\xb1\xeb\x51\xb3\xc2\xd9\x3c\xb0\x2c\x84\x88\x7f\xde\xe6\xd9\xf3\x55\x18\x8a\x3f\x01\x00\x00\xff\xff\x65\x96\x76\xa8\xeb\x02\x00\x00") + +func testImagesNonewprivsMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesNonewprivsMakefile, + "test/images/nonewprivs/Makefile", + ) +} + +func testImagesNonewprivsMakefile() (*asset, error) { + bytes, err := testImagesNonewprivsMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nonewprivs/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNonewprivsVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesNonewprivsVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesNonewprivsVersion, + "test/images/nonewprivs/VERSION", + ) +} + +func testImagesNonewprivsVersion() (*asset, error) { + bytes, err := testImagesNonewprivsVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nonewprivs/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesNonewprivsNnpGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x6b\xdb\x4c\x10\x86\xcf\x99\x5f\xf1\x22\xf8\xc0\x0e\xfe\xe4\x34\x97\x42\x7a\x52\x13\xb7\x15\x09\x76\xb1\x9c\x86\x40\x2f\x6b\x69\x24\x0d\x95\x76\xb7\xbb\xa3\x28\xa6\xf4\xbf\x17\x39\x2e\x24\xf4\xb8\xcc\xc3\x3b\xcf\xbe\xb3\x3c\xa7\x6b\xe7\x0f\x41\x9a\x56\x71\x79\xf1\xee\x3d\x76\x2d\xe3\x76\xd8\x73\xb0\xac\x1c\x91\x0d\xda\xba\x10\x53\xa2\x3b\x29\xd9\x46\xae\x30\xd8\x8a\x03\xb4\x65\x64\xde\x94\x2d\xe3\x34\x59\xe0\x1b\x87\x28\xce\xe2\x32\xbd\xc0\x6c\x02\x92\xd3\x28\x99\x7f\xa0\x83\x1b\xd0\x9b\x03\xac\x53\x0c\x91\xa1\xad\x44\xd4\xd2\x31\xf8\xb9\x64\xaf\x10\x8b\xd2\xf5\xbe\x13\x63\x4b\xc6\x28\xda\x1e\x97\x9c\x22\x52\x7a\x3c\x05\xb8\xbd\x1a\xb1\x30\x28\x9d\x3f\xc0\xd5\xaf\x29\x18\x25\x02\x80\x56\xd5\x5f\x2d\x97\xe3\x38\xa6\xe6\x68\x99\xba\xd0\x2c\xbb\x17\x2a\x2e\xef\xf2\xeb\xd5\xba\x58\xfd\x7f\x99\x5e\x10\xdd\xdb\x8e\x63\x44\xe0\x9f\x83\x04\xae\xb0\x3f\xc0\x78\xdf\x49\x69\xf6\x1d\xa3\x33\x23\x5c\x80\x69\x02\x73\x05\x75\x93\xe7\x18\x44\xc5\x36\x0b\x44\x57\xeb\x68\x02\x53\x25\x51\x83\xec\x07\x7d\x53\xd0\x5f\x2b\x89\x78\x0d\x38\x0b\x63\x91\x64\x05\xf2\x22\xc1\xc7\xac\xc8\x8b\x05\x3d\xe4\xbb\x2f\x9b\xfb\x1d\x1e\xb2\xed\x36\x5b\xef\xf2\x55\x81\xcd\x16\xd7\x9b\xf5\x4d\xbe\xcb\x37\xeb\x02\x9b\x4f\xc8\xd6\x8f\xb8\xcd\xd7\x37\x0b\xb0\x68\xcb\x01\xfc\xec\xc3\xe4\xee\x02\x64\xaa\x8e\xab\x94\x0a\xe6\x37\xcb\x6b\xf7\x22\x13\x3d\x97\x52\x4b\x89\xce\xd8\x66\x30\x0d\xa3\x71\x4f\x1c\xac\xd8\x06\x9e\x43\x2f\x71\x3a\x5e\x84\xb1\x15\x75\xd2\x8b\x1a\x3d\xbe\xff\xf9\x4e\x4a\xe7\x4b\x22\x6f\xca\x1f\x53\x48\x6f\xc4\x12\x49\xef\x5d\x50\xcc\xe8\x2c\xa9\x7b\x4d\xe8\x2c\x71\x31\xa1\x39\x51\x3d\xd8\xf2\xc8\xcc\xe6\xf8\x45\x67\x75\xaf\xe9\xd7\x20\x56\xeb\x59\xb2\xaa\x6b\x2e\x55\x9e\x18\x83\x54\x57\xf8\xaf\xfa\x6e\x93\x05\x5c\x4c\x3f\xb3\xf2\x20\xd5\x6c\x3e\xa7\xdf\xf4\x27\x00\x00\xff\xff\x1d\x9d\xa7\x78\xa3\x02\x00\x00") + +func testImagesNonewprivsNnpGoBytes() ([]byte, error) { + return bindataRead( + _testImagesNonewprivsNnpGo, + "test/images/nonewprivs/nnp.go", + ) +} + +func testImagesNonewprivsNnpGo() (*asset, error) { + bytes, err := testImagesNonewprivsNnpGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/nonewprivs/nnp.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsPeerFinderBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\x4f\x2e\xd2\xcb\xcc\xd7\x4f\xcf\xcf\x4f\xcf\x49\xd5\x4d\xce\xcf\x2b\x49\xcc\xcc\x4b\x2d\x2a\xd6\x4f\x49\x4d\xca\x4c\xcc\xd3\x4d\x4a\x2c\x4e\xd5\x05\x2b\xb5\x32\xd0\x33\xe2\x4a\x2c\xca\x25\x52\x4b\x51\x2e\x4c\x03\xd1\xb6\x80\x94\x82\x35\x15\x14\x24\x9b\x99\xe4\xa4\x12\xa7\x0d\xaa\x18\xac\x11\x10\x00\x00\xff\xff\x77\xbe\x83\xed\xd4\x00\x00\x00") + +func testImagesPetsPeerFinderBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsPeerFinderBaseimage, + "test/images/pets/peer-finder/BASEIMAGE", + ) +} + +func testImagesPetsPeerFinderBaseimage() (*asset, error) { + bytes, err := testImagesPetsPeerFinderBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/peer-finder/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsPeerFinderBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xd1\x6e\xf2\x30\x0c\x85\xef\xfb\x14\x51\xae\x5a\xf4\x43\x6e\x7f\x55\x42\xda\x7b\x54\xa8\x72\x1b\x37\xb3\x30\x71\x94\xa4\x48\xf0\xf4\x53\x17\x18\x30\x31\xb8\x3d\x3e\x3e\xfe\xec\x24\xc0\xb8\x07\x87\xb5\xc5\x09\x66\xce\xfd\x91\x12\x0d\xc4\x94\x4f\x6a\xab\x3a\x6d\xcc\x4d\x68\xc3\x3c\x30\x8d\x7a\xd7\x54\x15\xd3\x88\x3e\x61\xaa\x3b\xed\x25\xd3\x88\x45\x15\xb0\x75\xa5\x94\x52\xfa\x83\xa4\x1f\xe0\x8c\xdc\xc7\x99\x31\xf5\x4e\x8c\x71\xd2\x5a\x9c\x36\xc3\x99\xf5\xbf\xe2\x72\xd2\x0f\xe4\x21\x9e\xee\x04\xa6\x21\x16\xa5\xa9\xaa\x1f\x43\x89\xf5\x70\x40\xb5\x55\x3a\x20\xc6\xf5\x44\xde\x62\xbc\x74\x5e\xba\x96\x62\xeb\xa4\xbf\xae\x73\x0b\x5b\x4c\x19\x5c\xfa\x5e\x0b\xe6\x2c\x07\xf0\xe0\xd0\xea\xdd\x75\xd0\xc5\xfb\x38\xe9\xcf\xac\x14\xc7\x92\x75\xc7\xb2\x71\xb2\xc4\xbd\x1a\xb5\xd4\x2c\x86\x74\xbd\x2e\x7a\x2b\xd1\xec\xff\xa7\x0d\x89\x81\x40\x07\x18\x3f\xc9\x63\x3c\x99\xb0\x77\x66\xce\xc4\x26\x61\x4e\xcf\x76\x2a\xe0\x13\x31\xba\x28\x73\xf8\x75\xa1\xf2\xae\xeb\x05\xf3\x91\xd8\xb1\x0c\x75\xa7\x57\x2b\xbd\x6b\xde\xb3\xbe\xfc\x0f\x91\x8e\x90\xf1\x35\x08\x30\x3f\x81\xe8\x74\xfb\x40\xf8\xe6\x6a\x4d\xf5\x15\x00\x00\xff\xff\x9a\x29\xec\xda\xa8\x02\x00\x00") + +func testImagesPetsPeerFinderBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsPeerFinderBuild, + "test/images/pets/peer-finder/BUILD", + ) +} + +func testImagesPetsPeerFinderBuild() (*asset, error) { + bytes, err := testImagesPetsPeerFinderBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/peer-finder/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsPeerFinderDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x4f\xdb\x3c\x14\x86\xef\xfd\x2b\x5e\x35\x37\xdf\x27\xb5\x0d\x63\x12\xd3\xb6\xab\x50\xc2\x88\x80\x84\x25\xe9\x58\x35\x4d\xc8\x49\x4e\x93\x23\xb9\x76\xb0\x9d\x85\xfe\xfb\x29\x01\x24\xd0\x7c\xe9\xf3\xf8\xf5\xe3\xd7\x01\x36\xa6\x3f\x5a\x6e\x3b\x8f\xd3\x93\x0f\x67\x28\x3b\xc2\xf5\x50\x91\xd5\xe4\xc9\x21\x1a\x7c\x67\xac\x5b\x8b\x40\x04\xb8\xe1\x9a\xb4\xa3\x06\x83\x6e\xc8\xc2\x77\x84\xa8\x97\x75\x47\xaf\x93\x25\x7e\x90\x75\x6c\x34\x4e\xd7\x27\xf8\x6f\x02\x16\x2f\xa3\xc5\xff\x5f\x45\x80\xa3\x19\x70\x90\x47\x68\xe3\x31\x38\x82\xef\xd8\x61\xcf\x8a\x40\x4f\x35\xf5\x1e\xac\x51\x9b\x43\xaf\x58\xea\x9a\x30\xb2\xef\xe6\x6b\x5e\x42\xd6\x22\xc0\xee\x25\xc2\x54\x5e\xb2\x86\x44\x6d\xfa\x23\xcc\xfe\x2d\x07\xe9\x67\xe1\x69\x75\xde\xf7\x5f\xc2\x70\x1c\xc7\xb5\x9c\x65\xd7\xc6\xb6\xa1\x7a\x06\x5d\x78\x93\x6c\xe2\xb4\x88\x57\xa7\xeb\x93\xf9\xc8\x56\x2b\x72\x0e\x96\x1e\x07\xb6\xd4\xa0\x3a\x42\xf6\xbd\xe2\x5a\x56\x8a\xa0\xe4\x08\x63\x21\x5b\x4b\xd4\xc0\x9b\xc9\x77\xb4\xec\x59\xb7\x4b\x38\xb3\xf7\xa3\xb4\x24\x02\x34\xec\xbc\xe5\x6a\xf0\xef\xca\x7a\xb5\x63\xf7\x0e\x30\x1a\x52\x63\x11\x15\x48\x8a\x05\xce\xa3\x22\x29\x96\x22\xc0\x7d\x52\x5e\x65\xdb\x12\xf7\x51\x9e\x47\x69\x99\xc4\x05\xb2\x1c\x9b\x2c\xbd\x48\xca\x24\x4b\x0b\x64\x97\x88\xd2\x1d\xae\x93\xf4\x62\x09\x62\xdf\x91\x05\x3d\xf5\x76\xf2\x37\x16\x3c\xd5\x48\xcd\xd4\x59\x41\xf4\x4e\x60\x6f\x9e\x85\x5c\x4f\x35\xef\xb9\x86\x92\xba\x1d\x64\x4b\x68\xcd\x1f\xb2\x9a\x75\x8b\x9e\xec\x81\xdd\xf4\x99\x0e\x52\x37\x22\x80\xe2\x03\x7b\xe9\xe7\x9d\x7f\x1e\xb5\x16\xe2\x32\xcf\x6e\x27\xfd\x38\xb9\x8d\xbe\xc5\x42\x6c\xf2\xac\x28\x1e\xce\xb7\xc9\xcd\xc5\xc3\x26\xbb\xdb\xe1\x91\x0e\xc3\xea\x7b\x7c\xbb\x8d\xf2\xcd\xd5\xca\x4d\x59\x35\xc2\xc1\xd9\xb0\x62\x1d\x0a\x91\x6f\x53\xd4\x8a\xa4\x5e\xb1\x76\x5e\x2a\x85\xb1\x25\x8f\x4a\xba\x0e\x8d\x76\x83\x67\xe5\x84\x98\xa3\x7a\x22\xbb\xda\xf3\x6c\x11\x0a\x11\xff\xbc\xcb\x8a\x18\x9f\x3f\x7e\x3a\x13\x71\x5a\xe6\xbb\xbb\x2c\x49\x4b\xfc\x5a\x84\x6f\xc0\xc5\x6f\xf1\x37\x00\x00\xff\xff\x66\xf8\xdc\x16\xef\x02\x00\x00") + +func testImagesPetsPeerFinderDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsPeerFinderDockerfile, + "test/images/pets/peer-finder/Dockerfile", + ) +} + +func testImagesPetsPeerFinderDockerfile() (*asset, error) { + bytes, err := testImagesPetsPeerFinderDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/peer-finder/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsPeerFinderMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x4f\xdc\x30\x14\x84\xcf\xf5\xaf\x18\x6d\x38\x80\xb4\x24\x14\x55\x1c\xa8\x50\x95\xee\x6e\x21\x02\x25\x55\x12\x40\x9c\x90\x93\xbc\x4d\x9e\x94\xb5\x5d\xdb\x69\xd8\x7f\x5f\x79\x01\x09\x54\xdf\xfc\x66\x3c\xfe\x3c\x8e\xb0\xd2\x66\x6f\xb9\x1f\x3c\xce\xcf\xbe\x5e\xa0\x1e\x08\xb7\x53\x43\x56\x91\x27\x87\x74\xf2\x83\xb6\x2e\x16\x91\x88\x70\xc7\x2d\x29\x47\x1d\x26\xd5\x91\x85\x1f\x08\xa9\x91\xed\x40\xef\xca\x12\x0f\x64\x1d\x6b\x85\xf3\xf8\x0c\xc7\xc1\xb0\x78\x93\x16\x27\xdf\x45\x84\xbd\x9e\xb0\x93\x7b\x28\xed\x31\x39\x82\x1f\xd8\x61\xcb\x23\x81\x5e\x5a\x32\x1e\xac\xd0\xea\x9d\x19\x59\xaa\x96\x30\xb3\x1f\x0e\xd7\xbc\x85\xc4\x22\xc2\xd3\x5b\x84\x6e\xbc\x64\x05\x89\x56\x9b\x3d\xf4\xf6\xa3\x0f\xd2\x1f\x80\xc3\x1a\xbc\x37\x97\x49\x32\xcf\x73\x2c\x0f\xb0\xb1\xb6\x7d\x32\xbe\x1a\x5d\x72\x97\xad\x36\x79\xb5\x39\x3d\x8f\xcf\x0e\x47\xee\xd5\x48\xce\xc1\xd2\x9f\x89\x2d\x75\x68\xf6\x90\xc6\x8c\xdc\xca\x66\x24\x8c\x72\x86\xb6\x90\xbd\x25\xea\xe0\x75\xe0\x9d\x2d\x7b\x56\xfd\x12\x4e\x6f\xfd\x2c\x2d\x89\x08\x1d\x3b\x6f\xb9\x99\xfc\xa7\xb2\xde\xe9\xd8\x7d\x32\x68\x05\xa9\xb0\x48\x2b\x64\xd5\x02\x3f\xd3\x2a\xab\x96\x22\xc2\x63\x56\xdf\x14\xf7\x35\x1e\xd3\xb2\x4c\xf3\x3a\xdb\x54\x28\x4a\xac\x8a\x7c\x9d\xd5\x59\x91\x57\x28\x7e\x21\xcd\x9f\x70\x9b\xe5\xeb\x25\x88\xfd\x40\x16\xf4\x62\x6c\xe0\xd7\x16\x1c\x6a\xa4\x2e\x74\x56\x11\x7d\x02\xd8\xea\x57\x20\x67\xa8\xe5\x2d\xb7\x18\xa5\xea\x27\xd9\x13\x7a\xfd\x97\xac\x62\xd5\xc3\x90\xdd\xb1\x0b\x9f\xe9\x20\x55\x27\x22\x8c\xbc\x63\x2f\xfd\x61\xf2\xdf\xa3\x62\x21\xaa\x72\x55\xe1\x0a\x86\xc8\x9e\x6e\x39\x18\x44\x5a\xae\x6e\xf0\xe3\x0a\x72\xd7\x5d\x7c\x13\x75\x5a\x5e\x6f\xea\xb0\x3f\x3a\x5e\xdd\x97\xeb\xac\x3c\x11\xd7\xc5\x5d\x9a\x5f\x3f\x3f\x6c\xca\x2a\x2b\xf2\xa0\x8d\xd2\x93\xf3\x21\xed\x79\x9d\x95\x87\x40\xef\x92\x8f\xa9\xf4\x62\xb4\xf5\x42\x34\xac\x2e\xc5\x97\x38\x4e\xe2\x38\xe1\x9d\xec\xe9\x74\xf2\x3c\xc6\x6e\x40\xc3\x0a\x47\xc7\x01\xe8\x44\x88\xf8\xf7\x4d\x91\x3f\x5d\x86\xa1\xf8\x17\x00\x00\xff\xff\x87\xc5\xa6\xda\xf0\x02\x00\x00") + +func testImagesPetsPeerFinderMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsPeerFinderMakefile, + "test/images/pets/peer-finder/Makefile", + ) +} + +func testImagesPetsPeerFinderMakefile() (*asset, error) { + bytes, err := testImagesPetsPeerFinderMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/peer-finder/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsPeerFinderVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesPetsPeerFinderVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsPeerFinderVersion, + "test/images/pets/peer-finder/VERSION", + ) +} + +func testImagesPetsPeerFinderVersion() (*asset, error) { + bytes, err := testImagesPetsPeerFinderVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/peer-finder/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsPeerFinderPeerFinderGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x57\x6d\x6f\xdb\x38\x12\xfe\x2c\xfe\x8a\xa9\x80\x6c\xa5\x40\x91\xdb\xe2\x3e\x1c\x52\x04\x07\x5f\x92\x6e\x7d\x9b\xb3\x83\x28\xdb\xc5\x62\xbb\x58\x30\xd2\x58\x22\x2a\x0d\x55\x92\xb2\x13\x34\xf9\xef\x87\xa1\x5e\xec\x38\xed\x87\xc3\x16\x68\x53\x71\x86\xf3\x0c\xe7\x99\xb7\xcc\x8e\xc5\xb9\x6e\x1f\x8c\x2a\x2b\x07\xef\xde\xbc\xfd\x07\xdc\x56\x08\xbf\x74\x77\x68\x08\x1d\x5a\x98\x77\xae\xd2\xc6\xa6\x42\x5c\xa9\x1c\xc9\x62\x01\x1d\x15\x68\xc0\x55\x08\xf3\x56\xe6\x15\xc2\x20\x49\xe0\x13\x1a\xab\x34\xc1\xbb\xf4\x0d\x44\xac\x10\x0e\xa2\x30\x7e\x2f\x1e\x74\x07\x8d\x7c\x00\xd2\x0e\x3a\x8b\xe0\x2a\x65\x61\xad\x6a\x04\xbc\xcf\xb1\x75\xa0\x08\x72\xdd\xb4\xb5\x92\x94\x23\x6c\x95\xab\x3c\xc8\x60\x22\x15\xbf\x0f\x06\xf4\x9d\x93\x8a\x40\x42\xae\xdb\x07\xd0\xeb\x7d\x2d\x90\x4e\x08\x00\x80\xca\xb9\xf6\x74\x36\xdb\x6e\xb7\xa9\xf4\x5e\xa6\xda\x94\xb3\xba\xd7\xb2\xb3\xab\xc5\xf9\xe5\x32\xbb\x3c\x79\x97\xbe\x11\xe2\x57\xaa\xd1\x5a\x30\xf8\xb5\x53\x06\x0b\xb8\x7b\x00\xd9\xb6\xb5\xca\xe5\x5d\x8d\x50\xcb\x2d\x68\x03\xb2\x34\x88\x05\x38\xcd\x7e\x6e\x8d\x72\x8a\xca\x04\xac\x5e\xbb\xad\x34\x28\x0a\x65\x9d\x51\x77\x9d\x7b\x16\xa0\xd1\x2b\x65\x61\x5f\x41\x13\x48\x82\x70\x9e\xc1\x22\x0b\xe1\xdf\xf3\x6c\x91\x25\xe2\xb7\xc5\xed\xc7\xd5\xaf\xb7\xf0\xdb\xfc\xe6\x66\xbe\xbc\x5d\x5c\x66\xb0\xba\x81\xf3\xd5\xf2\x62\x71\xbb\x58\x2d\x33\x58\x7d\x80\xf9\xf2\x77\xf8\x65\xb1\xbc\x48\x00\x95\xab\xd0\x00\xde\xb7\x86\x7d\xd7\x06\x14\x87\x0e\x8b\x54\x64\x88\xcf\xc0\xd7\xba\x77\xc6\xb6\x98\xab\xb5\xca\xa1\x96\x54\x76\xb2\x44\x28\xf5\x06\x0d\x29\x2a\xa1\x45\xd3\x28\xcb\xe4\x59\x90\x54\x88\x5a\x35\xca\x49\xe7\xbf\x5f\x3c\x27\x15\xc7\x33\x21\x66\x33\x98\x83\x6d\x64\x5d\x43\xe7\x54\xad\xdc\x03\xb4\x46\x97\x46\x36\x1c\xa4\x5a\xeb\x2f\x5d\x0b\x95\xb6\x8e\x64\x83\x96\x79\x42\x2a\x5a\xad\xc8\x59\xf0\xf4\x59\x34\x1b\x95\x63\x2a\x5a\x99\x7f\x61\x77\x1a\xa9\x48\x08\xd5\xb4\xda\x38\x88\x44\x10\xae\x6b\x59\x86\xfc\xb3\x71\xfc\xa3\xd6\xfe\x8b\xd0\x7f\x69\xdb\xff\x3b\xc3\x7b\xcc\xf9\xbf\x56\x1b\x2f\xe0\x38\x53\xe9\xa5\x4e\x35\x18\x0a\x11\x84\x5f\xfe\x69\x53\xa5\x67\xb2\x55\x8d\xcc\x2b\x45\x68\x1e\x66\xed\x97\x72\xc6\x9e\xcf\x2c\x3a\x1b\x8a\x58\x88\x5c\x93\xf5\xc8\xad\xae\xeb\x6b\x34\x4a\x17\x70\x06\x6f\xe1\x18\xd8\x50\x9a\x61\xae\xa9\x60\xc5\x8d\x34\xac\xa6\xe9\xbc\x92\x54\x22\xc0\x19\xb0\xaf\x69\xe6\xa1\xa3\x50\xd3\x49\xee\x25\x61\x02\x21\xff\xcd\x72\xa3\x5a\xc7\x81\x31\x1d\x31\xff\xbd\x38\x81\xa6\xb3\x0e\x64\xee\x0b\x40\x02\xe1\x16\x6a\x45\x08\x16\x5b\x69\x24\xe7\x4a\xad\xac\xe3\xe0\xb5\x88\xc6\xc2\x46\x49\xb0\xae\x50\x94\x86\x31\xe3\x67\x4e\x1a\x07\xdf\xc3\xb7\x2c\xf9\x21\xbc\x97\xfe\x4d\x74\xbb\xc9\xa1\xff\x73\x80\x3e\x10\x3b\x82\xff\x3c\x65\xd9\x20\x00\x83\xb6\xd5\x64\x15\x97\xd7\x98\x9d\x17\xcb\x0c\x0c\xe6\xda\x14\x76\xac\xe9\x42\x73\x46\xf4\x8d\xa2\xd5\x05\x57\xd1\x00\xed\x53\xaa\x95\x39\x1e\x42\x93\x1d\x51\xb9\x8f\xed\xd4\xf6\x6d\x98\x8e\xbc\x37\x8a\x52\x58\xac\xa1\xa3\xa1\x30\xb0\x48\x3c\xec\xf5\xea\xe2\xaf\xe5\xfc\xbf\x97\xd9\xf5\xfc\xfc\x12\x90\x36\xc0\x74\x2b\xcb\x5d\xab\xf0\xf0\x83\x63\x2f\x5f\xde\x0b\x18\x3e\xaf\x3b\xeb\xd0\xa4\xb5\xce\x65\x3d\xfa\x73\xde\x1f\xc2\x45\x7f\x7f\x5b\xa9\xbc\x1a\x0d\x73\xd7\x71\x3b\x1d\xc6\x89\x85\x58\x77\x94\x0f\xb5\x14\xd9\x4d\xbe\x94\x0d\x42\x9f\xdf\x31\x44\x9c\xb7\x03\x74\x02\x68\x8c\x36\x31\x7c\x13\xc1\xae\xcc\x4e\xcf\xc0\xeb\x2c\x71\x3b\x78\x18\x8b\xe0\xaf\x04\xac\xd9\xdc\xf4\xa1\xf6\xf7\x58\x8f\xd0\xa5\x57\x1e\x27\xbb\xf9\x14\x85\x43\x14\x07\xc8\x58\x04\x6a\xed\x35\x5f\x9d\x01\xa9\x9a\x51\x02\x83\xae\x33\xb4\x2b\x6a\x6f\x4a\x04\x4f\x22\x60\x4a\xf7\x51\xd8\xbe\xf1\x75\xb2\x03\xf6\x26\x66\x33\x3f\x6e\xb2\x9b\x4f\x13\xf5\x48\xc5\xd0\x1e\xc2\x34\x9c\x92\xc3\x68\xed\x86\x74\x10\x41\x80\x2d\x5b\x5c\x37\x2e\xcd\x5a\xa3\xc8\xad\xa3\xf0\x68\x13\xee\x01\xa6\xb7\xd2\x94\xe8\xfe\x38\xad\x91\xa2\xc3\xd3\xf8\xe4\xed\x9f\x31\x5b\x19\x1d\x4f\x17\x64\xd1\xb8\x08\xdb\xd8\xbb\xff\xf2\x61\xa4\x6a\xf1\x34\x90\x61\x2b\xac\xeb\x55\xe7\x22\x8b\x54\x64\x5c\x0c\x09\xd8\xbe\xbc\x46\x62\xbe\x89\xa0\xd6\x65\x7a\x3d\xf8\xc6\xfd\x49\x51\x79\x0a\x47\x9b\x7e\xaa\xf9\x12\xe2\xcf\x70\xbc\x9a\xc0\x64\x2d\x16\x3e\x2c\xab\x8b\xd5\x29\x64\x5b\xe5\xf2\x8a\xcb\x96\xc5\xbe\x82\x58\x05\xd6\x46\x37\x50\x6a\x11\xe8\xce\x4d\x0c\x32\x4c\x7a\xae\x9b\x46\x52\x11\x85\x77\xd2\x56\x4c\xe2\x49\x1e\x26\xcf\x43\x85\x79\xa5\xe1\x04\xe1\xf5\xd1\xe6\x35\x3c\x0e\x5e\x1c\xbe\x25\x8e\xd9\xd4\x9d\x22\x2c\x56\x9d\x6b\x3b\x17\x7d\x37\x07\xf8\x99\x1f\xa4\x93\xf5\x3a\x0a\x3f\x48\x55\xf7\x03\x92\x3d\xe9\x1c\xc2\xd1\x86\x1f\xe9\x1d\x3c\x7c\x6d\x9f\x8d\xba\x73\xb1\x17\xf7\x81\x9f\x82\x16\xed\xc9\xe3\x29\xf2\xcc\x7e\xe4\xa3\xeb\x6b\xee\x5a\x1a\x8b\x51\x2c\x44\x40\x3e\xd3\x8f\xa7\x6a\xf7\x9e\x92\x85\xb3\x33\x08\x43\xef\x27\x7f\x80\xb6\xe9\xcf\xe8\x90\x36\x51\xf8\xac\xc4\xc3\x1e\x5d\xad\xe1\x98\x5b\x5a\x7f\xeb\xf1\x71\x67\xe1\xf1\x11\xa2\xe3\xa9\xd7\xf7\x67\x3f\xfd\x04\xc7\x63\xfb\xf5\x27\xf1\x8b\x80\x2c\xc8\xaf\x33\xe8\x10\xa4\x29\x6d\x32\x2e\x18\x70\x32\x8d\x07\x9e\xb5\x33\x6d\xfc\xc9\xd0\x92\x4f\xc6\x26\x29\xa9\x80\x13\xf2\xa3\x5d\xd2\xd4\x86\xb8\x22\x9e\x79\x9f\xf6\xee\x8b\x60\x1c\xb5\x53\x42\x68\x9b\x7e\x1c\xce\xfe\x1f\xf6\x4a\x74\xd3\xd8\x3e\x85\x23\x6e\xa8\x23\x43\xbe\xe7\x5f\x71\x47\xcb\xba\xf5\x5a\xdd\xfb\x06\xd3\x4f\xdb\xf4\x3f\x5a\x51\xf4\xc7\x9f\xfd\xe7\xb7\xd0\x6e\x38\xf1\x8e\xfb\x9a\x7d\x4a\xb8\x9a\x63\x11\x34\x0f\xbe\x83\xfd\xf0\xda\xee\x0d\x4c\x45\x02\x64\x7d\x0f\xda\x83\x9c\x4c\x0d\x35\xc7\xc4\x0f\x3c\xf8\x27\x0e\xc7\x3b\xea\xc7\x03\x98\x18\x1c\x5e\x3e\x96\xe7\x52\xc3\x18\x7d\xb0\x5d\xeb\x97\xa8\x04\x76\x14\xf9\xaa\xad\x6b\xb8\xc3\x7e\x2b\xec\xf7\x37\xaf\x9f\x4e\x29\x1d\x4f\x8d\x8f\x70\x7b\xcd\xc3\x32\x19\x66\xe6\x77\x7a\x70\xf2\xe2\xe4\xfd\xe8\xf7\x2b\xf6\xfb\xfd\xb0\x6e\xd4\x88\x6d\xb4\x5b\x45\xfa\x0c\xdb\xd9\x67\x36\xcf\xc6\xe1\xc0\xf1\xe2\xae\xf6\x92\xe5\x67\x8f\xf5\x55\xd8\xd3\x19\x04\xb9\x26\xa7\xa8\xe3\x80\x3c\xf5\x57\x47\xe3\xe9\xe5\xd7\x4e\xd6\x91\x7f\x41\xcc\xf9\xff\x6a\x92\x7c\x94\x36\xea\x69\xec\xfd\x39\xb4\xc2\x77\xae\x78\x6b\xf0\x43\x65\xb8\xc4\x07\x9c\x83\x01\xef\x68\xc3\xc8\xb2\xd1\xa8\x1a\x1f\x30\xc2\x77\xfa\xcd\xa3\x6b\x0b\x5e\x43\x3e\xd3\x56\x5a\x38\xda\x7c\x26\xd2\xdb\xbe\x93\xb4\x7b\x76\x93\x43\x20\x8f\x34\xf5\xe9\xfd\x4c\x1b\x21\x13\x08\x3f\x53\x18\xef\xd1\x17\xf4\x74\xed\x9c\xfe\x41\xee\x3c\xed\xf5\xe7\xcb\x7b\xe5\x40\xf9\x65\xc5\xe0\x6b\x0b\xa4\x77\x79\xf3\x2f\xf1\xf2\x4d\x6b\xe5\x57\x69\xbc\xf7\xbf\x3d\x84\xdc\xda\xfe\x17\x00\x00\xff\xff\x78\x35\xa6\xee\x81\x0d\x00\x00") + +func testImagesPetsPeerFinderPeerFinderGoBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsPeerFinderPeerFinderGo, + "test/images/pets/peer-finder/peer-finder.go", + ) +} + +func testImagesPetsPeerFinderPeerFinderGo() (*asset, error) { + bytes, err := testImagesPetsPeerFinderPeerFinderGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/peer-finder/peer-finder.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsRedisInstallerBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\x4f\x2e\xd2\xcb\xcc\xd7\x4f\xcf\xcf\x4f\xcf\x49\xd5\x4d\xce\xcf\x2b\x49\xcc\xcc\x4b\x2d\x2a\xd6\x4f\x49\x4d\xca\x4c\xcc\xd3\x4d\x4a\x2c\x4e\xd5\x05\x2b\xb5\x32\xd0\x33\xe2\x4a\x2c\xca\x25\x52\x4b\x51\x2e\x4c\x03\xd1\xb6\x80\x94\x82\x35\x15\x14\x24\x9b\x99\xe4\xa4\x12\xa7\x0d\xaa\x18\xac\x11\x10\x00\x00\xff\xff\x77\xbe\x83\xed\xd4\x00\x00\x00") + +func testImagesPetsRedisInstallerBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsRedisInstallerBaseimage, + "test/images/pets/redis-installer/BASEIMAGE", + ) +} + +func testImagesPetsRedisInstallerBaseimage() (*asset, error) { + bytes, err := testImagesPetsRedisInstallerBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/redis-installer/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsRedisInstallerDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x53\xd1\x6e\xe3\x36\x10\x7c\xe7\x57\x0c\x6c\xe0\xda\x02\x91\x94\xba\xb8\x1e\x70\x45\x1f\x14\xdb\xd7\x13\x2e\xb1\x5a\xcb\xe9\x21\x68\x8b\x80\x12\xd7\x12\x7b\x12\xa9\x90\x54\x14\xe7\xeb\x0b\x52\x4e\xe3\x20\xd1\x93\x40\xce\xee\xce\xcc\x0e\xe7\x58\xea\xfe\x60\x64\xdd\x38\x2c\xce\x7f\xfc\x19\xbb\x86\xf0\x65\x28\xc9\x28\x72\x64\x91\x0e\xae\xd1\xc6\xc6\x6c\xce\xe6\xb8\x94\x15\x29\x4b\x02\x83\x12\x64\xe0\x1a\x42\xda\xf3\xaa\xa1\xa7\x9b\x33\xfc\x49\xc6\x4a\xad\xb0\x88\xcf\xf1\xbd\x07\xcc\x8e\x57\xb3\x1f\x7e\x61\x73\x1c\xf4\x80\x8e\x1f\xa0\xb4\xc3\x60\x09\xae\x91\x16\x7b\xd9\x12\xe8\xa1\xa2\xde\x41\x2a\x54\xba\xeb\x5b\xc9\x55\x45\x18\xa5\x6b\xc2\x98\x63\x93\x98\xcd\x71\x73\x6c\xa1\x4b\xc7\xa5\x02\x47\xa5\xfb\x03\xf4\xfe\x14\x07\xee\x02\x61\xff\x35\xce\xf5\x1f\x93\x64\x1c\xc7\x98\x07\xb2\xb1\x36\x75\xd2\x4e\x40\x9b\x5c\x66\xcb\xf5\xa6\x58\x47\x8b\xf8\x3c\x94\x5c\xab\x96\xac\x85\xa1\xbb\x41\x1a\x12\x28\x0f\xe0\x7d\xdf\xca\x8a\x97\x2d\xa1\xe5\x23\xb4\x01\xaf\x0d\x91\x80\xd3\x9e\xef\x68\xa4\x93\xaa\x3e\x83\xd5\x7b\x37\x72\x43\x6c\x0e\x21\xad\x33\xb2\x1c\xdc\x0b\xb3\x9e\xd8\x49\xfb\x02\xa0\x15\xb8\xc2\x2c\x2d\x90\x15\x33\x5c\xa4\x45\x56\x9c\xb1\x39\xbe\x66\xbb\xcf\xf9\xf5\x0e\x5f\xd3\xed\x36\xdd\xec\xb2\x75\x81\x7c\x8b\x65\xbe\x59\x65\xbb\x2c\xdf\x14\xc8\x3f\x21\xdd\xdc\xe0\x4b\xb6\x59\x9d\x81\xa4\x6b\xc8\x80\x1e\x7a\xe3\xf9\x6b\x03\xe9\x6d\x24\xe1\x3d\x2b\x88\x5e\x10\xd8\xeb\x89\x90\xed\xa9\x92\x7b\x59\xa1\xe5\xaa\x1e\x78\x4d\xa8\xf5\x3d\x19\x25\x55\x8d\x9e\x4c\x27\xad\x5f\xa6\x05\x57\x82\xcd\xd1\xca\x4e\x3a\xee\xc2\xc9\x2b\x51\x31\x63\x73\xec\xf2\x55\xfe\x11\x35\x39\x18\x29\xfc\x4e\x4a\x6e\x1b\x08\xea\x49\x09\x52\xd5\xc1\x37\x82\x1d\xa5\xab\x1a\x6f\x5e\xdf\xfa\x0d\x96\x83\x3d\x94\xfa\xc1\xf3\xf4\xe1\x73\xdc\xe0\xf9\x14\xbc\xb5\x1a\x42\x93\x55\xdf\x39\x58\xa2\xce\x17\x86\xe9\xd6\xf9\x6e\x3e\x2d\x5e\xb1\xd4\x2a\x66\x9f\xb6\xf9\x95\x37\x70\x9d\x5d\xa5\xbf\xad\x19\x5b\x6e\xf3\xa2\xb8\xbd\xb8\xce\x2e\x57\xb7\xcb\xfc\xf7\x1b\xdc\x51\x37\x44\x7f\xac\xaf\xae\xd3\xed\xf2\x73\x64\xbd\x9a\x0a\xc9\x60\x4d\x52\x4a\x95\x3c\x4b\xf8\x77\xb0\x53\x40\xc3\x10\x6e\x04\x0c\x09\x69\x31\x36\xa4\xbc\x6a\x13\x96\xa8\xd5\x64\xe5\x4f\xf1\x22\x3e\x8f\xd9\xf6\x7a\x83\xaa\x25\xae\x22\xa9\xac\xe3\x6d\x8b\xd1\x5b\xd1\xf1\x6f\x84\xba\xaa\xd0\xca\xb2\x8a\x04\xdd\xb3\xe3\x46\xb6\xeb\x74\x75\xb5\x8e\x3b\x11\x2a\x03\x36\xba\xcb\x91\x84\x51\xd1\xd4\xd4\x71\x13\xd7\x8f\x4f\x21\x16\x7a\x54\xad\xe6\x22\x0e\x90\x58\xea\xc4\x50\x4b\xdc\xe7\xf8\x8d\xa2\x77\xef\xf0\x37\xf3\x4f\xc0\x5b\x1a\x3d\x3c\xee\xdf\x6c\x1d\x2d\x91\xb8\xae\x4f\x3c\xdc\x74\x6f\x41\x3c\xdf\xa5\xd7\x05\x3d\x38\xd0\x83\xb4\x3e\xef\x7e\xad\x16\x25\xed\xb5\x37\x63\x12\x1c\xc2\xc1\xe6\x7e\x4f\x81\xb2\xfd\x98\x24\xb5\x74\xcd\x50\xc6\x95\xee\x12\xae\x9c\x34\xf4\x38\x8d\x48\xa4\xb5\x03\xd9\xe4\xc3\x62\x31\x39\x27\x26\x1e\x27\xf3\x3d\xa5\xe0\x9e\x7f\x2d\xc1\xd9\x70\xf2\x4d\x48\x83\xa8\x3f\x52\x7d\x96\x19\xa0\x4f\xd6\x67\x9b\x62\x97\x5e\x5e\xde\x5e\x64\x9b\x5f\x5f\x01\xef\x5f\x8d\x9a\xfe\xe3\x4a\xab\x27\x97\x4e\x4f\xfe\xaf\x34\x1d\x22\xb3\x7f\x55\xcd\x58\xba\x5a\x41\x2b\x9f\x28\xe3\x62\xdb\x20\x61\x2c\x04\xae\x27\x32\xd1\x5e\x86\xd7\x92\x04\xd4\x91\xe0\x04\x0a\xc2\x9b\x4e\x0b\x44\x15\x3e\xbc\x7f\x8f\xe4\xf4\xfa\x45\xc3\x93\x4e\x6c\xad\x9c\x39\xf4\x5a\x2a\x87\xbf\x66\x27\x25\xb3\x7f\xd8\x7f\x01\x00\x00\xff\xff\x98\x4f\x75\xb8\xd1\x05\x00\x00") + +func testImagesPetsRedisInstallerDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsRedisInstallerDockerfile, + "test/images/pets/redis-installer/Dockerfile", + ) +} + +func testImagesPetsRedisInstallerDockerfile() (*asset, error) { + bytes, err := testImagesPetsRedisInstallerDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/redis-installer/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsRedisInstallerMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x4f\xdc\x30\x14\x84\xcf\xf5\xaf\x18\x6d\x38\x80\xb4\x24\x14\x55\x1c\xa8\x50\x95\xee\x6e\x21\x02\x25\x55\x12\x40\x9c\x90\x93\xbc\x4d\x9e\x94\xb5\x5d\xdb\x69\xd8\x7f\x5f\x79\x01\x09\x54\xdf\xfc\x66\x3c\xfe\x3c\x8e\xb0\xd2\x66\x6f\xb9\x1f\x3c\xce\xcf\xbe\x5e\xa0\x1e\x08\xb7\x53\x43\x56\x91\x27\x87\x74\xf2\x83\xb6\x2e\x16\x91\x88\x70\xc7\x2d\x29\x47\x1d\x26\xd5\x91\x85\x1f\x08\xa9\x91\xed\x40\xef\xca\x12\x0f\x64\x1d\x6b\x85\xf3\xf8\x0c\xc7\xc1\xb0\x78\x93\x16\x27\xdf\x45\x84\xbd\x9e\xb0\x93\x7b\x28\xed\x31\x39\x82\x1f\xd8\x61\xcb\x23\x81\x5e\x5a\x32\x1e\xac\xd0\xea\x9d\x19\x59\xaa\x96\x30\xb3\x1f\x0e\xd7\xbc\x85\xc4\x22\xc2\xd3\x5b\x84\x6e\xbc\x64\x05\x89\x56\x9b\x3d\xf4\xf6\xa3\x0f\xd2\x1f\x80\xc3\x1a\xbc\x37\x97\x49\x32\xcf\x73\x2c\x0f\xb0\xb1\xb6\x7d\x32\xbe\x1a\x5d\x72\x97\xad\x36\x79\xb5\x39\x3d\x8f\xcf\x0e\x47\xee\xd5\x48\xce\xc1\xd2\x9f\x89\x2d\x75\x68\xf6\x90\xc6\x8c\xdc\xca\x66\x24\x8c\x72\x86\xb6\x90\xbd\x25\xea\xe0\x75\xe0\x9d\x2d\x7b\x56\xfd\x12\x4e\x6f\xfd\x2c\x2d\x89\x08\x1d\x3b\x6f\xb9\x99\xfc\xa7\xb2\xde\xe9\xd8\x7d\x32\x68\x05\xa9\xb0\x48\x2b\x64\xd5\x02\x3f\xd3\x2a\xab\x96\x22\xc2\x63\x56\xdf\x14\xf7\x35\x1e\xd3\xb2\x4c\xf3\x3a\xdb\x54\x28\x4a\xac\x8a\x7c\x9d\xd5\x59\x91\x57\x28\x7e\x21\xcd\x9f\x70\x9b\xe5\xeb\x25\x88\xfd\x40\x16\xf4\x62\x6c\xe0\xd7\x16\x1c\x6a\xa4\x2e\x74\x56\x11\x7d\x02\xd8\xea\x57\x20\x67\xa8\xe5\x2d\xb7\x18\xa5\xea\x27\xd9\x13\x7a\xfd\x97\xac\x62\xd5\xc3\x90\xdd\xb1\x0b\x9f\xe9\x20\x55\x27\x22\x8c\xbc\x63\x2f\xfd\x61\xf2\xdf\xa3\x62\x21\xaa\x72\x55\xe1\x0a\x86\xc8\x9e\x6e\x39\x18\x44\x5a\xae\x6e\xf0\xe3\x0a\x72\xd7\x5d\x7c\x13\x75\x5a\x5e\x6f\xea\xb0\x3f\x3a\x5e\xdd\x97\xeb\xac\x3c\x11\xd7\xc5\x5d\x9a\x5f\x3f\x3f\x6c\xca\x2a\x2b\xf2\xa0\x8d\xd2\x93\xf3\x21\xed\x79\x9d\x95\x87\x40\xef\x92\x8f\xa9\xf4\x62\xb4\xf5\x42\x34\xac\x2e\xc5\x97\x38\x4e\xe2\x38\xe1\x9d\xec\xe9\x74\xf2\x3c\xc6\x6e\x40\xc3\x0a\x47\xc7\x01\xe8\x44\x88\xf8\xf7\x4d\x91\x3f\x5d\x86\xa1\xf8\x17\x00\x00\xff\xff\x87\xc5\xa6\xda\xf0\x02\x00\x00") + +func testImagesPetsRedisInstallerMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsRedisInstallerMakefile, + "test/images/pets/redis-installer/Makefile", + ) +} + +func testImagesPetsRedisInstallerMakefile() (*asset, error) { + bytes, err := testImagesPetsRedisInstallerMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/redis-installer/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsRedisInstallerVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesPetsRedisInstallerVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsRedisInstallerVersion, + "test/images/pets/redis-installer/VERSION", + ) +} + +func testImagesPetsRedisInstallerVersion() (*asset, error) { + bytes, err := testImagesPetsRedisInstallerVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/redis-installer/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsRedisInstallerInstallSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x92\x41\x6f\xe3\x36\x10\x85\xef\xfc\x15\xaf\x52\x0e\xdd\x20\x92\xd2\x14\xe8\xa1\x81\x81\xba\x89\x8b\x0a\x71\x6d\xc0\x72\x12\xec\x69\x41\x4b\x63\x69\x10\x99\x64\x49\x2a\x8a\x91\xe6\xbf\x17\x94\xad\x76\x9d\xb4\x3d\xd4\x27\x8b\x6f\x38\xfc\xe6\xbd\x89\xbf\x41\xb6\x61\x95\x6d\xa4\x6b\x84\x88\x71\xa3\xcd\xde\x72\xdd\x78\x5c\x5d\x7e\xf7\x03\xd6\x0d\xe1\xae\xdb\x90\x55\xe4\xc9\x61\xda\xf9\x46\x5b\x97\x8a\x58\xc4\x98\x73\x49\xca\x51\x85\x4e\x55\x64\xe1\x1b\xc2\xd4\xc8\xb2\xa1\x51\xb9\xc0\x03\x59\xc7\x5a\xe1\x2a\xbd\xc4\xb7\xa1\x20\x3a\x4a\xd1\xa7\x6b\x11\x63\xaf\x3b\xec\xe4\x1e\x4a\x7b\x74\x8e\xe0\x1b\x76\xd8\x72\x4b\xa0\x97\x92\x8c\x07\x2b\x94\x7a\x67\x5a\x96\xaa\x24\xf4\xec\x9b\xe1\x99\x63\x93\x54\xc4\xf8\x7c\x6c\xa1\x37\x5e\xb2\x82\x44\xa9\xcd\x1e\x7a\xfb\x75\x1d\xa4\x1f\x80\xc3\xaf\xf1\xde\xfc\x98\x65\x7d\xdf\xa7\x72\x80\x4d\xb5\xad\xb3\xf6\x50\xe8\xb2\x79\x7e\x33\x5b\x14\xb3\xe4\x2a\xbd\x1c\xae\xdc\xab\x96\x9c\x83\xa5\xdf\x3b\xb6\x54\x61\xb3\x87\x34\xa6\xe5\x52\x6e\x5a\x42\x2b\x7b\x68\x0b\x59\x5b\xa2\x0a\x5e\x07\xde\xde\xb2\x67\x55\x5f\xc0\xe9\xad\xef\xa5\x25\x11\xa3\x62\xe7\x2d\x6f\x3a\x7f\x62\xd6\x48\xc7\xee\xa4\x40\x2b\x48\x85\x68\x5a\x20\x2f\x22\xfc\x3c\x2d\xf2\xe2\x42\xc4\x78\xcc\xd7\xbf\x2e\xef\xd7\x78\x9c\xae\x56\xd3\xc5\x3a\x9f\x15\x58\xae\x70\xb3\x5c\xdc\xe6\xeb\x7c\xb9\x28\xb0\xfc\x05\xd3\xc5\x67\xdc\xe5\x8b\xdb\x0b\x10\xfb\x86\x2c\xe8\xc5\xd8\xc0\xaf\x2d\x38\xd8\x48\x55\xf0\xac\x20\x3a\x01\xd8\xea\x03\x90\x33\x54\xf2\x96\x4b\xb4\x52\xd5\x9d\xac\x09\xb5\x7e\x26\xab\x58\xd5\x30\x64\x77\xec\x42\x98\x0e\x52\x55\x22\x46\xcb\x3b\xf6\xd2\x0f\x27\x1f\x86\x4a\xc3\x2e\xad\x43\x9c\xcf\xba\xed\x76\xc3\x90\xd2\xb9\x6e\x77\xf0\x89\x5e\xd8\xf9\xd0\x27\x9c\xbb\x46\x06\x6b\x87\x74\x8d\xb4\xa4\xfc\x98\x1f\x2b\xf6\x22\x46\xa9\x55\x08\x97\x6c\x8a\xdc\x8f\x5f\x6e\xa8\xb0\x54\xb1\x03\x2b\xe7\x65\xdb\x0e\x30\xa9\xc8\x17\xc5\x7a\x3a\x9f\x7f\x79\x58\xce\xef\x7f\x9b\x4d\xa2\x4c\x1b\x1f\xfd\x4f\x9e\xf0\x86\x21\xb2\xc9\x96\xc3\x88\x22\x1e\x98\xfe\x8d\x48\xab\xc4\x79\x69\x7d\x56\x36\x52\xd5\x14\x84\x2d\xd7\x9d\x1d\xc0\xe0\x4a\xcb\xc6\xbb\x54\x3c\x2e\x57\x77\x5f\x6e\xf3\xd5\x24\xca\x7a\x6d\x9f\x92\x8a\x6d\x24\xc4\xc3\x6c\x55\xe4\xcb\xc5\x24\xfa\x3e\xbd\x4a\x2f\x23\x21\x42\x2c\x1c\x56\x2a\x3a\xfb\x29\x12\x95\x16\xa5\x74\x84\xb3\x70\x24\xc2\x2a\x27\x3c\x39\xff\x23\x49\x8e\xc3\x27\xac\xbc\x9e\x9c\x7f\x1a\xa4\xf7\x16\x9c\xbd\x72\x7c\x3e\x79\x8b\x06\xd1\x35\xbc\xf5\xc3\xbf\xeb\xeb\x43\xa3\x7e\x68\x34\xb2\x8c\x4d\xfe\xc6\xfc\xef\xeb\xc7\xf2\x18\x9d\x7a\x52\xba\x57\xd0\x26\xcc\x3b\x96\x90\x93\xa5\xa8\xb4\x22\x21\xa8\x6c\xf4\x18\x56\x58\xaa\x83\x3f\xa3\x31\x08\x13\x20\x3a\x7b\x1d\x1f\x7e\x8b\xc4\xee\xa9\x62\x8b\xc4\xbc\x3b\x2e\x0d\xb2\xd1\xec\xd4\x35\xa7\x6a\x36\xc8\x5f\xa5\xf6\x5e\xfe\xc0\x31\x6c\x51\x12\x9d\xbd\x1e\x33\x78\x8b\xfe\x62\x39\x75\xf2\x1d\xd1\x47\xf1\x19\xd9\x61\x25\xff\x41\x3d\x28\xe2\xcf\x00\x00\x00\xff\xff\xfe\xfa\xa4\xf8\x72\x05\x00\x00") + +func testImagesPetsRedisInstallerInstallShBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsRedisInstallerInstallSh, + "test/images/pets/redis-installer/install.sh", + ) +} + +func testImagesPetsRedisInstallerInstallSh() (*asset, error) { + bytes, err := testImagesPetsRedisInstallerInstallShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/redis-installer/install.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsRedisInstallerOnStartSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\x71\x6f\xdb\xb6\x17\xfc\x9f\x9f\xe2\x7e\x92\x81\xb4\x81\x2d\xf7\xd7\x01\x1d\xd6\xc2\x18\xbc\xc4\x6d\x8d\xb6\x76\x60\xbb\x2b\x8a\xae\x03\x68\xe9\x49\xe2\x40\x93\x1a\x49\x45\x15\x92\x7c\xf7\xe1\x51\xf6\x96\xa4\x9b\xff\xb0\x2d\x8a\x8f\xef\xee\xde\xf1\xd2\xff\x4d\xf7\xca\x4c\xf7\xd2\xd7\x42\xa4\xb8\xb0\x4d\xef\x54\x55\x07\x3c\x7f\xf6\xff\x17\xd8\xd5\x84\x77\xed\x9e\x9c\xa1\x40\x1e\xf3\x36\xd4\xd6\xf9\x4c\xa4\x22\xc5\x7b\x95\x93\xf1\x54\xa0\x35\x05\x39\x84\x9a\x30\x6f\x64\x5e\xd3\xe9\xcd\x18\xbf\x92\xf3\xca\x1a\x3c\xcf\x9e\xe1\x09\x6f\x48\x8e\xaf\x92\xa7\xaf\x44\x8a\xde\xb6\x38\xc8\x1e\xc6\x06\xb4\x9e\x10\x6a\xe5\x51\x2a\x4d\xa0\x6f\x39\x35\x01\xca\x20\xb7\x87\x46\x2b\x69\x72\x42\xa7\x42\x1d\xdb\x1c\x0f\xc9\x44\x8a\xcf\xc7\x23\xec\x3e\x48\x65\x20\x91\xdb\xa6\x87\x2d\xef\xef\x83\x0c\x11\x30\x7f\xea\x10\x9a\x97\xd3\x69\xd7\x75\x99\x8c\x60\x33\xeb\xaa\xa9\x1e\x36\xfa\xe9\xfb\xe5\xc5\x62\xb5\x5d\x4c\x9e\x67\xcf\x62\xc9\x47\xa3\xc9\x7b\x38\xfa\xb3\x55\x8e\x0a\xec\x7b\xc8\xa6\xd1\x2a\x97\x7b\x4d\xd0\xb2\x83\x75\x90\x95\x23\x2a\x10\x2c\xe3\xed\x9c\x0a\xca\x54\x63\x78\x5b\x86\x4e\x3a\x12\x29\x0a\xe5\x83\x53\xfb\x36\x3c\x10\xeb\x84\x4e\xf9\x07\x1b\xac\x81\x34\x48\xe6\x5b\x2c\xb7\x09\x7e\x99\x6f\x97\xdb\xb1\x48\xf1\x69\xb9\x7b\xbb\xfe\xb8\xc3\xa7\xf9\x66\x33\x5f\xed\x96\x8b\x2d\xd6\x1b\x5c\xac\x57\x97\xcb\xdd\x72\xbd\xda\x62\xfd\x1a\xf3\xd5\x67\xbc\x5b\xae\x2e\xc7\x20\x15\x6a\x72\xa0\x6f\x8d\x63\xfc\xd6\x41\xb1\x8c\x54\xb0\x66\x5b\xa2\x07\x00\x4a\x3b\x00\xf2\x0d\xe5\xaa\x54\x39\xb4\x34\x55\x2b\x2b\x42\x65\xaf\xc9\x19\x65\x2a\x34\xe4\x0e\xca\xf3\x30\x3d\xa4\x29\x44\x0a\xad\x0e\x2a\xc8\x10\x57\xbe\x23\x95\x09\xe1\x29\x60\x42\x42\x5c\xbc\x7e\x33\x9b\xda\x26\x4c\x1d\x15\xca\x0f\xdf\x59\x6e\x4d\x29\xde\xae\xb7\xbb\xd5\xfc\xc3\x62\x36\x7a\x52\x5b\x1f\x8c\x3c\xd0\x53\x71\x39\xdf\xcd\x2f\x97\x9b\x59\x32\x2d\x64\x90\x89\x48\x71\x65\x5d\x60\x55\xba\x5a\xe5\x35\x62\x3d\xb4\xf2\x81\x8c\x8f\xd0\x73\x6b\x0c\xe5\x11\x48\x26\xae\xd6\x9b\xdd\xec\xc5\x0f\x3f\xfe\xc4\x66\xbe\x62\xe4\x74\x4d\xae\xb7\x86\xb0\x6f\x03\x6c\xeb\x3c\xe9\x92\x67\xe5\x89\xa0\xa2\x4f\x1c\x9d\x79\x48\x1c\xa4\x0f\xe4\x32\xac\x8d\xee\xc1\x05\x0d\x05\xf8\x20\x5d\xf0\xd1\x41\x90\x08\xea\x40\x3c\x59\x2e\xec\x08\x85\x35\x67\x21\x1e\x74\xaa\xe6\xd5\x5c\x1a\x48\xef\xdb\xc3\xa0\x72\x63\xbd\x62\x70\x3c\x67\x6e\x9f\x89\xae\x66\x8b\x3b\x92\x05\x26\x4e\xe2\xfd\x72\xb5\x78\x85\xc2\x0a\xf6\xa7\x2a\xf1\xe5\x0b\x92\xd1\x0d\xaf\xde\x25\x98\xcd\x70\x9e\x8c\x6e\x4e\x52\xdd\x25\xe7\xf8\xfa\xf5\x15\x1f\x6c\xe2\x7e\xfe\xf0\x1d\x9c\x28\x4c\x08\x89\xbf\xfd\x7d\xaf\x4c\x91\x9d\x8f\x6e\xf9\x17\xc7\x73\x6e\x13\x8c\x6e\x2e\x5e\xbf\xb9\x8b\x35\xa4\xb9\x0b\x92\xd1\x93\xc7\x73\x99\xe4\x5a\x61\x52\x63\xc4\x55\x50\xa6\xb4\xb8\x45\xe5\xa8\x81\xb3\x9a\x70\x1b\x5b\x9d\xf9\xf1\x6f\x6e\x34\x1e\x9f\x3d\x4d\x30\x43\xc2\x6f\x5e\x0e\xec\x13\x3c\x86\x96\x62\xb7\xbe\x5c\xbf\xc4\x07\xeb\x98\x31\xbb\x3c\x0f\xea\x9a\xff\x57\xf4\xed\xe7\xff\xa0\x90\xc2\x6b\x79\x4d\xb6\x64\x1e\xc7\xbf\x27\x2a\x18\xdd\xf0\x8c\x1f\x51\x2a\x95\x28\xac\x21\x11\xdd\x1d\xa2\xee\x6c\x1f\x14\xca\x51\x1e\xac\xeb\xa3\x53\x64\xd3\x90\xe1\x1b\xa6\x7b\x68\x5b\xb1\x91\xe1\x8d\x6c\x7c\x6d\x43\xcc\x1d\x9f\x61\xc7\x19\xe4\x6b\xdb\x6a\x36\xf9\x9e\x47\xdb\x70\x8a\xb1\xdf\x02\xae\xad\xe6\xb9\x1e\x6d\x37\xac\xe6\x7d\x26\x1e\xe2\xcf\xce\x0b\xe5\xc0\xe0\xf9\x77\x74\x73\xf4\xf4\x3d\xcc\x22\x8d\xd1\xfa\x18\x90\xf2\x31\x3f\x02\x99\xd8\x22\x5a\x17\xdb\xc5\x0e\xb6\x21\x17\xef\x5a\x86\x4f\x2a\xd4\xb6\x0d\x43\x58\x7a\x0a\x31\x6d\x44\x7a\xbc\x18\x7f\xb4\x3e\xfc\xcd\xc9\x33\x74\x65\x0b\x95\x4b\xad\xfb\xe3\x05\x62\x1b\x72\x3f\x2f\xcb\x81\x88\x44\x1e\x83\x70\xa0\xde\x29\xad\x45\x8a\xc6\xd9\xa2\xcd\x89\xa3\x68\x00\xc9\x35\x99\xb4\xe5\x90\xcf\xca\x44\x8d\xf9\x1a\xab\xaa\xe5\x64\x3c\xc9\xfd\x58\x8b\x7f\xaa\xa3\x20\xf7\x1e\x7b\xf2\x0f\x04\x59\x44\xb6\xcc\x9f\x10\x9c\xaa\x2a\x72\x9c\x35\x28\x7d\x6f\xf2\x0c\x1b\xca\xed\xe1\x40\xa6\xe0\x66\x54\xca\x56\x07\xe6\x92\x44\x91\x3c\xe5\xc9\x78\x20\x28\xd2\xef\x29\xce\xaf\x4e\xb1\x7d\x8c\x89\x7f\xc3\x18\xfb\xdc\x03\x39\x3c\x4b\xdd\xc9\xfe\x3e\x50\xf1\x57\x00\x00\x00\xff\xff\x13\x5f\x8c\x90\x32\x07\x00\x00") + +func testImagesPetsRedisInstallerOnStartShBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsRedisInstallerOnStartSh, + "test/images/pets/redis-installer/on-start.sh", + ) +} + +func testImagesPetsRedisInstallerOnStartSh() (*asset, error) { + bytes, err := testImagesPetsRedisInstallerOnStartShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/redis-installer/on-start.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsZookeeperInstallerBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\x4f\x2e\xd2\xcb\xcc\xd7\x4f\xcf\xcf\x4f\xcf\x49\xd5\x4d\xce\xcf\x2b\x49\xcc\xcc\x4b\x2d\x2a\xd6\x4f\x49\x4d\xca\x4c\xcc\xd3\x4d\x4a\x2c\x4e\xd5\x05\x2b\xb5\x32\xd0\x33\xe2\x4a\x2c\xca\x25\x52\x4b\x51\x2e\x4c\x03\xd1\xb6\x80\x94\x82\x35\x15\x14\x24\x9b\x99\xe4\xa4\x12\xa7\x0d\xaa\x18\xac\x11\x10\x00\x00\xff\xff\x77\xbe\x83\xed\xd4\x00\x00\x00") + +func testImagesPetsZookeeperInstallerBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsZookeeperInstallerBaseimage, + "test/images/pets/zookeeper-installer/BASEIMAGE", + ) +} + +func testImagesPetsZookeeperInstallerBaseimage() (*asset, error) { + bytes, err := testImagesPetsZookeeperInstallerBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/zookeeper-installer/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsZookeeperInstallerDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x51\x6f\xdb\x36\x14\x85\xdf\xf9\x2b\x0e\x2c\xa0\xdb\x80\x48\xca\x32\x64\x03\xba\x27\xd5\x56\x57\xa1\x89\xb5\x59\xf6\x8a\x60\x1b\x0a\x8a\xba\x96\x88\x49\x24\x43\x52\x55\x9c\x5f\x3f\x50\x76\x50\x1b\x2b\x5a\x3d\x09\xe4\x3d\x87\xe7\x7e\xbc\x8c\xb0\xd4\xe6\x60\x65\xdb\x79\xdc\x5c\xff\xf8\x33\xb6\x1d\xe1\xfd\x58\x93\x55\xe4\xc9\x21\x1b\x7d\xa7\xad\x4b\x58\xc4\x22\xdc\x49\x41\xca\x51\x83\x51\x35\x64\xe1\x3b\x42\x66\xb8\xe8\xe8\x65\xe7\x0a\x7f\x92\x75\x52\x2b\xdc\x24\xd7\xf8\x3e\x14\x2c\x4e\x5b\x8b\x1f\x7e\x65\x11\x0e\x7a\xc4\xc0\x0f\x50\xda\x63\x74\x04\xdf\x49\x87\xbd\xec\x09\xf4\x24\xc8\x78\x48\x05\xa1\x07\xd3\x4b\xae\x04\x61\x92\xbe\x9b\x8f\x39\x99\x24\x2c\xc2\xc3\xc9\x42\xd7\x9e\x4b\x05\x0e\xa1\xcd\x01\x7a\x7f\x5e\x07\xee\xe7\xc0\xe1\xeb\xbc\x37\xaf\xd3\x74\x9a\xa6\x84\xcf\x61\x13\x6d\xdb\xb4\x3f\x16\xba\xf4\xae\x58\xe6\xeb\x2a\x8f\x6f\x92\xeb\x59\xb2\x53\x3d\x39\x07\x4b\x8f\xa3\xb4\xd4\xa0\x3e\x80\x1b\xd3\x4b\xc1\xeb\x9e\xd0\xf3\x09\xda\x82\xb7\x96\xa8\x81\xd7\x21\xef\x64\xa5\x97\xaa\xbd\x82\xd3\x7b\x3f\x71\x4b\x2c\x42\x23\x9d\xb7\xb2\x1e\xfd\x05\xac\x97\x74\xd2\x5d\x14\x68\x05\xae\xb0\xc8\x2a\x14\xd5\x02\x6f\xb2\xaa\xa8\xae\x58\x84\x0f\xc5\xf6\x5d\xb9\xdb\xe2\x43\xb6\xd9\x64\xeb\x6d\x91\x57\x28\x37\x58\x96\xeb\x55\xb1\x2d\xca\x75\x85\xf2\x2d\xb2\xf5\x03\xde\x17\xeb\xd5\x15\x48\xfa\x8e\x2c\xe8\xc9\xd8\x90\x5f\x5b\xc8\x80\x91\x9a\xc0\xac\x22\xba\x08\xb0\xd7\xc7\x40\xce\x90\x90\x7b\x29\xd0\x73\xd5\x8e\xbc\x25\xb4\xfa\x13\x59\x25\x55\x0b\x43\x76\x90\x2e\x5c\xa6\x03\x57\x0d\x8b\xd0\xcb\x41\x7a\xee\xe7\x95\xff\x35\x95\x30\x16\x61\x5b\xae\xca\xd7\x68\xc9\xc3\xca\x26\xdc\x49\xcd\x5d\x87\x86\x0c\xa9\x86\x94\x38\x04\x23\xb8\x49\x7a\xd1\x05\x78\xa6\x0f\x37\x58\x8f\xee\x50\xeb\xa7\x90\x33\x0c\x9f\xe7\x16\x9f\x57\xc1\x7b\xa7\xd1\x68\x72\xea\x3b\x0f\x47\x34\x04\xe1\x7c\xba\xf3\xc1\x2d\x4c\x4b\xe8\x58\x6a\x95\xb0\xb7\x9b\xf2\x3e\x00\xcc\x8b\xfb\xec\xb7\x9c\xb1\xe5\xa6\xac\xaa\x8f\x6f\x76\xc5\xdd\xea\xe3\xb2\xfc\xfd\x01\x8f\x34\x8c\xf1\x1f\xf9\xfd\x2e\xdb\x2c\xdf\xc5\x2e\x74\x23\x90\x8e\xce\xa6\xb5\x54\x29\x63\x9b\xdd\x1a\xa2\x27\xae\x62\xa9\x9c\xe7\x7d\x8f\x29\x74\xa3\xc8\x0b\xee\x19\xcb\x56\x2b\x68\x15\x74\xd6\x27\xae\x43\xca\xd8\x6c\x6b\x88\x6c\xbc\x97\x33\x93\x94\x9d\x80\x6f\xf2\x6c\x75\x9f\x27\x43\x33\xbb\xce\x3e\xf1\x23\xe2\x12\xe9\xb3\xd6\xff\x12\x19\xb2\xf1\x4f\xc9\x6d\x72\x1d\xf3\xde\x74\x3c\xf1\xdc\x26\xed\xf3\xcb\xbc\x9e\x66\x75\x90\xd6\x86\xf7\x67\xb8\xb4\x89\xd0\xc3\x67\xed\x97\x5d\xbe\xee\xfd\xea\x15\xfe\x66\xe1\x51\x04\xc8\xf1\xd3\xf3\xfe\x1b\x59\xe2\x25\x52\x3f\x98\x34\x08\x87\x4f\xc7\xff\x2f\x0a\xce\x7c\x42\xad\x1d\xbe\x6e\x7c\x24\x79\x42\x7c\x04\x39\x93\xef\x06\xdd\x20\x16\xf8\xe5\xf6\x16\xe9\xf9\xf6\x05\xf4\x33\xda\x2c\x57\xde\x1e\x8c\x96\xca\xe3\xaf\xc5\x99\x64\xf1\x0f\xfb\x2f\x00\x00\xff\xff\x64\xca\x0e\x48\xdb\x04\x00\x00") + +func testImagesPetsZookeeperInstallerDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsZookeeperInstallerDockerfile, + "test/images/pets/zookeeper-installer/Dockerfile", + ) +} + +func testImagesPetsZookeeperInstallerDockerfile() (*asset, error) { + bytes, err := testImagesPetsZookeeperInstallerDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/zookeeper-installer/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsZookeeperInstallerMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x4f\xdc\x30\x14\x84\xcf\xf5\xaf\x18\x6d\x38\x80\xb4\x24\x14\x55\x1c\xa8\x50\x95\xee\x6e\x21\x02\x25\x55\x12\x40\x9c\x90\x93\xbc\x4d\x9e\x94\xb5\x5d\xdb\x69\xd8\x7f\x5f\x79\x01\x09\x54\xdf\xfc\x66\x3c\xfe\x3c\x8e\xb0\xd2\x66\x6f\xb9\x1f\x3c\xce\xcf\xbe\x5e\xa0\x1e\x08\xb7\x53\x43\x56\x91\x27\x87\x74\xf2\x83\xb6\x2e\x16\x91\x88\x70\xc7\x2d\x29\x47\x1d\x26\xd5\x91\x85\x1f\x08\xa9\x91\xed\x40\xef\xca\x12\x0f\x64\x1d\x6b\x85\xf3\xf8\x0c\xc7\xc1\xb0\x78\x93\x16\x27\xdf\x45\x84\xbd\x9e\xb0\x93\x7b\x28\xed\x31\x39\x82\x1f\xd8\x61\xcb\x23\x81\x5e\x5a\x32\x1e\xac\xd0\xea\x9d\x19\x59\xaa\x96\x30\xb3\x1f\x0e\xd7\xbc\x85\xc4\x22\xc2\xd3\x5b\x84\x6e\xbc\x64\x05\x89\x56\x9b\x3d\xf4\xf6\xa3\x0f\xd2\x1f\x80\xc3\x1a\xbc\x37\x97\x49\x32\xcf\x73\x2c\x0f\xb0\xb1\xb6\x7d\x32\xbe\x1a\x5d\x72\x97\xad\x36\x79\xb5\x39\x3d\x8f\xcf\x0e\x47\xee\xd5\x48\xce\xc1\xd2\x9f\x89\x2d\x75\x68\xf6\x90\xc6\x8c\xdc\xca\x66\x24\x8c\x72\x86\xb6\x90\xbd\x25\xea\xe0\x75\xe0\x9d\x2d\x7b\x56\xfd\x12\x4e\x6f\xfd\x2c\x2d\x89\x08\x1d\x3b\x6f\xb9\x99\xfc\xa7\xb2\xde\xe9\xd8\x7d\x32\x68\x05\xa9\xb0\x48\x2b\x64\xd5\x02\x3f\xd3\x2a\xab\x96\x22\xc2\x63\x56\xdf\x14\xf7\x35\x1e\xd3\xb2\x4c\xf3\x3a\xdb\x54\x28\x4a\xac\x8a\x7c\x9d\xd5\x59\x91\x57\x28\x7e\x21\xcd\x9f\x70\x9b\xe5\xeb\x25\x88\xfd\x40\x16\xf4\x62\x6c\xe0\xd7\x16\x1c\x6a\xa4\x2e\x74\x56\x11\x7d\x02\xd8\xea\x57\x20\x67\xa8\xe5\x2d\xb7\x18\xa5\xea\x27\xd9\x13\x7a\xfd\x97\xac\x62\xd5\xc3\x90\xdd\xb1\x0b\x9f\xe9\x20\x55\x27\x22\x8c\xbc\x63\x2f\xfd\x61\xf2\xdf\xa3\x62\x21\xaa\x72\x55\xe1\x0a\x86\xc8\x9e\x6e\x39\x18\x44\x5a\xae\x6e\xf0\xe3\x0a\x72\xd7\x5d\x7c\x13\x75\x5a\x5e\x6f\xea\xb0\x3f\x3a\x5e\xdd\x97\xeb\xac\x3c\x11\xd7\xc5\x5d\x9a\x5f\x3f\x3f\x6c\xca\x2a\x2b\xf2\xa0\x8d\xd2\x93\xf3\x21\xed\x79\x9d\x95\x87\x40\xef\x92\x8f\xa9\xf4\x62\xb4\xf5\x42\x34\xac\x2e\xc5\x97\x38\x4e\xe2\x38\xe1\x9d\xec\xe9\x74\xf2\x3c\xc6\x6e\x40\xc3\x0a\x47\xc7\x01\xe8\x44\x88\xf8\xf7\x4d\x91\x3f\x5d\x86\xa1\xf8\x17\x00\x00\xff\xff\x87\xc5\xa6\xda\xf0\x02\x00\x00") + +func testImagesPetsZookeeperInstallerMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsZookeeperInstallerMakefile, + "test/images/pets/zookeeper-installer/Makefile", + ) +} + +func testImagesPetsZookeeperInstallerMakefile() (*asset, error) { + bytes, err := testImagesPetsZookeeperInstallerMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/zookeeper-installer/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsZookeeperInstallerVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesPetsZookeeperInstallerVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsZookeeperInstallerVersion, + "test/images/pets/zookeeper-installer/VERSION", + ) +} + +func testImagesPetsZookeeperInstallerVersion() (*asset, error) { + bytes, err := testImagesPetsZookeeperInstallerVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/zookeeper-installer/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsZookeeperInstallerInstallSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x55\x5f\x6f\xdb\xc6\x13\x7c\xbf\x4f\x31\x21\xf5\x10\x07\x22\xe5\xe4\x97\x5f\x51\xc4\x51\x5a\xd5\x56\x50\x22\xae\x04\x88\x4a\x82\x20\x08\x82\x13\xb9\x14\xb7\xa6\xee\xd8\xbb\xa3\x68\xd7\xf5\x77\x2f\x8e\x92\x6c\xcb\x7f\x82\xa4\x7a\x12\xb9\x73\xbb\x73\x33\xbb\xcb\xf0\x09\x06\x0b\x56\x83\x85\xb4\xa5\x10\x21\x8e\x75\x7d\x61\x78\x59\x3a\xbc\x38\x7c\xfe\x13\xe6\x25\xe1\x5d\xb3\x20\xa3\xc8\x91\xc5\xa8\x71\xa5\x36\x36\x16\xa1\x08\x71\xca\x19\x29\x4b\x39\x1a\x95\x93\x81\x2b\x09\xa3\x5a\x66\x25\xed\x22\x7d\x7c\x20\x63\x59\x2b\xbc\x88\x0f\xf1\xd4\x03\x82\x6d\x28\x38\x38\x12\x21\x2e\x74\x83\x95\xbc\x80\xd2\x0e\x8d\x25\xb8\x92\x2d\x0a\xae\x08\x74\x9e\x51\xed\xc0\x0a\x99\x5e\xd5\x15\x4b\x95\x11\x5a\x76\x65\x57\x66\x9b\x24\x16\x21\x3e\x6d\x53\xe8\x85\x93\xac\x20\x91\xe9\xfa\x02\xba\xb8\x8d\x83\x74\x1d\x61\xff\x2b\x9d\xab\x5f\x0d\x06\x6d\xdb\xc6\xb2\x23\x1b\x6b\xb3\x1c\x54\x1b\xa0\x1d\x9c\x26\xc7\xe3\x49\x3a\x8e\x5e\xc4\x87\xdd\x91\xf7\xaa\x22\x6b\x61\xe8\xaf\x86\x0d\xe5\x58\x5c\x40\xd6\x75\xc5\x99\x5c\x54\x84\x4a\xb6\xd0\x06\x72\x69\x88\x72\x38\xed\xf9\xb6\x86\x1d\xab\x65\x1f\x56\x17\xae\x95\x86\x44\x88\x9c\xad\x33\xbc\x68\xdc\x9e\x58\x3b\x76\x6c\xf7\x00\x5a\x41\x2a\x04\xa3\x14\x49\x1a\xe0\xb7\x51\x9a\xa4\x7d\x11\xe2\x63\x32\xff\x7d\xfa\x7e\x8e\x8f\xa3\xd9\x6c\x34\x99\x27\xe3\x14\xd3\x19\x8e\xa7\x93\x93\x64\x9e\x4c\x27\x29\xa6\x6f\x31\x9a\x7c\xc2\xbb\x64\x72\xd2\x07\xb1\x2b\xc9\x80\xce\x6b\xe3\xf9\x6b\x03\xf6\x32\x52\xee\x35\x4b\x89\xf6\x08\x14\x7a\x43\xc8\xd6\x94\x71\xc1\x19\x2a\xa9\x96\x8d\x5c\x12\x96\x7a\x4d\x46\xb1\x5a\xa2\x26\xb3\x62\xeb\xcd\xb4\x90\x2a\x17\x21\x2a\x5e\xb1\x93\xae\x7b\x73\xef\x52\xb1\xef\xa5\xb9\xb7\x73\xad\xab\x66\xd5\x5d\x52\x5a\xdb\xac\x36\x3a\xd1\x39\x5b\xe7\xf3\xf8\xf7\xb6\x94\x5e\xda\xce\xdd\x5a\x1a\x52\x6e\xe7\x1f\x2b\x76\x22\x44\xa6\x95\x37\x97\x4c\x8c\xc4\xed\x9e\x6c\x87\xf8\x5b\xeb\x33\xa2\x9a\x0c\x58\x59\x27\xab\xaa\x23\x14\x8b\x64\x92\xce\x47\xa7\xa7\x5f\x3f\x4c\x4f\xdf\xff\x31\x1e\x06\x03\x5d\xbb\xe0\x3f\x72\xf2\x75\x6a\x22\x13\x15\xec\xaf\x29\xc2\x8e\xd7\x63\xac\xb4\x8a\xac\x93\xc6\x0d\xb2\x52\xaa\x25\xf9\x40\xc1\xcb\xc6\x74\xc4\x60\x33\xc3\xb5\xb3\xb1\xf8\x38\x9d\xbd\x3b\x49\x66\x37\x04\x5b\x6d\xce\xa2\x9c\x4d\xc7\x72\x64\xbd\x04\xa3\xda\x70\x15\x75\x73\xc8\x16\xff\x8b\x5f\xc6\x3f\xfb\x3f\x9e\x4f\x25\x1d\x59\x07\xeb\x7c\x1f\xf6\xb1\x68\x1c\xd6\x9b\x59\xf3\xc0\xff\xc7\x87\xd0\xaa\x95\xc6\xfb\x24\xab\x4a\xb7\xc8\x2f\x94\x5c\x71\x06\x43\x7b\x84\x62\xf1\x61\x3c\x4b\x93\xe9\x64\x18\x74\xc7\x22\x59\xd5\xa5\x0c\x84\xf0\x3d\xc1\xbe\x9f\x83\xde\xaf\x81\xc8\xb5\xc8\xa4\x25\xf4\xfc\x2b\xe1\xe7\x28\xe2\xe1\xb3\x7f\xa2\x68\xab\x7a\xc4\xca\xe9\xe1\xb3\x83\x2e\x74\x57\xfb\xde\x25\x87\xcf\x86\x57\x41\x17\xb4\x25\x17\xae\xfb\x77\x74\xb4\x49\xd4\x76\x89\x76\xd7\xdf\x25\xb9\xab\xcf\xb7\x93\x6c\x0f\x85\x68\xd4\x99\xd2\xad\x82\xae\xfd\xed\x76\x10\xb2\x32\x13\xb9\x56\x24\x04\x65\xa5\xde\xf5\x8a\xef\xeb\x8d\x1a\x3b\x5f\xe0\xef\x81\xa0\x77\xb9\x5f\xfe\x2a\x10\xab\xb3\x9c\x0d\xa2\xfa\xc1\x60\x56\x63\xb0\xf3\x3d\xb6\xe5\x43\x98\x41\x07\xba\xd5\x46\x0f\x83\xee\xf1\xbb\x6e\xf0\x28\xe8\x5d\x6e\xbd\xba\x0a\xae\x79\xee\x6b\x7d\x87\xe7\xfd\xe0\x1a\x83\x9b\x89\x79\x00\x71\x13\xf5\x74\xbf\x09\x18\x78\xe5\xfc\xe3\x57\x2b\x57\x75\x45\x71\x56\x2c\xbf\xf3\x84\x87\x76\xb3\x38\x3d\x99\xbe\x42\x5a\xea\xa6\xca\xaf\x1b\x74\x6b\xc8\x82\xe0\x78\x33\x98\xbe\xdf\xb7\xcd\xfd\x8b\x48\xde\xa6\xc3\x20\x0e\x60\x48\xe6\x88\x8c\xc4\x6c\x7c\x3a\x1e\xa5\x63\xbc\x7e\xfd\x1a\xb7\x25\x12\x5c\xe0\x33\x7a\x4f\xfd\x0a\xf4\x81\x2d\xee\xf3\xf3\x2f\x57\xc1\x01\xa2\xa5\xc3\x4b\x7c\x39\xf2\xc9\x37\x6d\xd2\x09\xff\x88\xda\xb6\xa9\x6b\x6d\x9c\x7d\x6c\x8a\xfa\x20\x25\x17\x9d\x5f\xec\x6e\xb2\x05\xd6\x49\x95\xcb\x4a\x2b\x1a\xfb\x38\xe5\xc3\x42\x56\x96\x02\xbc\x79\xf3\x23\x52\xdd\x24\xdc\xd6\x3f\xee\x8a\xbf\xe5\x8a\x86\xdf\x9f\x26\xde\x1e\xfe\xd1\xea\x05\xdf\x78\xd5\x6d\x4f\xbf\x36\x51\xca\xec\xac\x0f\x45\x2e\x93\xce\xbf\xc9\xb4\x5a\x93\x62\xbf\xbc\x9d\x46\x29\xd7\x7e\x7b\xdf\x59\xd1\xd7\x1b\x53\x84\x48\xd0\xca\x0d\x56\xae\x35\xe7\x68\xac\x57\x4f\x22\x6b\xac\xd3\xab\xdb\x7b\x7d\xe5\x3f\x44\x7f\x36\xd6\x6d\xbf\x53\x6c\x63\xa4\x7a\xf3\x9d\x67\x17\x8b\xc9\xf1\xb0\xf7\xb4\x2d\x39\x2b\xa1\xb2\x83\x8d\xed\x41\xef\x72\x72\x7c\x15\xe0\xc9\x10\x41\x70\xdf\x66\x7f\xd6\x97\x53\xd9\xe3\x83\xe4\xc1\x9b\x19\xe8\x32\x3d\x04\x29\x58\xfc\x1b\x00\x00\xff\xff\xe4\x56\x7f\xab\x3f\x09\x00\x00") + +func testImagesPetsZookeeperInstallerInstallShBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsZookeeperInstallerInstallSh, + "test/images/pets/zookeeper-installer/install.sh", + ) +} + +func testImagesPetsZookeeperInstallerInstallSh() (*asset, error) { + bytes, err := testImagesPetsZookeeperInstallerInstallShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/zookeeper-installer/install.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPetsZookeeperInstallerOnStartSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x57\x7f\x6f\xdb\x38\x12\xfd\x5f\x9f\xe2\xad\x6c\xa0\x3f\x2e\x96\x93\xf4\xee\x10\xb8\x75\x70\x6e\xe2\xee\x1a\x6d\x93\x45\x9c\x6e\x51\x14\x41\x41\x4b\x63\x8b\x5b\x8a\x54\x49\x2a\xaa\x9b\xf5\x77\x3f\x0c\x25\xd9\x4e\x6e\xbb\x87\x05\x9a\xfc\x63\x49\xe4\x70\xe6\xcd\x9b\x37\xc3\xde\x4f\x18\x2e\xa4\x1e\x2e\x84\xcb\xa3\xa8\x87\x33\x53\xae\xad\x5c\xe5\x1e\xc7\x87\x47\xff\xc6\x75\x4e\x78\x5d\x2d\xc8\x6a\xf2\xe4\x30\xa9\x7c\x6e\xac\x4b\xa2\x5e\xd4\xc3\x1b\x99\x92\x76\x94\xa1\xd2\x19\x59\xf8\x9c\x30\x29\x45\x9a\x53\xf7\xe5\x00\xbf\x91\x75\xd2\x68\x1c\x27\x87\x78\xcc\x0b\xe2\xf6\x53\xfc\xe4\x79\xd4\xc3\xda\x54\x28\xc4\x1a\xda\x78\x54\x8e\xe0\x73\xe9\xb0\x94\x8a\x40\x5f\x53\x2a\x3d\xa4\x46\x6a\x8a\x52\x49\xa1\x53\x42\x2d\x7d\x1e\x8e\x69\x8d\x24\x51\x0f\x1f\x5a\x13\x66\xe1\x85\xd4\x10\x48\x4d\xb9\x86\x59\xee\xaf\x83\xf0\xc1\x61\xfe\xcb\xbd\x2f\x47\xc3\x61\x5d\xd7\x89\x08\xce\x26\xc6\xae\x86\xaa\x59\xe8\x86\x6f\x66\x67\xd3\x8b\xf9\x74\x70\x9c\x1c\x86\x2d\xef\xb4\x22\xe7\x60\xe9\x4b\x25\x2d\x65\x58\xac\x21\xca\x52\xc9\x54\x2c\x14\x41\x89\x1a\xc6\x42\xac\x2c\x51\x06\x6f\xd8\xdf\xda\x4a\x2f\xf5\xea\x00\xce\x2c\x7d\x2d\x2c\x45\x3d\x64\xd2\x79\x2b\x17\x95\xbf\x07\x56\xe7\x9d\x74\xf7\x16\x18\x0d\xa1\x11\x4f\xe6\x98\xcd\x63\xbc\x9c\xcc\x67\xf3\x83\xa8\x87\xf7\xb3\xeb\x5f\x2e\xdf\x5d\xe3\xfd\xe4\xea\x6a\x72\x71\x3d\x9b\xce\x71\x79\x85\xb3\xcb\x8b\xf3\xd9\xf5\xec\xf2\x62\x8e\xcb\x57\x98\x5c\x7c\xc0\xeb\xd9\xc5\xf9\x01\x48\xfa\x9c\x2c\xe8\x6b\x69\xd9\x7f\x63\x21\x19\x46\xca\x18\xb3\x39\xd1\x3d\x07\x96\xa6\x71\xc8\x95\x94\xca\xa5\x4c\xa1\x84\x5e\x55\x62\x45\x58\x99\x5b\xb2\x5a\xea\x15\x4a\xb2\x85\x74\x9c\x4c\x07\xa1\xb3\xa8\x07\x25\x0b\xe9\x85\x0f\x6f\xfe\x27\xa8\x24\x8a\x1c\x79\x0c\xc8\xa0\x94\x25\x2d\x85\x54\xcc\xae\x6b\x4e\xb0\x4b\xad\x2c\x3d\x52\xa3\x97\x72\x55\x59\x72\xf8\x66\xcc\x67\xa2\x92\x2c\x52\x55\x39\x4f\x16\x05\x15\x0b\xb2\x70\xb9\x2c\x83\x7b\xb7\x2d\x91\xcc\x72\xb7\x38\xea\xe1\x74\x8c\x67\xc9\xbf\x92\xc3\x04\x33\x0f\x97\x9b\x4a\x65\x81\x4c\x0b\x62\x3e\x65\x3b\xc6\x18\x3d\x48\x73\xa1\x57\x94\xb8\xbc\x73\x40\xea\x86\x70\xf4\x55\x14\xa5\x0a\x6c\x9a\x38\x3e\x61\x52\x5a\xa9\x06\x81\xff\xd2\xe1\x59\xf2\xcf\xe4\x84\x7f\xb0\x1d\x25\x3c\x39\x0f\xe7\x39\xff\x09\x87\xf4\xd2\xf8\x1c\x43\x53\x7a\x86\x05\x43\x5f\x94\xc3\x5d\x38\xc2\x12\x84\x73\x55\xd1\xd0\x63\x41\xb8\x35\xaa\x2a\xc8\xc1\xe5\xc2\xee\x3b\x58\x0a\x4b\xda\x27\x01\xa3\x90\x91\x42\x78\xf6\x85\x44\x9a\x43\x49\x4d\x8d\xbb\x84\x6c\xad\x45\x21\xd3\x16\xbe\xa6\x5a\xa4\x1b\x45\x3d\x38\xb2\xb7\x64\x93\x17\x47\x58\x08\x0e\x5e\xea\x8c\xbe\x9e\x8e\x5f\x34\xef\x07\x99\x76\x03\x2d\x0a\x3a\x1d\xbd\x28\x89\x2c\x4a\x63\xfd\xe9\xe8\x05\x29\x4a\x39\x89\xcd\xf3\xc7\x91\x35\x8a\x6e\x9e\x7f\x7c\x91\x2a\x49\xda\x87\xb7\x10\x59\xc6\x34\x3a\x1d\xdd\xec\xbf\x3e\x8d\x7a\x78\x70\x58\x07\x53\x73\x64\xf3\x12\x3e\x17\x1e\x85\xf0\x69\x4e\xcd\x57\xc9\xcb\x91\x09\x2f\x32\x69\x87\xc5\x5a\x32\x9d\xf6\x9c\xea\xac\x84\xb3\x8d\x46\x9d\xcb\x34\x07\x7f\x77\x2c\x07\x45\xa5\x65\x2a\x3c\x31\xa2\xa1\xf4\x78\x4d\x55\x66\x9c\x1a\x36\x74\x3f\xa2\x7b\xc6\x02\x29\x98\x4f\x8a\x04\x33\xb6\x5b\x1a\xf5\xd0\x46\x8e\x54\x68\xce\x13\xb3\xd7\x1b\x98\x45\x13\xca\x01\x27\xc8\xcb\x54\x96\x42\x7b\x56\x81\x8c\x96\xa2\x52\x9e\xcf\xfb\x33\xa4\xf8\x54\x53\xb2\x69\xa1\x02\x31\xda\xf5\x8e\x8d\x1e\x26\xe1\xff\xc1\xde\xef\x84\xbd\x07\xa7\x48\x59\x14\x1d\xda\x4d\xa9\xd1\xba\x71\xdf\x45\xd1\xd9\xab\x9f\xc7\xcc\xc2\x1d\xf9\x86\xcc\x10\x7e\x4c\xd2\xe5\x2a\x69\x69\xc3\xeb\x3e\xbd\x9c\xbc\xfe\xcb\xb5\x0b\xf1\x39\x7a\xfb\xe1\xd3\xec\xfc\xd3\xab\xd9\x9b\xe9\xf8\x3e\xa7\x9b\x7c\xfd\x72\x39\xbf\xbe\x98\xbc\x9d\x8e\xfb\x8f\x73\xe3\x3c\xf3\xea\x49\x14\xd5\x39\xb3\xd1\x92\xc8\x30\xb0\x02\x6f\x66\x17\xd3\xe7\xc8\x4c\xc4\xc2\xfb\xeb\x74\x7a\x35\x1f\x3f\x8e\xfb\x77\xe1\xd7\xc7\xff\xdc\x6c\x62\xf4\x79\xc9\x93\x28\x33\x9a\xb8\x96\xce\x8d\x7e\x14\x30\x0c\x51\x2f\xa5\x75\xbe\x53\x02\xc1\xb2\xb3\x4d\x47\x24\x97\xf8\x88\xfe\x5d\x6f\x6b\x0b\x03\xfa\x82\x23\xdc\x3c\xe7\xad\x3a\x9c\xd8\xc3\x7b\x82\x6e\x95\x99\x65\x99\x60\xaa\x8e\x94\x5d\xf1\x2b\xe9\x42\x9d\x35\x76\x1d\xa4\xf6\x06\xbb\xe0\x93\xd6\xd2\x85\x61\xbe\x31\x91\xc3\xae\xae\x69\x09\x55\x8b\x35\x93\x52\xea\x54\x66\x7b\x1d\xaa\x03\x05\x32\x6b\x4c\x50\x9a\x1b\x1c\xe1\x14\x71\xff\x6e\x67\x7e\x13\xef\x3e\xc6\x6d\xfd\x1e\x8d\x3b\x88\x0e\x6f\x36\xa3\xe3\x93\x93\x93\xd1\xb3\x93\x93\x93\xe7\xc7\x47\x27\x47\x71\x63\xe0\xec\xd5\xcf\xed\xce\x1e\xae\x2f\xcf\x2f\x47\xf8\xf6\x79\xde\x54\xb9\xd4\xd2\x4b\xa1\xe4\x37\xda\xd6\xa2\x58\x12\x6a\xb1\x66\x14\x72\xa1\x33\x45\x68\xa4\x30\x70\xb1\xad\xc2\xd6\xd8\x82\x52\xc1\x8d\xd8\x71\xb7\x58\xb3\xcc\x59\x6e\x66\xa8\xa5\x52\x48\x2d\x71\xd5\x09\x68\xaa\xbb\x7d\x07\x78\xf9\xee\x1a\xb2\x69\xb7\x95\x63\x05\x0f\xb6\xb3\xd6\x60\x69\x32\x78\x2a\x4a\x15\xea\x35\xa7\x35\x8a\x30\x5c\x90\xce\x50\x95\x0d\x5e\xc7\x9d\xb1\xd0\x59\xb0\xb0\x92\x96\x70\xa5\x92\x1e\x0b\x2b\xa4\x6e\x01\xfc\x2a\x7d\xb4\x94\x4c\x93\xe9\x2d\xd9\x35\x5c\xb5\x70\xf4\xa5\xe2\x4a\x68\x39\x22\x1d\x73\x87\xb2\x07\x64\x09\x56\x4b\x6b\x0a\xe3\x1b\x2e\x88\xfd\x62\x8e\x1a\xf0\x77\xc8\x72\x79\x6c\xe2\x48\x8e\x0f\xa3\x37\xd3\xc9\xf9\xf4\x6a\xdc\xef\xd8\x1e\xb1\x74\x04\x9d\x92\x1a\xf7\x98\xbc\xa5\xb9\x22\x0f\x39\x96\xff\x38\x0a\x4f\x4c\xd3\x8f\xbc\x92\x37\x6d\x62\x8c\xc7\x78\x1a\xf7\xef\x3a\x7b\x9b\xf8\x29\x6e\xf6\x29\x8b\x86\x7a\xe3\xbe\xdc\x3d\x36\x65\xd6\x58\x68\xdf\x06\x97\xfb\xf2\x3b\x6c\x7a\xc0\xa7\xfe\x9d\xdc\x74\xfb\x77\x74\x1a\x75\xe8\x74\xbc\x7a\x10\x7e\x30\xa3\x1c\xb5\x16\x9b\x40\xfa\x8f\x83\x65\x67\x6f\x2d\xfe\x08\x4d\x6f\xa8\xd3\xbd\xf0\xd8\x14\xfe\xc0\xca\x52\x89\xb7\x26\xa3\x27\x18\x23\xe6\x1f\xa3\x56\x70\xe3\x87\xe1\x02\x2d\xc6\x5b\x23\xed\x87\xa5\xfc\x1b\xb1\xec\xa5\xf3\x2f\xc2\x59\xca\xad\xd0\xec\x3a\x74\x1d\x24\x27\x10\x3d\xb0\xd1\x54\x1e\xac\x70\x10\x7a\x5d\x8b\x75\xd2\x0d\x2d\x05\x09\xed\x82\x7e\x6c\x4b\xbb\x16\x8e\xf7\xb6\x7d\x39\xd0\x82\xd5\x24\x69\xc4\xe9\x27\x0c\x96\x0f\xd3\xb3\x27\x4f\x4c\x67\x1c\xb5\x84\xbe\xe4\xe9\xf6\xfb\xcd\x3d\x88\x97\x27\x0d\xd9\x0d\x39\x7c\xee\x82\x50\x98\x4c\x2e\x25\x65\x3c\x6c\xb6\x92\xa9\x85\x8a\x7a\xb0\xb4\x9d\xae\x82\x02\xba\xa6\xf8\xcb\x92\xd8\x59\x6b\xaa\x55\x23\x53\x71\xb7\x30\x0e\x8d\x55\xe8\x2c\x89\xd2\x12\x3b\xe4\x9a\x9f\x9b\x30\xbb\xfd\x18\xa1\xf9\xa1\x22\xf3\xa3\x04\xe6\x41\x37\xe4\x0b\x51\x17\x68\x18\x18\xd9\xc5\x1d\x06\xef\x69\x2f\x0d\x5d\x83\x69\x86\xe7\x75\xf0\xb1\x9d\x02\xba\x6b\x48\x21\xc2\x4c\x2b\x1c\x94\xd1\x2b\x08\x9e\x52\x78\x3c\xa7\x47\x0e\x5f\x2a\x63\xab\x22\xc1\x24\x4d\x8d\xcd\x18\x06\xdf\xa4\x32\x33\x69\x03\x2b\x03\xd1\xcd\x53\x0e\xbf\x57\xce\xb7\xad\x47\x99\x3a\x1c\x1d\xf5\x70\x6b\x3c\x1d\x40\xfa\x47\x0e\xce\x33\x8c\xbb\xaf\xac\x7c\xa5\x71\xd4\x71\xaa\x4d\xc9\x41\x80\x42\x7a\x7c\xd6\xa6\x0e\x07\x45\x3d\x26\xa5\x0b\xa9\x68\x04\x75\x1b\x00\x4f\xf4\x05\x5f\x78\x96\xd6\x14\x78\x2a\xbd\x7b\xda\x9a\x4b\xa2\xc9\xf9\xf9\xa7\xf9\xf4\xea\x37\xae\xe1\xae\x4a\x5b\x11\x6b\xc5\xeb\x3b\x85\xda\x4e\x41\xa3\x50\xb0\x7f\x9e\x81\x33\x25\x19\xfe\x8e\xa4\x18\x38\xae\xa8\x46\x31\x36\x71\xd8\x89\x01\x8f\x0b\x71\xff\x6e\xe7\xc7\x26\xe6\x54\xfd\x6a\xcd\x6d\xdb\xb2\x6b\x7a\x74\x4b\x10\xa9\xaf\x84\x52\x6b\xfc\x6e\xa4\xa6\x66\xc4\xb0\x95\x0e\xb7\x9b\xf6\xda\x11\xcd\xae\xa7\x57\x13\xbe\x4e\x8d\x0f\xa3\x4a\x7b\xa9\x3a\xc9\x6b\x1d\xd8\x89\x9e\x32\xa9\x50\x2c\x05\xf7\x44\xef\x81\x1f\x38\xc5\x30\xa3\xdb\xa1\xae\x94\x7a\xd2\xb6\x88\x46\xbb\xb7\x07\xdd\xa0\x16\xe1\xc2\x18\xc6\xd2\x66\x8a\xcd\xba\xe3\x98\x56\x6b\x9d\x62\x21\xd2\xcf\xfc\xb0\x3d\x34\x02\x9c\x22\x2a\xc1\x6d\x86\x5b\xce\xce\xf1\xed\xaf\xd0\x82\x9a\x39\x69\xfb\x2e\x4c\x49\xc7\x87\xf7\xc6\xa4\x56\x89\xf6\xf4\xf1\xff\x56\x83\x29\xa3\xff\x06\x00\x00\xff\xff\x55\x87\x8c\x2d\x38\x10\x00\x00") + +func testImagesPetsZookeeperInstallerOnStartShBytes() ([]byte, error) { + return bindataRead( + _testImagesPetsZookeeperInstallerOnStartSh, + "test/images/pets/zookeeper-installer/on-start.sh", + ) +} + +func testImagesPetsZookeeperInstallerOnStartSh() (*asset, error) { + bytes, err := testImagesPetsZookeeperInstallerOnStartShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/pets/zookeeper-installer/on-start.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPortForwardTesterGitignore = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\xc8\x2f\x2a\x49\xcb\x2f\x2a\x4f\x2c\x4a\x29\x49\x2d\x2e\x49\x2d\xe2\x02\x04\x00\x00\xff\xff\x7c\x93\x26\x90\x12\x00\x00\x00") + +func testImagesPortForwardTesterGitignoreBytes() ([]byte, error) { + return bindataRead( + _testImagesPortForwardTesterGitignore, + "test/images/port-forward-tester/.gitignore", + ) +} + +func testImagesPortForwardTesterGitignore() (*asset, error) { + bytes, err := testImagesPortForwardTesterGitignoreBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/port-forward-tester/.gitignore", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPortForwardTesterBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\xcf\xaa\xb3\x30\x10\xc5\xf7\x79\x8a\x90\x95\x96\xcf\xba\x17\x0a\xdf\x7b\x88\x84\x89\x8e\x21\xdc\xa9\x23\x63\xec\xa5\x7d\xfa\x4b\x1a\xef\x1f\x4b\x71\x99\x33\x27\xbf\x73\x26\x99\xa1\xff\x00\x8f\xc5\x80\x23\xac\x14\xed\x2d\x2c\xc1\x05\x0a\xf1\xae\x2f\xba\x35\x75\xfd\x2b\x34\xf3\xea\x28\xf4\xa6\x2b\x95\x22\x86\xa1\x50\x5a\x6b\x6d\xfe\x07\xb6\x0e\x1e\x48\x56\x56\xc2\xc5\x7a\xae\x6b\xcf\xcd\x80\xe3\xd9\x3d\xc8\xfc\xcb\x2e\xcf\xd6\x85\x09\xe4\xfe\x47\xa0\xe0\x24\x2b\xa5\x52\x3f\x86\x8c\x9d\xe0\x8a\xfa\xa2\xcd\xcc\x12\xab\x91\xe5\x13\x64\xa8\x22\x2e\x11\x65\x23\x6c\xb7\x93\xa9\xf1\x6c\xbf\x17\x78\x85\x6e\xe7\x3d\xf5\xad\x3f\x19\x16\xe9\x97\xe7\xe2\x29\x77\x8b\xcd\xa9\x67\xcf\xa6\x7b\x42\xc7\x40\xe8\x85\xd7\xf9\xa5\x69\x7e\xc9\x2a\x21\xf6\x34\x4f\xec\x8a\xd6\x9c\x4e\xa6\x2b\xf3\x20\x82\xcf\x31\xb0\x46\xbe\xc2\x04\x1e\x87\x44\x4f\xb3\xc3\x1f\x90\x70\x83\x88\xc7\x45\x80\xe8\x4d\x89\xd6\x34\xbb\x86\xdd\x71\x93\x52\x7d\x05\x00\x00\xff\xff\x28\x0a\xfa\x9b\x1a\x02\x00\x00") + +func testImagesPortForwardTesterBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesPortForwardTesterBuild, + "test/images/port-forward-tester/BUILD", + ) +} + +func testImagesPortForwardTesterBuild() (*asset, error) { + bytes, err := testImagesPortForwardTesterBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/port-forward-tester/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPortForwardTesterDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6f\x9b\x40\x10\x85\xef\xfb\x2b\x9e\xe0\xd2\x4a\x2e\x4e\x23\xf5\xd2\x9e\xa8\xed\xa8\x28\x29\x54\x86\x34\xb2\xaa\x1e\xd6\x30\xc0\x48\x78\x77\xbb\x3b\x94\xf8\xdf\x57\x38\x8e\x54\xcb\xe1\xf8\xe6\x63\xf6\xdb\xb7\x31\x56\xd6\x1d\x3d\x77\xbd\xe0\xf6\xe6\xe3\x27\x54\x3d\xe1\x7e\xdc\x93\x37\x24\x14\x90\x8e\xd2\x5b\x1f\x12\x15\xab\x18\x0f\x5c\x93\x09\xd4\x60\x34\x0d\x79\x48\x4f\x48\x9d\xae\x7b\x7a\x9d\x2c\xf0\x93\x7c\x60\x6b\x70\x9b\xdc\xe0\xdd\x0c\x44\xe7\x51\xf4\xfe\x8b\x8a\x71\xb4\x23\x0e\xfa\x08\x63\x05\x63\x20\x48\xcf\x01\x2d\x0f\x04\x7a\xae\xc9\x09\xd8\xa0\xb6\x07\x37\xb0\x36\x35\x61\x62\xe9\x4f\xc7\x9c\x97\x24\x2a\xc6\xee\xbc\xc2\xee\x45\xb3\x81\x46\x6d\xdd\x11\xb6\xfd\x9f\x83\x96\x93\xf0\xfc\xf5\x22\xee\xf3\x72\x39\x4d\x53\xa2\x4f\xb2\x89\xf5\xdd\x72\x78\x01\xc3\xf2\x21\x5b\x6d\xf2\x72\xf3\xe1\x36\xb9\x39\xfd\xf2\x68\x06\x0a\x01\x9e\xfe\x8c\xec\xa9\xc1\xfe\x08\xed\xdc\xc0\xb5\xde\x0f\x84\x41\x4f\xb0\x1e\xba\xf3\x44\x0d\xc4\xce\xbe\x93\x67\x61\xd3\x2d\x10\x6c\x2b\x93\xf6\xa4\x62\x34\x1c\xc4\xf3\x7e\x94\x8b\xb2\x5e\xed\x38\x5c\x00\xd6\x40\x1b\x44\x69\x89\xac\x8c\xf0\x35\x2d\xb3\x72\xa1\x62\x3c\x65\xd5\xb7\xe2\xb1\xc2\x53\xba\xdd\xa6\x79\x95\x6d\x4a\x14\x5b\xac\x8a\x7c\x9d\x55\x59\x91\x97\x28\xee\x90\xe6\x3b\xdc\x67\xf9\x7a\x01\x62\xe9\xc9\x83\x9e\x9d\x9f\xfd\xad\x07\xcf\x35\x52\x33\x77\x56\x12\x5d\x08\xb4\xf6\x45\x28\x38\xaa\xb9\xe5\x1a\x83\x36\xdd\xa8\x3b\x42\x67\xff\x92\x37\x6c\x3a\x38\xf2\x07\x0e\xf3\x63\x06\x68\xd3\xa8\x18\x03\x1f\x58\xb4\x9c\x92\xab\x4b\x25\x4a\xdd\x6d\x8b\xef\x08\xb5\xd7\x52\xf7\x2a\x5d\xaf\xe1\xac\x97\xd6\xfa\x49\xfb\x46\x28\x08\xf9\xeb\xe4\x6d\x2e\xe9\xec\x9b\xa1\xda\xe4\xd5\x76\xf7\xa3\xc8\xf2\x0a\xbf\xa2\xe5\x15\x12\xfd\x56\xff\x02\x00\x00\xff\xff\xbd\x68\x34\x86\xd1\x02\x00\x00") + +func testImagesPortForwardTesterDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesPortForwardTesterDockerfile, + "test/images/port-forward-tester/Dockerfile", + ) +} + +func testImagesPortForwardTesterDockerfile() (*asset, error) { + bytes, err := testImagesPortForwardTesterDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/port-forward-tester/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPortForwardTesterMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x4f\xdb\x3e\x14\xc5\x9f\xff\xfe\x14\x47\x0d\x0f\xad\x54\x52\xfe\x68\xe2\x81\x09\x4d\x59\xdb\x41\x04\x4a\xa6\x24\x80\x78\x42\x4e\x72\x9b\x5c\x29\xb5\x3d\xdb\x59\xe8\xb7\x9f\x5c\x40\x5a\x35\xbf\xf9\xde\x73\xcf\xfd\xf9\x38\xc2\x5a\x9b\x83\xe5\xae\xf7\xb8\xbc\xf8\xff\x0a\x55\x4f\xb8\x1f\x6b\xb2\x8a\x3c\x39\x24\xa3\xef\xb5\x75\xb1\x88\x44\x84\x07\x6e\x48\x39\x6a\x31\xaa\x96\x2c\x7c\x4f\x48\x8c\x6c\x7a\xfa\xec\x2c\xf1\x44\xd6\xb1\x56\xb8\x8c\x2f\x30\x0f\x82\xd9\x47\x6b\xb6\xf8\x2a\x22\x1c\xf4\x88\xbd\x3c\x40\x69\x8f\xd1\x11\x7c\xcf\x0e\x3b\x1e\x08\xf4\xd6\x90\xf1\x60\x85\x46\xef\xcd\xc0\x52\x35\x84\x89\x7d\x7f\x5c\xf3\x61\x12\x8b\x08\x2f\x1f\x16\xba\xf6\x92\x15\x24\x1a\x6d\x0e\xd0\xbb\xbf\x75\x90\xfe\x08\x1c\x4e\xef\xbd\xb9\x5e\xad\xa6\x69\x8a\xe5\x11\x36\xd6\xb6\x5b\x0d\xef\x42\xb7\x7a\x48\xd7\xdb\xac\xdc\x9e\x5f\xc6\x17\xc7\x91\x47\x35\x90\x73\xb0\xf4\x6b\x64\x4b\x2d\xea\x03\xa4\x31\x03\x37\xb2\x1e\x08\x83\x9c\xa0\x2d\x64\x67\x89\x5a\x78\x1d\x78\x27\xcb\x9e\x55\xb7\x84\xd3\x3b\x3f\x49\x4b\x22\x42\xcb\xce\x5b\xae\x47\x7f\x12\xd6\x27\x1d\xbb\x13\x81\x56\x90\x0a\xb3\xa4\x44\x5a\xce\xf0\x3d\x29\xd3\x72\x29\x22\x3c\xa7\xd5\x5d\xfe\x58\xe1\x39\x29\x8a\x24\xab\xd2\x6d\x89\xbc\xc0\x3a\xcf\x36\x69\x95\xe6\x59\x89\xfc\x07\x92\xec\x05\xf7\x69\xb6\x59\x82\xd8\xf7\x64\x41\x6f\xc6\x06\x7e\x6d\xc1\x21\x46\x6a\x43\x66\x25\xd1\x09\xc0\x4e\xbf\x03\x39\x43\x0d\xef\xb8\xc1\x20\x55\x37\xca\x8e\xd0\xe9\xdf\x64\x15\xab\x0e\x86\xec\x9e\x5d\xf8\x4c\x07\xa9\x5a\x11\x61\xe0\x3d\x7b\xe9\x8f\x95\x7f\x1e\x15\x0b\x51\x16\xeb\xf2\xc6\x68\xeb\x77\xda\x4e\xd2\xb6\x9e\x9c\x27\x2b\x92\x62\x7d\x87\x6f\x37\x90\xfb\xf6\xea\x8b\xa8\x92\xe2\x76\x5b\x85\xfb\xd9\x7c\xfd\x58\x6c\xd2\x62\x21\x6e\xf3\x87\x24\xbb\x7d\x7d\xda\x16\x65\x9a\x67\xa1\x37\xc8\x30\x1c\x1c\x5f\x37\x69\x81\x20\x56\xda\xb7\x6c\x71\x36\x77\x3d\x0d\x03\xcc\xd4\x2e\x16\x82\xde\xc2\x3e\x21\x6a\x56\xd7\xe2\xbf\x38\x5e\xf1\x5e\x76\x74\x3e\x7a\x1e\x62\xd7\xa3\x66\x85\xb3\x79\xe0\x5a\x08\x11\xff\xbc\xcb\xb3\x97\xeb\x50\x14\x7f\x02\x00\x00\xff\xff\xf2\x15\xa7\xc8\xf7\x02\x00\x00") + +func testImagesPortForwardTesterMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesPortForwardTesterMakefile, + "test/images/port-forward-tester/Makefile", + ) +} + +func testImagesPortForwardTesterMakefile() (*asset, error) { + bytes, err := testImagesPortForwardTesterMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/port-forward-tester/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPortForwardTesterVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesPortForwardTesterVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesPortForwardTesterVersion, + "test/images/port-forward-tester/VERSION", + ) +} + +func testImagesPortForwardTesterVersion() (*asset, error) { + bytes, err := testImagesPortForwardTesterVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/port-forward-tester/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPortForwardTesterPortforwardtesterGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x57\x7f\x73\xdb\xb8\x11\xfd\x5b\xfc\x14\x1b\xce\x64\x4a\xdd\x49\x94\xec\xdc\xcd\xf4\x9c\xba\x1d\xc5\xd2\xf5\xd4\x73\x6d\x8f\xa4\x5c\x7a\xfd\x31\x19\x08\x5c\x92\x18\x83\x00\x03\x2c\xa5\xa8\x1d\xf7\xb3\x77\x16\xa4\x64\x29\xb6\x7b\xf9\x27\xb1\x88\xc5\xdb\xc5\xe2\xed\xe2\xed\xe8\x9b\xe8\xca\xd6\x3b\xa7\x8a\x92\xe0\x7c\x7c\xf6\x3d\xac\x4a\x84\x9f\x9b\x35\x3a\x83\x84\x1e\x26\x0d\x95\xd6\xf9\x34\x8a\xae\x95\x44\xe3\x31\x83\xc6\x64\xe8\x80\x4a\x84\x49\x2d\x64\x89\xd0\xad\x0c\xe0\x17\x74\x5e\x59\x03\xe7\xe9\x18\x12\x36\x88\xbb\xa5\xb8\xff\x36\xda\xd9\x06\x2a\xb1\x03\x63\x09\x1a\x8f\x40\xa5\xf2\x90\x2b\x8d\x80\x9f\x25\xd6\x04\xca\x80\xb4\x55\xad\x95\x30\x12\x61\xab\xa8\x0c\x4e\x3a\x88\x34\xfa\xb5\x03\xb0\x6b\x12\xca\x80\x00\x69\xeb\x1d\xd8\xfc\xd8\x0a\x04\x45\x11\x00\x40\x49\x54\x5f\x8c\x46\xdb\xed\x36\x15\x21\xca\xd4\xba\x62\xa4\x5b\x2b\x3f\xba\x9e\x5f\xcd\x6e\x96\xb3\xe1\x79\x3a\x8e\xa2\xf7\x46\xa3\xf7\xe0\xf0\x53\xa3\x1c\x66\xb0\xde\x81\xa8\x6b\xad\xa4\x58\x6b\x04\x2d\xb6\x60\x1d\x88\xc2\x21\x66\x40\x96\xe3\xdc\x3a\x45\xca\x14\x03\xf0\x36\xa7\xad\x70\x18\x65\xca\x93\x53\xeb\x86\x4e\x12\xb4\x8f\x4a\x79\x38\x36\xb0\x06\x84\x81\x78\xb2\x84\xf9\x32\x86\x77\x93\xe5\x7c\x39\x88\x3e\xcc\x57\x3f\xdd\xbe\x5f\xc1\x87\xc9\x62\x31\xb9\x59\xcd\x67\x4b\xb8\x5d\xc0\xd5\xed\xcd\x74\xbe\x9a\xdf\xde\x2c\xe1\xf6\x47\x98\xdc\xfc\x0a\x3f\xcf\x6f\xa6\x03\x40\x45\x25\x3a\xc0\xcf\xb5\xe3\xd8\xad\x03\xc5\xa9\xc3\x2c\x8d\x96\x88\x27\xce\x73\xdb\x06\xe3\x6b\x94\x2a\x57\x12\xb4\x30\x45\x23\x0a\x84\xc2\x6e\xd0\x19\x65\x0a\xa8\xd1\x55\xca\xf3\xe5\x79\x10\x26\x8b\xb4\xaa\x14\x09\x0a\xbf\x9f\x1c\x27\x8d\xbe\x19\x45\xd1\x68\x04\x13\x20\x65\x76\xb0\x56\x46\xb8\x5d\xeb\x07\x3d\x05\x3c\xeb\x88\x3f\x6c\x85\xcb\x94\x29\xd2\x40\xab\xdc\x6a\x6d\xb7\xbc\x8c\x66\xa3\x9c\x35\x15\x1a\x82\x8d\x70\x8a\x13\xed\x19\x51\x5a\x43\xce\xea\xe0\xad\x85\xfd\x9d\x07\x6d\x0b\x25\x2f\xa2\xd1\x88\x2d\xde\xcd\x6f\xa6\x1f\xef\x6e\x17\x2b\x18\x06\xab\xd5\xd5\x5d\xeb\x8d\x6c\xa0\xd5\xfe\xb4\x5a\x79\x42\x83\x8e\xf7\xcc\xfe\x76\x37\xbb\x5a\xcd\xa6\x1f\xaf\xae\xe7\xb3\x9b\xd5\xc7\xe9\x64\x35\x81\x21\x64\x82\x04\x50\x29\x08\xb6\x4c\xc2\x1a\x65\x40\x71\x28\x51\x6d\x10\x72\x67\xab\x00\x25\xb5\x42\x43\x6f\x03\xf9\xd6\x08\x71\x9c\x32\xe8\xd5\x4f\xef\x6f\x7e\x5e\xc2\x10\x4a\xbb\x85\x4a\x98\x1d\xc8\xb2\x31\xf7\x9e\x19\x19\x90\xb7\x08\xbe\xb4\x8d\xce\xc0\xa3\x09\xcc\x79\x04\x3b\x00\x7c\x5c\xce\xff\x3e\xeb\x40\xb4\x70\x05\x02\x0a\x59\xb6\x50\xfb\xed\x6b\x7c\x34\x9f\xdf\xac\x66\x8b\x5f\x26\xd7\xdd\xe9\x33\xd4\x62\xc7\x8c\x5c\x23\x6d\x11\x4d\x70\x15\x32\x7c\x40\xe9\xf2\x76\x6d\x0b\xa8\xd0\x7b\x51\xa0\x07\xe1\x30\x70\x98\xd0\x70\x5c\x9e\x32\xdb\x10\x88\xf6\x32\x6c\xe3\xc1\x53\xb0\xeb\x8a\xeb\x70\x13\xf8\x19\x65\xc3\xac\x08\x19\x58\xa1\x27\x90\x36\x43\x90\xc2\x80\x43\x72\x0a\x37\x5d\x61\xf3\x45\x0a\x65\xd0\xb5\xf7\xc7\xa4\x82\x8d\xd0\x2a\x13\x84\x6d\xce\x19\xb8\x4d\x3a\x66\x8c\xb6\xc6\x52\x6c\x14\x13\xd9\x03\x89\xfb\xc0\x22\x2d\x24\xa6\x51\x2d\xe4\x3d\xd3\xb5\x12\xca\x44\x91\xaa\xc2\x75\x27\x51\x2f\xce\x2b\x8a\xa3\x5e\x6c\x30\xfc\x67\x3d\xff\xeb\xc9\x49\x6b\x36\xdd\x9f\xca\x14\xe1\x2b\xa9\x0a\xe3\xa8\x1f\x45\x79\x63\x24\x14\x48\x33\xb3\x99\x1b\x4a\x8c\xa8\x10\x5a\xbb\x3e\x28\x43\xf0\x9f\xa8\xe7\xe1\xe2\x12\xac\x4f\xff\x8c\x84\x66\x13\x4c\xfa\x51\x6f\x23\x74\x83\x03\x40\xe7\x78\xb9\xf3\x92\x4e\xc8\xaa\xc4\xf7\xa3\x9e\xca\xc3\xd2\xab\x4b\x30\x4a\x33\x4a\x2f\xaf\x28\xbd\x73\xca\x50\x9e\xc4\x33\xe7\xac\x83\x5a\x38\xcf\xc7\x7a\xed\xe1\xf5\xa7\x0b\x78\xbd\xf9\xa7\x89\x07\xc0\xf8\x03\xf0\x01\xba\x1f\xf5\x7a\xd6\xa7\xb3\xcf\x8a\x92\xb3\x7e\xd4\x7b\x88\x7a\x0e\xa9\x71\x06\x82\xfb\xe8\x21\x94\x1d\x89\x7b\x34\x2d\x3d\x0d\xd2\x88\x5b\xdd\xc8\xa3\xdb\xa0\x4b\x0b\xbb\xaf\x13\xe7\x69\xb2\xb1\x2a\xe3\x66\x3a\x6d\x59\xe2\x43\xce\x45\x65\x1b\x43\xe1\x6a\x55\x85\x81\xa5\x1a\xb1\x06\x91\x13\x3a\x90\xda\x86\x18\xa9\x0c\xa4\x63\x92\x20\x78\x95\x21\x6f\x10\xa1\xda\xa4\x35\x06\x25\xb3\x00\xd6\x98\x5b\x87\xc7\x9b\x00\x0d\x29\x87\xe0\xad\xbc\x47\x0a\x34\x79\xb7\x6b\x3d\x84\x86\xb9\x45\x50\x46\x3a\x14\xbe\x6d\x52\xb2\xe4\x00\xfd\x23\x25\xda\xfa\x00\x8f\x4c\xbf\xc6\xc1\x8f\xf3\x1b\x06\x61\xfe\xd4\xce\x4a\xf4\x1e\x3d\x28\xe2\xa7\xc3\x08\xdd\x56\x5a\x17\x06\x95\xb8\xdb\x1b\xb5\x1d\xaf\x59\x7b\xfc\xd4\x30\xde\x62\xb9\x62\x98\x90\xb4\x7d\xb8\xe2\xf8\x28\xe1\xbd\xb9\x37\x76\x6b\xa0\x31\x0e\x45\x16\xa0\x5b\x9e\x33\xa1\x17\xcb\x15\x07\x55\x79\x2e\x18\x2b\x65\xe3\xa0\xb2\x9e\xf4\x8e\xbb\xf9\xbb\xe5\x14\xfc\xce\x13\x56\x3e\x85\x64\x62\x32\xf8\xa0\x4c\x66\xb7\xfe\x4f\xfd\x03\x00\x67\x9b\xab\x4c\x79\xf0\xb6\xc2\x2d\x1f\x58\xb8\xb5\x22\xc7\xcd\x33\xf9\xaf\x16\x84\x46\xee\x40\x38\xdb\x70\xbb\x28\x91\xf9\x6f\x90\xfa\x69\x24\xad\xf1\xf4\xcc\x95\x5e\xc2\xf7\xe3\x31\x7c\x13\xb0\xd3\xbf\x2a\xad\x95\x47\x69\x4d\xd6\xf1\x9c\x0b\x26\xe9\x33\x1b\xd7\xca\x64\x93\x2c\x0b\x6f\xc5\x09\xbb\xe3\xd0\x4f\x27\xd3\xe9\x62\xb6\x5c\xc6\x2d\x91\x8f\x8d\x2f\x2f\x21\x8e\x03\x9f\x4f\xbe\x42\xac\xad\x14\xba\xb4\x9e\x4b\xef\xa1\x75\x70\xc7\x75\xf9\x0c\x3a\x77\x6b\x86\x16\x59\xe6\x0e\x15\x64\x90\xd2\x05\x7a\xab\x37\xb8\xba\xba\x63\xe0\x24\x26\x59\x73\x41\x20\xa5\x7f\xb1\xca\xfc\x64\x3d\x31\x64\x72\xe4\x79\x00\x7b\x47\xfd\xaf\x2c\x3a\x17\x7c\x28\x53\x1c\x0a\xee\xf9\x3a\xdb\xbf\x17\x27\x01\x5e\x87\x8f\xab\xab\xbb\x7d\x6c\x7c\x84\xaf\x74\xdc\x02\xfe\xa6\xe3\xa8\xc7\x24\x3c\x78\xdd\x87\x91\x4e\x24\x8b\x22\x76\xfd\x95\xfe\x44\xd8\xc0\xbc\x7e\x64\xf5\x6f\xb9\x3e\xa0\x68\x93\xc4\xad\x47\xcc\xf6\x25\xf8\x08\x13\xf7\xa3\xa8\xb7\xef\xd5\x57\x61\x75\xca\x75\x77\x7a\xd7\xcf\xbd\xb2\x1d\xa3\x34\x9a\xe4\xe9\xfe\x3e\xfc\x11\xc6\x2d\xb7\x9a\x9c\xc1\x2a\x71\x8f\xc9\x3f\xfe\xb5\xde\x11\x0e\x5e\xda\xc3\xc7\xe0\xf2\x3c\x64\x8c\xc3\x4c\x17\x28\xb2\x64\xdd\xe4\xbc\xaa\x72\x08\xf5\xfb\xea\xf2\x45\xbf\xec\xf3\x34\x85\x9d\x51\xfb\xfe\x8b\x0c\x5e\xb3\x0c\x64\x01\xdc\x75\x0c\xde\x3b\x80\x75\x43\x50\x58\xe2\x55\x65\x3c\xa1\xc8\x52\x0e\xe3\xb2\xcb\xf2\x0b\xee\x06\x70\x08\x98\xe3\x3b\xdc\xc2\x39\xff\x7a\x68\x23\x7e\x26\xbb\xaf\x2e\xbb\x97\x29\x1c\xec\xa5\x98\x1f\x23\xfe\x74\x14\xdf\xa7\x93\xb8\x9e\x82\x0f\x8e\xa1\x9f\x46\xf6\xe6\x38\xb2\x53\xe2\x9d\x84\xc0\x69\x67\x83\x2f\x79\xf6\x70\xcc\x50\xe6\xd6\xa2\xd5\x54\xd9\x21\x94\x3d\xc9\xb8\xc9\xc6\xfb\x42\x68\xf5\xd3\xc5\xe5\xd1\x03\x1d\xb7\x32\x8b\x4d\xc2\xf2\x52\xfd\x1b\x9f\xb3\x08\x3a\xea\x60\x35\x37\x84\x6e\x23\xf4\xb3\x96\x7b\x09\x15\x58\xdd\xa6\x61\xcf\xe6\x4e\x31\xa4\x0b\xac\x51\x50\x12\x7f\x8e\x07\x70\x70\xdb\x8f\x7a\x59\x67\xd7\x72\x34\x79\xdc\xcc\x50\xac\x3c\x15\xaf\x8e\xdf\x82\x82\x3f\x74\x72\xf0\x2d\xa8\x6f\xbf\x0d\x99\xeb\x04\xd7\x29\x71\x3f\xf0\x03\x9b\x64\x01\x22\xa4\x7b\x2f\xcb\x5e\x5d\x3e\x7a\xfe\xff\x7c\x6d\xdf\xe8\x97\x09\xbb\x75\xb6\x5d\x7f\x8e\xb2\x07\x1f\x03\x38\x8e\xef\x84\x0d\xdf\x7d\x25\x1b\xc2\x59\x5e\xa2\x83\xca\x41\x7d\x7b\x76\x48\x4b\xbb\x3b\xbc\x5b\x4b\x16\x07\x49\xf8\x73\xda\xb8\x30\x74\x24\x27\xb7\xd8\x7f\xe6\x85\xeb\x60\x9f\x34\xb1\x65\xd9\x50\x68\x82\x19\xbf\xe4\x5f\xb4\xb0\xd1\x08\x3c\x12\x68\x65\x0a\x9e\x68\xba\x07\x99\x2c\xe4\xba\xf1\x25\xac\x9b\x3c\x47\xe7\xd3\xf6\xbd\xee\xe4\x92\xcd\x73\x25\x95\xd0\xb0\x15\x3b\xee\xb1\x36\x0c\x34\x7b\x35\x5f\x58\x10\xb5\x82\xcc\x4a\x9f\xc2\xbb\x86\x82\x0f\x9e\xcc\x30\x68\xec\x76\x9c\xd9\xf0\x58\xcc\x5a\x45\x79\xd9\x74\x43\xd6\xb6\xc4\x30\xc0\x05\xb1\x1c\xc4\x1d\x94\x82\x67\xaf\x1d\x0f\x72\x42\x12\xcb\x0a\x16\x18\x2c\x02\x28\xb7\xae\xf2\x01\x3b\xe1\x11\x99\xa1\x59\xf5\xf9\x8b\xd1\x88\xf5\xb7\xc3\x8d\x42\x1e\x74\x6b\x5f\x5b\x4a\xa5\xad\x46\x3f\x7c\xff\xe6\x7c\x3c\xfe\xee\x4d\x3f\x6d\x1f\x98\x74\x89\x74\x1d\xce\x9d\x0c\xcf\xba\x5c\xfc\x18\x4e\x1d\x44\xd7\xa3\x0e\x92\x1a\x85\xd1\xbb\xc1\xd1\xb4\xb6\x77\xb5\xd6\xb6\x48\x4d\x88\x5b\x8b\xb5\x4f\x8d\x1e\x09\x47\x4a\x6a\xf4\xa3\xf3\xf1\xf8\x87\xd1\xf8\x6c\x74\xf6\xfb\x11\x95\x38\x6c\x34\xa9\x4a\x10\x0e\xbd\xfd\xd8\xa6\x7b\x58\x8b\x02\x87\xd6\x0d\xb7\xe5\x6e\xa8\xfc\xb0\xda\x0d\x49\xd6\x43\x63\x69\xe8\x50\x87\x09\xf0\x22\x44\x75\x96\x06\x81\x86\x1d\xaf\x4b\xa1\x73\xd6\x9e\xc7\x52\xad\x54\xb2\x0c\x93\x8e\x07\xc1\x02\x11\x78\x42\xc0\x36\xf9\xe7\x29\x14\x3c\xbd\xed\x75\xa4\xad\xb0\x15\xba\x47\x93\x1d\x1f\x99\x75\x25\xdb\xbf\xd9\xbb\x6b\xf3\x50\xd5\x1a\xe9\x38\x21\x5d\xfa\xae\xd8\xa6\x2d\xd6\x7e\x74\xcc\xdb\x27\xa2\xac\x7f\xbc\x23\xe9\x7f\x49\xd0\xa9\x35\x18\xf7\xa3\x87\xe8\x7f\x01\x00\x00\xff\xff\x5b\x12\xa6\xd0\x7b\x11\x00\x00") + +func testImagesPortForwardTesterPortforwardtesterGoBytes() ([]byte, error) { + return bindataRead( + _testImagesPortForwardTesterPortforwardtesterGo, + "test/images/port-forward-tester/portforwardtester.go", + ) +} + +func testImagesPortForwardTesterPortforwardtesterGo() (*asset, error) { + bytes, err := testImagesPortForwardTesterPortforwardtesterGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/port-forward-tester/portforwardtester.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPorterGitignore = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2a\xc8\x2f\x2a\x49\x2d\xe2\xd2\x2b\x49\x4c\xe7\x02\x04\x00\x00\xff\xff\x65\xbd\xf7\x98\x0c\x00\x00\x00") + +func testImagesPorterGitignoreBytes() ([]byte, error) { + return bindataRead( + _testImagesPorterGitignore, + "test/images/porter/.gitignore", + ) +} + +func testImagesPorterGitignore() (*asset, error) { + bytes, err := testImagesPorterGitignoreBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/porter/.gitignore", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPorterBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xcd\xaa\xb3\x30\x10\x86\xf7\xb9\x8a\x90\x95\x96\xef\xab\x7b\xa1\x70\xee\x43\x24\x4c\x74\x1c\x86\x33\x75\x24\xc6\x42\x7b\xf5\x07\x1b\xcf\x8f\xa5\xb8\xf4\x9d\x77\x1e\x9f\xcc\x04\xdd\x27\x10\x16\x3d\x0e\xb0\x48\xf2\x37\x9e\x39\xb0\x70\xba\xdb\x8b\x6d\x5c\x55\xfd\x06\xf5\xb4\x04\xe1\xce\xb5\xa5\x31\xa2\xd0\x17\xc6\x5a\x6b\xdd\x07\xab\x0f\xf0\x40\xf1\x71\x11\x9c\x3d\x69\x55\x91\xd6\x3d\x0e\xe7\xf0\x10\xf7\x2f\xb7\x48\x7d\xe0\x11\xe2\xfd\x4f\x20\x1c\x62\x4e\x4a\x63\x7e\x0a\x19\x3b\xc2\x15\xed\xc5\xba\x49\x63\xc2\xb8\x2d\x6d\x0b\x6b\x5e\x93\xfa\x6f\xe7\x57\xce\xf6\xbd\x07\xbd\xed\xaf\x85\x39\x76\xf3\xf3\xad\xf9\x57\x67\x52\xd7\x3e\x49\x03\x0b\x52\xd4\x65\x7a\x31\xca\x17\xfb\xbf\xee\xed\x11\x24\x1a\x8a\xc6\x9d\x4e\xae\x2d\xf3\x20\x01\x65\x36\x2c\x49\xaf\x30\x02\x61\xbf\xd2\xd7\xd9\xe1\xa5\x23\xdf\x20\xe1\xb1\x08\x88\xbc\x91\x68\x5c\xbd\x33\x6c\x8f\x4d\x4a\xf3\x15\x00\x00\xff\xff\xb1\x98\xad\x09\x02\x02\x00\x00") + +func testImagesPorterBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesPorterBuild, + "test/images/porter/BUILD", + ) +} + +func testImagesPorterBuild() (*asset, error) { + bytes, err := testImagesPorterBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/porter/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPorterDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xc1\x6e\xdb\x3c\x10\x84\xef\x7c\x8a\x81\x75\xf9\x7f\xc0\x95\xd3\x1c\x7a\x68\x4f\x6a\xec\xa0\x42\x52\xa9\xb0\x94\x06\x41\xd1\x03\x4d\xad\xa5\x45\x65\x92\x25\x57\x55\xf4\xf6\x85\x14\x07\xa8\x5b\x5e\x88\xdd\x19\x2e\x3f\x0e\x13\xdc\x38\x3f\x05\x6e\x3b\xc1\xf5\xd5\xdb\x77\xa8\x3b\xc2\xdd\x70\xa0\x60\x49\x28\x22\x1b\xa4\x73\x21\xa6\x2a\x51\x09\xee\xd9\x90\x8d\xd4\x60\xb0\x0d\x05\x48\x47\xc8\xbc\x36\x1d\xbd\x2a\x6b\x7c\xa5\x10\xd9\x59\x5c\xa7\x57\xf8\x6f\x36\xac\xce\xd2\xea\xff\x0f\x2a\xc1\xe4\x06\x9c\xf4\x04\xeb\x04\x43\x24\x48\xc7\x11\x47\xee\x09\xf4\x6c\xc8\x0b\xd8\xc2\xb8\x93\xef\x59\x5b\x43\x18\x59\xba\xe5\x9a\xf3\x90\x54\x25\x78\x3a\x8f\x70\x07\xd1\x6c\xa1\x61\x9c\x9f\xe0\x8e\x7f\xfa\xa0\x65\x01\x9e\x57\x27\xe2\xdf\x6f\x36\xe3\x38\xa6\x7a\x81\x4d\x5d\x68\x37\xfd\x8b\x31\x6e\xee\xf3\x9b\x5d\x51\xed\xde\x5c\xa7\x57\xcb\x91\x07\xdb\x53\x8c\x08\xf4\x73\xe0\x40\x0d\x0e\x13\xb4\xf7\x3d\x1b\x7d\xe8\x09\xbd\x1e\xe1\x02\x74\x1b\x88\x1a\x88\x9b\x79\xc7\xc0\xc2\xb6\x5d\x23\xba\xa3\x8c\x3a\x90\x4a\xd0\x70\x94\xc0\x87\x41\x2e\xc2\x7a\xa5\xe3\x78\x61\x70\x16\xda\x62\x95\x55\xc8\xab\x15\x3e\x66\x55\x5e\xad\x55\x82\xc7\xbc\xfe\x54\x3e\xd4\x78\xcc\xf6\xfb\xac\xa8\xf3\x5d\x85\x72\x8f\x9b\xb2\xd8\xe6\x75\x5e\x16\x15\xca\x5b\x64\xc5\x13\xee\xf2\x62\xbb\x06\xb1\x74\x14\x40\xcf\x3e\xcc\xfc\x2e\x80\xe7\x18\xa9\x99\x33\xab\x88\x2e\x00\x8e\xee\x05\x28\x7a\x32\x7c\x64\x83\x5e\xdb\x76\xd0\x2d\xa1\x75\xbf\x28\x58\xb6\x2d\x3c\x85\x13\xc7\xf9\x33\x23\xb4\x6d\x54\x82\x9e\x4f\x2c\x5a\x96\xce\x3f\x8f\x4a\x95\xba\xdd\x97\x9f\x11\x4d\xd0\x62\x3a\x95\x6d\xb7\xe8\x9d\xd1\x7d\xe7\xa2\xa4\x26\xc8\x65\xf5\x97\xfe\x83\xa6\xcb\x6a\xd1\xbd\x0b\x42\xe1\xbc\xa9\x5d\x51\xef\x9f\xbe\x94\x79\x51\xe3\xdb\x6a\xf3\xd2\x5c\x7d\x57\xbf\x03\x00\x00\xff\xff\x3e\x28\xa0\x11\xc2\x02\x00\x00") + +func testImagesPorterDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesPorterDockerfile, + "test/images/porter/Dockerfile", + ) +} + +func testImagesPorterDockerfile() (*asset, error) { + bytes, err := testImagesPorterDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/porter/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPorterMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x4f\xdb\x3e\x14\xc5\x9f\xff\xfe\x14\x47\x0d\x0f\xad\x54\x52\xfe\x68\xe2\x81\x09\x4d\x59\xdb\x41\x04\x4a\xa6\x24\x80\x78\x42\x4e\x72\x9b\x5c\x29\xb5\x3d\xdb\x59\xe8\xb7\x9f\x5c\x40\x5a\xb5\xbc\xe5\x9e\xe3\x73\x7f\x3e\x8e\xb0\xd6\xe6\x60\xb9\xeb\x3d\x2e\x2f\xfe\xbf\x42\xd5\x13\xee\xc7\x9a\xac\x22\x4f\x0e\xc9\xe8\x7b\x6d\x5d\x2c\x22\x11\xe1\x81\x1b\x52\x8e\x5a\x8c\xaa\x25\x0b\xdf\x13\x12\x23\x9b\x9e\x3e\x95\x25\x9e\xc8\x3a\xd6\x0a\x97\xf1\x05\xe6\xc1\x30\xfb\x90\x66\x8b\xaf\x22\xc2\x41\x8f\xd8\xcb\x03\x94\xf6\x18\x1d\xc1\xf7\xec\xb0\xe3\x81\x40\x6f\x0d\x19\x0f\x56\x68\xf4\xde\x0c\x2c\x55\x43\x98\xd8\xf7\xc7\x35\x1f\x21\xb1\x88\xf0\xf2\x11\xa1\x6b\x2f\x59\x41\xa2\xd1\xe6\x00\xbd\xfb\xdb\x07\xe9\x8f\xc0\xe1\xeb\xbd\x37\xd7\xab\xd5\x34\x4d\xb1\x3c\xc2\xc6\xda\x76\xab\xe1\xdd\xe8\x56\x0f\xe9\x7a\x9b\x95\xdb\xf3\xcb\xf8\xe2\x78\xe4\x51\x0d\xe4\x1c\x2c\xfd\x1a\xd9\x52\x8b\xfa\x00\x69\xcc\xc0\x8d\xac\x07\xc2\x20\x27\x68\x0b\xd9\x59\xa2\x16\x5e\x07\xde\xc9\xb2\x67\xd5\x2d\xe1\xf4\xce\x4f\xd2\x92\x88\xd0\xb2\xf3\x96\xeb\xd1\x9f\x94\xf5\x49\xc7\xee\xc4\xa0\x15\xa4\xc2\x2c\x29\x91\x96\x33\x7c\x4f\xca\xb4\x5c\x8a\x08\xcf\x69\x75\x97\x3f\x56\x78\x4e\x8a\x22\xc9\xaa\x74\x5b\x22\x2f\xb0\xce\xb3\x4d\x5a\xa5\x79\x56\x22\xff\x81\x24\x7b\xc1\x7d\x9a\x6d\x96\x20\xf6\x3d\x59\xd0\x9b\xb1\x81\x5f\x5b\x70\xa8\x91\xda\xd0\x59\x49\x74\x02\xb0\xd3\xef\x40\xce\x50\xc3\x3b\x6e\x30\x48\xd5\x8d\xb2\x23\x74\xfa\x37\x59\xc5\xaa\x83\x21\xbb\x67\x17\x1e\xd3\x41\xaa\x56\x44\x18\x78\xcf\x5e\xfa\xe3\xe4\x9f\x4b\xc5\x42\x94\xc5\xba\xbc\x31\xda\x7a\xb2\x22\x29\xd6\x77\xf8\x76\x03\xb9\x6f\xaf\xbe\x88\x2a\x29\x6e\xb7\x55\xf8\x3f\x9b\xaf\x1f\x8b\x4d\x5a\x2c\xc4\x6d\xfe\x90\x64\xb7\xaf\x4f\xdb\xa2\x4c\xf3\x2c\x68\x83\xf4\xe4\x7c\x88\x79\xdd\xa4\x05\x82\x59\x69\xdf\xb2\xc5\xd9\xdc\xf5\x34\x0c\x30\x53\xbb\x58\x08\x7a\x0b\x4b\x84\xa8\x59\x5d\x8b\xff\xe2\x78\xc5\x7b\xd9\xd1\xf9\xe8\x79\x88\x5d\x8f\x9a\x15\xce\xe6\x01\x66\x21\x44\xfc\xf3\x2e\xcf\x5e\xae\xc3\x50\xfc\x09\x00\x00\xff\xff\xac\x29\xe8\xdb\xec\x02\x00\x00") + +func testImagesPorterMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesPorterMakefile, + "test/images/porter/Makefile", + ) +} + +func testImagesPorterMakefile() (*asset, error) { + bytes, err := testImagesPorterMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/porter/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPorterVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesPorterVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesPorterVersion, + "test/images/porter/VERSION", + ) +} + +func testImagesPorterVersion() (*asset, error) { + bytes, err := testImagesPorterVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/porter/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPorterLocalhostCrt = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x94\x4b\xaf\xba\x48\x1b\xc4\xf7\x7c\x8a\x77\x6f\xde\x78\x01\x01\x17\xb3\x78\x9a\x6e\x6e\xd2\x4a\x23\x08\xb2\xa3\x3d\x02\xc2\x01\x14\x90\x56\x3e\xfd\xe4\x7f\x26\x99\x4c\xe6\x52\xcb\xa7\x92\x7a\x16\xf5\x4b\xfd\xff\x97\x10\xb1\x9c\xc3\xff\x0c\x12\x84\x8e\xe9\x18\x10\x92\x9f\xab\x44\x1d\x07\x5b\xa1\x61\x40\x61\x15\x20\x1c\x04\x85\x13\xc0\x11\xe0\xb5\xd9\xbe\xf1\xf0\xc9\xca\x43\x8a\x4e\xc9\x10\xc5\xe5\x20\x30\xbb\xb8\xfb\x2e\x75\xca\xe9\x7a\x00\x46\x3c\xc4\x40\x48\xa4\x22\x8c\x82\x62\xc1\x3a\x22\x46\x49\x6d\x16\x1f\xc6\xf4\x84\x30\x9f\xa1\x30\xc5\x4a\xa6\x18\xde\x14\x13\x41\x31\x08\x8a\x51\x66\x81\xfe\xa1\xb8\x58\x51\x4c\x3e\xc7\x90\x6c\xa4\x1f\xc3\xec\xc4\x7f\x07\x19\x06\x9c\x9c\xbf\x7f\x47\x88\x01\x2e\x0a\xe2\x4b\x80\x0d\x03\x58\x67\x14\x05\x41\xe0\xca\xbc\x6b\xf4\xd8\xb6\xcc\xd0\xe2\x64\xb8\x6d\x6a\x95\x97\xc0\xde\x55\xfb\x76\xa7\xef\x95\xbc\xc0\x6d\xd1\xb7\x3d\x0f\xa3\xe4\xa5\xce\x62\x5d\x2f\xb9\xd4\xd6\xeb\x75\x6a\xe7\x4e\xea\x3f\x5a\xab\xfb\x9c\x48\x7c\xf1\x9e\x36\xba\x07\x77\x3a\x59\x22\x28\x2c\x78\xc9\x56\x3f\xe6\x72\x93\xdf\x9c\xb6\x1a\xd6\xd9\x2d\x31\x6f\x8f\x2c\xb9\x6a\xfb\xa0\x51\xb8\x34\x2f\x73\x21\x03\x12\x93\xcb\x76\xbd\x2b\x76\x8b\x84\xeb\x73\xfa\x44\xd1\xa3\xf3\xd2\xb9\xaa\x22\x1c\xd6\x9b\xcd\xe3\x00\xa7\x5d\x42\xab\xe0\x74\x8c\x46\x6f\xf6\xc9\xc5\xde\xe6\x9e\xba\x26\x93\xe4\x6a\x26\xd6\x46\x71\x6f\xb3\x88\xa7\x10\xb1\xa9\x58\xb7\x83\x47\xbc\x51\xd7\xc6\x05\xef\x76\xaa\xf2\x50\x1f\x8b\x59\xd3\x0a\x35\x44\x99\xea\xfb\xb7\xf9\xdc\x7e\xcd\x4d\x20\x9b\xab\xb3\x6f\x9f\xa5\xc0\xf3\x8f\x5f\xbb\xe2\x29\x78\x67\x5e\xcb\xb2\x93\x67\x55\x4f\x0f\x5c\xe9\xdb\x7d\xb1\xce\x3f\xfc\x95\x1d\xfd\xa4\x11\x68\x8f\x83\x3a\x63\x14\xe6\xef\x16\x9f\x6f\x1b\x45\xed\xdf\xea\x51\x15\x85\xc4\xdd\xfd\xf4\xce\x92\xe9\x7e\xab\xae\x7b\xea\xbf\xd2\x15\xc1\xd5\x7b\xee\x62\xbb\x6a\x4b\xb5\xeb\xee\xc7\xc8\x00\x41\x00\xb2\x43\x47\xad\x8b\xc0\xc5\x05\x9f\x83\x95\x0f\xcc\x5e\x22\x60\x58\x82\x62\x5f\x53\x44\x7f\xd5\xf7\xe5\x32\x46\x29\x74\x96\x61\x0c\x16\xb0\xc8\x44\x82\x22\x0a\xfa\x8f\x47\x04\x41\x4b\xc1\x4c\x0a\x14\x41\xae\x0b\xef\x8f\xa0\x40\x42\xc6\x55\xb8\x17\xc7\x4b\x93\xb2\xe4\x09\x1a\xd2\xd3\xb6\xe2\x9b\x8d\x8d\x6c\x1d\x00\x2c\x9b\xc0\xbf\x89\xfc\xc9\x85\xf4\x17\x2c\xf1\x0f\x0b\x56\x22\xda\xe5\x34\x31\x58\xd9\x98\xc7\x7a\xdc\x86\x10\x3f\xa6\x19\xf2\xec\xa8\x56\xaa\x80\x01\x0b\x75\xa0\xe3\x95\xe1\x6e\xfa\xbc\x6a\x89\xc9\xa6\x51\xa7\x2e\x62\x7a\xb6\x6e\x8c\x6f\x64\x25\xd3\x2d\xce\x70\x2f\xf3\x48\x97\x65\xe7\xcc\x1c\x14\x4e\x83\xd7\x78\x0d\xdb\x8d\x9b\x4b\xdf\x8f\x9c\xc4\x9f\xbc\x18\xe6\xa7\xb5\x57\x0c\x4d\xaa\x1d\xfe\x89\x92\x9b\x46\xcc\xbb\x1b\xfb\x1a\xac\xe2\xa7\xb8\xdb\xe3\x91\xf2\x5a\xaf\x74\x45\x5f\x1a\xcd\x7d\xef\x28\x78\xfb\x58\x5c\x8a\xe4\x5c\xbc\x7a\x7f\xed\xb0\xed\xa8\xed\xd8\x32\xc5\x1f\x2c\x11\x77\x5c\xd8\xa3\x3b\xf5\x46\xb7\x4b\xed\xec\xda\x18\xba\xba\xbd\x75\x6e\x6a\xa9\x83\xb5\x89\xbe\x55\xc5\x71\xc6\xe0\x82\x53\xde\x6f\xb7\xd1\xfe\x7c\x77\xf5\x5e\x5f\x33\x55\x6b\x0f\xc6\xb4\xd4\xb1\x94\x2b\xcb\xfd\x26\x5f\x34\x77\xff\x9c\x85\xd4\x83\xef\x6f\x75\x36\x42\x4d\x77\x16\xf2\xfd\xe4\xfb\x47\xf9\x63\x34\xde\x72\x13\x7d\x3d\x94\x6c\xbd\x72\x9f\x7d\x3e\x2d\x4a\x9e\xeb\xa3\x82\xa3\xeb\xf3\x7b\x96\x94\xc4\xec\x23\x7b\x78\x04\x38\xbd\x5a\x89\xe9\x78\x2d\x0c\x87\xe3\x23\xdf\x6b\x51\x13\x45\x2b\x51\x73\xb3\x28\x6b\xe7\x37\xe9\x67\x3e\xc8\x01\xff\x73\x52\x7e\x0f\x00\x00\xff\xff\x75\xaa\xd9\x75\x6f\x04\x00\x00") + +func testImagesPorterLocalhostCrtBytes() ([]byte, error) { + return bindataRead( + _testImagesPorterLocalhostCrt, + "test/images/porter/localhost.crt", + ) +} + +func testImagesPorterLocalhostCrt() (*asset, error) { + bytes, err := testImagesPorterLocalhostCrtBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/porter/localhost.crt", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPorterLocalhostKey = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xd5\xa7\x12\xa4\x00\x02\x04\x50\xcf\x57\xac\xa7\xae\xc8\x49\x9c\x20\xc3\x90\x33\x8c\x23\x0f\x39\xc7\xaf\xbf\xda\xd5\xd7\xb6\x4d\x8b\xae\x7a\xff\xf9\x1b\x4e\x94\x55\xf3\x8f\xeb\xb1\x7f\x6c\x57\x0d\x59\x5f\xfc\xa3\x89\xc9\xbf\x06\x30\x54\x55\x9c\x6a\x95\x63\x59\x8d\x67\x1d\x91\x1d\x8b\xa3\xc9\xee\x24\x4f\x42\xe3\xbb\x79\x37\x95\xfa\xf3\x21\x72\x82\x6c\x55\xe2\x00\xc6\x7e\x85\x5b\x25\x7f\x94\xfb\x6e\xba\x25\xb5\xda\x42\x04\xf8\xcc\x51\xfa\x71\xd8\x15\xf4\xaf\x03\x87\x3c\x6d\x3f\xaa\xfb\xad\x8f\x29\x97\x3f\xb2\xfa\xd0\x19\x27\xb3\x09\x4f\xe5\xe9\x81\x40\xe5\x97\xc1\x9b\xd2\x7a\xc3\x99\xc8\x43\xb2\x9f\x8b\x77\x9b\x65\x20\xfb\x9d\x36\x03\x09\x39\xab\xf0\x74\x2f\xa0\xdb\x28\x60\x44\x71\xbe\xe6\x30\x49\xde\x50\xef\xa3\x65\x99\x8e\x69\xf9\x59\xda\xc1\x9c\x8e\xe4\x8f\x29\xa9\x84\x07\x9f\x06\xed\xd6\x55\x4f\x9f\x2b\x10\x78\xf4\xb8\x05\xf6\x81\xf1\x5a\x31\xbb\x7b\xc7\xb9\x3c\x28\x44\xe5\xb5\x39\x07\xf6\x1e\x18\x71\xb4\xd8\xda\x8c\xcb\x48\xd9\xe7\x21\xcc\x86\xb4\x4e\x34\x43\x99\x51\x81\x59\x5f\x25\x8f\xdd\x00\xa0\x8b\x50\xdc\x68\x02\x43\xf9\x95\x3b\xea\xf0\x91\xe5\xb6\xb2\xd7\xbb\x43\xce\xe6\xc8\x17\x21\x84\x3e\x07\x31\xe1\x4c\x99\xb1\xe2\x64\xca\xee\xcc\x5e\x82\x15\xe5\x66\x48\x65\xed\x72\x2a\x13\x05\xac\x3c\xb7\x75\x0b\x24\xcd\x25\xf8\x21\xcd\x6b\xba\x40\x62\x74\x1c\xcb\x56\xac\x5f\x52\x5a\xa5\xb2\x34\x8d\x4a\x38\xaa\xc0\x3a\x2c\xc7\x4e\x2a\xc7\xca\xc8\xe5\x0e\x91\xef\x90\xc7\xdc\xb2\x85\x0e\xa0\x43\xfe\xb4\x55\x7f\x86\x24\x86\x10\xe6\x6c\xbd\xa4\xc9\x55\xe1\x5b\x9c\xb9\x74\x69\xd9\x10\xe0\x1d\x63\x10\xe4\x81\xec\xcd\xaf\xa6\xd7\xe6\xc1\x05\xd5\x0b\x1b\xcb\xa7\xb1\xe3\x28\xea\xd2\x01\xf2\x0c\xb4\x9f\xf7\xcc\xa0\xb9\x1f\xf6\x81\x42\x85\x79\x2a\x6c\xf4\xab\xf4\x71\x46\x8e\xc1\x7d\x90\xb1\x61\xad\x77\xb3\x74\xfc\x7e\x43\xee\x96\x5f\x3b\xfc\x0a\x35\xed\x11\xd3\x81\xca\x53\x17\x03\xb1\x21\x3b\xe7\x6f\x2f\x9a\xee\xfe\x71\x0a\xa7\x0e\x92\xf6\x2e\xc3\xba\x69\xaf\xc2\x58\xd8\x94\xf6\x73\xcc\x2b\xbe\xaa\x14\x68\x2a\x18\xdd\xb0\x1a\x59\xd1\x7a\xa0\xe7\xd9\x5c\x4f\x3e\xed\xf4\x02\x4c\x9a\x8d\xe9\xbb\x5b\x78\x06\x77\x14\x19\x8c\x10\x89\xd3\x2f\x42\x7d\x19\x17\xb4\xce\x25\x38\x23\x9d\xbf\x79\x9d\x8e\xb9\x4a\x2e\x88\x4e\x54\x3d\x2c\xd6\x39\xd4\xec\xd5\x5d\x9b\x37\xc3\xbe\x00\xce\xcf\x92\x19\x27\xcc\xd4\x6e\x1c\xab\xaf\x73\xb3\x2c\xf5\xef\x6d\xa7\xbb\xf7\xa5\xa3\x80\x83\x50\xba\x38\xa3\xb7\x90\x73\x74\x84\x9e\xec\x2b\x7d\x7b\xed\x96\x61\xf5\x1c\x5a\xee\x52\x19\x2a\x05\xce\xce\xf0\x7a\x3a\xe0\xeb\x44\x64\xe1\xc8\x94\x7e\x4c\x3b\xbf\xd8\xa8\x8d\x75\xb6\x5a\xca\x8d\x9d\x0f\xa9\x74\x2a\xd5\x4e\xfb\x86\x75\x11\xad\xe7\x43\x8f\x1c\xae\x3a\x5a\x96\x4c\x8e\xe5\xda\x03\x03\xec\x79\x36\xb4\x73\x03\x7e\x1a\x1a\xdc\xbf\x57\x2f\x54\xa9\x6f\xdb\x64\xb0\x9c\xca\xc8\xe1\x9a\xca\x14\x35\xf6\xf7\x45\xfe\xd6\xdd\x3c\x62\xac\x83\x08\x7d\xe3\x6d\x0e\x14\x53\xea\xf9\x14\xf0\x89\xe0\x5b\xc7\x57\x41\x6a\xc1\x09\x67\x39\xc8\x60\x9a\xca\x26\x90\xd3\xac\x4d\x32\x88\xb0\x50\x6a\xe4\x19\x80\x89\xc0\xd5\x2c\x3e\x2f\xf9\x73\x3d\xd3\xae\xe1\xdb\xbf\xc5\x97\x0d\x42\x80\xc5\xa5\xed\x62\x7e\x96\x6d\x6e\xb4\x89\x0c\xce\x52\xe3\x95\x09\x06\x75\x12\x5c\x57\xa7\x11\xb1\x8b\xd5\x14\x8c\x52\x19\x18\x31\x25\x47\xe7\x5e\x8d\xdb\x63\x99\x03\x85\x5f\xb1\x2e\xce\x91\xfc\x80\x10\x14\xaa\x26\xee\xf6\xae\xc2\xaa\xc5\x7b\xf1\x5e\x23\xca\x69\x50\xd7\x0b\x6c\x6f\x3b\xac\x6a\x55\x50\x5a\x3b\xf0\x3e\xd3\x93\xd2\xdb\x6d\x07\x27\x21\x12\xe1\x41\x15\x27\x29\xe6\xcd\x28\x22\x40\xb5\x6d\x86\x2c\xbc\x1b\xde\xe7\x21\x2a\xfb\x58\x36\xd6\x84\xcf\x64\xb5\x86\xac\x6d\x8e\x30\x48\xc3\x5b\x67\x0a\xd3\x7c\x9d\x70\x0f\x23\xf5\x19\x83\x93\xd2\x9d\x1c\xed\x3a\xf3\x34\xd3\x36\x31\x00\x47\x95\xf0\x44\x54\xa2\xfc\xa6\x11\xfe\x6d\xcb\xe1\x9a\x41\x4d\x53\xf9\x49\x09\xec\xf1\x93\x8c\xd4\x85\x5d\x14\x31\xf7\xf1\xf7\x65\xec\x70\xa2\x2d\x51\x3d\x73\x92\x0c\x87\x22\xe7\xbb\xc7\xeb\x80\x13\x12\x74\x69\x64\xe6\xb0\xf3\xa9\xe6\xe3\x3d\x8e\x02\x1d\xa4\x7e\x43\x42\x01\x47\xd5\xab\xe0\xfb\x9d\x49\x0b\xb8\xd8\xcb\x25\xb8\xc8\xcf\xb7\x57\x2f\x8c\xa4\x66\xc9\xce\xd6\x9b\x1a\x9d\xa1\x80\x4f\x7d\x0b\x3b\x5a\x12\x3f\x12\xf5\x72\x47\xe0\x2a\x67\x56\x4a\x47\xe3\x6a\xe5\x3b\xe5\x45\x3b\x36\x87\x88\xef\x08\x42\x45\xae\xb5\x17\xc6\x87\xb1\xd6\x79\x74\x50\x71\xc9\xe8\xd3\xdb\x63\x59\x05\x64\xc8\xf3\xc2\xf1\xaa\x9f\xe9\x42\xf6\x58\x0c\x11\xa7\x1f\x5f\x61\x10\xbe\xc5\x57\x2a\x27\x06\x42\xc8\xf0\x72\xee\xa0\x3c\xad\x11\xb4\x03\x97\x64\x46\xef\x43\x0c\x10\xb5\x4c\x89\x6a\x80\x83\x01\x6c\x25\x1e\x50\xf3\x43\x86\xe8\x2e\x53\x28\x94\x0c\x51\x68\xfc\x08\x28\xd5\xf4\x46\x89\xa5\x05\x94\x25\x54\xae\x71\xfa\x0b\xad\x70\xb0\xdb\x03\xb7\x78\x55\x33\x3a\x31\x9d\x79\xa0\xde\x25\x9c\x08\x10\xea\xfa\x63\x27\x99\xb5\xaa\x71\x64\x2d\xb6\xf5\x16\xcd\xff\x4a\x84\x4e\xf1\x9f\x8f\xc2\x25\xc9\x74\xed\x79\x51\x6b\x05\x57\x89\x7a\x64\x83\x65\xe4\xd6\xb1\x1d\x79\xd4\x16\x1d\xac\x48\x52\x30\xe0\xf9\x42\xb5\xc2\xda\x3d\x76\xab\x61\xc9\x27\xec\xd9\xb3\x49\x2d\xe1\x8f\x79\xed\x55\xda\xab\xf8\xd5\xbb\x96\xa4\x6a\xea\x29\xee\x40\x35\x09\x22\xaf\x85\xc9\x96\xf4\x99\x0f\xdd\x98\xa6\x94\x00\x18\xb3\xf0\xca\xb3\x3b\x6c\x4b\x6e\x71\x10\xfe\x31\x31\x94\x49\x0b\x53\x45\xf4\x6d\xb4\x97\x87\x60\xf4\x97\xbb\x05\x03\xfa\x44\x29\x4e\xb1\x64\x42\x85\xf9\x7f\x81\x7f\xa4\x88\xa6\xf0\xff\xa9\xf9\x5f\x00\x00\x00\xff\xff\x45\x85\x28\xa6\x8b\x06\x00\x00") + +func testImagesPorterLocalhostKeyBytes() ([]byte, error) { + return bindataRead( + _testImagesPorterLocalhostKey, + "test/images/porter/localhost.key", + ) +} + +func testImagesPorterLocalhostKey() (*asset, error) { + bytes, err := testImagesPorterLocalhostKeyBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/porter/localhost.key", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPorterPodJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xd1\xab\xda\x30\x14\xc6\x9f\xed\x5f\x11\xf2\x6c\x8d\x9d\x65\x48\xe9\xfa\x32\x3a\x18\x13\x26\x2a\xc2\x98\x43\x62\x7b\xb4\xa1\x6d\x52\x92\xe8\x90\x4b\xff\xf7\x4b\xdb\x8b\xa6\xb7\x0a\xd6\x7b\x9f\x8c\xe7\x7c\xf9\x9d\x8f\xd3\x2f\x2f\x16\x42\x38\x65\x3c\xc6\x1e\xc2\x73\x11\xe3\x61\x55\xa0\x05\x5b\x83\x54\x4c\xf0\xaa\x7c\x72\x9a\x6a\x0e\x9a\xc6\x54\x53\xec\xa1\xea\x1a\x42\x98\xd3\x1c\x2a\x45\x21\xa4\x06\x89\x2d\x84\xca\x5a\xa9\x0a\x88\xae\xaa\x48\x70\x4d\x19\x07\xa9\xb0\x87\xfe\xd6\x35\xf4\xd6\xbb\x45\x19\x5e\x3b\x2c\xa7\x87\xba\x75\x88\xe4\x88\x09\x92\x1e\x77\x20\x39\x68\x50\x36\x7c\x01\x5b\x83\xd2\x76\xad\x51\xa4\xb9\x6c\xd3\x3c\xfe\xea\x7a\xce\x68\x6c\x62\x80\x9f\x8c\xc9\xed\xe9\x2d\x07\xcb\x70\xb1\x0e\xb7\xf3\xdf\x8b\xd5\x76\x6a\x12\x6a\xd1\x89\x66\xc7\x5a\xb5\x17\x02\x1b\xad\x72\xd8\x0f\xec\xdc\x05\xfb\x89\xce\xb3\xc0\x4f\x80\xc6\x81\x4f\x9a\x9f\x9d\x88\xcf\x81\x4f\x51\x22\x61\xff\x6d\x83\x89\x84\xff\x92\x69\xc8\x61\x83\x83\xe6\xac\x81\xa3\x8c\xf1\xd4\x27\x34\xf0\x49\xa3\x27\x35\xe9\x39\x97\xab\xd9\xb2\x71\xea\xba\x93\xbb\x56\x75\xa6\xd0\xd3\x7b\x30\x26\xb8\x1f\x5a\x86\xce\x94\x6d\x2e\xa4\x72\xf5\x29\x4b\x19\x5c\x1c\x7f\x0f\x17\xab\xed\x8f\x9f\xb3\xb0\x65\x74\x70\xf5\x49\x32\x11\xd1\x2c\x11\x4a\x8f\x22\xa9\x7b\xd2\x7f\x85\x7f\x1e\x85\xa7\x70\x6e\xc1\x2f\xe7\x7f\x46\xd2\xab\x57\xa0\x1e\xcb\x7a\xd1\x4d\xf8\xe5\xa1\xce\x85\xd4\xd8\x43\xd3\x71\xcf\xcf\x5b\x74\xc3\xdd\x61\x3a\x7d\x99\x37\x62\xf8\x1e\xea\xba\x93\xfe\xd4\x4e\xf4\xba\x54\xf7\xf6\xc2\x2d\xb3\x52\xfd\x2b\xad\xd2\x7a\x0d\x00\x00\xff\xff\xa9\x2b\x1f\x51\x4a\x05\x00\x00") + +func testImagesPorterPodJsonBytes() ([]byte, error) { + return bindataRead( + _testImagesPorterPodJson, + "test/images/porter/pod.json", + ) +} + +func testImagesPorterPodJson() (*asset, error) { + bytes, err := testImagesPorterPodJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/porter/pod.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesPorterPorterGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x55\x5f\x6f\xdb\xb6\x17\x7d\x16\x3f\xc5\x81\x80\xfe\x7e\x72\xa7\x49\x69\x80\xbd\xb8\xf0\x83\x97\x3a\x8b\x51\xc3\x09\x2c\xf5\x1f\x86\x22\xa0\xa5\x2b\x89\x88\x4c\x2a\x24\x65\x57\x28\xf2\xdd\x07\x4a\x72\xea\x34\xd9\xb0\xd7\xc1\x80\x6d\x92\x87\xe7\x9e\x7b\xee\xbd\x52\xfc\x9a\x5d\xa8\xa6\xd3\xa2\xac\x2c\xce\xcf\xde\xfc\x86\xb4\x22\xbc\x6f\xb7\xa4\x25\x59\x32\x98\xb7\xb6\x52\xda\x44\x8c\xad\x44\x46\xd2\x50\x8e\x56\xe6\xa4\x61\x2b\xc2\xbc\xe1\x59\x45\x18\x4f\x42\x7c\x24\x6d\x84\x92\x38\x8f\xce\x10\x38\x80\x3f\x1e\xf9\x93\xb7\xac\x53\x2d\x76\xbc\x83\x54\x16\xad\x21\xd8\x4a\x18\x14\xa2\x26\xd0\xb7\x8c\x1a\x0b\x21\x91\xa9\x5d\x53\x0b\x2e\x33\xc2\x41\xd8\xaa\x0f\x32\x52\x44\xec\xcb\x48\xa0\xb6\x96\x0b\x09\x8e\x4c\x35\x1d\x54\x71\x8a\x02\xb7\x8c\x01\x40\x65\x6d\x33\x8d\xe3\xc3\xe1\x10\xf1\x5e\x65\xa4\x74\x19\xd7\x03\xca\xc4\xab\xe5\xc5\x62\x9d\x2c\x7e\x3d\x8f\xce\x18\xfb\x20\x6b\x32\x06\x9a\xee\x5b\xa1\x29\xc7\xb6\x03\x6f\x9a\x5a\x64\x7c\x5b\x13\x6a\x7e\x80\xd2\xe0\xa5\x26\xca\x61\x95\xd3\x79\xd0\xc2\x0a\x59\x86\x30\xaa\xb0\x07\xae\x89\xe5\xc2\x58\x2d\xb6\xad\x7d\x62\xd0\x51\x95\x30\x38\x05\x28\x09\x2e\xe1\xcf\x13\x2c\x13\x1f\xbf\xcf\x93\x65\x12\xb2\x4f\xcb\xf4\xea\xfa\x43\x8a\x4f\xf3\xcd\x66\xbe\x4e\x97\x8b\x04\xd7\x1b\x5c\x5c\xaf\xdf\x2d\xd3\xe5\xf5\x3a\xc1\xf5\x25\xe6\xeb\x2f\x78\xbf\x5c\xbf\x0b\x41\xc2\x56\xa4\x41\xdf\x1a\xed\xb4\x2b\x0d\xe1\xac\xa3\x3c\x62\x09\xd1\x93\xe0\x85\x1a\xc4\x98\x86\x32\x51\x88\x0c\x35\x97\x65\xcb\x4b\x42\xa9\xf6\xa4\xa5\x90\x25\x1a\xd2\x3b\x61\x5c\xf1\x0c\xb8\xcc\x59\x2d\x76\xc2\x72\xdb\xaf\x9f\xa5\x13\xb1\xd7\x31\x63\x71\x8c\x39\xac\x90\x1d\xb6\x42\x72\xdd\x0d\x71\xc8\xd8\x9e\x4f\x69\x6b\x22\x16\xc7\x0e\xb6\x21\x9e\x1b\x90\xdc\x63\xcf\xb5\x79\xdb\x03\x69\x4f\xba\x73\xeb\x63\x01\x0b\xa5\x77\x48\x16\x9b\x8f\x8b\xdb\x9b\xeb\x4d\x7a\xfb\x39\xc4\xa1\x22\x4d\xf8\xec\xdc\xe3\xd8\xf3\x5a\xe4\x8e\xcd\x51\x43\xb6\xbb\x2d\xe9\xb0\x5f\x90\x86\xb1\x5c\x5b\xa7\x1c\x57\x69\x7a\x03\x43\x7a\x4f\x1a\x87\x4a\x64\xd5\xb0\x30\x7d\x8c\x51\xc2\xff\x8d\x63\x6b\xc9\xb1\x09\x09\x4d\xa6\x51\xce\x28\xab\xc0\x65\x87\xfb\x96\x74\x17\xb1\x86\x67\x77\xce\xa4\x1d\x17\x92\x31\xb1\xeb\xe3\x06\xcc\xf3\x8b\x9d\xf5\x99\xe7\xd7\xaa\x74\x3f\x92\x6c\xec\x9a\xcd\xfd\x57\xc6\x7d\xbb\x3a\xcb\xd2\xf8\x6c\xc2\x58\xa6\xa4\xb1\x68\x34\x15\xe2\x1b\x66\xf0\x4f\x12\xf4\xc7\x43\x5b\x9b\x9b\x9f\xce\xd3\x55\x72\xc4\xb0\xa2\x95\x59\xaf\x21\x98\xe0\x3b\xf3\x9c\x77\xb7\x21\xf6\x77\x98\xce\xa0\xb9\x2c\x09\xca\x44\x0b\xb9\x17\x5a\x8d\x10\x2f\x8e\x71\xd3\xda\xc1\x62\x5b\xb9\x72\x6c\xa9\x50\x7a\xe8\x8a\x42\x68\x63\x31\x83\x11\xa5\x74\xd9\x37\xce\xb9\x3f\xcf\xbe\x86\x7d\xdd\xfb\xcb\x27\x17\xa9\x76\xdd\x7b\x44\xbd\xf9\x8a\x80\xf6\x24\x21\xfa\x9a\x69\x02\xd7\x84\x5d\x5b\x5b\xd1\xd4\x84\xd9\x70\x3d\xab\xb8\xe6\x99\x25\x6d\x26\x11\xf3\xbc\xfe\xaa\x53\x3b\xfa\x12\x25\x4d\x2d\xec\x3a\xd8\xdf\x85\xf0\x67\x7e\x88\xf3\x09\xf3\xbc\x3b\xea\x1c\xe6\xa8\x86\x79\x5e\x5f\xa2\x1f\x7b\x6f\xdc\x9e\x28\x1e\x59\xae\xf8\x68\x5b\x70\x47\x5d\x38\x5a\x3c\xe4\xef\xf5\xa5\x3a\x89\x98\x6a\xb1\x7b\x01\xec\xa0\xa5\x1a\x1a\xe4\x46\x69\x1b\xb8\x7b\xe1\xd0\x1b\xee\xf0\xe1\x1f\x23\x3e\xd6\xed\x5f\x06\xfd\x81\x3f\x8d\x9b\xae\x92\xbf\x09\xfd\xc0\x98\x67\xa8\xa6\xcc\xe2\xfb\x03\x7b\x18\x3b\xe1\x45\xb1\x63\xcc\x5e\x48\x6f\xf5\xff\x5c\x47\x46\x49\x3f\x06\x4e\xdc\x3c\xcf\xf5\x14\xfe\x59\xd4\x7f\xa6\x3e\x7e\xe9\x27\x27\x64\x9e\x77\xc5\x65\x5e\x93\x9e\xf6\x4f\xcc\x68\x5c\x5d\xb6\x32\x0b\x5c\xbc\xe0\x30\xec\x6f\xc6\x19\xf9\xa4\x85\x75\x73\xa7\xf1\x7a\xdc\xbf\x6f\xc9\xd8\xd1\x82\x62\x67\xa3\xcb\x46\x0b\x69\x83\xc3\x69\x32\x93\xd0\xa5\xe3\xd5\xaa\x8c\x6e\xdc\x69\x11\xf8\xe3\x88\x2a\x39\xcc\xf3\xab\x7b\x14\x5c\xd4\x94\x4f\xf1\x6a\xef\x0f\x73\x1d\xc2\x44\x2b\x61\x2c\xc9\xb9\xcc\xfb\x5c\x82\xc9\xe4\xa9\x11\x2f\xb8\xf7\x1f\xf1\x22\x23\x6d\x2f\xdd\xcb\x6f\x3a\x73\x03\xfc\x07\x59\x92\xfb\xc0\xbf\x58\x6c\xd2\xdb\xcb\xe5\x6a\xe1\x4f\x98\xeb\xbd\x9a\x64\x70\x84\x4e\x30\x9b\xe1\xac\x67\x7f\xbc\x3d\x83\x5f\xab\x8c\xd7\x95\x32\x36\xca\xb4\x7b\x30\x3d\x30\x37\x4c\x2f\x70\xbf\x5f\x7c\xf9\x99\x7a\x04\x9e\x30\x1f\xaf\x3e\x21\xbe\xa3\xce\x7f\x56\x41\x5b\x1b\x3c\xaf\x62\xff\xda\x3e\xca\x9b\xbd\xba\x0f\x31\x32\xce\x5e\x2e\xf1\x11\xfa\x88\x7b\x5e\xf5\x74\x95\x04\xcf\x60\x7d\x27\xfc\x15\x00\x00\xff\xff\x16\x58\xd5\x52\xbe\x08\x00\x00") + +func testImagesPorterPorterGoBytes() ([]byte, error) { + return bindataRead( + _testImagesPorterPorterGo, + "test/images/porter/porter.go", + ) +} + +func testImagesPorterPorterGo() (*asset, error) { + bytes, err := testImagesPorterPorterGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/porter/porter.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesRedisBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\xcc\x29\xc8\xcc\x4b\xb5\x32\xd6\x33\xe3\x4a\x2c\xca\xb5\x4d\x2c\xca\x35\x36\x2a\x33\xd3\x47\x15\x06\xa9\x03\x91\x65\x16\xc8\x12\x05\x05\xc9\x66\x26\x39\xa9\xb6\x50\x1a\x59\x0a\x10\x00\x00\xff\xff\xe5\x8d\xa8\xc0\x5c\x00\x00\x00") + +func testImagesRedisBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesRedisBaseimage, + "test/images/redis/BASEIMAGE", + ) +} + +func testImagesRedisBaseimage() (*asset, error) { + bytes, err := testImagesRedisBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/redis/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesRedisDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x92\x51\x6f\x9b\x3e\x14\xc5\xdf\xfd\x29\x8e\xe0\xe5\xff\x97\x02\x74\x9d\xb4\x6a\xdb\x13\x25\x74\x45\x4d\xa0\x83\xa4\x5d\x35\x4d\x95\x63\x6e\xc0\x1a\xb1\xa9\x6d\x4a\xf3\xed\x27\x68\xab\xad\x9b\x9f\x6c\xdf\xe3\xe3\x9f\x8f\xaf\x8f\x44\xf7\x47\x23\x9b\xd6\xe1\xf4\xe4\xdd\x19\x36\x2d\xe1\x6a\xd8\x91\x51\xe4\xc8\x22\x1e\x5c\xab\x8d\x0d\x99\xcf\x7c\xac\xa4\x20\x65\xa9\xc6\xa0\x6a\x32\x70\x2d\x21\xee\xb9\x68\xe9\xb5\xb2\xc0\x0d\x19\x2b\xb5\xc2\x69\x78\x82\xff\x26\x81\xf7\x52\xf2\xfe\xff\xcc\x7c\x1c\xf5\x80\x03\x3f\x42\x69\x87\xc1\x12\x5c\x2b\x2d\xf6\xb2\x23\xd0\x93\xa0\xde\x41\x2a\x08\x7d\xe8\x3b\xc9\x95\x20\x8c\xd2\xb5\xf3\x35\x2f\x26\x21\xf3\x71\xf7\x62\xa1\x77\x8e\x4b\x05\x0e\xa1\xfb\x23\xf4\xfe\x4f\x1d\xb8\x9b\x81\xa7\xd1\x3a\xd7\x7f\x8a\xa2\x71\x1c\x43\x3e\xc3\x86\xda\x34\x51\xf7\x2c\xb4\xd1\x2a\x4b\xd2\xbc\x4a\x83\xd3\xf0\x64\x3e\xb2\x55\x1d\x59\x0b\x43\x0f\x83\x34\x54\x63\x77\x04\xef\xfb\x4e\x0a\xbe\xeb\x08\x1d\x1f\xa1\x0d\x78\x63\x88\x6a\x38\x3d\xf1\x8e\x46\x3a\xa9\x9a\x05\xac\xde\xbb\x91\x1b\x62\x3e\x6a\x69\x9d\x91\xbb\xc1\xbd\x09\xeb\x95\x4e\xda\x37\x02\xad\xc0\x15\xbc\xb8\x42\x56\x79\x38\x8f\xab\xac\x5a\x30\x1f\xb7\xd9\xe6\xb2\xd8\x6e\x70\x1b\x97\x65\x9c\x6f\xb2\xb4\x42\x51\x22\x29\xf2\x65\xb6\xc9\x8a\xbc\x42\x71\x81\x38\xbf\xc3\x55\x96\x2f\x17\x20\xe9\x5a\x32\xa0\xa7\xde\x4c\xfc\xda\x40\x4e\x31\x52\x3d\x65\x56\x11\xbd\x01\xd8\xeb\x67\x20\xdb\x93\x90\x7b\x29\xd0\x71\xd5\x0c\xbc\x21\x34\xfa\x91\x8c\x92\xaa\x41\x4f\xe6\x20\xed\xf4\x99\x16\x5c\xd5\xcc\x47\x27\x0f\xd2\x71\x37\xef\xfc\xf3\xa8\x90\xb1\x8b\xb2\x58\x4f\xf8\x69\xb6\x8e\xbf\xa4\x8c\x25\x65\x51\x55\xf7\xe7\xdb\x6c\xb5\xbc\x4f\x8a\xeb\x3b\x3c\xd0\x61\x08\xbe\xa6\xeb\x6d\x5c\x26\x97\x81\x9d\xbc\x04\xa2\xc1\x9a\x68\x27\x55\xc4\x58\xb9\xcd\xc1\xfb\x9f\xe0\x75\x8d\x20\x50\x3a\x10\x73\x73\x19\xaa\xa5\x65\x6c\xb6\x98\xe7\xa1\xd0\x6a\x8f\x88\x9c\x88\x7e\xaf\x19\x4b\xbf\x5d\x17\x55\x8a\x0f\xef\xcf\x3e\xb2\x9b\x62\xb5\x5d\xa7\x88\x6a\xee\x38\x63\xc9\x7a\x89\xef\xde\xac\x0d\x2c\x99\x47\x32\xde\x02\xde\x5f\x06\xde\x0f\xf6\x2b\x00\x00\xff\xff\xa7\x31\xc7\x9f\x0e\x03\x00\x00") + +func testImagesRedisDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesRedisDockerfile, + "test/images/redis/Dockerfile", + ) +} + +func testImagesRedisDockerfile() (*asset, error) { + bytes, err := testImagesRedisDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/redis/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesRedisVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesRedisVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesRedisVersion, + "test/images/redis/VERSION", + ) +} + +func testImagesRedisVersion() (*asset, error) { + bytes, err := testImagesRedisVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/redis/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesRedisRedisConf = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xca\xcc\x4b\x51\x30\xd0\x03\x43\xae\x94\xcc\x22\x05\xfd\x94\xc4\x92\x44\x2e\x40\x00\x00\x00\xff\xff\xcd\x81\x31\xc0\x17\x00\x00\x00") + +func testImagesRedisRedisConfBytes() ([]byte, error) { + return bindataRead( + _testImagesRedisRedisConf, + "test/images/redis/redis.conf", + ) +} + +func testImagesRedisRedisConf() (*asset, error) { + bytes, err := testImagesRedisRedisConfBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/redis/redis.conf", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerGitignore = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xce\xcf\x2b\x2e\xcd\x4d\x2d\xe2\x82\x32\x74\x93\x0b\x4a\xf5\x91\xd8\x20\xf1\x92\xa2\xfc\x9c\x9c\xd4\x22\x7d\x04\x93\x0b\x10\x00\x00\xff\xff\x1b\x0f\x16\x78\x37\x00\x00\x00") + +func testImagesResourceConsumerGitignoreBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerGitignore, + "test/images/resource-consumer/.gitignore", + ) +} + +func testImagesResourceConsumerGitignore() (*asset, error) { + bytes, err := testImagesResourceConsumerGitignoreBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/.gitignore", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\x4f\x2e\xd2\xcb\xcc\xd7\x4f\xcf\xcf\x4f\xcf\x49\xd5\x4d\xce\xcf\x2b\x49\xcc\xcc\x4b\x2d\x2a\xd6\x4f\x49\x4d\xca\x4c\xcc\xd3\x4d\x4a\x2c\x4e\xd5\x05\x2b\xb5\x32\xd0\x33\xe2\x4a\x2c\xca\x25\x52\x4b\x51\x2e\x4c\x03\xd1\xb6\x80\x94\x82\x35\x15\x14\x24\x9b\x99\xe4\xa4\x12\xa7\x0d\xaa\x18\xac\x11\x10\x00\x00\xff\xff\x77\xbe\x83\xed\xd4\x00\x00\x00") + +func testImagesResourceConsumerBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerBaseimage, + "test/images/resource-consumer/BASEIMAGE", + ) +} + +func testImagesResourceConsumerBaseimage() (*asset, error) { + bytes, err := testImagesResourceConsumerBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\xcd\xca\xe3\x30\x0c\xbc\xe7\x29\x8c\x4f\x4d\xd9\xd6\xf7\x40\x61\xdf\xa3\x04\x23\x3b\xaa\xd7\xac\x12\x05\xff\x14\xda\xa7\x5f\x92\xb8\xdb\xbf\x50\xca\x77\x4a\x24\xcd\x48\x33\x93\x8c\x60\xff\x82\xc3\x4d\x87\x27\xc8\x94\xf4\xd9\x47\x6f\x3c\xf9\x74\x11\x07\x71\x94\x4a\xdd\x1b\xcd\x98\x0d\x79\x2b\xdb\xba\xaa\x88\xa1\xdb\x54\x42\x08\x21\x7f\x7b\xd6\x06\xae\x48\x3a\x64\xc2\xa8\x1d\x2b\xe5\xb8\xe9\xf0\xb4\x37\x57\x92\xbf\x16\x94\x63\x6d\xfc\x00\xe1\xf2\xd0\x20\x6f\xc2\xd2\xa9\xab\xea\x3f\x60\x59\x3b\x40\x8f\xe2\x20\x64\xc0\xc8\x39\x58\xdc\x59\x1e\x62\xee\x31\x14\x7e\xe1\x4e\x90\xc6\xb1\xbe\xc9\x7f\x5d\x59\xea\xe7\x9d\xab\xf8\x09\x10\x83\x8d\x93\xed\xb9\x98\x55\xde\xce\xeb\xdb\xf9\xbd\xe3\x02\x5e\x9f\xeb\x3f\x30\x74\xf4\x86\xcb\xc9\x53\xbc\xf7\xda\xe5\xd1\xe1\x18\x4b\xcc\x09\x63\x52\xbe\x07\x87\x51\xbd\x79\x56\x96\xfb\x9e\x87\x35\xa3\xed\xec\xf4\xe4\x09\x5d\xe0\x3c\x3e\x1b\x2d\x1f\x77\x37\xf9\x7a\xb6\xe8\x88\xcd\xe6\x28\xb7\x5b\xd9\xd6\xcb\x20\x81\x5b\xb4\x40\x4e\xdc\xc3\x00\x0e\x3b\x59\x74\x7e\xfc\x29\x82\x3f\x43\xc2\xcf\x42\x80\x68\x45\xc4\x43\xce\xcd\x8a\xd4\x79\xf0\x65\x32\x2f\x07\xbe\xa4\xce\x2f\x3b\x3b\xe6\x9f\xf2\x53\x60\x22\x0c\xaf\xf4\xf6\x73\xa4\x75\xf5\x2f\x00\x00\xff\xff\x12\x8e\xcd\xf6\x76\x03\x00\x00") + +func testImagesResourceConsumerBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerBuild, + "test/images/resource-consumer/BUILD", + ) +} + +func testImagesResourceConsumerBuild() (*asset, error) { + bytes, err := testImagesResourceConsumerBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\xdf\x6e\x9b\x4c\x10\xc5\xef\xf7\x29\x8e\xcc\xcd\xf7\x49\x36\xb8\xb9\xa8\xa2\xf6\x8a\xd8\xa4\x41\x49\x20\x05\xdc\xd4\xaa\xaa\x68\xbd\x8c\x61\x24\xbc\x4b\x76\x97\x12\xbf\x7d\x85\xf3\x47\x89\xca\x15\x3b\x73\xe6\xec\x6f\xce\x06\x58\x99\xfe\x68\xb9\x69\x3d\xce\x96\x9f\x3e\xa3\x6a\x09\xd7\xc3\x8e\xac\x26\x4f\x0e\xf1\xe0\x5b\x63\x5d\x28\x02\x11\xe0\x86\x15\x69\x47\x35\x06\x5d\x93\x85\x6f\x09\x71\x2f\x55\x4b\xaf\x9d\x39\x7e\x90\x75\x6c\x34\xce\xc2\x25\xfe\x9b\x04\xb3\x97\xd6\xec\xff\xaf\x22\xc0\xd1\x0c\x38\xc8\x23\xb4\xf1\x18\x1c\xc1\xb7\xec\xb0\xe7\x8e\x40\x4f\x8a\x7a\x0f\xd6\x50\xe6\xd0\x77\x2c\xb5\x22\x8c\xec\xdb\xd3\x35\x2f\x26\xa1\x08\xb0\x7d\xb1\x30\x3b\x2f\x59\x43\x42\x99\xfe\x08\xb3\x7f\xaf\x83\xf4\x27\xe0\xe9\x6b\xbd\xef\xbf\x44\xd1\x38\x8e\xa1\x3c\xc1\x86\xc6\x36\x51\xf7\x2c\x74\xd1\x4d\xba\x4a\xb2\x32\x59\x9c\x85\xcb\xd3\xc8\x46\x77\xe4\x1c\x2c\x3d\x0e\x6c\xa9\xc6\xee\x08\xd9\xf7\x1d\x2b\xb9\xeb\x08\x9d\x1c\x61\x2c\x64\x63\x89\x6a\x78\x33\xf1\x8e\x96\x3d\xeb\x66\x0e\x67\xf6\x7e\x94\x96\x44\x80\x9a\x9d\xb7\xbc\x1b\xfc\x87\xb0\x5e\xe9\xd8\x7d\x10\x18\x0d\xa9\x31\x8b\x4b\xa4\xe5\x0c\x17\x71\x99\x96\x73\x11\xe0\x3e\xad\xae\xf2\x4d\x85\xfb\xb8\x28\xe2\xac\x4a\x93\x12\x79\x81\x55\x9e\xad\xd3\x2a\xcd\xb3\x12\xf9\x25\xe2\x6c\x8b\xeb\x34\x5b\xcf\x41\xec\x5b\xb2\xa0\xa7\xde\x4e\xfc\xc6\x82\xa7\x18\xa9\x9e\x32\x2b\x89\x3e\x00\xec\xcd\x33\x90\xeb\x49\xf1\x9e\x15\x3a\xa9\x9b\x41\x36\x84\xc6\xfc\x21\xab\x59\x37\xe8\xc9\x1e\xd8\x4d\x8f\xe9\x20\x75\x2d\x02\x74\x7c\x60\x2f\xfd\xa9\xf2\xcf\x52\xa1\x10\x97\x45\x7e\x3b\xe1\x27\xe9\x6d\xfc\x2d\x11\x62\x55\xe4\x65\xf9\x70\xb1\x49\x6f\xd6\x0f\xab\xfc\x6e\x8b\x47\x3a\x0c\x8b\xef\xc9\xed\x26\x2e\x56\x57\x0b\x37\x79\x29\x44\x83\xb3\xd1\x8e\x75\x24\x44\xb1\xc9\xa0\x3a\x92\x7a\xc1\xda\x79\xd9\x75\x70\x7e\xda\x46\x88\x78\xbd\x86\x32\xda\x0d\x07\xb2\x88\x5e\xff\xde\x97\x17\xaa\x1f\xde\x3a\xd3\x41\x24\x3f\xef\xf2\x32\xc1\xf9\xf2\x7c\x29\x92\xac\x2a\xb6\x77\x79\x9a\x55\xf8\x35\x7b\x9b\x9f\xfd\x16\x7f\x03\x00\x00\xff\xff\x2a\x33\xb6\x05\x00\x03\x00\x00") + +func testImagesResourceConsumerDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerDockerfile, + "test/images/resource-consumer/Dockerfile", + ) +} + +func testImagesResourceConsumerDockerfile() (*asset, error) { + bytes, err := testImagesResourceConsumerDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x4f\xdb\x30\x14\x85\x9f\xe7\x5f\x71\xd4\xf0\xd0\x4a\x25\x65\x68\xe2\x81\x09\x4d\x59\xdb\x41\x04\x4a\xa6\xa4\x80\x78\x42\x4e\x72\x9b\x5c\x29\xb1\x3d\xdb\x59\xe8\xbf\x9f\x5c\x40\x02\x2d\x4f\x37\xf7\x1c\xdf\xfb\xf9\x38\xc2\x5a\x9b\x83\xe5\xb6\xf3\x38\x3f\xfb\x7a\x81\x5d\x47\xb8\x1d\x2b\xb2\x8a\x3c\x39\x24\xa3\xef\xb4\x75\xb1\x88\x44\x84\x3b\xae\x49\x39\x6a\x30\xaa\x86\x2c\x7c\x47\x48\x8c\xac\x3b\x7a\x57\x96\x78\x20\xeb\x58\x2b\x9c\xc7\x67\x98\x07\xc3\xec\x4d\x9a\x2d\xbe\x8b\x08\x07\x3d\x62\x90\x07\x28\xed\x31\x3a\x82\xef\xd8\x61\xcf\x3d\x81\x5e\x6a\x32\x1e\xac\x50\xeb\xc1\xf4\x2c\x55\x4d\x98\xd8\x77\xc7\x35\x6f\x43\x62\x11\xe1\xe9\x6d\x84\xae\xbc\x64\x05\x89\x5a\x9b\x03\xf4\xfe\xa3\x0f\xd2\x1f\x81\xc3\xd7\x79\x6f\x2e\x57\xab\x69\x9a\x62\x79\x84\x8d\xb5\x6d\x57\xfd\xab\xd1\xad\xee\xd2\xf5\x36\x2b\xb7\xa7\xe7\xf1\xd9\xf1\xc8\xbd\xea\xc9\x39\x58\xfa\x33\xb2\xa5\x06\xd5\x01\xd2\x98\x9e\x6b\x59\xf5\x84\x5e\x4e\xd0\x16\xb2\xb5\x44\x0d\xbc\x0e\xbc\x93\x65\xcf\xaa\x5d\xc2\xe9\xbd\x9f\xa4\x25\x11\xa1\x61\xe7\x2d\x57\xa3\xff\x14\xd6\x3b\x1d\xbb\x4f\x06\xad\x20\x15\x66\x49\x89\xb4\x9c\xe1\x67\x52\xa6\xe5\x52\x44\x78\x4c\x77\x37\xf9\xfd\x0e\x8f\x49\x51\x24\xd9\x2e\xdd\x96\xc8\x0b\xac\xf3\x6c\x93\xee\xd2\x3c\x2b\x91\xff\x42\x92\x3d\xe1\x36\xcd\x36\x4b\x10\xfb\x8e\x2c\xe8\xc5\xd8\xc0\xaf\x2d\x38\xc4\x48\x4d\xc8\xac\x24\xfa\x04\xb0\xd7\xaf\x40\xce\x50\xcd\x7b\xae\xd1\x4b\xd5\x8e\xb2\x25\xb4\xfa\x2f\x59\xc5\xaa\x85\x21\x3b\xb0\x0b\x8f\xe9\x20\x55\x23\x22\xf4\x3c\xb0\x97\xfe\xd8\xf9\xef\x52\xb1\x10\x65\xb1\x2e\x71\x85\x5a\x2b\x37\x0e\x64\xdf\x8b\xd3\xda\x8c\xab\x0f\xb5\x48\x8a\xf5\x0d\x7e\x5c\x41\x0e\xcd\xc5\x37\xb1\x4b\x8a\xeb\xed\x2e\xfc\x9f\xcc\xd7\xf7\xc5\x26\x2d\x16\xe2\x3a\xbf\x4b\xb2\xeb\xe7\x87\x6d\x51\xa6\x79\x16\xb4\x5e\x7a\x72\x3e\xac\x78\xde\xa4\x05\x82\x59\x69\xdf\xb0\xc5\xc9\xdc\x75\xd4\xf7\x30\x53\xb3\x58\x08\x7a\x31\xda\x7a\x21\x2a\x56\x97\xe2\x4b\x1c\xaf\x78\x90\x2d\x9d\x8e\x9e\xfb\xd8\x75\xa8\x58\xe1\x64\x1e\x40\x17\x42\xc4\xbf\x6f\xf2\xec\xe9\x32\x34\xc5\xbf\x00\x00\x00\xff\xff\x77\xfc\xfb\xba\x08\x03\x00\x00") + +func testImagesResourceConsumerMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerMakefile, + "test/images/resource-consumer/Makefile", + ) +} + +func testImagesResourceConsumerMakefile() (*asset, error) { + bytes, err := testImagesResourceConsumerMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe2\x02\x04\x00\x00\xff\xff\x5d\x96\xa5\x56\x04\x00\x00\x00") + +func testImagesResourceConsumerVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerVersion, + "test/images/resource-consumer/VERSION", + ) +} + +func testImagesResourceConsumerVersion() (*asset, error) { + bytes, err := testImagesResourceConsumerVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerCommonBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xd1\x8a\xac\x30\x0c\x40\xdf\xfb\x15\xa5\x4f\x3a\xcc\x1d\xdf\x85\x81\xfb\x1f\x22\x25\xd5\x18\xc2\x46\x23\xb5\x1d\x98\xf9\xfa\x45\xdd\x45\x84\xc5\xc7\x36\xa7\x87\xd3\xcc\xd0\x7d\x01\x61\xd1\xe3\x00\x59\x92\x7f\xf1\xc2\x81\x85\xd3\xdb\x3e\x6d\xe3\xaa\xea\xb8\xa8\xe7\x1c\x84\x3b\xd7\x96\xc6\x88\x42\x5f\x18\x6b\xad\x75\xff\x59\x7d\x80\x0f\x8a\x8f\x59\x70\xf1\xa4\x55\x45\x5a\xf7\x38\x3c\xc2\x47\xdc\x7d\xa7\x48\xbd\x70\x88\x10\xdf\xee\x6e\x4a\x63\x8e\xf3\xae\x99\x60\x44\xfb\xdc\xb8\xdf\x94\x83\x5f\x81\x25\x76\xcb\x96\xd4\xe9\x38\xea\xf4\x20\x75\xed\x66\x1a\x58\x90\xa2\xe6\xf9\x2c\xfa\xf9\xd8\xbf\xf5\xdd\x59\x41\xa2\xa1\x68\xdc\xed\xe6\xda\x72\x1f\x24\xa0\xdd\x0d\x39\xe9\x08\x13\x10\xf6\xab\x7d\x9d\x5d\x2e\x24\xf2\x0b\x12\x5e\x87\x80\xc8\x1f\x11\x8d\xab\x4f\x85\xed\x75\x49\x69\xbe\x03\x00\x00\xff\xff\x8b\x78\xb8\x4a\xa9\x01\x00\x00") + +func testImagesResourceConsumerCommonBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerCommonBuild, + "test/images/resource-consumer/common/BUILD", + ) +} + +func testImagesResourceConsumerCommonBuild() (*asset, error) { + bytes, err := testImagesResourceConsumerCommonBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/common/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerCommonCommonGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x94\x4d\x73\xdb\x36\x10\x86\xcf\xc4\xaf\xd8\xc1\x29\xc9\xd8\x94\xeb\x43\x0f\xed\xf8\x40\xcb\x76\xca\x49\x44\xa5\xa6\xdc\x4c\x8e\x10\xb8\x22\x31\x26\xb1\x0c\xb0\x08\xa3\xfc\xfa\x0e\x24\xca\xfa\x0c\x6f\xd2\xf3\xbc\x8b\x7d\x41\x8d\x26\x1f\xc4\x94\xfa\xb5\x33\x75\xc3\x70\x7b\xf3\xc7\x9f\xb0\x68\x10\x3e\x85\x25\x3a\x8b\x8c\x1e\xb2\xc0\x0d\x39\x9f\x0a\xf1\xd9\x68\xb4\x1e\x2b\x08\xb6\x42\x07\xdc\x20\x64\xbd\xd2\x0d\xc2\x48\xae\xe0\x3f\x74\xde\x90\x85\xdb\xf4\x06\xde\x45\x41\x8e\x48\xbe\xff\x5b\xac\x29\x40\xa7\xd6\x60\x89\x21\x78\x04\x6e\x8c\x87\x95\x69\x11\xf0\xa7\xc6\x9e\xc1\x58\xd0\xd4\xf5\xad\x51\x56\x23\x0c\x86\x9b\xcd\x21\xe3\x88\x54\x7c\x1b\x07\xd0\x92\x95\xb1\xa0\x40\x53\xbf\x06\x5a\x1d\x5a\xa0\x58\x08\x00\x80\x86\xb9\xff\x6b\x32\x19\x86\x21\x55\x9b\x2d\x53\x72\xf5\xa4\xdd\x5a\x7e\xf2\x39\x9f\x3e\x16\xe5\xe3\xf5\x6d\x7a\x23\xc4\x8b\x6d\xd1\x7b\x70\xf8\x3d\x18\x87\x15\x2c\xd7\xa0\xfa\xbe\x35\x5a\x2d\x5b\x84\x56\x0d\x40\x0e\x54\xed\x10\x2b\x60\x8a\x7b\x0e\xce\xb0\xb1\xf5\x15\x78\x5a\xf1\xa0\x1c\x8a\xca\x78\x76\x66\x19\xf8\xe8\x82\x76\x5b\x19\x0f\x87\x02\x59\x50\x16\x64\x56\x42\x5e\x4a\xb8\xcf\xca\xbc\xbc\x12\x5f\xf3\xc5\x3f\xf3\x97\x05\x7c\xcd\x9e\x9f\xb3\x62\x91\x3f\x96\x30\x7f\x86\xe9\xbc\x78\xc8\x17\xf9\xbc\x28\x61\xfe\x04\x59\xf1\x0d\x3e\xe5\xc5\xc3\x15\xa0\xe1\x06\x1d\xe0\xcf\xde\xc5\xdd\xc9\x81\x89\x57\x87\x55\x2a\x4a\xc4\xa3\xc3\x57\xb4\x5d\xc6\xf7\xa8\xcd\xca\x68\x68\x95\xad\x83\xaa\x11\x6a\xfa\x81\xce\x1a\x5b\x43\x8f\xae\x33\x3e\xbe\x3c\x0f\xca\x56\xa2\x35\x9d\x61\xc5\x9b\xcf\x67\x75\x52\xf1\x61\x22\x44\xaf\xf4\x6b\x1c\xa2\xa9\xeb\xc8\x0a\xa1\xc9\x7a\x86\x77\x22\x99\x92\xf5\xa1\xc3\xe9\x97\x97\xac\xaa\x36\xdb\x6d\x9f\x3b\x90\x93\x3d\x93\x6f\xe2\x0c\xbb\xdf\x8a\x33\xec\xa4\x48\xee\x43\xd7\xcf\x90\x9d\xd1\xe7\xe2\x9e\x49\x91\x7c\x44\x9e\x06\xe7\xd0\x72\xc9\x8a\x83\xdf\xe9\x51\x3c\x65\x52\x24\xdb\x9c\x3f\x1e\x3a\xce\x1d\x99\x14\x22\x99\x99\xb6\x35\x9a\x1c\xfa\x7f\x03\xba\x35\x1c\x3d\x77\x20\xbb\x37\xbe\x99\x59\xab\xe5\x9a\x2f\xba\x1b\x79\xc7\xdf\xce\x2f\x54\x87\xbf\x19\xbc\xeb\xf5\x80\x2d\xab\x4b\x03\x47\xb1\x8a\x3c\x7a\xc1\x6d\x5e\x5a\x89\xfa\xdc\x8e\xde\x9e\x4b\x91\x3c\xe3\xf7\x80\x9e\x4b\xf3\x0b\x73\x7b\x5a\xf2\x0e\xa4\xdb\xf3\xd9\x61\xc5\xe3\xdc\x49\xdf\x93\xdc\x41\xdb\x83\xd8\x34\x78\xa6\x6e\x5b\xff\xe2\x71\xfb\xcb\xbf\x57\xd5\x18\xbc\xd0\xfb\x5e\x55\x30\xc6\x52\x28\x88\x41\xc1\x97\x79\xb9\xd8\x7d\x27\x45\xf2\x62\x5f\x2d\x0d\xf6\x29\x58\x1d\x8b\x1f\xc7\xc3\x16\xc2\x6a\xa4\x52\x24\xb9\xd5\xe4\x1c\x6a\xde\x25\x32\x57\x87\x0e\x2d\x47\xdf\xec\xe0\x5b\x02\xd4\x88\xa5\x48\x0a\xe2\x8f\xe6\x07\xda\xb3\x64\x8c\xc6\x7f\xbd\x3a\xd2\x4b\x51\x91\x3c\x39\xd5\xe1\x40\xee\x35\xfe\x18\xa2\xdf\x90\x33\xbf\xc8\xb2\x6a\xaf\x7b\xaa\xae\x55\x60\xf2\x5a\xb5\xc6\xd6\x52\xbc\x17\xff\x07\x00\x00\xff\xff\x4f\x64\xce\xf5\xb7\x05\x00\x00") + +func testImagesResourceConsumerCommonCommonGoBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerCommonCommonGo, + "test/images/resource-consumer/common/common.go", + ) +} + +func testImagesResourceConsumerCommonCommonGo() (*asset, error) { + bytes, err := testImagesResourceConsumerCommonCommonGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/common/common.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerConsumeCpuBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\xdd\x8a\xc2\x30\x10\x85\xef\xfb\x14\x21\x57\x56\x56\x73\xbd\x05\x61\xdf\x43\x4a\x98\xa4\x63\x18\x9c\x76\x4a\x7e\x04\x7d\xfa\x45\x53\x77\xb7\x8b\x78\x99\x73\xce\x9c\x7c\xc9\xcc\xe0\xcf\x10\x70\x33\xe0\x09\x0a\x67\x7b\xa1\x44\x8e\x98\xf2\x55\x1d\xd4\x51\x1b\xf3\x2b\x74\x73\x71\x4c\x5e\xf7\x6d\xd3\xb0\xc0\xb0\x69\x94\x52\x4a\x7f\x91\x58\x07\x37\x64\x1b\x0b\x63\xb2\x41\x8c\x09\xd2\x0d\x78\xda\xbb\x1b\xeb\x8f\x9a\x0a\x62\x1d\x4d\x10\xaf\x7f\x04\x26\x17\xab\xd2\x36\xcd\x4f\xa0\xd6\x4e\x30\xa2\x3a\x28\xed\x65\x4a\x65\xc4\x9d\x9f\xcb\x32\xb9\x4c\xdd\xcd\x2e\x88\x7d\x82\xff\x2f\x5b\xce\xeb\xb6\x97\xf9\x7b\x20\x45\x9f\x1e\x0f\x5e\xee\xb3\x7e\x2e\xfb\x20\xba\xaf\xf6\x80\x73\x7a\xfe\x07\x4e\x83\x44\xe3\x28\xbb\xe2\xcf\x98\xf7\x12\x83\x71\x18\x33\x8d\x25\x7d\x9a\x74\x4d\x19\xc7\x94\x21\xbf\x82\xeb\x1f\x74\x27\x62\x0c\x51\xca\xbc\x86\x5b\x56\xb1\xbb\xb3\xac\xb1\x02\x8b\xdb\x1c\xf5\x76\xab\xfb\xb6\x1a\x19\x42\x05\x82\x92\x65\x84\x09\x02\x0e\x4f\xd8\xb7\x2b\x8c\x74\x81\x8c\xef\x41\x80\xf9\x05\xc4\x51\x77\x2b\xc2\xfe\x3d\x49\xdb\x7c\x07\x00\x00\xff\xff\xdd\xba\xec\xcb\x5b\x02\x00\x00") + +func testImagesResourceConsumerConsumeCpuBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerConsumeCpuBuild, + "test/images/resource-consumer/consume-cpu/BUILD", + ) +} + +func testImagesResourceConsumerConsumeCpuBuild() (*asset, error) { + bytes, err := testImagesResourceConsumerConsumeCpuBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/consume-cpu/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerConsumeCpuConsume_cpuGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x5d\x6f\xa3\x46\x14\x7d\x66\x7e\xc5\x11\x4f\x90\x78\xb1\x13\xb5\x95\xba\x49\x1e\xdc\x24\x6d\xad\xdd\x3a\x51\x70\xba\xda\xc7\x61\xb8\xc0\x68\x61\x86\x9d\xb9\xc4\xb1\xaa\xfc\xf7\x6a\xc0\x49\xec\x56\x2d\x2f\xc0\xb9\x5f\xe7\xdc\x73\xe7\x27\xe2\xda\xf6\x3b\xa7\xeb\x86\x71\xbe\x38\xfb\x11\x9b\x86\xf0\x69\x28\xc8\x19\x62\xf2\x58\x0e\xdc\x58\xe7\x33\x21\x3e\x6b\x45\xc6\x53\x89\xc1\x94\xe4\xc0\x0d\x61\xd9\x4b\xd5\x10\xf6\x91\x19\xfe\x24\xe7\xb5\x35\x38\xcf\x16\x48\x42\x42\xbc\x0f\xc5\xe9\x85\xd8\xd9\x01\x9d\xdc\xc1\x58\xc6\xe0\x09\xdc\x68\x8f\x4a\xb7\x04\x7a\x56\xd4\x33\xb4\x81\xb2\x5d\xdf\x6a\x69\x14\x61\xab\xb9\x19\x87\xec\x5b\x64\xe2\xeb\xbe\x81\x2d\x58\x6a\x03\x09\x65\xfb\x1d\x6c\x75\x98\x05\xc9\x42\x00\x40\xc3\xdc\x7f\x9c\xcf\xb7\xdb\x6d\x26\x47\x96\x99\x75\xf5\xbc\x9d\xb2\xfc\xfc\xf3\xea\xfa\x76\x9d\xdf\x7e\x38\xcf\x16\x42\x3c\x9a\x96\xbc\x87\xa3\xef\x83\x76\x54\xa2\xd8\x41\xf6\x7d\xab\x95\x2c\x5a\x42\x2b\xb7\xb0\x0e\xb2\x76\x44\x25\xd8\x06\x9e\x5b\xa7\x59\x9b\x7a\x06\x6f\x2b\xde\x4a\x47\xa2\xd4\x9e\x9d\x2e\x06\x3e\x5a\xd0\x2b\x2b\xed\x71\x98\x60\x0d\xa4\x41\xbc\xcc\xb1\xca\x63\xfc\xb2\xcc\x57\xf9\x4c\x7c\x59\x6d\x7e\xbf\x7b\xdc\xe0\xcb\xf2\xe1\x61\xb9\xde\xac\x6e\x73\xdc\x3d\xe0\xfa\x6e\x7d\xb3\xda\xac\xee\xd6\x39\xee\x7e\xc5\x72\xfd\x15\x9f\x56\xeb\x9b\x19\x48\x73\x43\x0e\xf4\xdc\xbb\xc0\xdd\x3a\xe8\xb0\x3a\x2a\x33\x91\x13\x1d\x0d\xaf\xec\x44\xc6\xf7\xa4\x74\xa5\x15\x5a\x69\xea\x41\xd6\x84\xda\x3e\x91\x33\xda\xd4\xe8\xc9\x75\xda\x07\xf3\x3c\xa4\x29\x45\xab\x3b\xcd\x92\xc7\xff\x7f\xc9\xc9\xc4\xc9\x5c\x88\x5e\xaa\x6f\xa1\x49\x27\xb5\x11\x42\x77\xbd\x75\x8c\x44\x44\x71\xd5\xca\x3a\x16\x51\xdc\x49\x6e\xc2\x9b\x75\x47\xb1\x10\x51\x5c\x68\x2e\x06\xf5\x8d\x78\xf4\xa2\x20\xc7\xba\x1b\xfc\xcf\x73\xbf\xf3\x4c\x9d\x67\xc9\xb1\x48\x85\x50\xd6\x78\x86\x6f\x89\x7a\x5c\x21\x54\x67\x37\x83\x1b\xc9\x24\x67\x8b\x14\x27\x13\xf6\x87\x6e\x5b\xed\x49\x59\x53\x0a\x51\x0d\x46\xa1\xb4\xb9\xed\x88\x1b\x6d\xea\x24\xc5\x5f\x22\x0a\xca\x35\x3e\x5e\xe1\xec\x02\x1a\x97\x38\x5b\x4c\xcf\x05\xf4\xe9\x69\x48\x88\x9e\x43\xb4\x6a\xad\xe4\x9f\x7e\x48\x16\xe9\x88\x9c\x5e\x21\x50\xcf\xf2\xef\x8e\x47\xec\x45\xbc\x08\xf1\x24\x5d\x50\xd7\x85\xa9\xca\x3a\xf2\x40\xa8\x94\x75\xb6\x32\x9c\xc4\xef\x78\x3c\xc3\x62\x86\x03\x00\x66\xe8\x0a\x72\x71\x2a\xa2\x72\xaf\x23\x27\x75\x54\xfd\x8a\x7f\xf0\xa4\xf6\xf5\xaf\xd0\x28\x36\xdc\xdc\x24\xd5\xc7\x69\xd8\xd1\xa8\x37\x6c\x7e\x2f\x34\x74\xba\x97\xce\x53\x92\x8a\x68\x3e\x87\xb2\xe6\x89\x1c\xe3\x80\x05\xdb\xe0\xb2\x22\xc3\xb2\xa6\x43\x21\xf7\x8a\x0f\xb7\x70\xf2\x1e\x49\x31\x7f\x83\xcf\x16\x07\xfc\x43\xfe\xb1\x31\x27\x07\xd2\xde\x2c\xca\x27\x77\x22\xcf\xd2\xf1\x5b\xcd\xda\x6e\x03\xcb\x4a\x3b\x3f\x82\xef\xf6\x67\xbf\x11\xdf\x3b\xab\xae\xef\x1f\x73\xd9\xf5\xed\xa8\x66\x3c\xdf\xb7\xba\x2c\x1f\x8a\x64\xec\x97\xe2\x12\x6f\x7c\x82\x97\xaa\x1f\xfe\xb3\xdd\xf2\x89\x9c\xac\x29\x19\x87\xce\xfe\x7f\xe4\x3f\xc3\x8f\x7d\x18\x9f\xa4\xd9\xf4\x11\x8e\x44\x57\x50\xfd\x90\x6d\x2c\xcb\x36\xac\xef\x12\xc7\xeb\x0c\x74\xa2\xa3\x73\x14\x51\xf4\x02\x6a\x3d\x4d\xb1\x69\x3d\xe1\xc4\x93\xf1\xd0\xc7\xf8\x74\x69\x7f\x07\x00\x00\xff\xff\xfa\x97\x81\x27\x93\x05\x00\x00") + +func testImagesResourceConsumerConsumeCpuConsume_cpuGoBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerConsumeCpuConsume_cpuGo, + "test/images/resource-consumer/consume-cpu/consume_cpu.go", + ) +} + +func testImagesResourceConsumerConsumeCpuConsume_cpuGo() (*asset, error) { + bytes, err := testImagesResourceConsumerConsumeCpuConsume_cpuGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/consume-cpu/consume_cpu.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerControllerBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\x2a\x2d\xae\x4c\xca\xaf\xe0\x4a\x2c\xca\xb5\x4d\x2c\xca\x35\x36\x2a\x33\xd3\x47\x12\x33\x33\xb1\x05\x93\x65\x16\x70\xd1\x82\x82\x64\x33\x93\x9c\x54\x5b\x28\x0d\x17\x2f\x36\xb6\x34\xa8\xb0\x05\x93\x70\x31\x40\x00\x00\x00\xff\xff\xc9\xd8\x77\x8f\x64\x00\x00\x00") + +func testImagesResourceConsumerControllerBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerControllerBaseimage, + "test/images/resource-consumer/controller/BASEIMAGE", + ) +} + +func testImagesResourceConsumerControllerBaseimage() (*asset, error) { + bytes, err := testImagesResourceConsumerControllerBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/controller/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerControllerBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x91\xdf\x8a\xf3\x20\x10\xc5\xef\xf3\x14\xe2\x55\x53\xbe\xd6\xfb\x40\xe1\x7b\x8f\x12\x64\x34\x53\x91\x1d\x9d\xe0\x9f\x42\xfb\xf4\x4b\x6b\xba\xdd\x2c\x25\x97\x9e\x73\xe6\xf8\xd3\x99\xc1\x7e\x81\xc3\xdd\x84\x17\xa8\x54\xf4\xd5\x67\x6f\x3c\xf9\x72\x13\x27\x71\x96\x4a\xbd\x85\x61\xae\x86\xbc\x95\x63\xdf\x75\xc4\x30\xed\x3a\x21\x84\x90\xff\x3d\x6b\x03\x77\x24\x9d\x2a\x61\xd6\x8e\x95\x72\x3c\x4c\x78\x39\x9a\x3b\xc9\x7f\x2d\xe5\x58\x1b\x1f\x21\xdd\x7e\x09\xe4\x4d\x6a\x4a\xdf\x75\x3f\x81\x56\x1b\x21\xa0\x38\x09\x69\x39\x96\xc4\x44\x98\x96\xc1\x65\xe8\xe1\x0d\x8e\xf5\x8b\xfb\x6f\xd7\x72\x5e\x97\x7d\xcc\x3f\x02\x39\xd9\xfc\x7c\xef\xfb\xba\xa3\x63\x39\x36\x77\xc2\x39\x2f\xbf\x51\x30\x17\xe5\x03\x38\xcc\x2a\x61\xe6\x9a\x2c\x1e\x2c\xc7\x5c\x03\x26\x65\x39\x04\x8e\x9f\xb0\xc6\x27\xd7\xc5\x13\xba\xc4\x75\x5e\x63\x2d\x3b\x38\x3c\x28\xd6\x40\x8e\xd8\xec\xce\x72\xbf\x97\x63\xdf\x8c\x02\xae\xb1\x40\x2d\x1c\x20\x82\xc3\xe9\xc5\xb9\xb9\xbb\xe4\xaf\x50\x70\x1b\x04\x88\x3e\x40\x9c\xe5\xb0\x22\x1c\xb7\x49\xfa\xee\x3b\x00\x00\xff\xff\xca\xd4\x63\x90\x54\x02\x00\x00") + +func testImagesResourceConsumerControllerBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerControllerBuild, + "test/images/resource-consumer/controller/BUILD", + ) +} + +func testImagesResourceConsumerControllerBuild() (*asset, error) { + bytes, err := testImagesResourceConsumerControllerBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/controller/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerControllerDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x41\x6f\xd3\x30\x14\xc7\xef\xfe\x14\x7f\x25\x17\x90\x4a\x5a\x7a\x40\x13\x9c\x42\x9b\x41\xb4\x2d\x99\x9a\x8c\x51\x21\x0e\x6e\xf2\x9a\x3c\xc9\xb5\x8d\xed\x90\xf5\xdb\xa3\x74\x9d\x58\x35\x9f\x2c\xbf\x9f\x9f\x7f\xfe\xbf\x18\x2b\x63\x8f\x8e\xbb\x3e\x60\xb9\xf8\xf8\x09\x75\x4f\xb8\x19\x76\xe4\x34\x05\xf2\x48\x87\xd0\x1b\xe7\x13\x11\x8b\x18\xb7\xdc\x90\xf6\xd4\x62\xd0\x2d\x39\x84\x9e\x90\x5a\xd9\xf4\xf4\x52\x99\xe1\x07\x39\xcf\x46\x63\x99\x2c\xf0\x6e\x02\xa2\x73\x29\x7a\xff\x45\xc4\x38\x9a\x01\x07\x79\x84\x36\x01\x83\x27\x84\x9e\x3d\xf6\xac\x08\xf4\xd4\x90\x0d\x60\x8d\xc6\x1c\xac\x62\xa9\x1b\xc2\xc8\xa1\x3f\x3d\x73\x6e\x92\x88\x18\xdb\x73\x0b\xb3\x0b\x92\x35\x24\x1a\x63\x8f\x30\xfb\xd7\x1c\x64\x38\x09\x4f\xab\x0f\xc1\x7e\x9e\xcf\xc7\x71\x4c\xe4\x49\x36\x31\xae\x9b\xab\x67\xd0\xcf\x6f\xf3\x55\x56\x54\xd9\x87\x65\xb2\x38\x5d\x79\xd0\x8a\xbc\x87\xa3\x3f\x03\x3b\x6a\xb1\x3b\x42\x5a\xab\xb8\x91\x3b\x45\x50\x72\x84\x71\x90\x9d\x23\x6a\x11\xcc\xe4\x3b\x3a\x0e\xac\xbb\x19\xbc\xd9\x87\x51\x3a\x12\x31\x5a\xf6\xc1\xf1\x6e\x08\x17\x61\xbd\xd8\xb1\xbf\x00\x8c\x86\xd4\x88\xd2\x0a\x79\x15\xe1\x6b\x5a\xe5\xd5\x4c\xc4\x78\xcc\xeb\xef\xe5\x43\x8d\xc7\x74\xb3\x49\x8b\x3a\xcf\x2a\x94\x1b\xac\xca\x62\x9d\xd7\x79\x59\x54\x28\xaf\x91\x16\x5b\xdc\xe4\xc5\x7a\x06\xe2\xd0\x93\x03\x3d\x59\x37\xf9\x1b\x07\x9e\x62\xa4\x76\xca\xac\x22\xba\x10\xd8\x9b\x67\x21\x6f\xa9\xe1\x3d\x37\x50\x52\x77\x83\xec\x08\x9d\xf9\x4b\x4e\xb3\xee\x60\xc9\x1d\xd8\x4f\xc3\xf4\x90\xba\x15\x31\x14\x1f\x38\xc8\x70\x3a\x79\xf3\xa9\x44\x88\xeb\x4d\x79\x37\xe9\x67\xf9\x5d\xfa\x2d\x13\xe9\x7a\x8d\xc6\xe8\xe0\x8c\x52\xe4\x30\xff\xbf\x17\xd9\xcf\xfb\xb2\xca\x70\xb5\xb8\x5a\x88\xac\xa8\x37\xdb\xfb\x32\x2f\x6a\xfc\x8a\x5e\x41\xd1\x6f\xf1\x2f\x00\x00\xff\xff\x35\x44\xf7\x2e\x9d\x02\x00\x00") + +func testImagesResourceConsumerControllerDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerControllerDockerfile, + "test/images/resource-consumer/controller/Dockerfile", + ) +} + +func testImagesResourceConsumerControllerDockerfile() (*asset, error) { + bytes, err := testImagesResourceConsumerControllerDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/controller/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerControllerMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x6b\xdb\x3e\x14\xc5\x9f\xff\xfa\x14\x87\x38\x0f\x09\xa4\x76\xff\x65\x6c\xd0\x51\x86\x97\x64\xad\x69\xb1\x87\xed\xb6\xf4\xa9\xc8\xf6\x8d\x7d\x41\x96\x3c\x49\x9e\x9b\x6f\x3f\x9c\xb6\xb0\x32\xbd\xe9\x9e\xa3\xa3\x9f\x8e\x02\x6c\xcd\x70\xb4\xdc\x76\x1e\x17\xe7\xff\x7f\x41\xd9\x11\x6e\xc7\x8a\xac\x26\x4f\x0e\xf1\xe8\x3b\x63\x5d\x28\x02\x11\xe0\x8e\x6b\xd2\x8e\x1a\x8c\xba\x21\x0b\xdf\x11\xe2\x41\xd6\x1d\xbd\x2b\x1b\x3c\x90\x75\x6c\x34\x2e\xc2\x73\xac\x66\xc3\xe2\x4d\x5a\xac\xbf\x8a\x00\x47\x33\xa2\x97\x47\x68\xe3\x31\x3a\x82\xef\xd8\xe1\xc0\x8a\x40\x2f\x35\x0d\x1e\xac\x51\x9b\x7e\x50\x2c\x75\x4d\x98\xd8\x77\xa7\x6b\xde\x42\x42\x11\xe0\xe9\x2d\xc2\x54\x5e\xb2\x86\x44\x6d\x86\x23\xcc\xe1\x6f\x1f\xa4\x3f\x01\xcf\xab\xf3\x7e\xb8\x8c\xa2\x69\x9a\x42\x79\x82\x0d\x8d\x6d\x23\xf5\x6a\x74\xd1\x5d\xb2\xdd\xa7\xc5\xfe\xec\x22\x3c\x3f\x1d\xb9\xd7\x8a\x9c\x83\xa5\x5f\x23\x5b\x6a\x50\x1d\x21\x87\x41\x71\x2d\x2b\x45\x50\x72\x82\xb1\x90\xad\x25\x6a\xe0\xcd\xcc\x3b\x59\xf6\xac\xdb\x0d\x9c\x39\xf8\x49\x5a\x12\x01\x1a\x76\xde\x72\x35\xfa\x0f\x65\xbd\xd3\xb1\xfb\x60\x30\x1a\x52\x63\x11\x17\x48\x8a\x05\xbe\xc7\x45\x52\x6c\x44\x80\xc7\xa4\xbc\xc9\xee\x4b\x3c\xc6\x79\x1e\xa7\x65\xb2\x2f\x90\xe5\xd8\x66\xe9\x2e\x29\x93\x2c\x2d\x90\xfd\x40\x9c\x3e\xe1\x36\x49\x77\x1b\x10\xfb\x8e\x2c\xe8\x65\xb0\x33\xbf\xb1\xe0\xb9\x46\x6a\xe6\xce\x0a\xa2\x0f\x00\x07\xf3\x0a\xe4\x06\xaa\xf9\xc0\x35\x94\xd4\xed\x28\x5b\x42\x6b\x7e\x93\xd5\xac\x5b\x0c\x64\x7b\x76\xf3\x67\x3a\x48\xdd\x88\x00\x8a\x7b\xf6\xd2\x9f\x26\xff\x3c\x2a\x14\xa2\xc8\xb7\xc5\x55\x6d\xb4\xb7\x46\x29\xb2\x22\xce\xb7\x37\xf8\x76\x05\xd9\x37\x9f\x3f\x89\x32\xce\xaf\xf7\xe5\xbc\x5f\xae\xb6\xf7\xf9\x2e\xc9\xd7\xe2\x3a\xbb\x8b\xd3\xeb\xe7\x87\x7d\x5e\x24\x59\x3a\x6b\x4a\x7a\x72\x7e\x8e\x7a\xde\x25\x39\xae\x60\xc9\x99\xd1\xd6\x74\x56\x1b\xed\xc6\x9e\x6c\xb4\x5c\x69\xe3\x1b\xb6\x58\xae\x5c\x47\x4a\x61\x98\x9a\xf5\x5a\xd0\xcb\x60\xac\x17\xa2\x62\x7d\x29\xfe\x0b\xc3\x28\x0c\x23\xee\x65\x4b\x67\xa3\x67\x15\xba\x0e\x15\x6b\x2c\x57\x33\xe5\x5a\x88\xf0\xe7\x4d\x96\x3e\x5d\xce\x43\xf1\x27\x00\x00\xff\xff\x4d\xe9\x92\xe8\x05\x03\x00\x00") + +func testImagesResourceConsumerControllerMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerControllerMakefile, + "test/images/resource-consumer/controller/Makefile", + ) +} + +func testImagesResourceConsumerControllerMakefile() (*asset, error) { + bytes, err := testImagesResourceConsumerControllerMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/controller/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerControllerVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesResourceConsumerControllerVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerControllerVersion, + "test/images/resource-consumer/controller/VERSION", + ) +} + +func testImagesResourceConsumerControllerVersion() (*asset, error) { + bytes, err := testImagesResourceConsumerControllerVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/controller/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerControllerControllerGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x59\x6d\x6f\xdb\x38\x12\xfe\x6c\xfd\x8a\x59\x01\x39\x58\x59\x55\xce\xf6\xc3\xa1\x48\x37\x07\xb8\x69\xd3\x35\x36\x76\x72\x71\xb2\xc5\x02\x07\x1c\x18\x6a\x2c\x13\x95\x48\x95\xa4\xe2\xfa\xb2\xf9\xef\x07\x52\x92\xad\x57\x3b\xc9\x26\x58\x1c\xae\x1f\xea\x48\x33\x9c\x79\xe6\x45\xcf\x50\xd4\xe8\xd0\x39\x15\xe9\x5a\xb2\x68\xa9\xe1\xed\xd1\x4f\x7f\x87\xeb\x25\xc2\xaf\xd9\x2d\x4a\x8e\x1a\x15\x8c\x33\xbd\x14\x52\x05\x8e\x73\xce\x28\x72\x85\x21\x64\x3c\x44\x09\x7a\x89\x30\x4e\x09\x5d\x22\x14\x12\x1f\x7e\x43\xa9\x98\xe0\xf0\x36\x38\x82\xa1\x51\x70\x0b\x91\xeb\xbd\x77\xd6\x22\x83\x84\xac\x81\x0b\x0d\x99\x42\xd0\x4b\xa6\x60\xc1\x62\x04\xfc\x4e\x31\xd5\xc0\x38\x50\x91\xa4\x31\x23\x9c\x22\xac\x98\x5e\x5a\x27\x85\x89\xc0\xf9\xbd\x30\x20\x6e\x35\x61\x1c\x08\x50\x91\xae\x41\x2c\xaa\x5a\x40\xb4\xe3\x00\x00\x2c\xb5\x4e\x8f\x47\xa3\xd5\x6a\x15\x10\x8b\x32\x10\x32\x1a\xc5\xb9\x96\x1a\x9d\x4f\x4e\x3f\xcd\xe6\x9f\xde\xbc\x0d\x8e\x1c\xe7\x86\xc7\xa8\x14\x48\xfc\x96\x31\x89\x21\xdc\xae\x81\xa4\x69\xcc\x28\xb9\x8d\x11\x62\xb2\x02\x21\x81\x44\x12\x31\x04\x2d\x0c\xce\x95\x64\x9a\xf1\xc8\x07\x25\x16\x7a\x45\x24\x3a\x21\x53\x5a\xb2\xdb\x4c\xd7\x12\x54\xa2\x62\x0a\xaa\x0a\x82\x03\xe1\xe0\x8e\xe7\x30\x99\xbb\xf0\x61\x3c\x9f\xcc\x7d\xe7\xcb\xe4\xfa\x97\x8b\x9b\x6b\xf8\x32\xbe\xba\x1a\xcf\xae\x27\x9f\xe6\x70\x71\x05\xa7\x17\xb3\x8f\x93\xeb\xc9\xc5\x6c\x0e\x17\x67\x30\x9e\xfd\x0e\xbf\x4e\x66\x1f\x7d\x40\xa6\x97\x28\x01\xbf\xa7\xd2\x60\x17\x12\x98\x49\x1d\x86\x81\x33\x47\xac\x39\x5f\x88\x1c\x8c\x4a\x91\xb2\x05\xa3\x10\x13\x1e\x65\x24\x42\x88\xc4\x1d\x4a\xce\x78\x04\x29\xca\x84\x29\x53\x3c\x05\x84\x87\x4e\xcc\x12\xa6\x89\xb6\xd7\xad\x70\x02\xe7\x70\xe4\x38\x29\xa1\x5f\x8d\x91\x84\x30\xee\x38\x2c\x49\x85\xd4\x30\x74\x06\xee\x22\x26\x91\x6b\x7e\x13\x6d\x7e\x62\x61\xaf\x38\xea\x91\x29\x4a\xf9\x77\x26\x63\xf3\xa7\xd2\x92\x0a\x7e\x67\xff\x5c\x73\xea\x3a\xce\x20\x00\xf7\xeb\x3b\x15\x30\x31\xfa\xba\xe9\xc3\x91\x46\xa5\x47\x2c\x21\x11\xaa\x91\x44\x25\x32\x49\xf1\x0d\x15\x5c\x65\x09\xca\x11\x15\x49\x22\xb8\xeb\x78\x8e\x73\x47\x24\x58\x28\x27\x60\x80\x04\x13\xae\x87\xae\xb9\xe1\xfa\xf0\xee\xe8\xdd\x91\x0f\xee\xa5\x11\xf3\x2c\xb9\x45\x19\xb8\x9e\x5d\x51\x5a\xba\x6c\xae\x2c\x05\x6f\x7a\x4d\x98\x0e\x2c\xb5\x54\xd3\xde\x1c\xe5\x1d\xa3\x38\x23\x09\x96\x66\xe7\x5a\x32\x1e\x55\x2c\xab\x5c\xe7\x0d\x27\x09\xba\x3e\xb8\xad\xf0\xcc\x4d\x6b\x41\x2c\xa0\x50\x36\x0e\xcc\x53\x60\x6a\x57\xea\x3f\x0a\x85\x4a\x09\x7d\x1c\x14\xab\x69\x5c\x87\xb8\x20\x59\xac\x4b\x14\xb9\x85\xa7\x40\x71\x16\x19\xa7\xb6\x4f\x86\x1e\xdc\x3b\x03\xeb\xfb\x92\x48\x85\x43\xcf\x19\x24\x91\x84\xe3\x13\x98\xe1\xea\x54\x70\x2d\x45\x1c\xa3\x34\xf7\x63\x11\x05\x67\x44\x93\x78\x68\xda\x26\x38\x67\x4a\x23\x1f\xf3\xd0\x04\x83\xc3\x45\xa2\x83\x79\x2a\x19\xd7\x8b\xa1\x7b\x7c\x10\xba\x3e\x1c\x9a\x12\x79\x3e\x24\x91\xf4\x3c\xe7\xc1\x71\xf4\x3a\x45\xd8\x1a\x05\xa5\x65\x46\xb5\x41\x20\x51\xa5\x82\x2b\xfc\x22\x99\x46\x79\x2e\xe8\x57\x30\xdd\x17\x4c\x33\x8d\xdf\x9d\xc1\x8a\x30\xfd\x59\x8a\x2c\x85\xcd\x3f\x2b\xfe\x52\xde\x37\xd6\x6d\x50\x0d\xd4\x70\x58\x71\x77\xef\x0c\xa8\x89\xec\x6f\xdb\x7b\xf7\x0f\xc6\xb7\xce\x24\x07\xba\xb1\x31\x5c\x12\x1e\x9a\x05\x95\xc5\x1e\xd8\x30\x7f\xb9\xbe\xbe\x1c\xae\x2c\x99\x05\x57\x35\xcc\xbe\xa1\x2b\x38\x2c\x24\xdf\x32\x54\xda\xe6\x96\x2d\x8c\x20\x98\xa2\x5e\x8a\x10\x7e\x38\x01\xf7\xf2\x62\x7e\xed\x1a\xd1\xc0\x2a\x7f\x92\x52\xc8\xe1\xca\x87\x0f\x24\x2c\x16\xfa\xb9\x83\xb9\x26\x3a\x53\xdb\xdb\x9e\x33\x28\xc0\x3a\x83\x07\x67\x30\x1a\x41\x4a\xa4\x32\x65\x36\x26\x2d\x5d\xa2\xd2\x10\x12\x4d\x0c\x67\xc0\xcd\xd5\xb9\xbd\xb0\x20\x50\xda\xaa\x1a\x2c\xb6\xd2\x67\x42\x26\x43\xef\xbd\xbd\xff\xc3\x09\x70\x16\x77\x40\x42\x29\x8b\x0b\xef\xd1\x98\xf2\xe4\x95\x0d\x77\x7a\x79\xb3\xc9\xc1\xcd\xd5\x79\x70\x49\xf4\x12\x4e\x4e\x4c\x17\x14\xe2\x71\x18\x5a\xc6\xb4\xde\xf3\xc4\x07\xf9\xef\x56\xc7\x60\x31\x16\x0c\xe8\x7d\x1e\xa7\x98\xec\xf2\x38\xc5\x64\xaf\xc7\x29\x26\x8f\xf2\x78\x9b\x25\xe9\x14\xb5\x64\xb4\xd3\xe3\x87\x8d\xb8\xdf\xe3\x56\x67\x87\xc7\x7a\x51\x6e\xf8\x57\x2e\x56\xfc\x2c\xe3\xd4\xcc\x83\x5a\x61\x66\x42\x9f\x89\x8c\x87\xde\x9e\x66\x6e\x27\xb8\xbb\xa7\xbf\x65\x28\xd7\x90\xc9\x38\xf8\x8d\xc4\x19\x2a\xdb\xd2\xa3\x11\x44\x68\xc6\xad\x79\x80\xcd\x8f\xed\x38\x33\xd5\xaa\x45\x0f\x33\x69\xe7\xd5\x1c\x69\x4e\x6b\xa6\xfd\xac\xbd\xe0\x33\xea\xe1\xc7\xad\xf8\x9f\xe6\xa6\x21\x1e\x16\xc7\x8c\x0a\x89\xaa\x6b\xc1\x74\x23\x2d\xf5\x8b\x86\x9f\xb3\xff\xe0\x84\x4f\x77\x2e\xbe\xea\x56\x2d\x2d\xb1\x05\xb4\xe1\x9e\x9c\x80\xeb\xc2\x1f\x7f\x40\x0b\xd7\x46\xb2\x1b\x41\xae\xd6\x7e\xaa\x66\x42\x7f\x66\x77\xb8\xa9\xe0\x58\x46\x59\x82\xfc\x71\x8f\xbd\x4d\xbf\x99\xd0\x28\x8b\x47\x7d\x98\x57\x41\xe5\x5b\x21\xad\xbc\x5d\xa5\xf0\xab\x81\x5a\x44\x26\x51\xc5\xd0\x0f\xc6\x5a\xb0\x61\x2b\x13\xb5\xd2\xf8\x95\x74\x74\xaf\x6f\xa6\xab\xbf\x52\x7e\x5f\x02\xbb\x0d\xef\xcc\x76\xab\x8a\xb9\x8d\x82\xda\x6a\x55\x6c\x4a\x76\x82\xd8\xab\x06\x3f\x9f\xc0\x51\x47\x95\x27\x9c\x0a\x29\x91\xea\x67\x96\x99\x8a\x8c\x6b\x93\x83\x2d\x70\x18\xf5\x81\xb0\x13\xb4\xa9\xfd\x06\xac\x8d\xc3\xde\x35\x66\x66\x9f\x15\x33\x7b\xe5\x83\x7b\x75\x0a\x09\xe1\x24\x42\x79\x0c\x0a\x79\x68\x9a\xf8\xe0\xae\xf4\x69\x1b\xac\x68\x2b\x73\xbb\xe2\x09\x09\x5d\xda\x91\xf3\xd3\x66\x0a\xf5\xe9\xfe\x8b\xbb\x7e\x8e\xab\xb7\xfa\x46\x60\xf3\xc1\x16\xb9\x26\xfc\xa3\xcc\x70\xc1\x9d\x9b\xfd\x40\x30\x0e\xc3\xa1\xd5\xf1\x2a\x62\x83\x7d\xcb\x6d\x45\x7e\x95\x09\x71\x9f\xe3\x4a\xff\x78\x96\x7a\x2d\xad\xab\x7d\x08\x7e\x32\xde\x23\x01\x55\x00\x17\x1c\x5b\x18\x72\x8e\x37\x03\xbe\xe5\xa8\x6d\xd8\x6c\x6e\x86\x4f\x22\x72\x3b\xb7\x5e\x92\xc8\xed\x2c\x7d\x06\x91\x63\x44\x6e\xd7\xba\x87\xc7\x4b\x61\x37\x8d\xef\x5a\x7a\xd5\xa9\xf9\x48\x12\x6f\x18\xee\xe1\xf0\x4e\xad\xbf\x96\xc2\x9b\x45\x78\x2e\x85\x97\xa1\xf9\xdb\x5c\xf4\x10\x78\x3d\x09\xbd\x25\x6a\x3e\x47\xbb\xad\xee\xca\xf3\x7e\xf2\xae\xdb\xee\x23\xe5\xa7\x69\xbd\x3e\x73\x6f\x3c\x35\x89\xbb\x14\x54\x78\x7b\xa3\xdb\x4d\xdb\xdb\x15\x7f\x8e\xb5\xa7\x1f\xf6\xb3\xf5\xf4\x43\x3f\x4b\x57\x8b\xff\x52\x24\x3d\xc5\x64\x2f\x49\x6f\xfd\xbe\x0a\x47\x6f\x21\xbc\x16\x47\x57\x77\xfa\x2f\xc2\xd1\x4d\xb3\xe6\x11\x37\xbf\x4d\xba\x35\xf7\x66\x24\xc1\x92\x27\x43\x8c\x35\xe9\x64\x72\x23\xd8\x68\x3d\x99\xf5\x2b\xf5\x3a\xcd\x94\x16\x49\xee\x7a\x0f\x91\x57\x55\x1f\xcb\xe4\x36\xca\xcd\x75\x35\x9e\x2e\x56\xef\x00\xf3\x17\xd1\xfa\x68\x11\x0b\x52\xb2\x7b\xbb\x7c\x7f\x9e\xe3\x6d\x2a\xfc\x3c\x23\x3d\xab\xb6\xc9\xea\x2f\x99\xdf\x97\xbe\xbd\xcc\xde\xce\xf5\x5e\x6a\xaf\x80\xed\x24\xec\xb6\xff\xbd\x6a\xaf\x4e\xec\x16\x73\x9d\xd4\xab\xfe\xb7\xac\x9e\x2b\x76\x30\x7a\x5d\xfd\x19\x94\x7e\x9b\x25\x29\x50\x6b\xa5\x7c\x22\x6e\xd7\x46\xa9\x9b\xdd\xad\xba\x55\xe8\xa1\xf6\x66\xfd\x5f\x6c\x03\x5e\xb1\x6b\x62\x4b\x0a\x0f\xfb\x10\xbc\xce\x4e\xbc\x07\xcc\xb3\xf9\xbe\xa8\x52\x9d\xef\xfb\x5e\x3f\x7a\x8f\x0d\xad\xbc\xfa\x62\x5d\xc3\x62\xa8\x23\x3f\xa6\x15\x12\x98\xe9\xaa\xa3\xf7\xc0\xe0\xe7\xcd\xca\xf7\xc0\x7e\xfc\xd1\xe6\x24\x12\x65\xdf\xec\x7c\x05\xe9\x71\x64\x83\x7e\x74\x68\xb5\xa1\xbd\x37\xb4\xce\xf1\xfd\x12\x91\xd5\x07\x77\xb7\x9f\xa7\x05\x56\x6f\x92\xee\xc8\x8a\x27\x2e\xe7\xf7\x6a\xa0\x25\x03\xbf\x70\xf9\x7a\xfa\xb6\xed\xad\x16\x2a\x95\x48\x74\x69\x43\xde\x5c\x9d\x0f\x55\xb6\x58\xb0\xef\x05\x6e\xaf\xdc\x52\xdc\x6f\x0e\xc1\x6b\xa7\xf8\xc5\x27\xbb\x03\x15\x1c\xa8\x40\xdd\xd1\x80\xc6\x99\xd2\x28\x83\x58\x50\x12\x1f\x1f\x84\x07\xca\xf5\xe1\xb0\xe3\xa3\x46\xf7\x5d\xfb\xa1\xa2\x22\xba\x14\x52\xfb\x90\x43\xb2\xcf\xd4\x68\x04\x7d\x6d\x6b\x05\xaa\x7e\xd0\x6d\xdf\x91\xd2\xac\xd8\xb9\xa6\x26\x03\x45\x89\x69\xbb\xb8\xdd\xcf\x42\x4f\x75\xb7\x27\x1b\x8c\xeb\xee\x6a\x86\xb8\x40\x09\xb4\xc2\x0d\x1f\x05\xb7\xdf\x4f\xf2\x6d\xdc\xf1\x49\x47\xfa\x5b\xa7\xde\x9e\x33\xf8\xb7\x5f\x9e\xcd\x5b\x2c\x97\x42\x69\x7b\x36\x6f\xcd\xf8\x95\xed\xe0\x7d\xe3\xdc\xf2\x18\xee\xcb\x31\x3c\xd1\x82\x54\xce\xdd\xbc\x07\x1f\x9a\x1b\xb4\xa6\x76\xb5\x67\x1e\x1e\x3c\x67\x40\x83\xf6\x47\x98\xc0\xfc\x37\xf4\xb6\xd1\x76\xa8\xdc\xf0\xb8\x50\x2a\xbe\x32\x54\xbe\x26\x34\xe7\xda\x19\x61\x71\xfe\xcd\x96\x0a\xce\x91\x56\x5f\x3c\xe4\x71\x39\x9c\x50\xca\xc6\x01\x78\xd3\x4e\x91\xc7\x10\x0e\xc2\xe6\xd1\x52\x25\x0b\x9d\x2d\xb5\xe5\x8b\xbe\x96\x4a\x30\x11\x72\xfd\xd4\xae\xaa\xf2\x50\x1f\x67\x94\x6f\x78\xaf\xd2\x54\xdb\x0f\x1b\x4f\x6b\xaa\xda\x31\x4a\xab\xa7\x4a\xe9\xff\x57\x4b\x95\x51\xe7\x1d\xb5\xc9\x41\x37\x47\x55\x37\x9e\x7d\x2c\x55\xdb\xa7\x3d\x95\xaf\x1e\x31\x8f\x68\x45\xc7\x7e\x99\x2e\x27\x53\xbe\x01\x7d\xd9\x86\x6b\x7d\xd7\xda\xdb\x70\xce\x60\x50\x6b\xb9\xda\x2b\xe9\x31\xdc\x37\xe1\x3f\xb5\xd9\x7c\xd8\xbe\xbb\xb6\x14\x8d\xe4\x7f\xaf\x1f\x4d\x92\x31\x2c\x5b\xe6\x40\xd9\xcd\x7b\x98\x6f\xde\x1b\xd9\x2a\xaa\x6c\xda\xf3\xbf\x01\x00\x00\xff\xff\xec\xa5\x66\x9e\x3f\x24\x00\x00") + +func testImagesResourceConsumerControllerControllerGoBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerControllerControllerGo, + "test/images/resource-consumer/controller/controller.go", + ) +} + +func testImagesResourceConsumerControllerControllerGo() (*asset, error) { + bytes, err := testImagesResourceConsumerControllerControllerGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/controller/controller.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerResource_consumerGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x91\x51\x6b\xdb\x4a\x10\x85\x9f\xb3\xbf\xe2\x20\xb8\x20\x05\x5d\xd9\x37\x70\x21\xa4\xe4\x41\x75\x12\x22\x12\xec\x60\x39\x0d\x79\x5c\x4b\x23\x69\xa9\xb4\xbb\xdd\x1d\x45\x31\xa5\xff\xbd\xac\xe2\x42\x42\xdb\xa7\x65\x74\xce\xcc\xf9\x34\xb3\x38\x15\x2b\x63\x0f\x4e\xb5\x1d\xe3\x6c\xf9\xdf\xff\xd8\x75\x84\xbb\x71\x4f\x4e\x13\x93\x47\x3e\x72\x67\x9c\xcf\x84\xb8\x57\x15\x69\x4f\x35\x46\x5d\x93\x03\x77\x84\xdc\xca\xaa\x23\x1c\x95\x14\x5f\xc8\x79\x65\x34\xce\xb2\x25\xe2\x60\x88\x8e\x52\x94\x7c\x12\x07\x33\x62\x90\x07\x68\xc3\x18\x3d\x81\x3b\xe5\xd1\xa8\x9e\x40\xaf\x15\x59\x86\xd2\xa8\xcc\x60\x7b\x25\x75\x45\x98\x14\x77\x73\xc8\x71\x44\x26\x9e\x8f\x03\xcc\x9e\xa5\xd2\x90\xa8\x8c\x3d\xc0\x34\xef\x5d\x90\x2c\x04\x00\x74\xcc\xf6\x62\xb1\x98\xa6\x29\x93\x33\x65\x66\x5c\xbb\xe8\xdf\x5c\x7e\x71\x5f\xac\xae\xd7\xe5\xf5\xbf\x67\xd9\x52\x88\x47\xdd\x93\xf7\x70\xf4\x6d\x54\x8e\x6a\xec\x0f\x90\xd6\xf6\xaa\x92\xfb\x9e\xd0\xcb\x09\xc6\x41\xb6\x8e\xa8\x06\x9b\xc0\x39\x39\xc5\x4a\xb7\x29\xbc\x69\x78\x92\x8e\x44\xad\x3c\x3b\xb5\x1f\xf9\xc3\x82\x7e\x51\x29\x8f\xf7\x06\xa3\x21\x35\xa2\xbc\x44\x51\x46\xf8\x9c\x97\x45\x99\x8a\xa7\x62\x77\xbb\x79\xdc\xe1\x29\xdf\x6e\xf3\xf5\xae\xb8\x2e\xb1\xd9\x62\xb5\x59\x5f\x15\xbb\x62\xb3\x2e\xb1\xb9\x41\xbe\x7e\xc6\x5d\xb1\xbe\x4a\x41\x8a\x3b\x72\xa0\x57\xeb\x02\xbb\x71\x50\x61\x75\x54\x67\xa2\x24\xfa\x10\xde\x98\x37\x18\x6f\xa9\x52\x8d\xaa\xd0\x4b\xdd\x8e\xb2\x25\xb4\xe6\x85\x9c\x56\xba\x85\x25\x37\x28\x1f\x8e\xe7\x21\x75\x2d\x7a\x35\x28\x96\x3c\xd7\xbf\xfd\x4e\x26\x4e\x17\x42\x58\x59\x7d\x0d\x43\x06\xa9\xb4\x10\x6a\xb0\xc6\x31\x62\x71\x12\x35\xbd\x6c\xa3\xf0\x0e\x1c\x9e\xde\xcc\x95\x26\x5e\x84\xa3\x44\x22\x11\xe2\x45\x3a\xcc\xfe\x4b\x04\x77\x56\x68\x8e\xa3\xf0\x21\x4a\x71\xbe\x3c\x5f\xa6\x88\x1e\x82\xac\xc7\x61\x4f\x2e\x8b\x12\x21\x9a\x51\x57\x73\x56\x9c\xe0\xbb\x38\x99\xdb\x1e\xa4\xf3\x14\x27\xe2\xc4\x91\x37\xa3\xab\x68\x65\xb4\x1f\x07\x72\xb7\x52\xd7\x3d\x39\x5c\x5c\x62\x4d\xd3\xf6\xcf\x6a\x68\xec\x4d\x9b\xdd\x48\x96\x7d\x1c\xd8\xb2\x7b\xe5\x99\x74\xae\xeb\x92\xdc\x0b\xc5\xcd\xc0\x59\x69\x9d\xd2\xdc\xc4\xd1\xc5\x3f\x75\x94\xe2\x34\x50\x26\x29\xfe\x92\x98\x24\xe2\x87\xf8\x19\x00\x00\xff\xff\x8b\x9d\x03\xcd\x55\x03\x00\x00") + +func testImagesResourceConsumerResource_consumerGoBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerResource_consumerGo, + "test/images/resource-consumer/resource_consumer.go", + ) +} + +func testImagesResourceConsumerResource_consumerGo() (*asset, error) { + bytes, err := testImagesResourceConsumerResource_consumerGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/resource_consumer.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerResource_consumer_handlerGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x57\x6d\x6f\x9b\x40\x12\xfe\xec\xfd\x15\x53\x4e\xa9\x20\x47\xa1\xad\x7a\xd5\x29\x95\x3f\xb8\x69\x5e\xac\x26\x8e\x2f\x76\x1a\x55\xbd\xea\xb4\x86\x01\xaf\x0c\xbb\x74\x77\x89\x6b\xa5\xf9\xef\xa7\x05\x6c\x63\x63\xf2\x76\xed\xdd\x7d\xb1\x81\x1d\x66\x9e\x79\x78\x66\x66\xd7\xdf\x27\x87\x22\x5b\x48\x16\x4f\x35\xbc\x7d\xfd\xe6\x6f\x30\x9e\x22\x7c\xce\x27\x28\x39\x6a\x54\xd0\xcb\xf5\x54\x48\xe5\x11\x72\xc6\x02\xe4\x0a\x43\xc8\x79\x88\x12\xf4\x14\xa1\x97\xd1\x60\x8a\x50\xad\xb8\xf0\x05\xa5\x62\x82\xc3\x5b\xef\x35\xd8\xc6\xc0\xaa\x96\x2c\xe7\x03\x59\x88\x1c\x52\xba\x00\x2e\x34\xe4\x0a\x41\x4f\x99\x82\x88\x25\x08\xf8\x33\xc0\x4c\x03\xe3\x10\x88\x34\x4b\x18\xe5\x01\xc2\x9c\xe9\x69\x11\xa4\x72\xe1\x91\xaf\x95\x03\x31\xd1\x94\x71\xa0\x10\x88\x6c\x01\x22\xaa\x5b\x01\xd5\x84\x00\x00\x4c\xb5\xce\x0e\x7c\x7f\x3e\x9f\x7b\xb4\x40\xe9\x09\x19\xfb\x49\x69\xa5\xfc\xb3\xfe\xe1\xd1\x60\x74\xf4\xea\xad\xf7\x9a\x90\x2b\x9e\xa0\x52\x20\xf1\x47\xce\x24\x86\x30\x59\x00\xcd\xb2\x84\x05\x74\x92\x20\x24\x74\x0e\x42\x02\x8d\x25\x62\x08\x5a\x18\x9c\x73\xc9\x34\xe3\xb1\x0b\x4a\x44\x7a\x4e\x25\x92\x90\x29\x2d\xd9\x24\xd7\x1b\x04\x2d\x51\x31\x05\x75\x03\xc1\x81\x72\xb0\x7a\x23\xe8\x8f\x2c\xf8\xd8\x1b\xf5\x47\x2e\xb9\xee\x8f\x4f\x2f\xae\xc6\x70\xdd\xbb\xbc\xec\x0d\xc6\xfd\xa3\x11\x5c\x5c\xc2\xe1\xc5\xe0\x53\x7f\xdc\xbf\x18\x8c\xe0\xe2\x18\x7a\x83\xaf\xf0\xb9\x3f\xf8\xe4\x02\x32\x3d\x45\x09\xf8\x33\x93\x06\xbb\x90\xc0\x0c\x75\x18\x7a\x64\x84\xb8\x11\x3c\x12\x25\x18\x95\x61\xc0\x22\x16\x40\x42\x79\x9c\xd3\x18\x21\x16\x37\x28\x39\xe3\x31\x64\x28\x53\xa6\xcc\xc7\x53\x40\x79\x48\x12\x96\x32\x4d\x75\x71\xdf\x48\xc7\x23\xfb\x3e\x21\x19\x0d\x66\xc6\x49\x4a\x19\x27\x84\xa5\x99\x90\x1a\x6c\xd2\xb1\xa2\x54\x5b\xa4\x63\x71\xd4\xbe\xf9\x0a\xcb\xeb\x5c\x26\xe6\x52\x69\x19\x08\x7e\x53\x5c\x2e\x78\x60\xfe\x35\x4b\xd1\x22\xa4\xe3\x81\x35\xfb\xbb\xf2\x98\xf0\x67\x2b\x01\xfa\x1a\x95\xf6\x59\x4a\x63\x54\xbe\x44\x25\x72\x19\xe0\xab\x40\x70\x95\xa7\x28\xfd\x40\xa4\xa9\xe0\x16\x71\x08\xd1\x8b\x0c\xe1\xb2\xb2\x38\xac\x0c\x4e\x29\x0f\x13\x94\xa0\xb4\xcc\x03\x0d\xb7\xa4\x93\xa2\x96\x2c\x50\x46\x23\x90\xd2\xec\x9b\xf9\x2a\x3c\xfe\x1e\x25\x82\xea\xf7\xef\x56\xeb\x67\x22\x98\x81\x01\xe8\x9d\xe7\x1a\x7f\x92\x3b\x42\xa2\x9c\x07\x30\xc0\x79\x4b\x0c\xdb\x81\xfd\xb6\xf0\xb7\xa4\x23\x51\xe7\x92\xc3\xcb\x16\x93\xdb\x2a\xee\xc1\x0e\x50\xb7\x77\x77\xab\xf8\xf6\xb4\x72\xd9\x16\xcb\x81\x11\xca\x1b\x3c\x1d\x8f\x87\xf6\xbc\x28\x03\xef\x12\x55\x26\xb8\xc2\x6b\xc9\x34\x4a\xd7\x08\x1d\xf6\xab\x95\x1f\x39\x2a\xed\x18\x80\xbe\x0f\xa5\x6f\x23\x2a\xa1\x8c\x2a\x96\x5c\x31\x0e\x43\x29\x52\xd4\x53\xcc\x95\xd1\x53\x4a\x35\xd8\x13\xa1\xa7\x70\x72\x34\x86\x97\x30\xbc\x18\x8d\x1d\xd2\x61\x91\xf1\xed\x5d\x5d\x9e\x79\x43\xaa\xa7\xd0\xed\xc2\x79\xe9\xa2\x17\x86\x85\x4e\x6f\x49\xa7\x53\x65\xe0\x95\xff\x95\x81\x3d\x77\x48\xa7\x22\x89\x74\xee\x56\xbe\xce\x51\x4f\x45\x08\x2f\xba\x60\x99\x20\x56\xe9\xc1\x60\x3f\x92\x52\x48\x7b\xee\xc2\x47\x1a\x56\x79\xb8\x65\xbe\x23\x4d\x75\xae\xd6\x8f\xb7\x3c\xfb\x3e\x64\x54\x16\x09\x1a\x97\x45\xdd\xa3\xd2\x10\x52\x4d\x8d\xf8\xe1\xea\xf2\xac\xb8\x29\x40\xa0\x94\x70\xd0\x2d\xb0\x0c\xa9\x54\x78\x2c\x64\x6a\x3b\x1f\x8a\xe7\x2f\xba\xc0\x59\xb2\x03\x12\x4a\x59\xdd\x38\x8f\xc6\x54\x91\x5f\x49\xfb\x70\x78\xb5\x93\xcf\xc3\xd5\x72\x3b\xa5\x6b\x1b\x83\xc5\x78\x30\xa0\x1f\x8a\x78\x8e\xe9\x7d\x11\xcf\x31\x7d\x30\xe2\x39\xa6\x8f\x8a\x18\xa3\x3e\xcc\xa5\x44\xae\x4b\x5a\x76\xc6\x3d\xd9\x32\x6a\x8f\xbe\x6d\xd9\xd0\xd2\x3a\xf2\x24\x4f\xb3\x52\x71\x3b\x63\x7e\x5c\x2d\xb7\x47\x5b\xdb\xdc\x93\xeb\xa6\x1c\xa2\x54\x7b\xa3\x4c\x32\xae\x23\xdb\xda\x53\x07\xb0\xa7\x2c\x17\xae\xf8\x8c\x8b\x39\x3f\xce\x79\x60\x1a\xad\xbb\x81\x66\x53\x37\x03\xa1\x8f\x45\xce\x43\xe7\x29\x7d\xa0\x29\x86\xdd\xed\xe0\x47\x8e\x72\x01\xb9\x4c\xbc\x2f\x34\xc9\x51\x2d\xbb\x41\x8c\x66\xc6\x41\xd9\x8b\xca\xea\x30\xa3\xa4\x2e\xd0\x30\x97\xc5\x90\x18\x61\x30\x2a\xcd\x0e\xba\xa5\x3f\xef\x04\xb5\xfd\x69\xbd\xfc\x0f\xf3\xd0\x21\x9d\x94\x25\x09\x0b\x84\x44\xb5\xeb\x85\xf3\xd5\xea\xd2\x9e\x45\xd0\x0c\xd2\xed\x82\x65\xc1\xaf\x5f\xd0\xf0\x56\xae\x34\x0b\x72\x20\xf4\x09\xbb\xc1\x15\xd9\x3d\x19\xe7\x29\xf2\xc7\x75\x8c\x82\x0d\x33\xb4\x50\x56\x5d\xc2\x2e\x49\x51\xe5\x76\x40\x2b\xe7\x3e\x66\xdc\x7a\x06\x05\x22\x93\x74\x35\x07\xbd\x9e\x16\xcc\x6e\xa4\xb8\xc1\x94\x5b\xcb\x73\xf7\xfb\xdb\x3c\x34\x88\x2b\x5f\xab\xfa\xd5\x06\x71\x1b\x2b\x4d\xe2\xfa\x3c\x10\x52\x62\xa0\x9f\xc9\x5c\x2c\x6a\x2d\xcb\xae\xe7\x54\x43\xe7\x90\x8e\x29\x91\xe3\xa2\x44\x12\x6e\xe2\x36\xfa\xdc\xb7\x37\x07\xdf\x77\xd8\xd5\x3d\x36\xd5\xb3\x6d\xbd\xf1\x55\x9a\xea\x7c\x6e\x71\x15\x7d\xef\x77\x16\x57\xd1\x8b\x9f\x51\x5c\x18\xd3\xc9\x42\xb7\xd4\xd6\x72\xf1\x91\xa5\xb5\xe5\xeb\xff\xa1\xb2\xb6\x69\x79\x6e\x65\x2d\x53\x73\xd7\x59\xb6\xd4\xd5\x26\x09\x0f\x97\xd5\xa6\xbb\xff\x42\x55\x19\xe9\xd5\xf2\x79\x54\x51\xad\x47\x79\x5b\x51\xad\x1d\x36\x54\xf3\xa7\x4b\xaa\x39\xcc\x77\x15\x56\x51\x46\x0d\xd3\x1d\xf0\xac\x6b\x5a\x9c\x70\x0e\x8a\x73\xa7\x39\x23\xa1\xe1\x19\xc3\x17\xd6\x86\xb5\xb1\x6d\xd9\x71\x94\x24\x3d\x39\x91\xd5\xc6\xb6\x15\xff\x72\x5f\x51\x3b\x72\x78\xe6\xc7\xe4\x11\x62\x84\x12\x76\x59\x5c\xf1\xa4\xb2\x31\x95\x31\x73\xe1\xa6\xd8\x9f\x52\x1e\xe3\xb6\x7d\xa1\xbc\x75\x8e\x51\x41\xc8\x5f\xe0\xf4\xe8\x6c\x08\x7b\x66\x5b\x1f\x09\x48\x51\x29\x1a\xa3\xf7\x4f\x6e\xb9\x30\x73\x76\xbe\x30\xfe\x3a\x3c\x32\x2f\xc4\x34\x8f\xb1\xdd\x70\x4f\xc1\x5e\x54\x2e\xbb\x70\xe3\x18\xa9\x3e\x81\xb5\xf5\xd6\xcc\x2e\xe1\x57\xcd\xd1\x85\x10\x13\xd3\x1e\xcb\xc3\xd0\x5a\x71\x60\xce\x8d\xde\x52\x72\x0f\x32\xca\x22\xf8\x97\x0b\x62\x66\xd8\xda\xb2\xfb\x56\xfe\x7f\xff\x60\x96\xeb\x3b\xbe\xad\x75\xf8\x6b\xb7\x04\x43\x3a\x77\x80\x89\xc2\x7b\x8d\xd7\xb6\xbb\x81\xad\x3e\x24\xe9\x14\x99\x8c\x12\xc4\x6c\xd5\xb0\xcc\xe3\xfb\xd2\x69\x8b\xfa\x6a\x15\xf6\xde\x98\x4f\x96\x73\x7d\xdb\xfb\x5b\x46\xdd\xb6\xdb\xe5\xd1\x7b\x7b\x6a\x99\x67\x03\x9a\xe2\xb2\x01\x15\xd9\xed\x1c\x88\x66\x61\x65\xf5\xe4\xe1\xf9\xd0\x38\x2c\xb0\xad\xee\xeb\x28\xfe\x47\xa3\xd1\x2f\x2a\xa2\x9a\x90\x4d\x36\xff\xf3\x39\x59\xe4\x58\x95\x5f\xe3\xad\xf2\x30\x6c\x10\xd8\x35\x2e\x5c\x78\xff\xee\xc1\x29\x59\x73\xf8\x27\x27\xe4\x52\xff\x8d\xc6\x52\xa5\xe4\x6e\x36\x90\x3a\x05\xce\x7e\x59\x91\x18\x08\x73\xe8\x6a\x4c\x95\xc6\x39\xb1\x75\x90\x96\xf1\x9a\x2a\x6e\x8c\xd1\x12\xd1\x86\x86\x9f\x3c\x6a\xff\x1d\x00\x00\xff\xff\x47\xcf\xf6\x36\xce\x15\x00\x00") + +func testImagesResourceConsumerResource_consumer_handlerGoBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerResource_consumer_handlerGo, + "test/images/resource-consumer/resource_consumer_handler.go", + ) +} + +func testImagesResourceConsumerResource_consumer_handlerGo() (*asset, error) { + bytes, err := testImagesResourceConsumerResource_consumer_handlerGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/resource_consumer_handler.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesResourceConsumerUtilsGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\x41\x6f\xe3\x36\x13\x3d\x9b\xbf\xe2\x41\xc0\x02\xf6\x7e\xb6\x94\x18\xf8\x2e\x29\x72\xf0\x7a\xd3\xd6\xd8\x8d\xbd\x88\x9c\x2e\xf6\x48\x53\x63\x89\xa8\x48\xaa\xe4\x28\x8e\x51\xec\x7f\x2f\x28\x3b\xb6\x95\x20\x40\x7b\x91\x69\xce\x7b\x33\x6f\xde\x0c\x98\x7d\x14\x73\xd7\xec\xbd\x2e\x2b\xc6\xf4\xea\xfa\xff\x58\x57\x84\x2f\xed\x86\xbc\x25\xa6\x80\x59\xcb\x95\xf3\x21\x15\xe2\xab\x56\x64\x03\x15\x68\x6d\x41\x1e\x5c\x11\x66\x8d\x54\x15\xe1\x18\x19\xe3\x0f\xf2\x41\x3b\x8b\x69\x7a\x85\x61\x04\x24\xc7\x50\x32\xfa\x45\xec\x5d\x0b\x23\xf7\xb0\x8e\xd1\x06\x02\x57\x3a\x60\xab\x6b\x02\x3d\x2b\x6a\x18\xda\x42\x39\xd3\xd4\x5a\x5a\x45\xd8\x69\xae\xba\x22\xc7\x14\xa9\xf8\x71\x4c\xe0\x36\x2c\xb5\x85\x84\x72\xcd\x1e\x6e\x7b\x89\x82\x64\x21\x00\xa0\x62\x6e\x6e\xb2\x6c\xb7\xdb\xa5\xb2\x53\x99\x3a\x5f\x66\xf5\x01\x15\xb2\xaf\x8b\xf9\xdd\x32\xbf\x9b\x4c\xd3\x2b\x21\x1e\x6d\x4d\x21\xc0\xd3\x5f\xad\xf6\x54\x60\xb3\x87\x6c\x9a\x5a\x2b\xb9\xa9\x09\xb5\xdc\xc1\x79\xc8\xd2\x13\x15\x60\x17\x75\xee\xbc\x66\x6d\xcb\x31\x82\xdb\xf2\x4e\x7a\x12\x85\x0e\xec\xf5\xa6\xe5\x9e\x41\x2f\xaa\x74\xc0\x25\xc0\x59\x48\x8b\x64\x96\x63\x91\x27\xf8\x34\xcb\x17\xf9\x58\x7c\x5f\xac\x7f\x5f\x3d\xae\xf1\x7d\xf6\xf0\x30\x5b\xae\x17\x77\x39\x56\x0f\x98\xaf\x96\x9f\x17\xeb\xc5\x6a\x99\x63\xf5\x2b\x66\xcb\x1f\xf8\xb2\x58\x7e\x1e\x83\x34\x57\xe4\x41\xcf\x8d\x8f\xda\x9d\x87\x8e\xd6\x51\x91\x8a\x9c\xa8\x57\x7c\xeb\x0e\x62\x42\x43\x4a\x6f\xb5\x42\x2d\x6d\xd9\xca\x92\x50\xba\x27\xf2\x56\xdb\x12\x0d\x79\xa3\x43\x1c\x5e\x80\xb4\x85\xa8\xb5\xd1\x2c\xb9\xfb\xff\xa6\x9d\x54\x7c\xcc\x84\x68\xa4\xfa\x33\x26\x31\x52\x5b\x21\xb4\x69\x9c\x67\x0c\xc5\x20\xd9\x1a\x4e\xc4\x20\xa9\x5d\x19\x7f\x5c\xc8\xe8\x99\x54\x3c\x06\xf6\xca\xd9\xa7\x44\x8c\x84\x50\xce\x86\x0e\x1e\x0f\xad\xa1\xf9\xb7\xc7\x4f\xda\x4a\xbf\xc7\x2d\x92\x34\x3b\xde\x4e\x54\xd3\x5e\x9e\x93\x13\xfe\x9e\xcc\x19\x1f\x38\x9a\xd0\xe5\xdd\xb6\x56\x61\x7e\xca\x39\x34\xba\xae\xb5\x72\x9e\x02\xb4\xe5\x31\x8a\xd6\x77\x6d\xe5\xa4\xe2\xc5\x08\x7f\x8b\x41\xed\xca\xf4\x9b\xd7\x96\xb7\xc3\xe4\x4c\xc5\x99\x7a\x83\x0f\x4f\x3d\x6a\xbc\x48\xc6\x17\x88\x5e\x74\x24\x06\x59\x06\xe5\x49\xc6\x25\x81\xa5\x1d\x8e\xaa\xa1\x9a\x16\x8d\x77\x8a\x42\x10\x03\xe9\xcb\x6b\xdc\xdc\x62\x6b\x38\xcd\x9b\xa3\x80\xc9\x39\xe9\xed\x87\xa2\x57\x64\xd4\x51\xa6\x6f\x29\x2f\xb5\x27\x81\xd4\x81\xd4\x57\x73\xf6\x38\x72\xe3\x38\xd2\xb9\x33\x46\xda\x62\xf8\xda\xfe\x31\xa2\xaa\xee\x3b\xed\x31\xd3\x87\xd6\x0e\x47\xe2\x67\xdf\xe2\x7b\x32\x43\x43\xa5\xdc\xec\xf9\x3f\x3a\x7c\x4f\x06\x27\xe6\xbb\x06\xbf\x00\x5e\x77\x74\x0a\xe4\xec\xa3\xc7\x37\xb7\x38\x6e\x57\xba\x60\x27\xcf\x9a\x46\xf8\x1f\x92\xfb\x44\x0c\x2e\xf8\xef\x70\xfe\xdd\x04\x0d\x19\xe7\xf7\xe7\x21\x9e\xf7\xf1\x3d\x6f\x4f\xab\x3a\x46\x32\x31\xc9\x18\xc9\x75\xfc\x4c\x26\x4f\x66\xd2\x69\xbc\x6c\xf4\xa0\xed\x25\x5c\x49\x5b\x46\xec\x55\x47\xe0\xfe\x60\x0f\xd0\xd1\xa5\x84\x57\x43\xfa\x8d\x78\xde\x7a\x4f\x96\x73\x96\xdc\x86\xe1\x9b\x61\xbc\x46\x24\x87\xce\xe3\x1b\x1d\xdf\x13\x32\x64\x99\x0a\xf1\x53\xfc\x13\x00\x00\xff\xff\xf5\x46\xb0\x68\x29\x06\x00\x00") + +func testImagesResourceConsumerUtilsGoBytes() ([]byte, error) { + return bindataRead( + _testImagesResourceConsumerUtilsGo, + "test/images/resource-consumer/utils.go", + ) +} + +func testImagesResourceConsumerUtilsGo() (*asset, error) { + bytes, err := testImagesResourceConsumerUtilsGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/resource-consumer/utils.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesServeHostnameBaseimage = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\xcc\x4d\x31\x33\xb1\x4d\x2a\x2d\xae\x4c\xca\xaf\xe0\x4a\x2c\xca\xb5\x4d\x2c\xca\x35\x36\x2a\x33\xd3\x47\x12\x33\x33\xb1\x05\x93\x65\x16\x70\xd1\x82\x82\x64\x33\x93\x9c\x54\x5b\x28\x0d\x17\x2f\x36\xb6\x34\xa8\xb0\x05\x93\x70\x31\x40\x00\x00\x00\xff\xff\xc9\xd8\x77\x8f\x64\x00\x00\x00") + +func testImagesServeHostnameBaseimageBytes() ([]byte, error) { + return bindataRead( + _testImagesServeHostnameBaseimage, + "test/images/serve-hostname/BASEIMAGE", + ) +} + +func testImagesServeHostnameBaseimage() (*asset, error) { + bytes, err := testImagesServeHostnameBaseimageBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/serve-hostname/BASEIMAGE", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesServeHostnameBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\x41\x8b\x83\x30\x10\x85\xef\xf9\x15\x21\x27\x2d\xdb\x7a\x17\x0a\xfb\x3f\x44\xc2\x44\xc7\x6c\xd8\xa9\x23\x49\x14\xda\x5f\xbf\xc4\x58\x5c\xa1\x78\xcc\xbc\x37\x6f\x5e\xbe\x09\xba\x5f\xb0\x58\xf4\x38\xc0\x4c\x51\x2f\x2e\x38\xe3\xc8\xc5\xa7\xbc\xcb\x46\x55\xd5\x3e\xa8\xa7\xd9\x90\xeb\x54\x5b\x0a\x41\x0c\x7d\x21\xa4\x94\x52\x7d\x3b\xd6\x06\x5e\x48\xda\xcf\x84\x41\x5b\xae\x2a\xcb\x75\x8f\xc3\xcd\xbc\x48\x7d\x65\x97\x65\x6d\xdc\x08\xfe\xf9\x6f\x40\xce\xf8\x3c\x29\x85\xd8\xdf\x39\x77\x84\x07\xca\xfb\xea\x7b\x77\xdb\xfd\xc9\x10\x7c\x17\xd6\x8e\x01\xfd\x82\xfa\x87\x43\x4c\x3b\x37\xcb\xaa\x5d\x13\x07\x47\x68\x3d\xcf\xd3\x31\x70\xfb\xf1\x35\xed\x1f\xa3\x2c\xb1\x29\x1a\x75\xb9\xa8\xb6\xcc\x42\x04\x9b\x6f\xc0\x1c\xf9\x01\x23\x58\xec\x53\x7a\xd2\x4e\x49\x79\xb7\x40\xc4\xf3\x22\x40\xf4\xa1\x44\xa3\xea\x43\xc3\xf6\xbc\x49\x26\x97\xd1\x1e\xe3\x57\x2c\xd7\x37\x96\xed\xc8\x86\x30\xe9\xf5\x47\xb2\xa5\xf8\x0b\x00\x00\xff\xff\x10\x3d\x6b\x75\x12\x02\x00\x00") + +func testImagesServeHostnameBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesServeHostnameBuild, + "test/images/serve-hostname/BUILD", + ) +} + +func testImagesServeHostnameBuild() (*asset, error) { + bytes, err := testImagesServeHostnameBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/serve-hostname/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesServeHostnameDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x6f\x9b\x3c\x14\x86\xef\xfd\x2b\x5e\xc1\xcd\xf7\x49\x19\x64\x99\xd4\x69\xdb\x15\x4b\xe9\x86\xda\x42\x14\xe8\xba\x68\x9a\x26\x07\x4e\xe0\x48\xc4\xf6\x6c\x53\x9a\x7f\x3f\x41\x53\x69\xd1\x7c\xe9\xf3\xf8\xf5\xe3\xd7\x21\xd6\xda\x9c\x2c\xb7\x9d\xc7\x6a\xf9\xf6\x0a\x55\x47\xb8\x1d\xf6\x64\x15\x79\x72\x48\x06\xdf\x69\xeb\x22\x11\x8a\x10\x77\x5c\x93\x72\xd4\x60\x50\x0d\x59\xf8\x8e\x90\x18\x59\x77\xf4\x3a\x59\xe0\x1b\x59\xc7\x5a\x61\x15\x2d\xf1\xdf\x04\x04\xe7\x51\xf0\xff\x27\x11\xe2\xa4\x07\x1c\xe5\x09\x4a\x7b\x0c\x8e\xe0\x3b\x76\x38\x70\x4f\xa0\xe7\x9a\x8c\x07\x2b\xd4\xfa\x68\x7a\x96\xaa\x26\x8c\xec\xbb\xf9\x9a\x73\x48\x24\x42\xec\xce\x11\x7a\xef\x25\x2b\x48\xd4\xda\x9c\xa0\x0f\x7f\x73\x90\x7e\x16\x9e\x56\xe7\xbd\xf9\x18\xc7\xe3\x38\x46\x72\x96\x8d\xb4\x6d\xe3\xfe\x05\x74\xf1\x5d\xb6\x4e\xf3\x32\x7d\xb3\x8a\x96\xf3\x91\x07\xd5\x93\x73\xb0\xf4\x7b\x60\x4b\x0d\xf6\x27\x48\x63\x7a\xae\xe5\xbe\x27\xf4\x72\x84\xb6\x90\xad\x25\x6a\xe0\xf5\xe4\x3b\x5a\xf6\xac\xda\x05\x9c\x3e\xf8\x51\x5a\x12\x21\x1a\x76\xde\xf2\x7e\xf0\x17\x65\xbd\xda\xb1\xbb\x00\xb4\x82\x54\x08\x92\x12\x59\x19\xe0\x73\x52\x66\xe5\x42\x84\x78\xcc\xaa\xaf\xc5\x43\x85\xc7\x64\xbb\x4d\xf2\x2a\x4b\x4b\x14\x5b\xac\x8b\xfc\x3a\xab\xb2\x22\x2f\x51\xdc\x20\xc9\x77\xb8\xcd\xf2\xeb\x05\x88\x7d\x47\x16\xf4\x6c\xec\xe4\xaf\x2d\x78\xaa\x91\x9a\xa9\xb3\x92\xe8\x42\xe0\xa0\x5f\x84\x9c\xa1\x9a\x0f\x5c\xa3\x97\xaa\x1d\x64\x4b\x68\xf5\x13\x59\xc5\xaa\x85\x21\x7b\x64\x37\x7d\xa6\x83\x54\x8d\x08\xd1\xf3\x91\xbd\xf4\xf3\xce\x3f\x8f\x8a\x84\xb8\xd9\x16\xf7\x93\x7e\x9a\xdd\x27\x5f\x52\xb1\x2e\x36\x3b\x38\xb2\x4f\xf4\xab\xd3\xce\x2b\x79\x24\xc4\x22\xfd\xbe\x29\xca\x14\x1f\xde\xbd\xbf\x12\x69\x5e\x6d\x77\x9b\x22\xcb\x2b\xfc\x08\xe2\x4b\x34\xf8\x29\xfe\x04\x00\x00\xff\xff\xc2\xc1\x27\x26\x9c\x02\x00\x00") + +func testImagesServeHostnameDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesServeHostnameDockerfile, + "test/images/serve-hostname/Dockerfile", + ) +} + +func testImagesServeHostnameDockerfile() (*asset, error) { + bytes, err := testImagesServeHostnameDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/serve-hostname/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesServeHostnameMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x4f\xdb\x30\x14\x85\x9f\xe7\x5f\x71\xd4\xf0\xd0\x4a\x25\x65\x68\xe2\x81\x09\x4d\x59\xdb\x41\x04\x4a\xa6\xa4\x80\x78\x42\x4e\x72\x9b\x5c\x29\xb1\x33\xfb\x86\xd0\x7f\x3f\xa5\x80\x34\x34\xbf\xf9\x9e\xe3\xe3\xcf\xc7\x01\xd6\xb6\x3f\x38\xae\x1b\xc1\xf9\xd9\xd7\x0b\xec\x1a\xc2\xed\x50\x90\x33\x24\xe4\x11\x0d\xd2\x58\xe7\x43\x15\xa8\x00\x77\x5c\x92\xf1\x54\x61\x30\x15\x39\x48\x43\x88\x7a\x5d\x36\xf4\xa1\x2c\xf1\x40\xce\xb3\x35\x38\x0f\xcf\x30\x9f\x0c\xb3\x77\x69\xb6\xf8\xae\x02\x1c\xec\x80\x4e\x1f\x60\xac\x60\xf0\x04\x69\xd8\x63\xcf\x2d\x81\x5e\x4b\xea\x05\x6c\x50\xda\xae\x6f\x59\x9b\x92\x30\xb2\x34\xc7\x6b\xde\x43\x42\x15\xe0\xe9\x3d\xc2\x16\xa2\xd9\x40\xa3\xb4\xfd\x01\x76\xff\xaf\x0f\x5a\x8e\xc0\xd3\x6a\x44\xfa\xcb\xd5\x6a\x1c\xc7\x50\x1f\x61\x43\xeb\xea\x55\xfb\x66\xf4\xab\xbb\x78\xbd\x4d\xf2\xed\xe9\x79\x78\x76\x3c\x72\x6f\x5a\xf2\x1e\x8e\xfe\x0c\xec\xa8\x42\x71\x80\xee\xfb\x96\x4b\x5d\xb4\x84\x56\x8f\xb0\x0e\xba\x76\x44\x15\xc4\x4e\xbc\xa3\x63\x61\x53\x2f\xe1\xed\x5e\x46\xed\x48\x05\xa8\xd8\x8b\xe3\x62\x90\x4f\x65\x7d\xd0\xb1\xff\x64\xb0\x06\xda\x60\x16\xe5\x88\xf3\x19\x7e\x46\x79\x9c\x2f\x55\x80\xc7\x78\x77\x93\xde\xef\xf0\x18\x65\x59\x94\xec\xe2\x6d\x8e\x34\xc3\x3a\x4d\x36\xf1\x2e\x4e\x93\x1c\xe9\x2f\x44\xc9\x13\x6e\xe3\x64\xb3\x04\xb1\x34\xe4\x40\xaf\xbd\x9b\xf8\xad\x03\x4f\x35\x52\x35\x75\x96\x13\x7d\x02\xd8\xdb\x37\x20\xdf\x53\xc9\x7b\x2e\xd1\x6a\x53\x0f\xba\x26\xd4\xf6\x85\x9c\x61\x53\xa3\x27\xd7\xb1\x9f\x3e\xd3\x43\x9b\x4a\x05\x68\xb9\x63\xd1\x72\x9c\xfc\xf7\xa8\x50\xa9\x3c\x5b\xe7\x57\x9e\xdc\x0b\x3d\x37\xd6\x8b\xd1\x1d\xa9\x28\x5b\xdf\xe0\xc7\x15\x74\x57\x5d\x7c\x53\xbb\x28\xbb\xde\xee\xa6\xfd\xc9\x7c\x7d\x9f\x6d\xe2\x6c\xa1\xae\xd3\xbb\x28\xb9\x7e\x7e\xd8\x66\x79\x9c\x26\x93\xd6\x6a\x21\x2f\x53\xdc\xf3\x26\xce\x30\x99\x8d\x95\x8a\x1d\x4e\xe6\xbe\xa1\xb6\x45\x3f\x56\x8b\x85\xa2\xd7\xde\x3a\x51\xaa\x60\x73\xa9\xbe\x84\xe1\x8a\x3b\x5d\xd3\xe9\x20\xdc\x86\xbe\x41\xc1\x06\x27\xf3\x09\x6a\xa1\x54\xf8\xfb\x26\x4d\x9e\x2e\xa7\xa1\xfa\x1b\x00\x00\xff\xff\x03\xe4\x65\x21\xf4\x02\x00\x00") + +func testImagesServeHostnameMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesServeHostnameMakefile, + "test/images/serve-hostname/Makefile", + ) +} + +func testImagesServeHostnameMakefile() (*asset, error) { + bytes, err := testImagesServeHostnameMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/serve-hostname/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesServeHostnameVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesServeHostnameVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesServeHostnameVersion, + "test/images/serve-hostname/VERSION", + ) +} + +func testImagesServeHostnameVersion() (*asset, error) { + bytes, err := testImagesServeHostnameVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/serve-hostname/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesServeHostnameServe_hostnameGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\x6d\x6f\xdb\xb6\x16\xfe\x6c\xfe\x8a\x73\x75\xd1\x5e\x29\x50\xa5\x34\x77\xeb\xb0\x6c\xfd\xe0\xe6\xa5\x31\xda\x39\x86\xe5\xac\x28\xba\x62\xa0\xa5\x23\x89\x0b\x45\x6a\x24\x65\xd7\x58\xf3\xdf\x87\x43\xc9\x4e\xdc\x24\xdb\x0a\xec\x8b\x2d\x51\xe7\xe5\x39\xe7\x79\x78\xc8\xf4\x80\x9d\xe8\x76\x63\x44\x55\x3b\x38\x3a\x7c\xfe\x0d\x2c\x6a\x84\x37\xdd\x12\x8d\x42\x87\x16\xc6\x9d\xab\xb5\xb1\x09\x63\x6f\x45\x8e\xca\x62\x01\x9d\x2a\xd0\x80\xab\x11\xc6\x2d\xcf\x6b\x84\xe1\x4b\x0c\x3f\xa3\xb1\x42\x2b\x38\x4a\x0e\x21\x24\x83\x60\xf8\x14\x44\x3f\xb0\x8d\xee\xa0\xe1\x1b\x50\xda\x41\x67\x11\x5c\x2d\x2c\x94\x42\x22\xe0\xa7\x1c\x5b\x07\x42\x41\xae\x9b\x56\x0a\xae\x72\x84\xb5\x70\xb5\x4f\x32\x84\x48\xd8\xfb\x21\x80\x5e\x3a\x2e\x14\x70\xc8\x75\xbb\x01\x5d\xde\xb5\x02\xee\x18\x03\x00\xa8\x9d\x6b\x8f\xd3\x74\xbd\x5e\x27\xdc\xa3\x4c\xb4\xa9\x52\xd9\x5b\xd9\xf4\xed\xe4\xe4\x6c\x9a\x9d\x3d\x3b\x4a\x0e\x19\xbb\x52\x12\xad\x05\x83\xbf\x77\xc2\x60\x01\xcb\x0d\xf0\xb6\x95\x22\xe7\x4b\x89\x20\xf9\x1a\xb4\x01\x5e\x19\xc4\x02\x9c\x26\x9c\x6b\x23\x9c\x50\x55\x0c\x56\x97\x6e\xcd\x0d\xb2\x42\x58\x67\xc4\xb2\x73\x7b\x0d\xda\xa2\x12\x16\xee\x1a\x68\x05\x5c\x41\x30\xce\x60\x92\x05\xf0\x6a\x9c\x4d\xb2\x98\xbd\x9b\x2c\x2e\x2e\xaf\x16\xf0\x6e\x3c\x9f\x8f\xa7\x8b\xc9\x59\x06\x97\x73\x38\xb9\x9c\x9e\x4e\x16\x93\xcb\x69\x06\x97\xe7\x30\x9e\xbe\x87\x37\x93\xe9\x69\x0c\x28\x5c\x8d\x06\xf0\x53\x6b\x08\xbb\x36\x20\xa8\x75\x58\x24\x2c\x43\xdc\x4b\x5e\xea\x1e\x8c\x6d\x31\x17\xa5\xc8\x41\x72\x55\x75\xbc\x42\xa8\xf4\x0a\x8d\x12\xaa\x82\x16\x4d\x23\x2c\x91\x67\x81\xab\x82\x49\xd1\x08\xc7\x9d\x7f\xbf\x57\x4e\xc2\x0e\x52\xc6\xd2\x14\xc6\x60\x1b\x2e\x25\x74\x4e\x48\xe1\x36\xd4\x9c\xdf\x3a\xeb\xc0\xa2\x59\xf5\x18\x6a\x6d\x9d\xe2\x0d\x52\xc9\x8b\x93\x19\xc5\x4e\xb5\x81\xab\xd3\x59\xc2\x5a\x9e\x5f\x13\x8a\x86\x0b\xc5\x98\x68\x5a\x6d\x1c\x84\x6c\x14\x94\x92\x57\x01\xfd\x37\x8e\xfe\xa4\xf6\x6f\x0a\xdd\xf0\x97\x12\xb9\xf4\xac\x6d\xff\x9b\x5a\x51\x29\x2e\xe9\xc5\x6e\x6c\xce\xa5\x0c\x58\xc4\xd8\x8a\x1b\x8a\x57\x68\xca\x0c\x2f\x81\xe2\x26\xaf\xb4\x96\x61\xe0\xf2\x36\x88\xa1\xe4\x92\x64\x1b\x64\x1e\xaf\x21\xa2\x57\x68\x08\x68\x12\x44\xe4\x78\x75\xfa\xa5\x63\x57\xfc\x85\x23\x95\xd5\x3b\x5e\x2c\x16\xb3\x7d\x47\x8f\x39\x06\x67\xba\x5b\x47\xb2\xf2\x0e\xbe\xf4\x5d\xa6\x89\x72\x61\x40\x4b\x41\x0c\xdf\xff\xff\xbb\x17\x31\x04\x33\x32\x50\x5d\xb3\x44\x43\x0e\x11\x63\x65\xa7\x72\xdf\xba\x30\x82\x3f\xd8\xc8\x3b\xce\xb8\xb1\x18\x46\x8c\x8d\x44\x09\x07\x03\x8a\xa7\x4f\x21\x3c\xe8\x7b\xf0\xf9\x33\xad\x5e\x9d\xce\xbc\xcb\x48\xea\x2a\x39\xe7\x8e\xcb\x32\x0c\x4e\xb8\xfa\xdf\x40\x9c\x6f\x40\x4a\xa5\x37\xba\x40\xa2\xcc\x03\x1d\xde\x5c\xaf\x25\xe2\xd4\x89\x06\x09\xfd\x0d\x63\xa3\x2d\xd1\x31\xa0\x31\x70\xfc\x12\xb4\x4d\x2e\x86\xb5\x30\xf2\x80\xe8\xc3\x7f\x5e\x82\x12\xf2\x5e\xf6\x33\x63\xb4\x81\xd2\xe8\x66\xdf\xef\x18\x9e\xd8\xc0\x87\x1c\xd2\xf4\x75\x51\x2d\x3e\x84\xb0\x0e\x15\x9a\x5d\x52\x85\x2e\x79\xeb\x17\x77\x14\x37\x2e\xc9\x5a\x23\x94\x2b\xc3\xe0\xf8\x49\x11\xc4\x70\x40\xad\x8d\x22\x36\x7a\x00\xd4\x63\xa8\xee\x04\xde\x07\x35\xba\x61\xa3\x51\xa5\x81\xe8\xe8\x99\x18\x8d\x68\xc3\xf9\x87\x51\xae\x95\xda\x81\xdb\xa2\x4d\xc6\x39\xcd\x3b\xea\xca\xe8\x41\x0c\x8f\xa2\xd8\x3a\xee\x23\xe8\x31\xf4\x4e\xb3\xa1\x52\xea\x10\xcd\x33\xb4\xae\x77\xf5\x0e\x04\x27\x99\x63\xa3\x1d\x8e\x8b\xc2\x84\x51\x92\x39\x23\x54\x15\x46\xd1\x0e\x6e\xf2\xce\x08\x87\xe1\x87\x8f\xcb\x8d\xc3\x70\x4b\xeb\x5d\x83\x13\xa9\xbd\xca\x86\xc4\x37\xa1\xe7\x66\xa0\x86\x64\x43\x45\xf0\xa2\xd8\xa7\x65\x8e\x56\xcb\x15\x5e\x9d\xce\x7c\xea\xed\x46\xfa\xf7\xe8\xf9\x22\xc1\x03\x34\x59\x9d\x5f\x3f\x20\x95\xab\xd3\xd9\x16\x0e\xa1\xfe\xba\xcc\xb7\x21\xfe\x5e\x17\x34\x8f\x96\x5d\x59\xa2\x81\x0f\xcf\x5f\xf8\x06\xef\xcb\xe5\xd7\x18\x72\x29\xc6\x77\x5b\x47\x98\x93\x39\xf2\xe2\xdc\xe8\x26\xec\xbd\x3f\x1c\x1e\x7f\xfc\x7a\xf1\xec\x82\xfc\x03\xf9\x10\x8b\x0f\xc8\xa7\xc7\xf6\x85\x68\x3c\x42\x2f\x9a\x85\xbe\x27\x9b\x9d\xd3\x23\x72\xf1\x83\x85\x70\xd3\x78\x4c\x2e\xb8\x2a\x24\x9e\x53\xcb\x82\x94\xd4\x41\x4f\x6b\x7f\x96\x13\xbd\xad\x56\x16\x7d\x26\x13\x83\x81\x83\x61\xdd\xc3\x8c\x6e\x59\xda\x16\xe1\x63\xdf\xaf\xc2\xdc\xd9\x01\x1e\x15\x69\xf0\x7c\xd0\xe0\x3a\x86\xc0\x5b\xed\x2a\x20\xc8\xd1\x7d\x2e\xd3\x14\xe6\x9d\x82\xfe\x1e\x22\xb5\xed\x0c\x82\xd5\x3d\xd4\x5e\x13\x63\x55\xf4\x53\xbe\xd0\x68\x69\xb8\x2e\xa5\xce\xaf\xf7\xa4\x14\x3e\x60\x1e\x3e\xba\x25\x62\x22\xd9\x37\x7d\xe8\x21\x23\x14\xbe\x1f\x74\xf2\x5a\x57\xe8\xce\x01\x2f\x1d\x1a\x30\x98\xa3\x58\xd1\xc9\x9e\x4d\x5e\x2f\xce\xe6\x3f\xf9\x31\x9e\x4d\x5e\x4f\xa6\x0b\x32\xae\x51\xb6\xfd\x15\xab\xc0\x65\x57\x55\x64\x79\x7d\x7b\xeb\x13\xd6\x76\x08\xff\x3d\x7a\xfe\xe2\xf0\x5b\x36\xea\x4f\x57\x4b\x72\x6c\xf8\x35\x86\x79\xcd\x15\xcd\xe9\xcc\xaf\x47\x5b\x83\x64\xaa\x9d\x28\x37\xe1\x60\x1e\xc3\x70\x16\x27\x03\x84\xbd\x85\xc9\x74\xd1\x3b\x52\xd4\x1f\x9f\x0d\x3e\xbe\xa2\x37\x88\x2d\x2c\xb1\xe6\x2b\xa1\x0d\xcd\x2c\xeb\x1b\xe4\x7a\xbc\xb5\x5e\xf7\x27\x90\xf7\xa0\x9b\x55\xed\x55\xe3\xaf\x6d\x05\x96\xbc\x93\x0e\xc2\xed\x83\xb0\x54\x6d\xcb\x95\xc8\x23\xd6\xab\x83\x9e\x69\x42\xd2\x8d\x47\x71\xba\xc6\xdd\xeb\x59\x1f\x9b\xb6\x49\xf2\x8b\x0a\x62\x7a\x8f\xd8\x0d\xfb\x33\x00\x00\xff\xff\xb7\xfb\xb6\xd8\x2d\x0b\x00\x00") + +func testImagesServeHostnameServe_hostnameGoBytes() ([]byte, error) { + return bindataRead( + _testImagesServeHostnameServe_hostnameGo, + "test/images/serve-hostname/serve_hostname.go", + ) +} + +func testImagesServeHostnameServe_hostnameGo() (*asset, error) { + bytes, err := testImagesServeHostnameServe_hostnameGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/serve-hostname/serve_hostname.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesTestWebserverBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xdd\x8a\x83\x30\x10\x85\xef\xf3\x14\x21\x57\x5a\xb6\xf5\x5e\x28\xec\x7b\x88\x84\x89\x8e\x61\xd8\xa9\x23\x49\x74\x69\x9f\x7e\xb1\xba\x3f\x59\x8a\x97\x99\x73\xce\x37\x27\x33\x41\xf7\x01\x1e\x8b\x1e\x07\x98\x39\xd9\x85\x22\x39\x62\x4a\x77\x7d\xd5\x8d\xa9\xaa\xdf\x41\x3d\xcd\x8e\xa9\x33\x6d\xa9\x14\x0b\xf4\x85\xd2\x5a\x6b\xf3\x4e\x62\x1d\x3c\x90\x6d\x98\x19\xa3\xf5\x52\x55\x5e\xea\x1e\x87\x8b\x7b\xb0\x79\xdb\x5c\x5e\xac\xa3\x11\xc2\xfd\xcf\x80\xc9\x85\x6d\x52\x2a\xf5\x63\xd8\xb0\x23\xdc\x50\x5f\xb5\x49\x18\xd3\xf9\x13\x5d\xc4\xb0\x60\xd8\xc3\x7b\x70\xd5\x6b\x2f\xf6\xbb\xfb\x7f\xde\xfe\xce\x81\x2f\xfd\xab\x21\x86\x2e\x3e\xff\x9c\xaf\xbc\x78\x31\xed\x93\x38\x10\xa3\x0f\x32\x4f\x39\x70\xbf\xe0\x79\xcd\xe7\x28\xcf\xe2\x8a\xc6\x9c\x4e\xa6\x2d\x37\x21\x81\xdf\x76\xc0\x9c\xe4\x06\x23\x78\xec\x57\xfa\xaa\x1d\x5e\x3e\xd0\x02\x09\x8f\x8b\x00\xf3\x8b\x12\x8d\xa9\xb3\x86\xed\x71\x93\x52\x7d\x05\x00\x00\xff\xff\xee\x69\x6b\x3e\x12\x02\x00\x00") + +func testImagesTestWebserverBuildBytes() ([]byte, error) { + return bindataRead( + _testImagesTestWebserverBuild, + "test/images/test-webserver/BUILD", + ) +} + +func testImagesTestWebserverBuild() (*asset, error) { + bytes, err := testImagesTestWebserverBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/test-webserver/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesTestWebserverDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x6f\x9b\x30\x14\x85\xdf\xfd\x2b\x8e\xe0\x65\x93\x52\xc8\xaa\x3d\x4c\xdb\x13\x4b\xa9\x86\xda\x41\x15\xe8\xba\x68\xda\x83\x81\x1b\xb8\x12\xb1\x99\x7d\x29\xcd\xbf\x9f\x48\x53\x69\xd1\xfc\xe8\xfb\xf9\xf8\xf3\x71\x88\x8d\x1d\x8f\x8e\xbb\x5e\x70\xbd\xfe\xf0\x11\x55\x4f\xb8\x9b\x6a\x72\x86\x84\x3c\x92\x49\x7a\xeb\x7c\xa4\x42\x15\xe2\x9e\x1b\x32\x9e\x5a\x4c\xa6\x25\x07\xe9\x09\xc9\xa8\x9b\x9e\xde\x26\x2b\xfc\x20\xe7\xd9\x1a\x5c\x47\x6b\xbc\x5b\x80\xe0\x3c\x0a\xde\x7f\x51\x21\x8e\x76\xc2\x41\x1f\x61\xac\x60\xf2\x04\xe9\xd9\x63\xcf\x03\x81\x5e\x1a\x1a\x05\x6c\xd0\xd8\xc3\x38\xb0\x36\x0d\x61\x66\xe9\x4f\xd7\x9c\x43\x22\x15\x62\x77\x8e\xb0\xb5\x68\x36\xd0\x68\xec\x78\x84\xdd\xff\xcb\x41\xcb\x49\x78\x59\xbd\xc8\xf8\x39\x8e\xe7\x79\x8e\xf4\x49\x36\xb2\xae\x8b\x87\x57\xd0\xc7\xf7\xd9\x26\xcd\xcb\xf4\xea\x3a\x5a\x9f\x8e\x3c\x9a\x81\xbc\x87\xa3\x3f\x13\x3b\x6a\x51\x1f\xa1\xc7\x71\xe0\x46\xd7\x03\x61\xd0\x33\xac\x83\xee\x1c\x51\x0b\xb1\x8b\xef\xec\x58\xd8\x74\x2b\x78\xbb\x97\x59\x3b\x52\x21\x5a\xf6\xe2\xb8\x9e\xe4\xa2\xac\x37\x3b\xf6\x17\x80\x35\xd0\x06\x41\x52\x22\x2b\x03\x7c\x4d\xca\xac\x5c\xa9\x10\x4f\x59\xf5\xad\x78\xac\xf0\x94\x6c\xb7\x49\x5e\x65\x69\x89\x62\x8b\x4d\x91\xdf\x64\x55\x56\xe4\x25\x8a\x5b\x24\xf9\x0e\x77\x59\x7e\xb3\x02\xb1\xf4\xe4\x40\x2f\xa3\x5b\xfc\xad\x03\x2f\x35\x52\xbb\x74\x56\x12\x5d\x08\xec\xed\xab\x90\x1f\xa9\xe1\x3d\x37\x18\xb4\xe9\x26\xdd\x11\x3a\xfb\x4c\xce\xb0\xe9\x30\x92\x3b\xb0\x5f\x3e\xd3\x43\x9b\x56\x85\x18\xf8\xc0\xa2\xe5\xb4\xf3\xdf\xa3\x22\xa5\x6e\xb7\xc5\x77\xf8\xc6\x69\x69\x7a\xa5\x36\xc5\xc3\x0e\x42\x5e\xae\x66\xaa\x3d\xb9\x67\x72\x88\x55\xfa\xf3\xa1\x28\x53\x7c\x5a\xab\x34\xaf\xb6\xbb\x87\x22\xcb\x2b\xfc\x0a\xe2\x4b\x30\xf8\xad\xfe\x06\x00\x00\xff\xff\x4e\xc8\xe3\xbf\x99\x02\x00\x00") + +func testImagesTestWebserverDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesTestWebserverDockerfile, + "test/images/test-webserver/Dockerfile", + ) +} + +func testImagesTestWebserverDockerfile() (*asset, error) { + bytes, err := testImagesTestWebserverDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/test-webserver/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesTestWebserverMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x4f\xdb\x30\x14\x85\x9f\xe7\x5f\x71\xd4\xf0\xd0\x4a\x25\x65\x68\xda\x24\x26\x34\x65\x6d\x07\x11\x28\x99\x92\x00\xe2\x09\x39\xc9\x6d\x72\xa5\xd4\xf6\x6c\x87\xd0\x7f\x3f\xb9\x80\x34\x34\xbf\xf9\x9e\xe3\xe3\xcf\xc7\x11\xd6\xda\x1c\x2c\x77\xbd\xc7\xf9\xd9\xe7\x6f\xa8\x7a\xc2\xcd\x58\x93\x55\xe4\xc9\x21\x19\x7d\xaf\xad\x8b\x45\x24\x22\xdc\x72\x43\xca\x51\x8b\x51\xb5\x64\xe1\x7b\x42\x62\x64\xd3\xd3\xbb\xb2\xc4\x3d\x59\xc7\x5a\xe1\x3c\x3e\xc3\x3c\x18\x66\x6f\xd2\x6c\xf1\x5d\x44\x38\xe8\x11\x7b\x79\x80\xd2\x1e\xa3\x23\xf8\x9e\x1d\x76\x3c\x10\xe8\xa5\x21\xe3\xc1\x0a\x8d\xde\x9b\x81\xa5\x6a\x08\x13\xfb\xfe\x78\xcd\x5b\x48\x2c\x22\x3c\xbe\x45\xe8\xda\x4b\x56\x90\x68\xb4\x39\x40\xef\xfe\xf5\x41\xfa\x23\x70\x58\xbd\xf7\xe6\x62\xb5\x9a\xa6\x29\x96\x47\xd8\x58\xdb\x6e\x35\xbc\x1a\xdd\xea\x36\x5d\x6f\xb3\x72\x7b\x7a\x1e\x9f\x1d\x8f\xdc\xa9\x81\x9c\x83\xa5\x3f\x23\x5b\x6a\x51\x1f\x20\x8d\x19\xb8\x91\xf5\x40\x18\xe4\x04\x6d\x21\x3b\x4b\xd4\xc2\xeb\xc0\x3b\x59\xf6\xac\xba\x25\x9c\xde\xf9\x49\x5a\x12\x11\x5a\x76\xde\x72\x3d\xfa\x0f\x65\xbd\xd3\xb1\xfb\x60\xd0\x0a\x52\x61\x96\x94\x48\xcb\x19\x7e\x26\x65\x5a\x2e\x45\x84\x87\xb4\xba\xce\xef\x2a\x3c\x24\x45\x91\x64\x55\xba\x2d\x91\x17\x58\xe7\xd9\x26\xad\xd2\x3c\x2b\x91\xff\x42\x92\x3d\xe2\x26\xcd\x36\x4b\x10\xfb\x9e\x2c\xe8\xc5\xd8\xc0\xaf\x2d\x38\xd4\x48\x6d\xe8\xac\x24\xfa\x00\xb0\xd3\xaf\x40\xce\x50\xc3\x3b\x6e\x30\x48\xd5\x8d\xb2\x23\x74\xfa\x99\xac\x62\xd5\xc1\x90\xdd\xb3\x0b\x9f\xe9\x20\x55\x2b\x22\x0c\xbc\x67\x2f\xfd\x71\xf2\xdf\xa3\x62\x21\xca\x62\x5d\xe2\x12\x9e\x9c\x3f\x9d\xa8\x76\x64\x9f\xc9\x8a\xa4\x58\x5f\xe3\xc7\x25\xe4\xbe\xfd\xfa\x45\x54\x49\x71\xb5\xad\xc2\xfe\x64\xbe\xbe\x2b\x36\x69\xb1\x10\x57\xf9\x6d\x92\x5d\x3d\xdd\x6f\x8b\x32\xcd\xb3\xa0\x0d\x32\x84\x84\xc0\xa7\x4d\x5a\x20\x98\x95\xf6\x2d\x5b\x9c\xcc\x5d\x4f\xc3\x00\x33\xb5\x8b\x85\xa0\x17\xa3\xad\x17\xa2\x66\x75\x21\x3e\xc5\xf1\x8a\xf7\xb2\xa3\xd3\xd1\xf3\x10\xbb\x1e\x35\x2b\x9c\xcc\x03\xd6\x42\x88\xf8\xf7\x75\x9e\x3d\x5e\x84\xa1\xf8\x1b\x00\x00\xff\xff\x2d\xf9\x16\x32\xf6\x02\x00\x00") + +func testImagesTestWebserverMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesTestWebserverMakefile, + "test/images/test-webserver/Makefile", + ) +} + +func testImagesTestWebserverMakefile() (*asset, error) { + bytes, err := testImagesTestWebserverMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/test-webserver/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesTestWebserverVersion = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x32\xd4\x33\xe0\x02\x04\x00\x00\xff\xff\xdf\xf4\x93\x64\x04\x00\x00\x00") + +func testImagesTestWebserverVersionBytes() ([]byte, error) { + return bindataRead( + _testImagesTestWebserverVersion, + "test/images/test-webserver/VERSION", + ) +} + +func testImagesTestWebserverVersion() (*asset, error) { + bytes, err := testImagesTestWebserverVersionBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/test-webserver/VERSION", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesTestWebserverTestWebserverGo = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x6f\xe3\x36\x10\x3d\x9b\xbf\x62\x20\xa0\xa8\x1c\xe8\x23\x4d\xf7\x50\xa4\xd8\x83\x6a\x27\x8d\x91\xc4\x36\x22\xa5\xd9\x3d\xd2\xd2\x48\x1e\x84\x26\x15\x72\x14\xc5\x58\xe4\xbf\x17\xa4\xbd\x8b\x04\xbb\x87\x9c\x28\x72\xde\x9b\x37\x9c\x79\x62\x7e\x22\x66\xa6\xdf\x5b\xea\xb6\x0c\x67\xa7\x7f\x7c\x82\x6a\x8b\x70\x3d\x6c\xd0\x6a\x64\x74\x50\x0c\xbc\x35\xd6\x65\x42\xdc\x50\x8d\xda\x61\x03\x83\x6e\xd0\x02\x6f\x11\x8a\x5e\xd6\x5b\x84\x63\x24\x81\xff\xd0\x3a\x32\x1a\xce\xb2\x53\x88\x3d\x20\x3a\x86\xa2\xe9\xdf\x62\x6f\x06\xd8\xc9\x3d\x68\xc3\x30\x38\x04\xde\x92\x83\x96\x14\x02\xbe\xd4\xd8\x33\x90\x86\xda\xec\x7a\x45\x52\xd7\x08\x23\xf1\x36\x88\x1c\x53\x64\xe2\xeb\x31\x81\xd9\xb0\x24\x0d\x12\x6a\xd3\xef\xc1\xb4\x6f\x51\x20\x59\x08\x00\x80\x2d\x73\x7f\x9e\xe7\xe3\x38\x66\x32\x54\x99\x19\xdb\xe5\xea\x80\x72\xf9\xcd\x62\x76\xb1\x2c\x2f\xd2\xb3\xec\x54\x88\x7b\xad\xd0\x39\xb0\xf8\x34\x90\xc5\x06\x36\x7b\x90\x7d\xaf\xa8\x96\x1b\x85\xa0\xe4\x08\xc6\x82\xec\x2c\x62\x03\x6c\x7c\x9d\xa3\x25\x26\xdd\x25\xe0\x4c\xcb\xa3\xb4\x28\x1a\x72\x6c\x69\x33\xf0\xbb\x06\x7d\xaf\x8a\x1c\xbc\x05\x18\x0d\x52\x43\x54\x94\xb0\x28\x23\xf8\xa7\x28\x17\x65\x22\x1e\x16\xd5\xd5\xea\xbe\x82\x87\xe2\xee\xae\x58\x56\x8b\x8b\x12\x56\x77\x30\x5b\x2d\xe7\x8b\x6a\xb1\x5a\x96\xb0\xba\x84\x62\xf9\x15\xae\x17\xcb\x79\x02\x48\xbc\x45\x0b\xf8\xd2\x5b\x5f\xbb\xb1\x40\xbe\x75\xd8\x64\xa2\x44\x7c\x27\xde\x9a\x43\x31\xae\xc7\x9a\x5a\xaa\x41\x49\xdd\x0d\xb2\x43\xe8\xcc\x33\x5a\x4d\xba\x83\x1e\xed\x8e\x9c\x1f\x9e\x03\xa9\x1b\xa1\x68\x47\x2c\x39\xec\x7f\xba\x4e\x26\x4e\x72\x21\xf2\x1c\x0a\x60\xd2\x7b\x18\x71\x03\x0e\xed\x73\x40\x49\x3e\x7c\x3b\x90\xe0\x7c\x8a\x3a\x0c\x39\x13\xbd\xac\x1f\xbd\xe8\x4e\x92\x16\x82\x76\xbd\xb1\x0c\xb1\x98\x44\xad\x92\x5d\xe4\xd7\x1d\xfb\x45\x99\xb0\xd3\xc8\xb9\x1f\x62\x24\xa6\x42\x3c\x4b\xeb\xa1\x81\xf2\x19\x3c\x21\x5b\x68\x8e\x23\x7f\x10\x25\xf0\xd7\x69\x02\xd1\xda\x07\xf5\xb0\xdb\xa0\xcd\xa2\xa9\x67\xb5\x83\xae\x83\x5c\x3c\x85\x6f\x62\x12\x68\x6b\x69\x1d\xc6\x53\x21\x26\xad\x83\xf3\xcf\xc1\x27\x59\xc9\x96\xfa\xb5\xc5\x96\x5e\xe2\x28\x8f\x92\xc3\xe9\x25\x29\x2c\xc3\xb5\xe2\xb0\x9f\x93\xf5\xd1\xe9\xd4\xb3\xc3\xc9\x95\xd4\x8d\xc2\xcb\x41\xd7\x07\x9a\x17\x8c\xc7\x03\xfb\x0e\x5d\x6f\xb4\xc3\x07\x4b\x8c\x36\x01\x0b\x27\xc7\xf3\xa7\x01\x1d\x87\x8a\x26\x63\x76\x85\xb2\x41\x1b\x4f\xb3\x12\x39\x8e\x66\xde\xa9\xe9\xcc\x68\xb6\x46\x45\x09\x44\xbd\xa5\x67\xc9\x18\x4d\xc5\x64\x92\xe7\xb0\x44\x6c\xb0\x09\x13\x55\xa6\x96\x0a\x7a\x6b\x5e\xf6\xde\x94\x6f\x7f\xd9\xf5\xe2\xc7\x38\x0c\x8c\xc6\x3e\x66\xbf\x90\x2a\xea\x1a\x9d\xfb\xae\x95\x16\x4a\x99\x31\x5d\x59\xea\x48\x7b\xe1\x93\x20\xf9\x21\xd2\xcc\x62\x83\x9a\x49\x2a\xe7\x99\x6c\x07\xfc\x38\xf9\x16\x79\x6b\x9a\x40\xfc\xf7\xa2\x4a\x60\xbd\x2a\xab\x04\x56\xeb\x60\xf9\x8f\xa7\x39\x40\x42\x9a\xf9\xb2\x4a\xbe\xa4\xb7\x2f\xe9\x1d\x3e\x55\xe6\x11\x75\x72\x8d\xd8\xa7\x85\xa2\x67\x4c\xee\x1d\xda\xb4\xe8\x50\x73\xf2\x25\x3d\x8e\x02\x9b\xf4\x81\x78\x9b\xbc\x6b\x7e\xe2\x57\xd4\x9c\x56\xfb\xfe\x47\xfb\xe7\xe4\xc2\x93\xb0\x68\xd3\x5b\xd3\x50\x4b\xd8\xa4\x25\xf9\xd7\xca\x19\x18\xfa\x46\x32\xa6\x0d\xee\x0c\x90\xd3\xbf\x33\x6c\xac\x97\xf7\xcf\xc9\x9f\xa7\x9f\x9c\x98\x4c\xec\xf1\x2a\xd9\x1c\x55\x1c\xfd\x94\x25\xc8\xb4\x2e\x0b\xa6\xbb\xaa\xaa\x75\x3c\x26\x60\xa7\x62\xf2\xea\x1d\xd7\x19\x50\xa6\xcb\x2e\x25\x4b\x75\x30\xe4\x0d\x39\x46\x5d\xe8\x26\x10\xe2\x76\xc7\x59\xd9\x5b\xd2\xdc\xc6\xd1\xf9\x6f\x4d\x94\xc0\x89\xff\x41\xa6\x09\x68\x52\xc1\xb5\x0e\x15\xd6\x0c\xdf\x5e\xc5\xab\xf8\x3f\x00\x00\xff\xff\x14\x70\xd3\x85\xfb\x05\x00\x00") + +func testImagesTestWebserverTestWebserverGoBytes() ([]byte, error) { + return bindataRead( + _testImagesTestWebserverTestWebserverGo, + "test/images/test-webserver/test-webserver.go", + ) +} + +func testImagesTestWebserverTestWebserverGo() (*asset, error) { + bytes, err := testImagesTestWebserverTestWebserverGoBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/test-webserver/test-webserver.go", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterCephDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6f\xd3\x4c\x10\x86\xef\xfb\x2b\x5e\xc5\x97\xef\x93\x82\x5d\xaa\x2a\x40\x39\x99\x26\x15\x56\x8b\x5d\xc5\x2e\xa5\x42\x1c\x36\xf6\xc4\x1e\x69\xbd\xbb\xec\xae\x71\xf3\xef\x91\x93\x54\x34\x14\x1f\x67\x9e\x99\x79\xfc\x6e\x84\x2b\x63\x77\x8e\xdb\x2e\xe0\xfc\xec\xed\x02\x55\x47\xb8\x19\x36\xe4\x34\x05\xf2\x48\x87\xd0\x19\xe7\x63\x11\x89\x08\xb7\x5c\x93\xf6\xd4\x60\xd0\x0d\x39\x84\x8e\x90\x5a\x59\x77\xf4\xdc\x99\xe3\x2b\x39\xcf\x46\xe3\x3c\x3e\xc3\x7f\x13\x30\x3b\xb6\x66\xff\x7f\x14\x11\x76\x66\x40\x2f\x77\xd0\x26\x60\xf0\x84\xd0\xb1\xc7\x96\x15\x81\x9e\x6a\xb2\x01\xac\x51\x9b\xde\x2a\x96\xba\x26\x8c\x1c\xba\xfd\x99\xe3\x92\x58\x44\x78\x3c\xae\x30\x9b\x20\x59\x43\xa2\x36\x76\x07\xb3\x7d\xc9\x41\x86\xbd\xf0\xf4\x75\x21\xd8\xcb\x24\x19\xc7\x31\x96\x7b\xd9\xd8\xb8\x36\x51\x07\xd0\x27\xb7\xd9\xd5\x2a\x2f\x57\x6f\xce\xe3\xb3\xfd\xc8\xbd\x56\xe4\x3d\x1c\xfd\x1c\xd8\x51\x83\xcd\x0e\xd2\x5a\xc5\xb5\xdc\x28\x82\x92\x23\x8c\x83\x6c\x1d\x51\x83\x60\x26\xdf\xd1\x71\x60\xdd\xce\xe1\xcd\x36\x8c\xd2\x91\x88\xd0\xb0\x0f\x8e\x37\x43\x38\x09\xeb\xd9\x8e\xfd\x09\x60\x34\xa4\xc6\x2c\x2d\x91\x95\x33\x7c\x4a\xcb\xac\x9c\x8b\x08\x0f\x59\xf5\xb9\xb8\xaf\xf0\x90\xae\xd7\x69\x5e\x65\xab\x12\xc5\x1a\x57\x45\xbe\xcc\xaa\xac\xc8\x4b\x14\xd7\x48\xf3\x47\xdc\x64\xf9\x72\x0e\xe2\xd0\x91\x03\x3d\x59\x37\xf9\x1b\x07\x9e\x62\xa4\x66\xca\xac\x24\x3a\x11\xd8\x9a\x83\x90\xb7\x54\xf3\x96\x6b\x28\xa9\xdb\x41\xb6\x84\xd6\xfc\x22\xa7\x59\xb7\xb0\xe4\x7a\xf6\xd3\x63\x7a\x48\xdd\x88\x08\x8a\x7b\x0e\x32\xec\x2b\xaf\x7e\x2a\x16\xe2\x7a\x5d\x7c\x41\x4d\x3a\x18\x7f\xb9\x10\x22\x5d\x2e\xc1\xda\x07\xa9\x54\xec\x3b\x24\x83\x77\x89\x32\xb5\x54\xc9\x86\x75\x22\xd6\xf7\xf9\xdf\xb5\x17\xf4\x71\x9a\xc3\xbf\x46\x0f\xbd\x86\x9e\xe2\x2e\xf4\x0a\x49\xe8\xed\x61\x5f\xdd\xf5\xa6\xc1\xe2\xe2\xe2\x50\xfb\xc3\x08\xb1\xfa\x76\x57\x94\x2b\x2c\xde\xbd\xff\x90\x84\xda\x0a\xb1\xca\xab\xf5\xe3\x5d\x91\xe5\x15\xbe\xcf\x5e\x89\xec\x0f\xcf\x7e\x88\xdf\x01\x00\x00\xff\xff\x46\xbf\xaa\xe6\x20\x03\x00\x00") + +func testImagesVolumesTesterCephDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterCephDockerfile, + "test/images/volumes-tester/ceph/Dockerfile", + ) +} + +func testImagesVolumesTesterCephDockerfile() (*asset, error) { + bytes, err := testImagesVolumesTesterCephDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/ceph/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterCephMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x4f\x6f\xdb\x36\x14\x3f\x97\x9f\xe2\x87\xa8\x87\x04\x88\xe5\x34\x87\x1d\x3c\xf4\xa0\xa6\x69\x27\xb4\xb0\x8b\xc8\x5d\xd7\xd3\x40\x53\xcf\xd2\xc3\x68\x92\x23\x9f\xa2\xea\xdb\x0f\x94\xed\x2e\xc1\xba\x43\x7d\xb1\xf0\xde\xe3\xef\x1f\x1f\x0b\xdc\xf9\x30\x45\xee\x7a\xc1\xed\xcd\xab\x5f\xb0\xed\x09\x1f\x86\x1d\x45\x47\x42\x09\xd5\x20\xbd\x8f\xa9\x54\x85\x2a\xf0\x91\x0d\xb9\x44\x2d\x06\xd7\x52\x84\xf4\x84\x2a\x68\xd3\xd3\xb9\x73\x8d\xdf\x29\x26\xf6\x0e\xb7\xe5\x0d\x2e\xf3\xc0\xc5\xa9\x75\x71\xf5\xab\x2a\x30\xf9\x01\x07\x3d\xc1\x79\xc1\x90\x08\xd2\x73\xc2\x9e\x2d\x81\xbe\x19\x0a\x02\x76\x30\xfe\x10\x2c\x6b\x67\x08\x23\x4b\x3f\xd3\x9c\x40\x4a\x55\xe0\xeb\x09\xc2\xef\x44\xb3\x83\x86\xf1\x61\x82\xdf\x3f\x9d\x83\x96\x59\x70\xfe\xf5\x22\x61\xb5\x5c\x8e\xe3\x58\xea\x59\x6c\xe9\x63\xb7\xb4\xc7\xc1\xb4\xfc\x58\xdf\xdd\xaf\x9b\xfb\xc5\x6d\x79\x33\x1f\xf9\xec\x2c\xa5\x84\x48\x7f\x0f\x1c\xa9\xc5\x6e\x82\x0e\xc1\xb2\xd1\x3b\x4b\xb0\x7a\x84\x8f\xd0\x5d\x24\x6a\x21\x3e\xeb\x1d\x23\x0b\xbb\xee\x1a\xc9\xef\x65\xd4\x91\x54\x81\x96\x93\x44\xde\x0d\xf2\x2c\xac\xb3\x3a\x4e\xcf\x06\xbc\x83\x76\xb8\xa8\x1a\xd4\xcd\x05\xde\x54\x4d\xdd\x5c\xab\x02\x5f\xea\xed\x6f\x9b\xcf\x5b\x7c\xa9\x1e\x1e\xaa\xf5\xb6\xbe\x6f\xb0\x79\xc0\xdd\x66\xfd\xb6\xde\xd6\x9b\x75\x83\xcd\x3b\x54\xeb\xaf\xf8\x50\xaf\xdf\x5e\x83\x58\x7a\x8a\xa0\x6f\x21\x66\xfd\x3e\x82\x73\x8c\xd4\xe6\xcc\x1a\xa2\x67\x02\xf6\xfe\x28\x28\x05\x32\xbc\x67\x03\xab\x5d\x37\xe8\x8e\xd0\xf9\x47\x8a\x8e\x5d\x87\x40\xf1\xc0\x29\x5f\x66\x82\x76\xad\x2a\x60\xf9\xc0\xa2\x65\xae\xfc\xc7\x54\xa9\xd4\xb6\x7a\x8f\xd7\xb8\x29\x5f\xa9\x4f\x0f\xf7\xef\xea\x3f\xf0\x1a\x9d\x89\x25\xfb\x65\xe7\x7d\x67\xe9\x4f\xe3\x5d\xbe\x33\x8a\x49\x29\x6d\xed\x0a\x61\x48\xbd\x52\xdf\xcb\x2b\xf0\x41\x77\xa4\xd4\xfc\xb7\x52\x2f\x5a\x6f\xfe\xa2\x88\xdd\xc0\xb6\xc5\x62\x11\x06\x6b\xb1\x10\xbc\xbc\x3c\x12\x5c\x2d\x1f\xbd\x1d\x0e\xb4\x30\x14\x7a\x94\x28\xf0\x66\x9e\x74\x34\x1e\x91\xb2\x70\xe8\x41\xfc\x41\x0b\x1b\x6d\xed\x04\xd1\x1d\x58\xa0\x13\xac\x16\x4a\xf2\x9d\x24\x37\x7e\x0c\xfc\xc3\xea\xea\xe5\xe5\xb6\x7a\x7f\x05\x14\xa8\xda\x76\x4e\xe2\xf1\xb4\xfb\x19\x49\xfc\x5c\x3a\x72\x9c\x6d\x65\xbb\x67\x8f\x2f\x3a\x63\xfd\xd0\xe2\xc4\xbe\x58\xcc\x61\xfc\x8f\x82\x02\x9f\x72\xf3\xe8\x49\x74\xd7\x51\xfb\xaf\x83\xcc\x15\x29\xf8\xc4\xe2\xe3\xf4\x53\xc0\x67\x13\x27\xfc\x27\x06\x32\xc3\x89\xee\x29\x3a\x2e\x13\xe7\x87\x39\xbf\xdb\x63\x9f\x13\xb4\x8d\xa4\xdb\x69\x26\xca\xe7\x04\x23\x5b\x8b\x94\x37\x70\x82\x89\xa4\x85\xf2\x46\x0e\xa1\xcd\x5f\x4f\x68\xae\x94\x32\x96\xb4\x5b\xa9\x7f\x02\x00\x00\xff\xff\x4a\x61\x5a\xc9\x89\x04\x00\x00") + +func testImagesVolumesTesterCephMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterCephMakefile, + "test/images/volumes-tester/ceph/Makefile", + ) +} + +func testImagesVolumesTesterCephMakefile() (*asset, error) { + bytes, err := testImagesVolumesTesterCephMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/ceph/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterCephIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xf2\x48\xcd\xc9\xc9\x57\x70\x4e\x2d\xc8\x50\xe4\x02\x04\x00\x00\xff\xff\xd8\x66\x6c\x42\x0c\x00\x00\x00") + +func testImagesVolumesTesterCephIndexHtmlBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterCephIndexHtml, + "test/images/volumes-tester/ceph/index.html", + ) +} + +func testImagesVolumesTesterCephIndexHtml() (*asset, error) { + bytes, err := testImagesVolumesTesterCephIndexHtmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/ceph/index.html", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterCephInitSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x6d\x73\xd3\x38\x17\xfd\xae\x5f\x71\x9e\xb8\x33\x05\xa6\x8e\xd3\x4e\x1f\x16\x58\xc2\x4c\xe8\xcb\x6e\x06\x68\x97\xa6\xc0\x32\x3b\x3b\x8b\x62\x5f\xdb\xda\xd8\x92\x56\x92\xeb\x66\x29\xff\x7d\x47\xb2\xdb\xa4\x2d\xa5\x90\x0f\x49\xac\x7b\xce\xd5\xd1\x7d\x91\x6f\xf4\xbf\x64\x2e\x64\x32\xe7\xb6\x64\x2c\xc2\x9e\xd2\x4b\x23\x8a\xd2\x61\x67\xb4\xfd\x7f\x9c\x96\x84\x57\xcd\x9c\x8c\x24\x47\x16\x93\xc6\x95\xca\xd8\x21\x8b\x58\x84\xd7\x22\x25\x69\x29\x43\x23\x33\x32\x70\x25\x61\xa2\x79\x5a\xd2\xa5\x65\x0b\xef\xc9\x58\xa1\x24\x76\x86\x23\x3c\xf0\x80\x41\x6f\x1a\x3c\xfc\x99\x45\x58\xaa\x06\x35\x5f\x42\x2a\x87\xc6\x12\x5c\x29\x2c\x72\x51\x11\xe8\x3c\x25\xed\x20\x24\x52\x55\xeb\x4a\x70\x99\x12\x5a\xe1\xca\xb0\x4d\xef\x64\xc8\x22\x7c\xec\x5d\xa8\xb9\xe3\x42\x82\x23\x55\x7a\x09\x95\xaf\xe3\xc0\x5d\x10\xec\x3f\xa5\x73\xfa\x59\x92\xb4\x6d\x3b\xe4\x41\xec\x50\x99\x22\xa9\x3a\xa0\x4d\x5e\x4f\xf7\x0e\x8e\x66\x07\xf1\xce\x70\x14\x28\xef\x64\x45\xd6\xc2\xd0\x3f\x8d\x30\x94\x61\xbe\x04\xd7\xba\x12\x29\x9f\x57\x84\x8a\xb7\x50\x06\xbc\x30\x44\x19\x9c\xf2\x7a\x5b\x23\x9c\x90\xc5\x16\xac\xca\x5d\xcb\x0d\xb1\x08\x99\xb0\xce\x88\x79\xe3\xae\x05\xeb\x52\x9d\xb0\xd7\x00\x4a\x82\x4b\x0c\x26\x33\x4c\x67\x03\xbc\x9c\xcc\xa6\xb3\x2d\x16\xe1\xc3\xf4\xf4\xd7\xe3\x77\xa7\xf8\x30\x39\x39\x99\x1c\x9d\x4e\x0f\x66\x38\x3e\xc1\xde\xf1\xd1\xfe\xf4\x74\x7a\x7c\x34\xc3\xf1\x21\x26\x47\x1f\xf1\x6a\x7a\xb4\xbf\x05\x12\xae\x24\x03\x3a\xd7\xc6\xeb\x57\x06\xc2\x87\x91\x32\x1f\xb3\x19\xd1\x35\x01\xb9\xea\x04\x59\x4d\xa9\xc8\x45\x8a\x8a\xcb\xa2\xe1\x05\xa1\x50\x67\x64\xa4\x90\x05\x34\x99\x5a\x58\x9f\x4c\x0b\x2e\x33\x16\xa1\x12\xb5\x70\xdc\x85\x95\x5b\x87\x1a\x32\x16\x59\x72\x88\x89\x85\x9f\x73\x5f\x5b\x69\x45\x5c\xa2\xd1\xcc\xd4\x88\x73\x24\xe4\xd2\x24\x25\x5d\x26\x8f\x18\xd3\x0b\x51\x55\x88\x9f\xc2\x2f\xc4\xb5\x92\x37\x56\x94\xcd\x6e\x62\x32\xcb\x58\xbd\xc8\x84\x41\xac\x91\x9c\x71\x93\x54\x62\x1e\x1c\xde\xb1\x9c\x78\x27\x77\x9b\xc2\x9f\x78\x14\x94\x1a\xe2\x8e\x50\x2a\xeb\x24\xaf\xbb\x08\x79\x2b\x6a\x25\x85\x53\x86\xbd\x99\xcc\x4e\x0f\x4e\xc6\x9f\xae\x10\xb1\xfd\xc4\x98\xd0\xe3\x8d\x07\x42\x23\xde\x45\xac\xc0\x71\x81\xc2\x90\x06\xb9\x72\x84\x0b\xf0\x76\x81\xcd\xcf\xda\x08\xe9\xb0\xb1\xfb\x65\x13\x17\x48\x1b\x87\x38\xdb\x4c\x36\x11\xe7\xdb\x0f\x19\xa5\xa5\xc2\x60\x43\x68\x6c\x74\x1b\x0c\xf0\xe2\x45\x17\x27\xbf\x91\x65\x2c\xea\x95\x05\x31\x69\xd5\x58\x47\x86\x05\xdd\x19\xe9\x4a\x2d\x11\xc7\x3e\x65\xbe\x08\x29\x4e\x95\xcc\x21\xa9\xc5\xc6\xe7\xce\xdd\x17\xe0\xdb\xe0\x5a\xc9\xfe\xec\xb1\x90\xc2\x09\x5e\xad\xb8\xdf\xcb\xbc\x83\x81\x82\xfb\x92\x5c\xd0\xd2\x5e\xd3\xc3\x22\xf8\x0a\x51\x36\x03\x34\x37\xbc\xb6\x21\xda\xb5\x90\xa2\xe6\x15\xbc\x73\x51\x34\x26\x14\x5a\x1f\x20\x8f\x4d\x4d\x63\x4b\xa4\xa5\x52\x96\x2a\xe2\x39\xdc\x52\x13\xc6\x18\xad\x42\x16\xf2\xea\xbf\x86\xde\xc9\x1a\xf7\x6f\xd5\x18\xc9\x2b\x58\xf1\xaf\xa7\x6c\x8f\xbe\x87\xa4\x95\xaa\x90\x51\xce\x9b\xca\x5d\x31\x7f\x94\xa7\x0b\x0d\xd9\xd4\x18\xe3\xc9\x8f\x53\xef\x65\xb2\xc4\xfa\xab\xdc\x92\x39\x13\x69\x5f\x23\x71\xfa\x35\x28\xac\x53\xda\xe7\x6c\xb8\x4a\xd6\x8f\x90\xb9\x71\x37\xd8\xab\xa6\x09\x4c\xdf\x69\x97\x7f\x7a\x03\xbb\xec\x63\xc4\x02\x23\xc4\x71\xbd\xc8\x6d\xf8\x59\xd0\xb2\x03\xf3\xc6\x95\xe0\x59\xe6\x59\xc3\x51\xe0\x6e\xf2\xaa\x52\x2d\x1e\x6d\x86\x0a\xeb\x9f\x4c\x7b\xbe\xe9\xbd\xdc\xd5\xc2\xc9\x82\x96\x46\xc8\x62\x5d\x82\x2f\x17\xef\x7a\x84\x6d\x18\xa5\xdc\xf8\x32\xb0\xbe\xb3\xc6\x37\x6a\x76\xa5\x72\x71\xff\x26\xfe\xa6\x23\x88\x1c\x2d\x81\x1b\x82\x21\x9e\x2d\xfd\xdb\xa0\x50\x7d\xbf\x05\x09\xce\x10\x75\xf5\xbe\x1e\xa8\xdc\xae\x10\x21\xdf\x6b\xc6\xdc\xfe\x95\x71\xc7\xb1\xfb\x4d\x48\x4d\x8e\xaf\xc3\x72\x1b\x7a\xbe\xb3\xde\x02\xad\xf9\xbd\xa7\xa1\x33\x7b\xbb\xa1\x59\x84\x46\xa6\xaa\xae\x49\xba\x70\xdd\xe7\xca\x27\xc4\xbf\x20\x7c\xd3\x9a\x79\x06\x47\xd6\xf9\x33\x7e\x4d\xf1\xa2\x99\x13\x76\x59\x14\x80\xfd\x5a\xae\x14\xe2\x38\x34\xd4\xb6\xaf\x8a\x80\xf7\x40\xc6\xb4\x45\x4c\x39\x2e\xc2\x25\x1a\xee\xf5\x2b\xaf\x59\x53\x6b\xaf\xc6\x67\x34\x9c\xb6\x12\x5e\x52\x98\x10\x38\xb4\x21\xdf\x37\x42\x52\x86\xcb\x2c\x45\xdd\x74\xd1\x3f\xa2\x6e\xac\x43\xcd\x5d\xda\x4d\x14\xc1\xb1\xa5\xd4\x50\x18\x3a\x68\x87\xba\x83\xa4\xdc\xe1\x76\xb3\x85\xcd\x86\x5e\xe4\xf0\xd2\xdf\xf3\xe7\x07\xc7\x87\xec\x8f\x35\xd3\x9f\x0c\xfd\x67\x41\x4b\x8c\x31\x79\x3b\x79\x53\xfc\x5e\xbe\x6f\x5f\xee\xd1\x7e\x39\x99\x3c\x95\xd5\x6f\xfc\x70\x99\xbf\x9b\x71\xf7\xcb\xfe\x6e\x66\x0e\x3f\xec\x9f\xbd\x1d\x8f\xaf\x68\x29\xd7\x36\xa4\x61\x8c\xc1\x55\xdd\x0f\x6e\x98\x95\xfc\x96\xd9\x87\xea\xba\xd9\xab\x5c\xf5\x9a\xa8\xb5\x32\x2e\xb4\xd2\xbd\x47\xf4\xe1\xae\x55\x23\x1d\x84\xcf\xbd\x51\x4d\x51\x76\x6f\xe2\xdc\xcf\x6e\x5c\x66\xdd\xec\x15\xe6\x37\xa7\xae\x95\x77\x07\x89\xeb\x55\x29\x3d\x7b\xfc\xd3\x93\xa7\x48\x6a\xe9\x58\xaa\x91\xb8\x5a\x27\x42\x66\x74\x3e\x2c\x5d\x5d\xf5\xeb\x65\xad\x32\x3c\xde\xdd\x0d\x8f\x6b\x66\xaf\xa4\xf5\xa9\xeb\x4e\x12\xb7\xec\xbf\x00\x00\x00\xff\xff\xb6\xc6\x03\x35\xc5\x0a\x00\x00") + +func testImagesVolumesTesterCephInitShBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterCephInitSh, + "test/images/volumes-tester/ceph/init.sh", + ) +} + +func testImagesVolumesTesterCephInitSh() (*asset, error) { + bytes, err := testImagesVolumesTesterCephInitShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/ceph/init.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterCephInstallSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x5d\x8f\xdb\x36\x10\x7c\xe7\xaf\x98\x5a\x01\xae\x05\x2c\xe9\xce\x40\xf3\xd0\x02\x01\xdc\xcb\xb5\x35\x12\xd8\xc0\xc9\xd7\x20\x4f\x01\x25\xad\x44\xc6\x14\xc9\x70\x29\x2b\x4a\x3f\x7e\x7b\x21\xf9\x54\xc4\xe8\x73\xfc\x42\xec\xce\xec\xec\x78\xb4\xc9\x77\x79\xa9\x6d\x5e\x4a\x56\x42\x24\xb8\x77\x7e\x0c\xba\x55\x11\x9b\xdb\xbb\x1f\x71\x54\x84\x37\x7d\x49\xc1\x52\x24\xc6\xb6\x8f\xca\x05\xce\x44\x22\x12\xbc\xd5\x15\x59\xa6\x1a\xbd\xad\x29\x20\x2a\xc2\xd6\xcb\x4a\xd1\x82\xac\xf1\x07\x05\xd6\xce\x62\x93\xdd\xe2\xfb\x89\xb0\x7a\x86\x56\x3f\xfc\x2c\x12\x8c\xae\x47\x27\x47\x58\x17\xd1\x33\x21\x2a\xcd\x68\xb4\x21\xd0\xe7\x8a\x7c\x84\xb6\xa8\x5c\xe7\x8d\x96\xb6\x22\x0c\x3a\xaa\x79\xcd\xb3\x48\x26\x12\xbc\x7f\x96\x70\x65\x94\xda\x42\xa2\x72\x7e\x84\x6b\xbe\xe6\x41\xc6\xd9\xf0\xf4\x53\x31\xfa\x9f\xf2\x7c\x18\x86\x4c\xce\x66\x33\x17\xda\xdc\x5c\x88\x9c\xbf\xdd\xdd\x3f\xec\x8b\x87\x74\x93\xdd\xce\x23\x4f\xd6\x10\x33\x02\x7d\xea\x75\xa0\x1a\xe5\x08\xe9\xbd\xd1\x95\x2c\x0d\xc1\xc8\x01\x2e\x40\xb6\x81\xa8\x46\x74\x93\xdf\x21\xe8\xa8\x6d\xbb\x06\xbb\x26\x0e\x32\x90\x48\x50\x6b\x8e\x41\x97\x7d\xbc\x0a\x6b\x71\xa7\xf9\x8a\xe0\x2c\xa4\xc5\x6a\x5b\x60\x57\xac\xf0\xcb\xb6\xd8\x15\x6b\x91\xe0\xdd\xee\xf8\xfb\xe1\xe9\x88\x77\xdb\xc7\xc7\xed\xfe\xb8\x7b\x28\x70\x78\xc4\xfd\x61\xff\x7a\x77\xdc\x1d\xf6\x05\x0e\xbf\x62\xbb\x7f\x8f\x37\xbb\xfd\xeb\x35\x48\x47\x45\x01\xf4\xd9\x87\xc9\xbf\x0b\xd0\x53\x8c\x54\x4f\x99\x15\x44\x57\x06\x1a\x77\x31\xc4\x9e\x2a\xdd\xe8\x0a\x46\xda\xb6\x97\x2d\xa1\x75\x67\x0a\x56\xdb\x16\x9e\x42\xa7\x79\xfa\x98\x0c\x69\x6b\x91\xc0\xe8\x4e\x47\x19\xe7\xce\xff\xfe\x54\x26\xc4\xd8\x77\xe8\x7d\x2d\x23\x21\x1d\x91\x9e\xe7\x86\xb6\x1c\xa5\x31\x00\x9c\x27\xcb\xac\x96\x37\x65\x0a\x67\x0a\xff\x95\x95\xd1\x64\x23\x43\x39\x8e\x56\x76\x17\x8d\x4f\x42\x4c\xd8\x89\xc6\x96\x2c\xd2\x06\xff\xe4\x19\xb3\xca\x75\xfd\x21\xb0\x44\x1a\x31\x3f\x7b\xdc\xdc\x88\x4a\xc6\x6b\x38\xf3\x7d\x89\xbf\xe4\x70\xc2\xcd\x9f\x3e\x68\x1b\xf1\xe2\x6e\x8d\x17\x9b\x35\x56\xbf\x91\xa5\x20\x23\xd5\xab\xbf\x6f\xf0\xea\xd5\x32\x27\xe7\x6b\xd7\x5f\xa8\xfe\x70\xa2\x91\x37\xdf\x40\x53\x88\xe0\x3b\xa4\x4f\x67\xb5\x5c\x66\x45\x5e\x65\x95\xeb\xf2\xe0\xbb\x3c\x28\x32\x2f\x73\xeb\x64\xa8\xd4\x8c\xa4\x81\x0c\x49\xa6\xf4\x2e\xbd\xcd\xc8\xbc\xcc\x2e\x58\x16\x7c\x77\x9d\xef\x1c\x17\xfc\x18\x95\xb3\xa9\x8e\x5c\x4b\xdb\x52\x70\x3d\x2f\xbd\x81\xc2\xe9\x0b\xf5\xed\x52\x7f\xd4\xf6\xa3\xdc\x2c\x55\x63\x24\x9f\x30\x6f\xac\xc9\x1b\x37\x82\x3c\x99\x65\xbb\x48\x66\x08\xfe\xd4\xa2\x26\x4f\xb6\xe6\xe9\x6c\xaf\x28\x5f\xbb\xb9\x98\xb9\xcc\xcc\x9a\x4d\xcf\x24\xfe\x0d\x00\x00\xff\xff\xc5\x69\x66\xe9\x7a\x04\x00\x00") + +func testImagesVolumesTesterCephInstallShBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterCephInstallSh, + "test/images/volumes-tester/ceph/install.sh", + ) +} + +func testImagesVolumesTesterCephInstallSh() (*asset, error) { + bytes, err := testImagesVolumesTesterCephInstallShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/ceph/install.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterGlusterDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x61\x6b\xdb\x3c\x10\xc7\xdf\xeb\x53\xfc\x89\xa1\x3c\x0f\x24\x76\x1a\xf2\xf4\x61\xdb\x2b\xaf\x49\x99\x69\x67\x97\x38\x5d\x57\xc6\x18\x8a\x7c\xb1\x05\xb2\xe4\x49\x72\x5c\x7f\xfb\x61\x27\x5d\x97\x4e\xaf\xc4\xdd\xef\xee\x7e\x3a\x05\xb8\x36\x4d\x6f\x65\x59\x79\x2c\xe6\x97\x57\xd8\x56\x84\xdb\x76\x47\x56\x93\x27\x87\xb8\xf5\x95\xb1\x2e\x64\x01\x0b\x70\x27\x05\x69\x47\x05\x5a\x5d\x90\x85\xaf\x08\x71\xc3\x45\x45\x2f\x99\x29\xbe\x90\x75\xd2\x68\x2c\xc2\x39\xfe\x19\x80\xc9\x29\x35\xf9\xf7\x03\x0b\xd0\x9b\x16\x35\xef\xa1\x8d\x47\xeb\x08\xbe\x92\x0e\x7b\xa9\x08\xf4\x2c\xa8\xf1\x90\x1a\xc2\xd4\x8d\x92\x5c\x0b\x42\x27\x7d\x35\x8e\x39\x35\x09\x59\x80\xa7\x53\x0b\xb3\xf3\x5c\x6a\x70\x08\xd3\xf4\x30\xfb\x3f\x39\x70\x3f\x0a\x0f\xa7\xf2\xbe\x79\x1f\x45\x5d\xd7\x85\x7c\x94\x0d\x8d\x2d\x23\x75\x04\x5d\x74\x97\x5c\xaf\xd3\x7c\x3d\x5b\x84\xf3\xb1\xe4\x41\x2b\x72\x0e\x96\x7e\xb6\xd2\x52\x81\x5d\x0f\xde\x34\x4a\x0a\xbe\x53\x04\xc5\x3b\x18\x0b\x5e\x5a\xa2\x02\xde\x0c\xbe\x9d\x95\x5e\xea\x72\x0a\x67\xf6\xbe\xe3\x96\x58\x80\x42\x3a\x6f\xe5\xae\xf5\x67\xcb\x7a\xb1\x93\xee\x0c\x30\x1a\x5c\x63\x12\xe7\x48\xf2\x09\x3e\xc6\x79\x92\x4f\x59\x80\xc7\x64\xfb\x29\x7b\xd8\xe2\x31\xde\x6c\xe2\x74\x9b\xac\x73\x64\x1b\x5c\x67\xe9\x2a\xd9\x26\x59\x9a\x23\xbb\x41\x9c\x3e\xe1\x36\x49\x57\x53\x90\xf4\x15\x59\xd0\x73\x63\x07\x7f\x63\x21\x87\x35\x52\x31\xec\x2c\x27\x3a\x13\xd8\x9b\xa3\x90\x6b\x48\xc8\xbd\x14\x50\x5c\x97\x2d\x2f\x09\xa5\x39\x90\xd5\x52\x97\x68\xc8\xd6\xd2\x0d\x9f\xe9\xc0\x75\xc1\x02\x28\x59\x4b\xcf\xfd\x18\xf9\xeb\x51\x21\x63\x37\x9b\xec\x33\x04\x69\x6f\x1c\xdb\x3c\xa4\xe8\xdb\x1a\xb3\x1e\x52\x3b\xcf\x95\x42\x65\x9c\xd7\xbc\xa6\x13\x32\xb3\xa4\x88\x3b\x9a\x95\xaa\x75\x9e\x2c\x2e\x2e\xde\x56\x9c\x32\x7b\x37\x73\x64\x0f\xaf\x88\x50\xc4\x35\xb8\x52\x2c\x5e\xad\x5e\xa8\x22\x3c\x18\x85\x88\xbc\x88\x7e\xd7\x45\x23\x60\x5b\xfd\xe3\x14\x0a\x5d\x85\xa8\x75\x36\x52\x46\x70\x15\xed\xa4\x3e\x22\x52\x17\xf4\x1c\x56\xbe\x56\x88\x0e\x46\x45\xa3\xbf\xa8\x6a\x53\xe0\x6a\xb9\x3c\xc6\x5e\x19\xc6\xd6\x5f\xef\xb3\x7c\x8d\xc5\x72\x3e\xff\x3f\xf2\xa2\xc1\xf2\xdd\xe5\x7f\x8b\xe1\xc6\xd8\x3a\xdd\x6e\x9e\xee\xb3\x24\xdd\xe2\xdb\xe4\xcd\xb0\x73\x95\xc9\x77\xf6\x2b\x00\x00\xff\xff\xbb\x6e\xd0\xb9\x80\x03\x00\x00") + +func testImagesVolumesTesterGlusterDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterGlusterDockerfile, + "test/images/volumes-tester/gluster/Dockerfile", + ) +} + +func testImagesVolumesTesterGlusterDockerfile() (*asset, error) { + bytes, err := testImagesVolumesTesterGlusterDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/gluster/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterGlusterMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\xcf\x6f\xdb\x36\x14\x3e\x97\x7f\xc5\x87\xa8\x87\x04\x88\xe5\x2c\x18\x76\xf0\xd0\x83\x9a\xa6\x9d\xd0\xc2\x2e\x22\x77\x5d\x4f\x03\x2d\x3d\x53\x0f\xa3\x49\x8d\x7c\x8c\xaa\xff\x7e\xa0\x6c\x77\x09\x86\x1c\xe6\x8b\x85\xf7\x3d\x7e\x3f\x1e\xf9\x0a\xdc\xf9\x61\x0a\x6c\x7a\xc1\xed\xcd\x4f\xbf\x60\xdb\x13\x3e\xa6\x1d\x05\x47\x42\x11\x55\x92\xde\x87\x58\xaa\x42\x15\xf8\xc4\x2d\xb9\x48\x1d\x92\xeb\x28\x40\x7a\x42\x35\xe8\xb6\xa7\x33\x72\x8d\xdf\x29\x44\xf6\x0e\xb7\xe5\x0d\x2e\x73\xc3\xc5\x09\xba\xb8\xfa\x55\x15\x98\x7c\xc2\x41\x4f\x70\x5e\x90\x22\x41\x7a\x8e\xd8\xb3\x25\xd0\xf7\x96\x06\x01\x3b\xb4\xfe\x30\x58\xd6\xae\x25\x8c\x2c\xfd\x2c\x73\x22\x29\x55\x81\x6f\x27\x0a\xbf\x13\xcd\x0e\x1a\xad\x1f\x26\xf8\xfd\xd3\x3e\x68\x99\x0d\xe7\x5f\x2f\x32\xac\x96\xcb\x71\x1c\x4b\x3d\x9b\x2d\x7d\x30\x4b\x7b\x6c\x8c\xcb\x4f\xf5\xdd\xfd\xba\xb9\x5f\xdc\x96\x37\xf3\x91\x2f\xce\x52\x8c\x08\xf4\x77\xe2\x40\x1d\x76\x13\xf4\x30\x58\x6e\xf5\xce\x12\xac\x1e\xe1\x03\xb4\x09\x44\x1d\xc4\x67\xbf\x63\x60\x61\x67\xae\x11\xfd\x5e\x46\x1d\x48\x15\xe8\x38\x4a\xe0\x5d\x92\x67\xc3\x3a\xbb\xe3\xf8\xac\xc1\x3b\x68\x87\x8b\xaa\x41\xdd\x5c\xe0\x6d\xd5\xd4\xcd\xb5\x2a\xf0\xb5\xde\xfe\xb6\xf9\xb2\xc5\xd7\xea\xe1\xa1\x5a\x6f\xeb\xfb\x06\x9b\x07\xdc\x6d\xd6\xef\xea\x6d\xbd\x59\x37\xd8\xbc\x47\xb5\xfe\x86\x8f\xf5\xfa\xdd\x35\x88\xa5\xa7\x00\xfa\x3e\x84\xec\xdf\x07\x70\x1e\x23\x75\x79\x66\x0d\xd1\x33\x03\x7b\x7f\x34\x14\x07\x6a\x79\xcf\x2d\xac\x76\x26\x69\x43\x30\xfe\x91\x82\x63\x67\x30\x50\x38\x70\xcc\x97\x19\xa1\x5d\xa7\x0a\x58\x3e\xb0\x68\x99\x2b\xff\x09\x55\x2a\xb5\xad\x3e\xe0\x0d\x6e\xca\x9f\xd5\xe7\x87\xfb\xf7\xf5\x1f\x78\x03\xd3\x86\x92\xfd\xd2\x78\x6f\x2c\xfd\xd9\x7a\x97\xef\x8c\x42\x54\x4a\x5b\xbb\xc2\x90\x62\xaf\xd4\x8f\xf2\x0a\x7c\xd0\x86\x94\x9a\xff\x56\xea\x55\xe7\xdb\xbf\x28\x60\x97\xd8\x76\x58\x2c\x86\x64\x2d\x16\x82\xd7\x97\x47\x81\xab\xe5\xa3\xb7\xe9\x40\x0b\x63\x53\x14\x0a\x28\x51\xe0\xed\xdc\xec\x68\x3c\x92\x65\xef\xd0\x49\xfc\x41\x0b\xb7\xda\xda\x09\xa2\x0d\x58\xa0\x23\xac\x16\x8a\xf2\x43\x27\x03\x2f\x72\xbf\x04\xac\x5e\x5f\x6e\xab\x0f\x57\x40\x81\xaa\xeb\xe6\x91\x3c\x9e\x96\x20\xf3\x89\x9f\x4b\x47\xa5\x73\xbe\x9c\xfb\x1c\xf6\x95\x69\xad\x4f\x1d\x4e\x1e\x16\x8b\x79\x2a\x2f\xfb\x28\xf0\x39\xe3\xc7\x70\xa2\x8d\xa1\xee\xdf\x28\x59\x2e\xd0\xe0\x23\x8b\x0f\xd3\xff\xe5\x3e\x47\x39\x49\x3c\x89\x91\x45\x4e\x8a\x4f\x05\x70\x19\x39\xef\xe9\xbc\xc6\x47\x9c\x23\xb4\x0d\xa4\xbb\x69\xd6\xca\xe7\x04\x23\x5b\x8b\x98\x1f\xe4\x84\x36\x90\x16\xca\x0f\x34\x0d\x5d\xfe\x7a\x22\x73\xa5\x54\x6b\x49\xbb\x95\xfa\x27\x00\x00\xff\xff\x0c\xc1\xe7\xe0\x98\x04\x00\x00") + +func testImagesVolumesTesterGlusterMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterGlusterMakefile, + "test/images/volumes-tester/gluster/Makefile", + ) +} + +func testImagesVolumesTesterGlusterMakefile() (*asset, error) { + bytes, err := testImagesVolumesTesterGlusterMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/gluster/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterGlusterGlusterdVol = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\x41\x4e\xc3\x30\x10\x45\xf7\x3e\xc5\x57\xb3\x01\xa9\x4e\x29\x82\x05\xf7\xe0\x02\xae\x3d\x49\x47\xb5\x3d\xd1\x78\x92\xaa\xb7\x47\x69\x05\x08\xa9\x20\xb6\x5f\x6f\xde\x1f\xfd\x0e\xef\x47\x6e\xe0\x86\x44\x43\x98\xb3\x61\xcc\x73\x33\xd2\xd4\x2f\x92\xf1\xc0\x35\xe6\x1e\x51\x4a\xa1\x6a\x94\x20\xb3\xe1\x10\x1a\xf9\x49\xd4\x1e\xb7\xae\xc3\x99\xed\x88\x90\x12\x25\x6c\x74\x8a\x3e\xcc\x76\xf4\x21\x67\x39\x7b\xae\x8d\xe2\xac\x04\xa9\x1b\x98\xe0\x9a\x22\x4a\xad\x14\x8d\xa5\xba\x0e\x83\x4a\x41\x95\xea\x27\xe5\x85\x33\x8d\x94\xb0\xaa\x5b\xef\xdc\x22\x79\x2e\x84\x12\x6a\x18\x69\xed\x77\x00\x60\x97\x89\x50\xc6\x62\xbb\xcf\x4f\xaf\xb1\x4c\xab\x11\x67\xd1\x13\xd7\xd1\x27\x56\x8a\x26\x7a\xc1\x6e\x09\xba\xcb\x7c\xb8\x8b\x9b\x86\xda\xd6\x3e\x7f\xd5\x36\x89\x27\xb2\xad\xa6\x12\xee\x52\xfd\x0d\xe8\x4f\x44\x53\xc8\xbc\x90\x37\x2e\x84\xfd\xd3\x3f\x69\xae\x46\xba\x84\x8c\xe7\x3f\x0f\x94\x42\xf2\x43\xe0\xec\xb3\x8c\x90\x61\x70\xdd\x37\xfd\xb5\x3e\x5e\xde\xf6\xaf\x3f\x44\xbf\xcf\xef\xa8\x26\x7f\xdb\xd3\x7d\x04\x00\x00\xff\xff\xbe\xa1\x56\x52\xf3\x01\x00\x00") + +func testImagesVolumesTesterGlusterGlusterdVolBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterGlusterGlusterdVol, + "test/images/volumes-tester/gluster/glusterd.vol", + ) +} + +func testImagesVolumesTesterGlusterGlusterdVol() (*asset, error) { + bytes, err := testImagesVolumesTesterGlusterGlusterdVolBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/gluster/glusterd.vol", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterGlusterIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xf2\x48\xcd\xc9\xc9\x57\x48\x2b\xca\xcf\x55\x70\xcf\x29\x2d\x2e\x49\x2d\x72\x0b\x56\xe4\x02\x04\x00\x00\xff\xff\xed\xdd\x63\xe1\x16\x00\x00\x00") + +func testImagesVolumesTesterGlusterIndexHtmlBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterGlusterIndexHtml, + "test/images/volumes-tester/gluster/index.html", + ) +} + +func testImagesVolumesTesterGlusterIndexHtml() (*asset, error) { + bytes, err := testImagesVolumesTesterGlusterIndexHtmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/gluster/index.html", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterGlusterRun_glusterSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x53\x5d\x6f\xdb\x36\x14\x7d\xe7\xaf\x38\xb3\xf2\x90\x0c\x91\x94\x05\x08\x06\xb4\x28\x30\x2f\xf1\x30\xa1\x9d\x0d\x58\xee\x8a\x3e\xcd\xb4\x74\x25\x11\xa5\x48\x8e\xbc\xb4\x62\x0c\xfb\xef\x83\x64\x27\xae\x91\xe9\x4d\x87\xe7\xde\xf3\x41\x29\xf9\x21\xdf\x29\x93\xef\x64\xe8\x84\x48\xf0\x68\xdd\xc1\xab\xb6\x63\xdc\xdf\xfd\xf4\x80\x4d\x47\xf8\x18\x77\xe4\x0d\x31\x05\xcc\x23\x77\xd6\x87\x4c\x24\x22\xc1\x27\x55\x91\x09\x54\x23\x9a\x9a\x3c\xb8\x23\xcc\x9d\xac\x3a\x7a\x39\xb9\xc5\x9f\xe4\x83\xb2\x06\xf7\xd9\x1d\xae\x47\xc2\xec\x74\x34\xbb\x79\x2f\x12\x1c\x6c\x44\x2f\x0f\x30\x96\x11\x03\x81\x3b\x15\xd0\x28\x4d\xa0\xe7\x8a\x1c\x43\x19\x54\xb6\x77\x5a\x49\x53\x11\x06\xc5\xdd\x24\x73\x5a\x92\x89\x04\x5f\x4f\x2b\xec\x8e\xa5\x32\x90\xa8\xac\x3b\xc0\x36\xdf\xf3\x20\x79\x32\x3c\x3e\x1d\xb3\x7b\x97\xe7\xc3\x30\x64\x72\x32\x9b\x59\xdf\xe6\xfa\x48\x0c\xf9\xa7\xe2\x71\xb1\x2c\x17\xe9\x7d\x76\x37\x8d\x7c\x36\x9a\x42\x80\xa7\xbf\xa3\xf2\x54\x63\x77\x80\x74\x4e\xab\x4a\xee\x34\x41\xcb\x01\xd6\x43\xb6\x9e\xa8\x06\xdb\xd1\xef\xe0\x15\x2b\xd3\xde\x22\xd8\x86\x07\xe9\x49\x24\xa8\x55\x60\xaf\x76\x91\x2f\xca\x7a\x71\xa7\xc2\x05\xc1\x1a\x48\x83\xd9\xbc\x44\x51\xce\xf0\xeb\xbc\x2c\xca\x5b\x91\xe0\x4b\xb1\xf9\x7d\xf5\x79\x83\x2f\xf3\xf5\x7a\xbe\xdc\x14\x8b\x12\xab\x35\x1e\x57\xcb\xa7\x62\x53\xac\x96\x25\x56\xbf\x61\xbe\xfc\x8a\x8f\xc5\xf2\xe9\x16\xa4\xb8\x23\x0f\x7a\x76\x7e\xf4\x6f\x3d\xd4\x58\x23\xd5\x63\x67\x25\xd1\x85\x81\xc6\x1e\x0d\x05\x47\x95\x6a\x54\x05\x2d\x4d\x1b\x65\x4b\x68\xed\x9e\xbc\x51\xa6\x85\x23\xdf\xab\x30\x5e\x66\x80\x34\xb5\x48\xa0\x55\xaf\x58\xf2\x84\xbc\x09\x95\x09\xf1\x54\xac\x3f\x6c\xfb\x6f\x4c\xbd\x43\x5a\x6f\x85\x68\xa2\xa9\x46\x3a\x02\x4b\xcf\xd7\x37\xe2\x1f\x31\xde\x48\x6f\xa3\x61\xa4\x0c\xee\x5d\x13\xc0\x14\x18\x57\x4f\xc5\x7a\x3a\xac\xba\xde\xd6\xf8\xf9\xe1\xe1\x3b\xc8\x21\xdf\x5b\x9d\xff\x38\x41\xf9\x84\xe5\x31\xf8\x3c\x8c\xdf\x71\xab\x63\x60\xf2\x35\x52\x87\xdc\xc7\x33\x90\x39\x55\x4f\xdc\x13\x80\xbd\xd5\xb1\x27\x54\x9e\x24\xd3\x24\xfb\xd7\xde\x6a\x6c\x3b\x1b\xd8\xc8\x9e\x90\xaa\xed\xbb\x51\x62\xec\xa7\xa2\xff\x9b\x9d\x82\xbc\x8e\x8a\x7f\x2f\x32\x5a\xf7\x1a\xf1\x65\x2c\x4d\x7b\x5b\xd3\x87\x50\x79\xe5\xf8\xbc\xc4\xba\xb3\xfc\x59\xeb\x9b\xd2\x1a\x57\xd7\x95\xe4\xb7\x41\x6e\x26\x46\x3c\x56\xf7\xda\x8c\xef\x91\xfa\xe6\xfc\x4e\xcf\x8a\x71\x37\xda\x12\xec\xa5\x3b\x2a\x6d\x16\xeb\x3f\x84\x38\x3a\x9f\x5d\xfd\x32\x13\x62\xe8\xc6\x3f\x8e\x7d\xa4\xf7\xa8\xed\x34\x19\x34\x91\xc3\x83\xa8\xad\x21\x21\xfe\x0b\x00\x00\xff\xff\xf0\xad\x75\x4a\x23\x04\x00\x00") + +func testImagesVolumesTesterGlusterRun_glusterShBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterGlusterRun_glusterSh, + "test/images/volumes-tester/gluster/run_gluster.sh", + ) +} + +func testImagesVolumesTesterGlusterRun_glusterSh() (*asset, error) { + bytes, err := testImagesVolumesTesterGlusterRun_glusterShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/gluster/run_gluster.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterIscsiDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\xd1\x6e\xdb\x46\x13\x85\xef\xf7\x29\xce\x2f\x02\x41\x02\x58\xa4\xac\xf8\x77\x03\x17\xbe\x50\x6d\x05\x55\x93\x4a\x81\x28\x37\x35\x8a\x42\x58\x2d\x47\xe4\x34\xcb\x5d\x66\x77\x18\x59\x7d\xfa\x82\xa4\xec\xd4\xc9\x6d\x75\x23\x69\xe7\xec\xcc\xc7\x33\x87\x09\x6e\x7c\x73\x0c\x5c\x56\x82\xe9\xe4\xfc\x12\x9b\x8a\xf0\xae\xdd\x51\x70\x24\x14\x31\x6b\xa5\xf2\x21\xa6\x2a\x51\x09\xde\xb3\x21\x17\xa9\x40\xeb\x0a\x0a\x90\x8a\x30\x6b\xb4\xa9\xe8\xb1\x72\x86\xdf\x28\x44\xf6\x0e\xd3\x74\x82\x97\x9d\x60\x74\x2a\x8d\x5e\xfd\xa8\x12\x1c\x7d\x8b\x5a\x1f\xe1\xbc\xa0\x8d\x04\xa9\x38\x62\xcf\x96\x40\x0f\x86\x1a\x01\x3b\x18\x5f\x37\x96\xb5\x33\x84\x03\x4b\xd5\x8f\x39\x35\x49\x55\x82\xfb\x53\x0b\xbf\x13\xcd\x0e\x1a\xc6\x37\x47\xf8\xfd\xbf\x75\xd0\xd2\x03\x77\x9f\x4a\xa4\xb9\xca\xb2\xc3\xe1\x90\xea\x1e\x36\xf5\xa1\xcc\xec\x20\x8c\xd9\xfb\xc5\xcd\x7c\x99\xcf\xc7\xd3\x74\xd2\x5f\xb9\x73\x96\x62\x44\xa0\xcf\x2d\x07\x2a\xb0\x3b\x42\x37\x8d\x65\xa3\x77\x96\x60\xf5\x01\x3e\x40\x97\x81\xa8\x80\xf8\x8e\xf7\x10\x58\xd8\x95\x67\x88\x7e\x2f\x07\x1d\x48\x25\x28\x38\x4a\xe0\x5d\x2b\xcf\xcc\x7a\xa4\xe3\xf8\x4c\xe0\x1d\xb4\xc3\x68\x96\x63\x91\x8f\xf0\xd3\x2c\x5f\xe4\x67\x2a\xc1\xc7\xc5\xe6\xe7\xd5\xdd\x06\x1f\x67\xeb\xf5\x6c\xb9\x59\xcc\x73\xac\xd6\xb8\x59\x2d\x6f\x17\x9b\xc5\x6a\x99\x63\xf5\x16\xb3\xe5\x3d\xde\x2d\x96\xb7\x67\x20\x96\x8a\x02\xe8\xa1\x09\x1d\xbf\x0f\xe0\xce\x46\x2a\x3a\xcf\x72\xa2\x67\x00\x7b\x3f\x00\xc5\x86\x0c\xef\xd9\xc0\x6a\x57\xb6\xba\x24\x94\xfe\x0b\x05\xc7\xae\x44\x43\xa1\xe6\xd8\x2d\x33\x42\xbb\x42\x25\xb0\x5c\xb3\x68\xe9\x4f\xbe\x7b\xa8\x54\xa9\xb7\xeb\xd5\xaf\xd8\x53\xe1\x83\x56\xeb\xbb\x25\x8e\x6d\x0d\x76\x51\xb4\xb5\x18\x1f\xc1\xd1\x44\x1e\xb3\x63\x61\x2d\x3e\x8c\x5b\x61\x1b\x21\x3a\x94\x24\xc6\x32\x1c\xc9\x58\xbc\xb7\x11\x51\x82\x36\x84\x17\x2f\xfa\x16\xc6\x92\x76\xd0\xd6\xaa\xd9\xed\x2d\x42\xeb\xb6\x7d\xa7\x22\x8d\x15\xb2\x36\x86\xcc\x7a\xa3\x6d\xb6\x63\x97\xf5\x8a\xa7\x09\x4e\xd7\x94\xf6\x5a\x64\x24\x26\xeb\x7f\x0e\x9a\x9d\xf5\xe6\x53\x2a\x3a\xa4\xe5\xdf\xc8\x94\x4a\xb0\xe9\x92\xf8\x4b\xbe\x5a\x0e\x71\x3c\xe8\x88\x92\x1c\x05\x2d\x43\x08\xbe\x72\x3e\x86\x32\x52\x17\xd5\x5a\xbb\x22\x5e\xa9\x04\xd9\x4e\x9b\x4f\x51\x7c\xa0\x98\x75\x2d\xd8\xc3\x04\xd2\x42\xc3\x30\x64\xfd\x57\x27\x1c\x90\x86\xa2\x4a\x90\x60\xee\xfa\x70\x15\x54\x7b\xd4\xbe\x20\xbc\x74\x1e\xba\x95\x8a\x9c\xb0\xe9\x1d\xff\xdf\xab\xab\xa7\xab\x19\x7f\x76\xe9\x74\x32\x79\x3d\x9e\x9c\x77\x61\x4e\x2d\xbb\xf6\x61\xdc\xd7\xd2\xfd\xf4\x3c\x7d\x78\x73\x79\x79\x71\x15\x5d\x7a\xb1\x9b\x68\x4d\xff\x7f\x73\xb1\xff\xc1\x64\xd2\x94\xe7\x88\x24\xd0\x72\x8a\xde\x37\x33\xae\x27\x3d\xc2\xb6\x43\xd8\x76\xa9\xa6\x6d\x13\xbc\x90\x91\xeb\xc9\x93\x19\x5b\xd7\x55\xb5\xb1\xf1\xfa\x1c\xa6\x7b\x9f\xb6\xc5\xd1\xe9\x9a\xcd\xe9\xf0\xbf\xc0\xcc\x6c\xeb\xe2\xa3\x7d\xdf\x1b\xfb\x64\x65\xd4\x5f\xc8\x78\xb7\xe7\xb2\xdf\xea\xd7\xbf\xe9\x5f\xd1\xbb\x61\xeb\xc3\xe2\x32\xa5\xe6\xbf\x7f\x58\xe5\x73\xbc\x9e\x5e\x4e\x32\x31\x8d\x52\xf3\xe5\x66\x7d\xff\x61\xb5\x58\x6e\xf0\xc7\xe8\x9b\x24\x3d\x8b\xd9\xe8\x4f\xf5\x4f\x00\x00\x00\xff\xff\x6d\xbe\x27\x23\x28\x05\x00\x00") + +func testImagesVolumesTesterIscsiDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterIscsiDockerfile, + "test/images/volumes-tester/iscsi/Dockerfile", + ) +} + +func testImagesVolumesTesterIscsiDockerfile() (*asset, error) { + bytes, err := testImagesVolumesTesterIscsiDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/iscsi/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterIscsiMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\xc1\x6e\x1b\x37\x10\x3d\x9b\x5f\xf1\xea\x0d\x50\x1b\xb0\x56\x8e\x0f\x3d\xa8\xc8\x61\xe3\x38\xa9\x90\x40\x0a\x24\xa5\x69\x4e\x01\xb5\x1c\x71\xa7\xa1\xc8\x2d\x39\x2b\x59\xfd\xfa\x82\xbb\x92\x2b\xa3\xcd\x21\xba\x48\x98\xe1\xbc\x79\xf3\xde\x8c\x0a\xdc\x87\xf6\x10\xd9\x36\x82\xbb\xdb\x97\xbf\x60\xd5\x10\xde\x77\x6b\x8a\x9e\x84\x12\xaa\x4e\x9a\x10\x53\xa9\x0a\x55\xe0\x03\xd7\xe4\x13\x19\x74\xde\x50\x84\x34\x84\xaa\xd5\x75\x43\xa7\xcc\x0d\x7e\xa7\x98\x38\x78\xdc\x95\xb7\xb8\xca\x0f\x2e\x8f\xa9\xcb\xeb\x5f\x55\x81\x43\xe8\xb0\xd5\x07\xf8\x20\xe8\x12\x41\x1a\x4e\xd8\xb0\x23\xd0\x63\x4d\xad\x80\x3d\xea\xb0\x6d\x1d\x6b\x5f\x13\xf6\x2c\x4d\xdf\xe6\x08\x52\xaa\x02\x5f\x8e\x10\x61\x2d\x9a\x3d\x34\xea\xd0\x1e\x10\x36\xe7\xef\xa0\xa5\x27\x9c\x3f\x8d\x48\x3b\x19\x8f\xf7\xfb\x7d\xa9\x7b\xb2\x65\x88\x76\xec\x86\x87\x69\xfc\x61\x7a\xff\x30\x5b\x3e\x8c\xee\xca\xdb\xbe\xe4\x93\x77\x94\x12\x22\xfd\xd5\x71\x24\x83\xf5\x01\xba\x6d\x1d\xd7\x7a\xed\x08\x4e\xef\x11\x22\xb4\x8d\x44\x06\x12\x32\xdf\x7d\x64\x61\x6f\x6f\x90\xc2\x46\xf6\x3a\x92\x2a\x60\x38\x49\xe4\x75\x27\xcf\xc4\x3a\xb1\xe3\xf4\xec\x41\xf0\xd0\x1e\x97\xd5\x12\xd3\xe5\x25\x5e\x57\xcb\xe9\xf2\x46\x15\xf8\x3c\x5d\xfd\x36\xff\xb4\xc2\xe7\x6a\xb1\xa8\x66\xab\xe9\xc3\x12\xf3\x05\xee\xe7\xb3\x37\xd3\xd5\x74\x3e\x5b\x62\xfe\x16\xd5\xec\x0b\xde\x4f\x67\x6f\x6e\x40\x2c\x0d\x45\xd0\x63\x1b\x33\xff\x10\xc1\x59\x46\x32\x59\xb3\x25\xd1\x33\x02\x9b\x30\x10\x4a\x2d\xd5\xbc\xe1\x1a\x4e\x7b\xdb\x69\x4b\xb0\x61\x47\xd1\xb3\xb7\x68\x29\x6e\x39\x65\x33\x13\xb4\x37\xaa\x80\xe3\x2d\x8b\x96\x3e\xf2\x9f\xa1\x4a\xa5\x56\xd5\x3b\xbc\xc2\x6d\xf9\x52\x7d\x5c\x3c\xbc\x9d\xfe\x81\x57\xb0\x75\x2c\x39\x8c\x6d\x08\xd6\xd1\xd7\x3a\xf8\xec\x19\xc5\xa4\x94\x76\x6e\x82\xb6\x4b\x8d\x52\x4f\xe1\x09\x78\xab\x2d\x29\xd5\x7f\x4d\xd4\x45\x81\xd7\x1d\x3b\x03\x4f\xfb\x21\x95\x99\x40\x77\x12\xb6\x5a\xb8\xd6\xce\x1d\x20\xda\x82\x05\x3a\xc1\x69\xa1\x24\xea\xc2\x84\xfa\x1b\x45\xac\xfb\xd2\xd1\xa8\xed\x9c\xc3\x48\xf0\xe2\x6a\xa0\x75\x3d\xde\x05\xd7\x6d\x69\xc4\xa9\x4e\x8c\x32\xb7\xa9\x8c\xe9\x87\xd9\x1d\xd7\x37\x83\x4a\xe8\x43\x03\xea\x91\xd9\x09\x3b\xe7\xbf\x83\xf7\xff\xe1\xc9\x8b\xab\x55\xf5\xee\x5a\xa9\xb5\x0b\xf5\xb7\x7e\xb4\xfb\x48\x5a\x08\x7d\xa0\x14\x1d\x4b\xfb\xf7\xb0\xf0\xf4\x28\x77\x43\x18\x86\x76\x7c\xba\x03\xf6\x86\x1e\xcb\x46\xb6\x0e\xec\x13\x1b\xea\x99\x3f\x2b\xe7\x04\xed\x22\x69\x73\x80\xde\x69\x76\xfd\xce\xb2\x87\xcd\x02\x79\x93\x4f\x2e\x26\x98\xe0\x7f\x16\xf8\x61\x83\x33\x46\x24\x4b\x9e\x62\x66\xc3\x72\x33\x1c\xa5\xe8\x68\x49\x32\x62\x43\x91\xf0\x67\x97\xa4\x5f\x9b\x48\x1b\x8a\xe4\xeb\xa1\xfb\xa2\xf3\x59\xf9\x18\x82\xfc\xa4\x2e\xca\x71\xdd\xcf\xf4\x75\x20\x95\xbd\xcd\x0e\x9f\x6c\xbd\x28\xf0\xb1\x4b\xcd\xd1\x49\xd1\xd6\x92\xf9\xd7\xb7\xac\x77\xa4\x36\x24\x96\x10\x0f\xea\xc2\xd6\x2e\x74\x06\x47\xc1\x47\xa3\x7e\x59\xbe\xa3\xee\x13\xf4\x99\x7f\x19\xfc\xd8\xe9\x1c\x18\x57\x89\xf3\x5f\x4b\x3f\xe4\x90\x3f\x53\x2d\xf7\xc8\x75\x82\x3d\x3b\x87\x94\x6f\xe8\x80\x61\xaa\x7c\x53\x5d\x6b\xf2\xaf\xb3\x36\xd7\x3f\xc6\xf4\x69\x0f\x6a\x47\xda\x4f\xd4\x3f\x01\x00\x00\xff\xff\x0f\x8c\x60\x6b\x80\x05\x00\x00") + +func testImagesVolumesTesterIscsiMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterIscsiMakefile, + "test/images/volumes-tester/iscsi/Makefile", + ) +} + +func testImagesVolumesTesterIscsiMakefile() (*asset, error) { + bytes, err := testImagesVolumesTesterIscsiMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/iscsi/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterIscsiBlockTarGz = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x92\xef\xe6\x60\xf8\x50\x30\x3f\x94\x81\xf9\xed\x5d\xdf\x7c\x61\x77\x09\x86\x07\x5b\xe7\x3a\x89\x4e\x10\xe8\xf0\xca\xd5\x4c\x88\xb2\x6b\xd1\xda\xe9\x57\x38\xc9\xcc\xfc\x85\xaa\xe5\x97\x4b\x2b\xd2\x67\xf1\xb3\x3b\x99\xdf\xd3\xd8\x28\x28\xc4\x1e\x54\xc7\x68\x1e\xb2\x32\xa8\xfa\xc5\xc2\xe9\xf3\xaa\x56\x54\xbd\xee\x77\x68\x92\x3f\xc0\xb9\x92\x49\x85\x6f\x6f\xc8\xcb\x9e\xb7\x0b\x5a\xfc\x55\x0f\x6e\xbb\x60\xd7\xff\xa5\xea\xba\xf5\xe6\x79\xe5\xaa\xfb\x8b\x25\xab\xcb\xcd\xce\x3e\xdb\xe7\x5f\xb5\x5a\xaa\xe7\x6a\xd6\xdb\xdc\x0d\xa9\xd1\xaf\xdf\xf5\xd7\xd8\x45\x49\xcb\x4b\xaf\x9f\x27\xcd\x7d\xdc\x7d\xd5\xe2\xc7\x8b\x3d\x77\xde\x7a\xbc\xe7\x56\xd4\xea\xb3\x33\xa7\x16\x59\x46\x9e\xdc\xf4\x6c\xf5\xaf\xbd\xeb\x64\x1f\xe8\x6e\x16\x8b\x6f\x9b\xf4\x24\xe6\xc6\x1d\x6d\x55\xcf\x39\x8f\xb9\x66\x5b\x4f\xb1\x16\xfc\x6d\x1b\xf5\xef\xe7\x6d\x89\xd6\x94\xda\xda\x5f\x89\x0b\xef\xea\xef\xbb\xff\x62\x57\xe1\xbd\x7d\xef\x9e\xd7\x09\x2e\xba\x61\x5b\xf7\x75\xb7\x77\xfa\x7f\x8f\xe5\x72\xff\xef\xfd\xfa\xfe\xab\xf9\xd2\xc2\xf9\xf3\xce\x3e\xde\xfc\xec\x52\x51\xcf\xa9\x94\xad\x66\x3f\x9f\x7a\x98\x7d\x3e\x7b\x55\x36\xc6\xf7\xe5\xd4\xb5\xff\xff\x7e\xbd\xfd\x31\x2c\xf5\xd5\x37\x7d\xfb\x6b\xfb\xfe\x7d\xde\xab\xde\x9f\x14\xf7\x7b\x77\xee\xec\xf5\x8f\x7d\xb5\xf6\x3c\xf9\x51\xa0\xcf\xd6\x9c\x7b\x4b\x38\x29\xbf\xa3\x7c\x72\xc4\xff\xb3\x01\xeb\x9d\x99\xcf\x71\x30\x30\x30\x54\x5c\xbe\xd6\x2c\xdd\x2c\x5d\x97\x2b\x2b\x31\x87\x39\x9a\xbb\xe8\xc2\x4b\x86\xbf\x9b\x03\xbf\x4b\x67\x57\xef\x8d\x62\xaf\x9e\x59\x7f\x4e\xfd\xed\xd7\xe3\xcf\x8f\xeb\x6f\xbd\xce\xb7\x78\x47\xdb\xb7\x3a\xfb\xc9\x4a\xe6\xd7\xea\x38\xf4\xaf\x2e\x5c\xf8\x7c\x7f\x7d\xeb\xb7\x59\x37\xf2\xe6\xdc\xca\x2d\xfa\x72\xe7\x7e\xe1\xbf\x95\xfb\x32\xfe\x69\xe6\xcd\x2c\xb6\xe3\xf8\x98\xd8\xa1\xac\x68\xc7\x55\x68\x72\x64\xa3\xc0\xf1\xc9\xe7\xfc\x55\xfc\x5a\x7e\x58\x1c\x51\x57\xf4\xcb\x4b\xfe\x13\x7f\xf8\xfb\xfb\x84\x4f\x8b\x3e\x72\xfb\x87\x27\x3d\xfe\x53\x9e\xa6\x2e\x7e\xbd\xf4\xff\xa1\xb5\x8b\x97\x97\x17\xda\x31\xa0\x80\xbf\xc2\xff\x93\xf7\xdb\x6b\x8a\x68\xfb\x7f\xef\x3e\xea\xb5\xb4\x98\xff\xfd\xe1\x93\x05\x86\x67\xc3\x66\xcf\xd7\x4b\x59\x7b\xac\xe6\x79\xdc\xcd\x72\xaf\xc3\xad\x47\x8f\xd5\xfc\x8d\x7a\x5a\x54\xac\x29\x9b\xf1\xea\x80\xde\x51\xab\xfb\x31\xff\xfd\xbd\xe6\xfe\x62\x2f\x3a\xa4\xfb\x5f\x71\xff\x15\xfb\x27\xd3\x7f\xb5\xff\x09\xfa\x3f\x21\xfe\x95\xfc\x27\xef\xbf\xce\x75\x2b\xeb\x4f\xe8\x7f\xe5\xff\xb9\xf4\x1f\x4c\xf2\x8e\x96\xea\x5c\xcd\x07\x73\x1d\xd5\x99\xbe\x44\x7e\x74\xac\xd9\x97\xd2\xb3\xfb\xb4\xf9\x77\xdb\xdb\xbb\xca\xcf\xef\xb5\xb0\xdd\x32\x3f\x55\xea\x76\xf8\xeb\x97\x49\x8b\x4b\xd7\x9e\xb7\x64\xba\x7d\x31\xeb\x4c\x6a\x6f\xeb\x51\xb7\xda\x7f\x49\xd9\x4a\xb3\xf7\x06\xcd\xcf\x8e\x8b\x99\x99\x61\x7a\x69\xe6\xcd\x2a\x29\x3e\x33\xf5\xb0\xd5\x1b\xef\xa7\xd8\xfa\x6e\xfe\x74\xc8\x6b\x5b\x48\xdc\x9c\x7f\x59\x55\x59\x15\x17\x3a\x99\x19\x46\xc1\x28\x18\x05\xc3\x0b\x1c\x88\x7e\x53\x2f\x5c\x1f\x18\xc8\x20\x21\xc0\x00\x08\x00\x00\xff\xff\x93\x2f\xb5\x6a\x86\x06\x00\x00") + +func testImagesVolumesTesterIscsiBlockTarGzBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterIscsiBlockTarGz, + "test/images/volumes-tester/iscsi/block.tar.gz", + ) +} + +func testImagesVolumesTesterIscsiBlockTarGz() (*asset, error) { + bytes, err := testImagesVolumesTesterIscsiBlockTarGzBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/iscsi/block.tar.gz", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterIscsiCreate_blockSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x4f\x8f\xdb\x36\x1b\xc4\xef\xfc\x14\xf3\x5a\x7b\x48\xf0\xee\x4a\xbb\x06\x7a\x49\xe1\x14\xce\xae\x8b\x08\x89\x6d\xc0\x52\x9a\xe6\x16\x4a\x7a\x24\x11\x4b\x91\xea\x43\xca\x7f\xb6\xe9\x77\x2f\x28\xd9\x48\x8c\x1c\xaa\xa3\x38\xcf\xf0\x37\x43\x32\xfa\x5f\x52\x28\x93\x14\xd2\xb5\x42\x44\x78\xb4\xfd\x89\x55\xd3\x7a\xcc\xef\x1f\x7e\x41\xde\x12\x3e\x0c\x05\xb1\x21\x4f\x0e\xcb\xc1\xb7\x96\x5d\x2c\x22\x11\xe1\xa3\x2a\xc9\x38\xaa\x30\x98\x8a\x18\xbe\x25\x2c\x7b\x59\xb6\x74\x59\xb9\xc5\x1f\xc4\x4e\x59\x83\x79\x7c\x8f\x57\x41\x30\x3b\x2f\xcd\x5e\xff\x2a\x22\x9c\xec\x80\x4e\x9e\x60\xac\xc7\xe0\x08\xbe\x55\x0e\xb5\xd2\x04\x3a\x96\xd4\x7b\x28\x83\xd2\x76\xbd\x56\xd2\x94\x84\x83\xf2\xed\xb8\xcd\xd9\x24\x16\x11\xbe\x9c\x2d\x6c\xe1\xa5\x32\x90\x28\x6d\x7f\x82\xad\x7f\xd4\x41\xfa\x11\x38\x7c\xad\xf7\xfd\x9b\x24\x39\x1c\x0e\xb1\x1c\x61\x63\xcb\x4d\xa2\x27\xa1\x4b\x3e\xa6\x8f\xab\x4d\xb6\xba\x9b\xc7\xf7\xe3\xc8\x27\xa3\xc9\x39\x30\xfd\x35\x28\xa6\x0a\xc5\x09\xb2\xef\xb5\x2a\x65\xa1\x09\x5a\x1e\x60\x19\xb2\x61\xa2\x0a\xde\x06\xde\x03\x2b\xaf\x4c\x73\x0b\x67\x6b\x7f\x90\x4c\x22\x42\xa5\x9c\x67\x55\x0c\xfe\xaa\xac\x0b\x9d\x72\x57\x02\x6b\x20\x0d\x66\xcb\x0c\x69\x36\xc3\xbb\x65\x96\x66\xb7\x22\xc2\xe7\x34\x7f\xbf\xfd\x94\xe3\xf3\x72\xb7\x5b\x6e\xf2\x74\x95\x61\xbb\xc3\xe3\x76\xf3\x94\xe6\xe9\x76\x93\x61\xfb\x3b\x96\x9b\x2f\xf8\x90\x6e\x9e\x6e\x41\xca\xb7\xc4\xa0\x63\xcf\x81\xdf\x32\x54\xa8\x91\xaa\xd0\x59\x46\x74\x05\x50\xdb\x09\xc8\xf5\x54\xaa\x5a\x95\xd0\xd2\x34\x83\x6c\x08\x8d\xdd\x13\x1b\x65\x1a\xf4\xc4\x9d\x72\xe1\x30\x1d\xa4\xa9\x44\x04\xad\x3a\xe5\xa5\x1f\xff\xfc\x14\x2a\x0e\x77\x69\x75\x54\x3e\xc4\x09\xff\x6b\xc5\xce\x83\x98\x2d\xc7\xc2\x91\xc7\x1d\x09\xb1\xde\xe4\x4f\xe9\x6e\xf1\xb5\x7b\xf6\xd4\xf5\xb8\xab\xbe\x0a\x51\x6a\x92\x66\xe8\x5f\xbd\x16\x7f\x8b\x70\x60\x11\xd6\xf2\x99\xe0\x06\x26\x1c\x08\x4c\x7e\xe0\xc9\x72\xba\xa6\x14\x36\x29\x6d\x45\xa3\x7a\xb7\xca\x17\x37\xbf\x9d\x07\x33\xa5\xc9\x78\x7d\x02\x53\x67\xf7\x04\xda\x13\x9f\x7c\x1b\xe2\x48\x53\x41\x35\xc6\x32\x4d\x4c\x6e\x1c\x09\x5c\xff\x9f\x8c\xc6\x47\x31\x74\x76\x30\x1e\x37\x13\x27\xe6\x6f\x93\x8a\xf6\x89\x19\xb4\xfe\xae\xe1\xae\x52\xfc\x5f\x12\x14\xda\x96\xcf\x3f\xad\x8e\xec\x37\xbb\x55\x2e\xfe\x11\xc2\xb3\xec\x71\x4e\x8f\x7c\xb5\x5b\x63\xf5\x67\x9a\x8f\x6f\x92\x49\x7a\xc2\xc3\xfa\x1d\x2a\xda\xab\xcb\x4b\xa0\xa3\x9f\x8b\xaa\x82\xaa\x17\xa3\xed\x0b\xb1\x85\xad\x17\xd3\x5e\x65\x40\x5f\x3c\xa0\x70\x8b\x87\xb5\xe8\x9e\x6b\x17\x87\x81\x89\x24\xb8\x2e\xc3\xa8\xa9\xe8\x18\xb7\xbe\xd3\xe3\xed\xf5\x62\x0a\x7c\x67\xa1\xad\xed\xcf\xd4\xe7\x6c\x82\xca\xd6\x62\xf6\x9e\xb4\xb6\xa8\xd9\x76\x50\xd9\x63\x96\xce\xf0\xf6\xa2\x48\xbe\xdb\x89\xeb\xea\x84\xb8\x74\x10\x7b\xc9\x71\xf3\xf2\x63\x15\xf8\xf6\x0d\x6f\x84\x97\x8c\xb2\x7e\xb9\x56\x4d\xb0\xff\x06\x00\x00\xff\xff\x6b\x62\x0f\xa3\xa3\x04\x00\x00") + +func testImagesVolumesTesterIscsiCreate_blockShBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterIscsiCreate_blockSh, + "test/images/volumes-tester/iscsi/create_block.sh", + ) +} + +func testImagesVolumesTesterIscsiCreate_blockSh() (*asset, error) { + bytes, err := testImagesVolumesTesterIscsiCreate_blockShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/iscsi/create_block.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterIscsiInitiatornameIscsi = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xf2\xcc\xcb\x2c\xc9\x4c\x2c\xc9\x2f\xf2\x4b\xcc\x4d\xb5\xcd\x2c\xcc\xd3\x33\xb4\xb4\x34\xd1\x35\x30\xd5\x4b\xce\xcf\xd5\x2b\x4a\x4d\xc9\x48\x2c\xb1\x4a\x4d\x32\xb5\x4c\x4b\x4a\x35\x4a\x36\x49\x36\xe5\x02\x04\x00\x00\xff\xff\x87\x5e\x2f\x31\x32\x00\x00\x00") + +func testImagesVolumesTesterIscsiInitiatornameIscsiBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterIscsiInitiatornameIscsi, + "test/images/volumes-tester/iscsi/initiatorname.iscsi", + ) +} + +func testImagesVolumesTesterIscsiInitiatornameIscsi() (*asset, error) { + bytes, err := testImagesVolumesTesterIscsiInitiatornameIscsiBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/iscsi/initiatorname.iscsi", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterIscsiRun_iscsidSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x92\x41\x6f\xd3\x4e\x10\xc5\xef\xfb\x29\xde\x3f\xfe\x1f\x5a\x29\xd8\xa1\x52\x2f\x54\x1c\x42\x1b\x84\xd5\x92\x48\x71\x4a\xd5\xe3\x66\x3d\xb6\x47\x38\xbb\xcb\xee\xb8\x6e\x84\xf8\xee\xc8\x76\x8b\x08\xe0\x8b\xad\x79\x6f\x9e\x7f\x3b\xb3\xc9\x7f\xd9\x9e\x6d\xb6\xd7\xb1\x51\x2a\xc1\xb5\xf3\xc7\xc0\x75\x23\xb8\x58\xbc\xbd\xc4\xae\x21\xdc\x76\x7b\x0a\x96\x84\x22\x96\x9d\x34\x2e\xc4\x54\x25\x2a\xc1\x1d\x1b\xb2\x91\x4a\x74\xb6\xa4\x00\x69\x08\x4b\xaf\x4d\x43\xaf\xca\x1c\x5f\x28\x44\x76\x16\x17\xe9\x02\x67\x83\x61\xf6\x22\xcd\xce\xaf\x54\x82\xa3\xeb\x70\xd0\x47\x58\x27\xe8\x22\x41\x1a\x8e\xa8\xb8\x25\xd0\xb3\x21\x2f\x60\x0b\xe3\x0e\xbe\x65\x6d\x0d\xa1\x67\x69\xc6\xdf\xbc\x84\xa4\x2a\xc1\xe3\x4b\x84\xdb\x8b\x66\x0b\x0d\xe3\xfc\x11\xae\xfa\xdd\x07\x2d\x23\xf0\xf0\x34\x22\xfe\x5d\x96\xf5\x7d\x9f\xea\x11\x36\x75\xa1\xce\xda\xc9\x18\xb3\xbb\xfc\x7a\xb5\x2e\x56\x6f\x2e\xd2\xc5\xd8\x72\x6f\x5b\x8a\x11\x81\xbe\x75\x1c\xa8\xc4\xfe\x08\xed\x7d\xcb\x46\xef\x5b\x42\xab\x7b\xb8\x00\x5d\x07\xa2\x12\xe2\x06\xde\x3e\xb0\xb0\xad\xe7\x88\xae\x92\x5e\x07\x52\x09\x4a\x8e\x12\x78\xdf\xc9\xc9\xb0\x5e\xe9\x38\x9e\x18\x9c\x85\xb6\x98\x2d\x0b\xe4\xc5\x0c\x1f\x96\x45\x5e\xcc\x55\x82\x87\x7c\xf7\x69\x73\xbf\xc3\xc3\x72\xbb\x5d\xae\x77\xf9\xaa\xc0\x66\x8b\xeb\xcd\xfa\x26\xdf\xe5\x9b\x75\x81\xcd\x47\x2c\xd7\x8f\xb8\xcd\xd7\x37\x73\x10\x4b\x43\x01\xf4\xec\xc3\xc0\xef\x02\x78\x18\x23\x95\xc3\xcc\x0a\xa2\x13\x80\xca\x4d\x40\xd1\x93\xe1\x8a\x0d\x5a\x6d\xeb\x4e\xd7\x84\xda\x3d\x51\xb0\x6c\x6b\x78\x0a\x07\x8e\xc3\x32\x23\xb4\x2d\x55\x82\x96\x0f\x2c\x5a\xc6\xca\x5f\x87\x4a\x95\xaa\x3a\x6b\x06\x15\x51\x74\x90\xb3\x73\xf5\x5d\x0d\x0b\x10\x1d\x6a\x12\xd3\x32\x02\x45\x71\x81\x8c\xb3\x15\xd7\xa3\xc6\xd1\x44\x2e\xc7\x4f\x32\x8d\xc3\x6c\x2a\x4c\x09\x54\xce\xd4\x8f\x93\x58\xe7\x7f\xa5\x4e\xf6\x42\x9c\xf7\x03\xed\xd4\x37\x53\xa3\xf6\x95\xdb\x16\xff\x9f\xc1\x68\x41\xf6\xa4\x43\x16\x3a\x9b\x4d\x8e\xd4\x73\x89\xf3\x3f\xb8\x4c\x4b\x3a\x4c\x54\x18\x5f\xe1\xf0\x7e\x17\x3a\x52\xff\x02\x73\xde\x0f\x60\xa3\xf2\xcc\x82\xc5\xc0\xa8\x24\x68\x3f\x8a\xd8\xad\xb6\x9f\xd5\xc8\xaf\x54\xdf\x0c\x57\x5b\x42\x47\x57\x28\xdd\xd8\x13\x5b\x22\x8f\x4b\x55\x3a\x4b\xea\x67\x00\x00\x00\xff\xff\xd7\x54\x96\x51\x8b\x03\x00\x00") + +func testImagesVolumesTesterIscsiRun_iscsidShBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterIscsiRun_iscsidSh, + "test/images/volumes-tester/iscsi/run_iscsid.sh", + ) +} + +func testImagesVolumesTesterIscsiRun_iscsidSh() (*asset, error) { + bytes, err := testImagesVolumesTesterIscsiRun_iscsidShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/iscsi/run_iscsid.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterIscsiSaveconfigJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x96\xdf\x4f\xe3\x38\x10\xc7\xdf\xfb\x57\x58\x7e\xde\x76\x93\x34\x29\xa5\x6f\x1c\xdc\x6a\x91\x60\x59\x71\x9c\xee\x4e\x2b\x64\x4d\x9d\x49\xf0\x91\xd8\xc1\x1e\xf3\xe3\x56\xdc\xdf\x7e\x72\x52\x68\x49\x13\x0e\x55\xaa\x54\x7f\x3f\x33\x1e\x8f\x67\xc6\xfd\x39\x61\x8c\x17\xb0\xb6\x4a\x8a\xda\xe4\xbe\x42\xc7\x57\xec\xc7\xf5\xa7\xb0\xee\xc8\x58\x28\x51\x98\xf5\xdf\x28\xa9\x15\x26\x8c\x31\xf6\xb3\xfd\x66\x8c\x03\x91\x55\x6b\x4f\xad\xd1\xcb\x2a\x63\x7c\x5d\x19\x79\x2b\x9c\xfa\x07\xf9\x8a\x65\x71\xf2\x69\x2b\x61\xed\x2b\x20\x14\xf3\x46\xf2\x15\x8b\x07\x14\x09\x0f\x23\x4a\xde\x18\xbe\x62\xd1\x80\x52\x78\x10\x16\x21\x7f\x47\x7e\xb0\x8a\x70\xc4\x71\x6d\x72\xac\x04\x54\x0a\xdc\x08\x61\xd1\x91\xb0\x68\xec\xd8\x16\x34\x6a\x4a\x8d\x1f\xb3\x69\x1e\xdc\x88\xe4\x41\x28\x4d\x95\xbc\x15\x92\x6c\x35\x02\xb5\x47\x12\x12\xe4\xcd\xde\xc1\x74\x61\xac\x44\xd1\x58\xa1\x9c\xca\xfb\xa1\xbd\x8a\xd0\x50\xd3\xf7\xae\x9c\xd0\x46\x5b\x43\xbd\xf5\x1a\x1e\x85\xd7\x35\x34\xa2\xbb\xde\x1c\x9d\x14\xd2\x78\x4d\x3d\xef\x5b\xb0\x5a\xc3\x2b\xb1\x8c\x0f\x93\x1e\xd4\xc5\xef\xa0\x46\x51\xa1\xe6\x2b\x96\x46\x87\x8b\x1d\xc6\x34\xa4\x6a\xa8\x84\x43\x49\xc6\xb6\x87\x58\xcc\x97\xe9\x0e\xd1\x28\xd1\x58\x43\xa2\x30\xb6\x86\x7e\xc0\x2f\x22\x3d\x35\xd8\x93\xee\x3c\x7a\x14\x39\x36\x74\x13\xbc\x26\xcb\x1d\xad\x0b\xbd\xb4\xa0\x7d\x05\x56\xd1\x53\xef\x78\x7b\x7a\x28\x9c\x52\xd7\xd8\x1e\x33\xda\x80\xcf\x2f\x16\x3c\xc7\x7b\xbe\xda\xf4\x04\x7f\x5d\xd5\x50\xe3\xc0\x72\x53\xf9\x52\x85\x54\xf0\x42\x55\xa8\xcc\x56\xd9\x74\x53\x1c\xa5\xcb\xec\xe0\x35\x4b\xbc\xcb\xe1\x1a\xe4\x2d\x5f\x31\xb2\x1e\xb7\xca\x43\xeb\x27\x4b\x62\x99\x1d\x00\x4c\x0f\xf3\xc3\xf5\x34\xc5\x2c\x9f\xc2\x3a\x86\x69\x96\x1c\xa4\xcb\x83\xe2\x30\x81\xf9\x9c\xb7\x36\xcf\x13\xc6\xba\xc6\x27\xb0\x25\x0e\x35\x7c\x37\x29\x82\x5b\xe5\xa4\x53\xdb\xe8\xa8\x29\xb7\xf8\xae\x09\x7b\x67\x4e\x74\x9a\xa7\x1b\xd4\xa4\x24\x90\x32\xfa\xed\x3d\xb5\x40\x5b\xdf\x22\x7f\xd2\x50\x2b\x29\x40\x56\xbd\x6a\xde\x24\xb9\x00\x5f\x91\x90\x75\xee\xf4\xeb\xc5\x2e\xd2\x11\x0c\xfb\x3d\xb5\x51\x6b\xd3\xce\x02\x91\x2b\x27\xcd\x3d\xda\xa7\xc1\xad\x5e\xa8\x2e\xf7\xa1\xc6\x50\xd2\x80\xbf\x12\x35\xda\xd0\xa8\x3a\xd0\x23\x91\x57\xa6\x54\x5a\x90\xaa\xd1\xf8\xb6\x93\xb2\x1e\xa0\x91\x54\xb1\x03\x24\x3d\xbd\xb1\x26\xff\x58\x3c\x14\x47\xa2\x51\x3b\x45\xca\x76\x0b\x95\x75\x83\x03\xd6\x15\xf6\x4a\xa9\x8b\xd3\xeb\xb7\x37\xcc\x7a\xb7\xdc\x52\x4a\xe7\xf8\xb8\xbf\xf5\xde\x63\x12\x4a\xe8\x73\xa8\xda\xb0\x8c\xee\x73\x57\xed\x9f\xbb\x6e\x78\x63\xfa\xbc\xf3\xeb\xfa\x4d\x44\xbb\x59\xfd\xf1\x56\x6a\xc0\x42\x8d\x84\x76\xa0\xe0\x8e\x3c\xdd\x9c\x23\xdd\x98\x30\xca\xf9\xf1\xd7\xa3\xef\x9f\xbe\x19\x8d\xbc\x97\xac\x13\x20\x38\x51\x25\xba\x36\xd6\xe3\xcb\xe3\x79\x72\x3c\x0a\x7e\x3f\xf9\xfd\x54\x5f\xd8\x1c\x6d\x80\xff\x42\x37\x04\xfd\x86\x77\x1e\xb5\xc4\xff\x21\xbb\x12\xbd\x52\x35\x26\x97\x48\xd0\x4d\x83\x24\x7a\x8f\xfb\x03\x54\x1b\x65\xd2\x87\x7e\xb5\xd6\xd8\x4b\xec\x6a\xf9\x0c\xef\x31\x94\x3d\xdf\xf3\xf5\x45\x59\x47\xbf\x78\xeb\xe8\x0c\x75\xd9\xb6\x0e\x5f\x64\xd9\x7c\xd1\x07\xbf\x22\xe4\x68\x3f\x94\x96\xd3\x2f\xe7\x60\x6f\x4f\x75\x17\x58\x94\x2e\xff\x0d\x1e\xb3\x61\xac\xcb\xc6\x37\xb3\xa7\xd6\x35\xe6\x0a\x08\x43\xfe\x46\x12\x76\xaa\x15\x29\xa8\x2e\x93\xab\x11\xe0\x1c\x1e\x7b\x67\x4b\x16\x49\x9c\xa6\x03\xdc\xb1\xd1\x1a\x65\x18\x44\xa1\x70\x78\x3c\x80\x5c\x78\x72\x04\x3a\x57\xba\xdc\x6c\x39\x44\x5d\xa2\xbc\xef\xee\xbc\x0c\x0f\xc3\x76\xeb\xf0\x0c\x0e\xf0\x7f\xd6\x8a\x06\xf9\xe1\x50\x2f\x3e\x96\xdc\x8b\x77\x93\x7b\xd5\x4e\xf9\xa3\xcd\xbf\x1e\x7e\x76\x7a\xc1\xba\x25\x3e\x3a\x1e\x1a\x63\x09\xaa\x8f\xcc\x81\x46\x40\x9e\x5b\x74\xad\xeb\x68\xd6\x7e\xf8\xde\x50\x50\xae\x0d\xae\x80\xca\xe1\x9e\x18\x36\xe3\x2b\x36\x4f\x16\xd1\x07\x27\x02\x41\x19\x26\xe8\xa4\x4f\x5e\xf7\x1f\x45\x75\xa7\x67\x49\x14\xcd\xa7\x51\x3c\x33\xb6\x9c\x55\x4a\xfb\xc7\x69\xfb\xa6\xcd\x8a\x24\x9e\x3d\x2e\x17\x8b\x74\xe5\xf4\x2c\x5d\x47\x00\x98\x2d\xd3\xe2\x40\xee\xbc\x92\x93\xe7\xc9\x7f\x01\x00\x00\xff\xff\x83\xab\x80\x8e\x3a\x0b\x00\x00") + +func testImagesVolumesTesterIscsiSaveconfigJsonBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterIscsiSaveconfigJson, + "test/images/volumes-tester/iscsi/saveconfig.json", + ) +} + +func testImagesVolumesTesterIscsiSaveconfigJson() (*asset, error) { + bytes, err := testImagesVolumesTesterIscsiSaveconfigJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/iscsi/saveconfig.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterNfsDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x5f\x6f\xe2\x38\x14\xc5\xdf\xfd\x29\x8e\x12\xa9\xda\x95\x20\x61\x11\xaa\xf6\xcf\x53\x16\xa8\x36\x6a\x9b\x54\x04\xda\xad\x46\xd5\xc8\x24\x97\xc4\xaa\x63\x7b\x6c\x67\x80\x6f\x3f\x4a\xa0\x65\x3a\xcd\x9b\xef\x3d\xf7\xdc\xdf\x3d\x09\x31\xd7\xe6\x68\x45\xdd\x78\x4c\x27\x7f\x5c\x63\xdd\x10\x6e\xbb\x2d\x59\x45\x9e\x1c\x92\xce\x37\xda\xba\x88\x85\x2c\xc4\x9d\x28\x49\x39\xaa\xd0\xa9\x8a\x2c\x7c\x43\x48\x0c\x2f\x1b\x7a\xeb\x8c\xf0\x48\xd6\x09\xad\x30\x8d\x26\xf8\xad\x17\x04\xe7\x56\xf0\xfb\x3f\x2c\xc4\x51\x77\x68\xf9\x11\x4a\x7b\x74\x8e\xe0\x1b\xe1\xb0\x13\x92\x40\x87\x92\x8c\x87\x50\x28\x75\x6b\xa4\xe0\xaa\x24\xec\x85\x6f\x86\x35\x67\x93\x88\x85\x78\x3e\x5b\xe8\xad\xe7\x42\x81\xa3\xd4\xe6\x08\xbd\xfb\x59\x07\xee\x07\xe0\xfe\x6b\xbc\x37\x7f\xc7\xf1\x7e\xbf\x8f\xf8\x00\x1b\x69\x5b\xc7\xf2\x24\x74\xf1\x5d\x3a\x5f\x66\xc5\x72\x3c\x8d\x26\xc3\xc8\x46\x49\x72\x0e\x96\xbe\x75\xc2\x52\x85\xed\x11\xdc\x18\x29\x4a\xbe\x95\x04\xc9\xf7\xd0\x16\xbc\xb6\x44\x15\xbc\xee\x79\xf7\x56\x78\xa1\xea\x11\x9c\xde\xf9\x3d\xb7\xc4\x42\x54\xc2\x79\x2b\xb6\x9d\xff\x10\xd6\x1b\x9d\x70\x1f\x04\x5a\x81\x2b\x04\x49\x81\xb4\x08\xf0\x6f\x52\xa4\xc5\x88\x85\x78\x4a\xd7\xff\xe5\x9b\x35\x9e\x92\xd5\x2a\xc9\xd6\xe9\xb2\x40\xbe\xc2\x3c\xcf\x16\xe9\x3a\xcd\xb3\x02\xf9\x0d\x92\xec\x19\xb7\x69\xb6\x18\x81\x84\x6f\xc8\x82\x0e\xc6\xf6\xfc\xda\x42\xf4\x31\x52\xd5\x67\x56\x10\x7d\x00\xd8\xe9\x13\x90\x33\x54\x8a\x9d\x28\x21\xb9\xaa\x3b\x5e\x13\x6a\xfd\x9d\xac\x12\xaa\x86\x21\xdb\x0a\xd7\xff\x4c\x07\xae\x2a\x16\x42\x8a\x56\x78\xee\x87\xca\xa7\xa3\x22\xc6\x6e\x56\xf9\x3d\x4a\x52\x5e\x3b\xb6\xda\x64\x38\x76\x2d\xc6\x47\x08\xe5\x3c\x97\x12\x71\xe7\x6c\xbc\x15\x2a\x36\x0e\x6a\xe7\xc6\x9d\x17\xd2\xe1\xea\x6a\xd0\x95\x92\xb8\x02\x97\x72\x98\x6c\x5f\x2b\x61\x31\x36\x88\xe9\x60\xb4\xf5\x8e\x25\x8b\x05\x6c\xa7\xbe\xaa\x9d\x8b\x5c\x73\xf2\x92\xba\xe4\x72\x70\x1c\xda\x42\x55\x74\x88\x1a\xdf\x4a\xc4\xbe\x35\xf1\xe5\x3d\x78\x96\x4d\xab\x2b\x5c\xcf\x66\x9f\xba\x2c\x44\xcb\xed\xeb\xfb\x32\x70\x07\x8e\x56\x77\xca\xc3\x68\xa1\x3c\x7b\xcc\xef\x36\xf7\xcb\x0b\x4d\xd8\xe7\xac\x1d\x9d\x44\x15\xa6\x93\xc9\xec\xcf\xd8\x97\xa6\x4f\xaa\x3f\xae\x2f\xcd\xfe\xea\x2b\x6c\xf9\xff\x43\x5e\x2c\xdf\xdf\x17\x2d\x63\xcb\x6c\xbd\x7a\x7e\xc8\xd3\x6c\x8d\x2f\xc1\x2f\x27\x5d\x8e\x0d\x5e\xd8\xfc\x7e\xd1\x2b\xce\xeb\x83\x11\x82\x38\x78\x61\x3f\x02\x00\x00\xff\xff\xcf\xad\xa2\xb7\xbc\x03\x00\x00") + +func testImagesVolumesTesterNfsDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterNfsDockerfile, + "test/images/volumes-tester/nfs/Dockerfile", + ) +} + +func testImagesVolumesTesterNfsDockerfile() (*asset, error) { + bytes, err := testImagesVolumesTesterNfsDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/nfs/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterNfsMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x93\x41\x6f\xdb\x38\x10\x85\xcf\xe5\xaf\x78\x88\x7a\x48\x80\x58\xce\xe6\xb0\x58\x78\xd1\x83\x9a\xa6\x5d\xa1\x85\x5d\x44\xee\x76\x7b\x5a\xd0\xd4\x98\x1a\x2c\x4d\x6a\xc9\x51\x54\xfd\xfb\x05\x65\xa7\x49\xb0\xb9\xd4\x17\x0b\x33\xc3\xf7\xbd\x19\x0e\x0b\xdc\x84\x7e\x8a\x6c\x3b\xc1\xf5\xd5\x2f\xbf\x62\xdb\x11\x3e\x0e\x3b\x8a\x9e\x84\x12\xaa\x41\xba\x10\x53\xa9\x0a\x55\xe0\x13\x1b\xf2\x89\x5a\x0c\xbe\xa5\x08\xe9\x08\x55\xaf\x4d\x47\x0f\x99\x4b\xfc\x49\x31\x71\xf0\xb8\x2e\xaf\x70\x9e\x0b\xce\x4e\xa9\xb3\x8b\xdf\x55\x81\x29\x0c\x38\xe8\x09\x3e\x08\x86\x44\x90\x8e\x13\xf6\xec\x08\xf4\xdd\x50\x2f\x60\x0f\x13\x0e\xbd\x63\xed\x0d\x61\x64\xe9\x66\xcc\x49\xa4\x54\x05\xbe\x9d\x24\xc2\x4e\x34\x7b\x68\x98\xd0\x4f\x08\xfb\xa7\x75\xd0\x32\x1b\xce\xbf\x4e\xa4\x5f\x2d\x97\xe3\x38\x96\x7a\x36\x5b\x86\x68\x97\xee\x58\x98\x96\x9f\xea\x9b\xdb\x75\x73\xbb\xb8\x2e\xaf\xe6\x23\x5f\xbc\xa3\x94\x10\xe9\xdf\x81\x23\xb5\xd8\x4d\xd0\x7d\xef\xd8\xe8\x9d\x23\x38\x3d\x22\x44\x68\x1b\x89\x5a\x48\xc8\x7e\xc7\xc8\xc2\xde\x5e\x22\x85\xbd\x8c\x3a\x92\x2a\xd0\x72\x92\xc8\xbb\x41\x9e\x0d\xeb\xc1\x1d\xa7\x67\x05\xc1\x43\x7b\x9c\x55\x0d\xea\xe6\x0c\x6f\xab\xa6\x6e\x2e\x55\x81\xaf\xf5\xf6\x8f\xcd\x97\x2d\xbe\x56\x77\x77\xd5\x7a\x5b\xdf\x36\xd8\xdc\xe1\x66\xb3\x7e\x57\x6f\xeb\xcd\xba\xc1\xe6\x3d\xaa\xf5\x37\x7c\xac\xd7\xef\x2e\x41\x2c\x1d\x45\xd0\xf7\x3e\x66\xff\x21\x82\xf3\x18\xa9\xcd\x33\x6b\x88\x9e\x19\xd8\x87\xa3\xa1\xd4\x93\xe1\x3d\x1b\x38\xed\xed\xa0\x2d\xc1\x86\x7b\x8a\x9e\xbd\x45\x4f\xf1\xc0\x29\x5f\x66\x82\xf6\xad\x2a\xe0\xf8\xc0\xa2\x65\x8e\xfc\xaf\xa9\x52\xa9\x6d\xf5\x01\x6f\x70\x55\xfe\xa6\x3e\xdf\xdd\xbe\xaf\xff\xc2\x1b\x58\x13\x4b\x0e\x4b\x1b\x82\x75\xf4\xb7\x09\x3e\xdf\x19\xc5\xa4\x94\x76\x6e\x85\x7e\x48\x9d\x52\x3f\xc2\x2b\xf0\x41\x5b\x52\x6a\xfe\x5b\xa9\x57\x6d\x30\xff\x50\xc4\x6e\x60\xd7\x62\xb1\xe8\x07\xe7\xb0\x10\xbc\x3e\x3f\x02\x2e\x96\xf7\xc1\x0d\x07\x5a\xf8\x7d\x42\x89\x02\x6f\xe7\x42\x4f\xe3\x51\x28\xfb\x86\x1e\x24\x1c\xb4\xb0\xd1\xce\x4d\x10\x6d\xc1\x02\x9d\xe0\xb4\x50\x92\x1f\x8c\x9c\x78\x51\xf7\xa5\xe0\xea\xf5\xf9\xb6\xfa\x70\x81\x02\x55\xdb\xce\x53\xb8\x3f\xed\x7d\x96\x91\x30\x87\x8e\x80\x87\x96\x72\xab\x0f\xfd\xbd\xb2\xc6\x85\xa1\xc5\x09\xbd\x58\xcc\x83\x78\x19\x5f\xe0\x73\xce\x1d\xfb\x11\x6d\x2d\xb5\x8f\xee\x33\x2a\x52\x1f\x12\x4b\x88\xd3\xcf\xe8\x3e\x76\x30\xcb\x3f\xb1\x9f\x01\x27\xda\x53\x71\x9c\x27\xce\x4f\x72\x7e\xb1\xc7\x3c\x27\x68\x17\x49\xb7\xd3\xcc\xc9\xe7\x04\x23\x3b\x87\x94\x77\x6f\x82\x89\xa4\x85\xf2\x2e\x0e\x7d\x9b\xbf\x9e\x60\x2e\x94\x32\x8e\xb4\x5f\xa9\xff\x02\x00\x00\xff\xff\x94\x98\xf1\x51\x83\x04\x00\x00") + +func testImagesVolumesTesterNfsMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterNfsMakefile, + "test/images/volumes-tester/nfs/Makefile", + ) +} + +func testImagesVolumesTesterNfsMakefile() (*asset, error) { + bytes, err := testImagesVolumesTesterNfsMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/nfs/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterNfsIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xf2\x48\xcd\xc9\xc9\x57\x48\x2b\xca\xcf\x55\xf0\x73\x0b\x56\xe4\x02\x04\x00\x00\xff\xff\x3a\x50\xf2\x93\x10\x00\x00\x00") + +func testImagesVolumesTesterNfsIndexHtmlBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterNfsIndexHtml, + "test/images/volumes-tester/nfs/index.html", + ) +} + +func testImagesVolumesTesterNfsIndexHtml() (*asset, error) { + bytes, err := testImagesVolumesTesterNfsIndexHtmlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/nfs/index.html", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterNfsRun_nfsSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x55\x5d\x6f\xdb\x38\x10\x7c\xd7\xaf\x98\x93\xf5\x10\x1f\x6c\x4b\x49\xdb\x2b\x90\xa0\xbd\xf3\xb5\x49\xce\x68\xcf\x2e\x22\xb7\x45\x71\x28\x0a\x9a\x5c\x49\x44\x65\x92\x25\xa9\x38\x46\xd1\xff\x7e\x20\xfd\x11\x3b\x69\xf9\x62\x89\xb3\x5c\xce\xce\xac\xd6\xbd\xdf\xf2\x85\x54\xf9\x82\xb9\x26\x49\x7a\x78\xa5\xcd\xda\xca\xba\xf1\x38\x2b\x4e\x9f\x61\xde\x10\xde\x74\x0b\xb2\x8a\x3c\x39\x8c\x3b\xdf\x68\xeb\x46\x49\x2f\xe9\xe1\xad\xe4\xa4\x1c\x09\x74\x4a\x90\x85\x6f\x08\x63\xc3\x78\x43\x3b\x64\x80\x0f\x64\x9d\xd4\x0a\x67\xa3\x02\x27\x21\x20\xdd\x42\x69\xff\x22\xe9\x61\xad\x3b\x2c\xd9\x1a\x4a\x7b\x74\x8e\xe0\x1b\xe9\x50\xc9\x96\x40\x77\x9c\x8c\x87\x54\xe0\x7a\x69\x5a\xc9\x14\x27\xac\xa4\x6f\xe2\x35\xdb\x24\xa3\xa4\x87\x4f\xdb\x14\x7a\xe1\x99\x54\x60\xe0\xda\xac\xa1\xab\xc3\x38\x30\x1f\x09\x87\xd5\x78\x6f\xce\xf3\x7c\xb5\x5a\x8d\x58\x24\x3b\xd2\xb6\xce\xdb\x4d\xa0\xcb\xdf\x4e\x5e\x5d\x4e\xcb\xcb\xe1\xd9\xa8\x88\x47\xde\xab\x96\x9c\x83\xa5\x6f\x9d\xb4\x24\xb0\x58\x83\x19\xd3\x4a\xce\x16\x2d\xa1\x65\x2b\x68\x0b\x56\x5b\x22\x01\xaf\x03\xdf\x95\x95\x5e\xaa\x7a\x00\xa7\x2b\xbf\x62\x96\x92\x1e\x84\x74\xde\xca\x45\xe7\x8f\xc4\xda\xb1\x93\xee\x28\x40\x2b\x30\x85\x74\x5c\x62\x52\xa6\xf8\x7b\x5c\x4e\xca\x41\xd2\xc3\xc7\xc9\xfc\x9f\xd9\xfb\x39\x3e\x8e\x6f\x6e\xc6\xd3\xf9\xe4\xb2\xc4\xec\x06\xaf\x66\xd3\xd7\x93\xf9\x64\x36\x2d\x31\xbb\xc2\x78\xfa\x09\x6f\x26\xd3\xd7\x03\x90\xf4\x0d\x59\xd0\x9d\xb1\x81\xbf\xb6\x90\x41\x46\x12\x41\xb3\x92\xe8\x88\x40\xa5\x37\x84\x9c\x21\x2e\x2b\xc9\xd1\x32\x55\x77\xac\x26\xd4\xfa\x96\xac\x92\xaa\x86\x21\xbb\x94\x2e\x98\xe9\xc0\x94\x48\x7a\x68\xe5\x52\x7a\xe6\xe3\xce\xa3\xa2\x46\x49\x52\x75\x8a\x07\x14\xce\x33\xeb\x4f\xfa\xc9\xf7\x24\x09\x0e\x74\xca\x91\x47\x2d\x45\x7c\xeb\x81\xf1\x68\x75\x3a\xbc\x0e\x9b\x29\xb4\x09\xa7\x22\xb8\x6a\x42\x2f\xd4\xe4\xb5\xf1\x0e\xe9\xf5\x79\x44\x2f\x20\x74\x84\xc3\xe2\xcc\x11\xb2\xef\xda\xf8\x1f\x90\x6a\xbf\x1d\xd6\x75\x3f\x24\x7c\x91\x7d\x9f\xbd\x9b\x8f\x6f\xae\x7f\x5c\x5c\xec\x61\x72\x8c\xc7\x17\xa1\x15\xc5\x07\xd7\xc8\xca\x23\x3b\x39\xc9\x66\xef\xe6\x93\xe9\x6b\x0c\x71\xda\xef\x27\x5b\x8e\xc6\x92\x61\x96\x90\x93\xe7\x39\xdd\x19\x6d\xbd\x8b\x50\x90\x4e\x06\xdb\xd3\xec\xaf\xf4\x88\x58\x0f\x95\x93\xe2\x45\x71\x0e\x45\x24\x48\xc4\xd0\xe9\x55\x79\xfb\xf4\x9e\x05\x6f\x34\xd2\x4c\xe2\xf7\x13\xbb\x1a\x6c\xc2\x07\x52\x39\xe2\x9d\xa5\x81\xd2\x5f\xac\xd6\xfe\x8b\xfb\xd6\x31\xd7\xf4\x53\xbc\x7c\xf9\xf8\xfe\xb0\x64\x85\xff\x30\xbc\x0d\xc5\xe2\x33\x2e\x82\x0d\xc7\x42\xf0\x66\xa9\x05\x8a\xe7\x05\x32\xf9\x00\xa8\xad\x41\x16\x0e\x1e\x20\x95\x3c\x28\x62\xa9\x6f\x09\x52\x09\xba\x1b\x35\x7e\xd9\x86\x26\x6f\xc8\xd2\x3e\x22\x0e\x0f\x6e\x90\xfb\xa5\xc9\x0f\xe2\x32\x99\x27\xc7\xf7\xff\xf1\xf4\x69\xd8\xbd\x8f\x79\xa0\x43\x49\xf6\x36\x74\x5a\x26\xd3\x43\x6b\xb6\x0e\xc4\x26\x82\x35\x7c\x21\x95\x08\x25\x4b\x1f\x3e\x9c\x30\x39\x22\x44\x02\x6b\xf2\x31\x38\xef\x9c\xcd\x5d\xe0\x65\x0d\x97\xaa\xd2\x38\x3d\x7b\x3e\x2a\x46\xc5\xe8\x14\x2f\x91\x0b\xba\xcd\x55\xd7\xb6\x17\x70\x2f\xb2\x3f\x93\xbd\x82\x99\xc3\x50\x11\x0a\x7c\x3e\x96\x70\xcb\x2e\x5c\x12\xe8\x6d\x29\xa4\x3b\xf8\xe8\xb6\x48\x6e\xb8\x4a\xb6\x32\xc6\xdf\xa5\xee\x94\xc7\xd0\x43\x55\x4e\x40\x55\xc2\x21\x37\x56\xf3\xbc\x72\x79\xd8\xda\xf5\xd8\xf0\x03\x9e\x9c\x83\x54\x9c\x2c\xa1\x51\x9e\x3c\xae\x66\x14\x93\x09\x0c\xa7\x38\x8b\x07\x92\x07\x31\x9b\xde\xa8\x1c\x86\x76\x97\xf6\x1a\xa7\x45\xb0\xcd\x92\xe8\x38\xa1\xb6\x8c\x13\xbc\x5c\x52\xd8\x3c\x2d\xe0\x88\x6b\x25\xdc\x66\x3e\xb7\x7a\x45\xce\x83\xb5\xe1\x41\xf4\x7f\xc2\x20\x56\xb1\x49\x7a\xcf\xe2\x71\x98\xf3\x2c\xf0\x1c\x2a\x3d\x54\xda\xcb\x6a\x9d\xdc\x6b\x39\xbd\x2a\x77\xa6\xa5\xc9\x8f\xa3\x49\xa1\x4d\x1c\x14\x87\xba\x6b\x63\x82\xee\xd3\xab\x32\x7d\x58\xed\x9e\x4f\xf1\x4b\x19\x58\xf7\x4b\xa8\xda\xa4\xfb\x2a\xdb\x16\xd9\x09\x8c\x14\xba\xc2\x81\xc8\x9b\xea\xbb\x8d\x7f\xc7\x96\xed\xf9\xfd\xe4\x93\xa4\x3b\xe9\x51\x84\xba\x12\x6f\x99\x89\x45\x61\x7e\x79\xf3\x6f\x92\x6c\x9a\x38\x8c\x8a\xf0\x57\xfb\xbe\x6e\xd7\x68\x18\xff\x1a\x8c\x10\x3a\xf4\x72\x13\x2a\x65\x4a\x60\xc5\xa4\x8f\x13\xa3\x9c\x5c\xc7\xb3\x9b\x51\xe8\x6d\x47\xfb\x29\xe3\x5a\x22\x83\x67\x49\xfc\x50\xfe\x0f\x00\x00\xff\xff\x0f\x24\xd2\x95\xc7\x07\x00\x00") + +func testImagesVolumesTesterNfsRun_nfsShBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterNfsRun_nfsSh, + "test/images/volumes-tester/nfs/run_nfs.sh", + ) +} + +func testImagesVolumesTesterNfsRun_nfsSh() (*asset, error) { + bytes, err := testImagesVolumesTesterNfsRun_nfsShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/nfs/run_nfs.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterRbdDockerfile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x92\x4f\x6f\xa3\x3a\x14\xc5\xf7\xfe\x14\x47\x41\xaa\xde\x93\x52\xe8\xeb\xa2\xef\xdf\x66\x68\x92\x4e\x51\xdb\xa4\x0a\xe9\x74\xba\x34\xe6\x02\x56\x1d\x9b\xb1\x4d\x29\xfd\xf4\x23\x13\x22\x35\x33\x2c\xb0\xee\xbd\x87\xe3\x9f\x0f\x8e\xb0\x30\xed\x60\x65\xdd\x78\x5c\x5e\xfc\x75\x85\x5d\x43\xb8\xeb\x0a\xb2\x9a\x3c\x39\xa4\x9d\x6f\x8c\x75\x31\x8b\x58\x84\x7b\x29\x48\x3b\x2a\xd1\xe9\x92\x2c\x7c\x43\x48\x5b\x2e\x1a\x3a\x4e\xe6\xf8\x46\xd6\x49\xa3\x71\x19\x5f\xe0\x8f\x20\x98\x4d\xa3\xd9\x9f\xff\xb3\x08\x83\xe9\xb0\xe7\x03\xb4\xf1\xe8\x1c\xc1\x37\xd2\xa1\x92\x8a\x40\xef\x82\x5a\x0f\xa9\x21\xcc\xbe\x55\x92\x6b\x41\xe8\xa5\x6f\xc6\x6d\x26\x93\x98\x45\x78\x99\x2c\x4c\xe1\xb9\xd4\xe0\x10\xa6\x1d\x60\xaa\xcf\x3a\x70\x3f\x02\x87\xa7\xf1\xbe\xfd\x2f\x49\xfa\xbe\x8f\xf9\x08\x1b\x1b\x5b\x27\xea\x20\x74\xc9\x7d\xb6\x58\xad\xf3\xd5\xf9\x65\x7c\x31\x7e\xf2\xa4\x15\x39\x07\x4b\x3f\x3a\x69\xa9\x44\x31\x80\xb7\xad\x92\x82\x17\x8a\xa0\x78\x0f\x63\xc1\x6b\x4b\x54\xc2\x9b\xc0\xdb\x5b\xe9\xa5\xae\xe7\x70\xa6\xf2\x3d\xb7\xc4\x22\x94\xd2\x79\x2b\x8b\xce\x9f\x84\x75\xa4\x93\xee\x44\x60\x34\xb8\xc6\x2c\xcd\x91\xe5\x33\x5c\xa7\x79\x96\xcf\x59\x84\xe7\x6c\x77\xbb\x79\xda\xe1\x39\xdd\x6e\xd3\xf5\x2e\x5b\xe5\xd8\x6c\xb1\xd8\xac\x97\xd9\x2e\xdb\xac\x73\x6c\x6e\x90\xae\x5f\x70\x97\xad\x97\x73\x90\xf4\x0d\x59\xd0\x7b\x6b\x03\xbf\xb1\x90\x21\x46\x2a\x43\x66\x39\xd1\x09\x40\x65\x0e\x40\xae\x25\x21\x2b\x29\xa0\xb8\xae\x3b\x5e\x13\x6a\xf3\x46\x56\x4b\x5d\xa3\x25\xbb\x97\x2e\xfc\x4c\x07\xae\x4b\x16\x41\xc9\xbd\xf4\xdc\x8f\x9d\xdf\x0e\x15\x33\x16\x61\xb1\x7a\xbc\x05\x57\x2a\xc4\x62\x74\x08\xe2\x9a\xbb\xc3\x09\xe5\x3e\xd8\x17\x03\xb6\x52\x70\x5b\x1a\x6c\x8d\x68\xf8\x1c\xf6\x50\x7e\x11\xdc\x73\x35\x38\x1f\x6b\xf2\xb1\xfe\x60\xec\x66\xbb\x79\x40\x45\xa5\xb1\x9c\x4d\x46\x78\xe4\xe2\x95\xd7\xe4\xd8\xf6\x69\x8d\xa1\xdb\x43\x6a\xe7\xc3\x7e\xe7\x03\xfa\x9a\x3c\x04\xb5\xcd\xf8\x3a\xaf\xc2\xf5\x72\xde\x72\x41\x38\x3b\x1b\xc5\x42\x11\xd7\x01\x2f\xf8\x7d\x25\x8f\xd6\x58\xef\x42\x64\xc6\x51\xc9\x56\xdf\x1f\x37\xf9\x0a\x57\x7f\xff\xf3\x2f\x63\xe9\x72\x89\x38\x29\x8c\xf1\xc1\xa3\x8d\x5d\x83\x93\x6a\x12\xec\x8d\x1e\x47\x87\x75\x6a\x1a\x57\x8e\xcd\xc3\x3a\x35\x03\x54\x2c\x8c\xae\xc6\xd1\xe7\x6a\x12\xbc\xd2\x60\x43\xee\xc9\x1b\xb7\x89\x92\xc5\xa8\x09\xc6\xc7\xc9\x91\x49\x19\xf1\x1a\x7b\x6e\xe3\xfa\x03\x09\x63\x8b\x87\xe5\x2f\x68\x3f\x03\x00\x00\xff\xff\x85\x84\x46\xdf\xd4\x03\x00\x00") + +func testImagesVolumesTesterRbdDockerfileBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterRbdDockerfile, + "test/images/volumes-tester/rbd/Dockerfile", + ) +} + +func testImagesVolumesTesterRbdDockerfile() (*asset, error) { + bytes, err := testImagesVolumesTesterRbdDockerfileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/rbd/Dockerfile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterRbdMakefile = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\xc1\x6e\x1b\x37\x10\x3d\x9b\x5f\xf1\xea\x0d\x50\x1b\xb0\x56\x8e\x0f\x3d\xa8\xc8\x61\xe3\x38\xa9\x90\x40\x0a\x24\xa5\x69\x4e\x01\xb5\x1c\x71\xa7\xa1\xc8\x2d\x39\x2b\x59\xfd\xfa\x82\xbb\x92\x2b\xa3\xbe\x54\x17\x09\x33\x9c\x37\x6f\xde\x9b\x51\x81\xfb\xd0\x1e\x22\xdb\x46\x70\x77\xfb\xfa\x17\xac\x1a\xc2\xc7\x6e\x4d\xd1\x93\x50\x42\xd5\x49\x13\x62\x2a\x55\xa1\x0a\x7c\xe2\x9a\x7c\x22\x83\xce\x1b\x8a\x90\x86\x50\xb5\xba\x6e\xe8\x94\xb9\xc1\xef\x14\x13\x07\x8f\xbb\xf2\x16\x57\xf9\xc1\xe5\x31\x75\x79\xfd\xab\x2a\x70\x08\x1d\xb6\xfa\x00\x1f\x04\x5d\x22\x48\xc3\x09\x1b\x76\x04\x7a\xac\xa9\x15\xb0\x47\x1d\xb6\xad\x63\xed\x6b\xc2\x9e\xa5\xe9\xdb\x1c\x41\x4a\x55\xe0\xdb\x11\x22\xac\x45\xb3\x87\x46\x1d\xda\x03\xc2\xe6\xfc\x1d\xb4\xf4\x84\xf3\xa7\x11\x69\x27\xe3\xf1\x7e\xbf\x2f\x75\x4f\xb6\x0c\xd1\x8e\xdd\xf0\x30\x8d\x3f\x4d\xef\x1f\x66\xcb\x87\xd1\x5d\x79\xdb\x97\x7c\xf1\x8e\x52\x42\xa4\xbf\x3a\x8e\x64\xb0\x3e\x40\xb7\xad\xe3\x5a\xaf\x1d\xc1\xe9\x3d\x42\x84\xb6\x91\xc8\x40\x42\xe6\xbb\x8f\x2c\xec\xed\x0d\x52\xd8\xc8\x5e\x47\x52\x05\x0c\x27\x89\xbc\xee\xe4\x99\x58\x27\x76\x9c\x9e\x3d\x08\x1e\xda\xe3\xb2\x5a\x62\xba\xbc\xc4\xdb\x6a\x39\x5d\xde\xa8\x02\x5f\xa7\xab\xdf\xe6\x5f\x56\xf8\x5a\x2d\x16\xd5\x6c\x35\x7d\x58\x62\xbe\xc0\xfd\x7c\xf6\x6e\xba\x9a\xce\x67\x4b\xcc\xdf\xa3\x9a\x7d\xc3\xc7\xe9\xec\xdd\x0d\x88\xa5\xa1\x08\x7a\x6c\x63\xe6\x1f\x22\x38\xcb\x48\x26\x6b\xb6\x24\x7a\x46\x60\x13\x06\x42\xa9\xa5\x9a\x37\x5c\xc3\x69\x6f\x3b\x6d\x09\x36\xec\x28\x7a\xf6\x16\x2d\xc5\x2d\xa7\x6c\x66\x82\xf6\x46\x15\x70\xbc\x65\xd1\xd2\x47\xfe\x33\x54\xa9\xd4\xaa\xfa\x80\x37\xb8\x2d\x5f\xab\xcf\x8b\x87\xf7\xd3\x3f\xf0\x06\xb6\x8e\x25\x87\xb1\x0d\xc1\x3a\xfa\x5e\x07\x9f\x3d\xa3\x98\x94\xd2\xce\x4d\xd0\x76\xa9\x51\xea\x29\x3c\x01\x6f\xb5\x25\xa5\xfa\xaf\x89\xba\x28\xf0\xb6\x63\x67\xe0\x69\x3f\xa4\x32\x13\xe8\x4e\xc2\x56\x0b\xd7\xda\xb9\x03\x44\x5b\xb0\x40\x27\x38\x2d\x94\x44\x5d\x98\x50\xff\xa0\x88\x75\x5f\x3a\x1a\xb5\x9d\x73\x18\x09\x5e\x5d\x0d\xb4\xae\xc7\xbb\xe0\xba\x2d\x8d\xe2\xda\xa0\xcc\x4d\x2a\x63\xfa\x51\x76\xc7\xe5\xcd\x90\x12\xfa\xd0\x80\x79\xe4\x75\x42\xce\xf9\x17\xd1\x5e\x0a\x4e\x5e\x5d\xad\xaa\x0f\xd7\x4a\xad\x5d\xa8\x7f\xf4\x43\xdd\x47\xd2\x42\xe8\x03\xa5\xe8\x58\xda\xbf\x87\x55\xa7\x47\xb9\x1b\xc2\x30\xb4\xe3\xd3\x05\xb0\x37\xf4\x58\x36\xb2\x75\x60\x9f\xd8\x50\xcf\xfa\x59\x39\x27\x68\x17\x49\x9b\x03\xf4\x4e\xb3\xeb\xb7\x95\x3d\x6c\x96\xc6\x9b\x7c\x6c\x31\xc1\x04\xff\xb3\xc0\x0f\xbb\x9b\x31\x22\x59\xf2\x14\x33\x1b\x96\x9b\xe1\x1c\x45\x47\x4b\x92\x11\x1b\x8a\x84\x3f\xbb\x24\xfd\xc2\x44\xda\x50\x24\x5f\x0f\xdd\x17\x9d\xcf\x9a\xc7\x10\xe4\x27\x75\x51\x8e\xeb\x7e\xa6\xef\x03\xa9\xec\x6a\xf6\xf6\x64\xe8\x45\x81\xcf\x5d\x6a\x8e\x1e\x8a\xb6\x96\xcc\xbf\x8e\x65\xad\x23\xb5\x21\xb1\x84\x78\x50\x17\xb6\x76\xa1\x33\x38\x8a\x3d\x1a\xf5\x6b\xf2\xa2\xb6\x4f\xc0\x67\xce\x65\xe8\x63\x9f\x73\x58\x5c\x25\xce\x7f\x29\xfd\x88\x43\xfe\x4c\xb3\xdc\x21\xd7\x09\xf6\xec\x1c\x52\xbe\x9d\x03\x86\x99\xf2\x2d\x75\xad\xc9\xbf\xce\xda\x5c\xff\x1f\x9e\x4f\x3b\x50\x3b\xd2\x7e\xa2\xfe\x09\x00\x00\xff\xff\xfd\x2a\x56\xa8\x76\x05\x00\x00") + +func testImagesVolumesTesterRbdMakefileBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterRbdMakefile, + "test/images/volumes-tester/rbd/Makefile", + ) +} + +func testImagesVolumesTesterRbdMakefile() (*asset, error) { + bytes, err := testImagesVolumesTesterRbdMakefileBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/rbd/Makefile", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterRbdBlockTarGz = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x92\xef\xe6\x60\x38\xfc\x77\x45\x28\x03\xf3\xdb\xbb\xe7\xb3\x45\xc2\x65\x18\x3e\xdc\xbc\x1b\x92\x2b\xb2\x67\x4a\x52\xf6\xea\xec\xab\x5c\xa2\xdb\xa4\x27\xcf\x98\x34\xfb\xaa\xd3\xdb\xa5\x0b\x3a\xae\x74\xcf\x48\x49\x4e\x32\xb7\x56\xbc\xe9\x6a\x6b\xfa\xed\x9a\xb7\xff\x3d\x9b\x8e\x0b\x4e\xfd\xff\x18\xe5\x5a\xe4\xaa\x75\x67\xc4\x79\xf5\x2f\xd5\x58\xaa\x50\x31\xe9\xcb\xde\xbf\x8a\x9d\xf6\x9d\x85\xe5\x9c\x9f\x7f\x1e\x28\x4f\x2f\xbb\x37\x7b\xee\xfb\x03\x35\xf2\xdc\xf9\xe5\x69\x8b\x66\xf9\xd5\xcd\x2e\x09\xb7\xb4\xb0\x32\xba\x14\xc3\x96\x3d\x4d\xf9\xed\xd7\x85\xca\x8b\x17\xbb\xb7\x1d\xeb\xeb\x9b\xda\x3e\xf9\x53\x40\x65\x49\x8e\x85\xe6\xb4\xdd\x73\xc2\x83\x93\x37\xd6\x25\x2e\x8c\xf0\x11\xbb\xb4\xe5\xdf\xa6\xba\xf5\x59\xec\x37\x52\xa6\x3d\x3a\xed\x30\x89\xa7\xfd\x68\x91\xa2\xe7\x23\x89\xe9\xd1\x77\x17\xde\xe8\xba\xf1\xfe\xfa\xf1\xfd\x73\x3a\x27\x7a\x87\x85\xf9\xfd\x9f\x9d\xfd\xad\xfb\xbd\x75\xac\xf5\xef\xdc\xfc\xfa\x77\xe9\x8a\x9f\xde\xbe\x3d\x5c\xfe\x6f\xf7\xff\x77\x07\x1f\xdb\xdf\x9f\xf1\xe7\xf5\xeb\x6a\xe3\xed\x7e\xb6\x73\x8f\x2f\xff\xba\xf3\xa7\xc4\xd2\xe2\x70\xff\xbe\xb9\x7b\x6d\x8c\xfe\x5f\xfd\x93\x3d\xc7\xf7\xe1\xd2\xb5\xf5\xff\x7f\x9c\xdc\xfa\x3a\xbf\xbe\xf0\xf7\xb3\x7c\x71\x7e\x5b\xab\xbd\x7f\x9c\xcf\x64\xbb\xef\xce\xfd\x5a\xb9\xc7\x73\xa7\x78\x8e\xfc\x9b\x63\x07\x13\xe6\x6e\x6b\xb9\x21\x95\x14\x2d\xf4\x7a\xbf\xdc\xab\xd2\x05\xe7\x25\x19\x19\x18\x18\xf2\x6f\x79\x7d\x88\xfd\xcf\xb7\x7f\x0b\xd3\x97\xf3\xe7\xb6\xb2\xde\x7c\x5f\xd2\x70\xef\xe5\x95\xda\xf4\xbc\xf5\xd1\x9f\x13\xf4\x3f\x3d\x88\xb8\x34\xa7\xbe\xe6\xdb\x8f\xd6\x67\x77\x12\x45\x9e\x5f\x28\xfb\x6a\xa4\x69\x94\xfc\x32\xaa\x42\x93\x9f\xc7\xa6\xfa\xef\xd3\x59\xc5\x49\xd2\x85\x05\x8b\x4f\x5e\x2c\x2d\x7f\xfc\x23\xb8\xee\xde\x8f\xc9\xf1\xc6\xcf\xf6\x88\x3f\xfa\x2b\xb0\xdb\xb9\x46\xe0\xd1\x61\x81\x6a\xa7\x37\xbe\x51\xf6\x13\x6f\x88\x3f\x5a\x2c\xf0\xdb\x59\x26\xe2\xf8\xc7\x7a\xae\xeb\xf1\x7f\xb8\xbe\xed\x79\xbd\xde\x58\x58\xfa\xf8\x7e\xe7\xf5\xc5\x45\xb9\xf5\x7f\x22\xff\x3c\x7b\xcc\xfb\x86\x9f\x01\x19\x38\xbc\x3f\xf2\xff\xc6\x7b\x8f\xa2\x9f\x97\x26\x7f\xad\xd9\x17\x92\x75\xf7\xf0\xef\xb9\x29\x06\xf1\xbe\xe2\xaf\xdb\x97\x5f\x76\xcb\x5d\x55\xba\xfe\xcd\x7d\xee\xe6\x9d\x37\x6f\x85\x3c\xf5\xca\x5c\x66\x17\xfe\x36\xfb\xd5\x01\xb6\xa3\x56\xf1\xb1\xff\xf9\xb9\xd7\xfe\x62\x37\x3a\xa4\xfb\x5f\x71\xf7\x15\xfb\x94\xe9\xbf\xda\xdf\x04\xfd\x9f\x10\xfb\x4a\x7e\x93\xf7\x5f\xe7\xb2\x95\xf5\x27\xf4\xbe\xf2\xdf\x5c\xfa\x0f\x26\x79\x46\x4b\x65\xad\xe2\x83\xb5\x75\xea\x4c\x5f\x22\xfe\xcd\xff\x51\x73\x52\xe2\xfb\xb3\xfd\xf7\xff\x95\xbc\xbe\xa6\x7b\xba\xb0\x22\xc3\xee\xb4\xc9\x36\xfd\xb0\x55\x9b\xb7\x1e\x9b\x2a\xf7\x9c\x63\x8d\xfb\x62\xb3\x99\xd7\x96\xa5\x67\x4f\x5d\xf9\xb9\xf7\x63\xc9\xa3\xa0\xd4\x4d\x75\x75\x89\x7b\x02\x57\xc7\xcd\x58\x11\x72\xf8\xd8\xaf\x1f\x49\x96\xdf\x7e\x6f\x0a\x5a\xbb\xec\xe8\xcb\xd6\x92\x75\x15\xaf\x3e\x0b\x37\xff\xf5\x93\x66\x18\x05\xa3\x60\x14\x0c\x33\x60\xb6\xf5\x3f\xa3\x7e\x72\xda\x1b\x06\x09\x01\x06\x40\x00\x00\x00\xff\xff\x15\x8d\xdd\x95\x8b\x06\x00\x00") + +func testImagesVolumesTesterRbdBlockTarGzBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterRbdBlockTarGz, + "test/images/volumes-tester/rbd/block.tar.gz", + ) +} + +func testImagesVolumesTesterRbdBlockTarGz() (*asset, error) { + bytes, err := testImagesVolumesTesterRbdBlockTarGzBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/rbd/block.tar.gz", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterRbdBootstrapSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xc1\x8e\xdb\x36\x10\xbd\xf3\x2b\x5e\xac\x43\x5a\xc0\x96\xbc\x5b\xf4\x92\x9c\xbc\x5e\x17\x31\x92\xda\xc1\xda\xe9\x22\xb7\x50\xd2\xd8\x1c\x84\xe2\xb0\x24\x65\xad\x2f\xfd\xf6\x82\xd2\x6e\xdb\x45\x51\xa0\x3a\x08\xa2\x38\x8f\xef\xcd\x9b\x19\x16\x6f\xaa\x9a\x5d\x55\xeb\x68\x94\x2a\xb0\x16\x7f\x0d\x7c\x36\x09\xb7\xcb\x9b\x9f\x71\x34\x84\x8f\x7d\x4d\xc1\x51\xa2\x88\x55\x9f\x8c\x84\x58\xaa\x42\x15\xf8\xc4\x0d\xb9\x48\x2d\x7a\xd7\x52\x40\x32\x84\x95\xd7\x8d\xa1\x97\x9d\x39\x7e\xa3\x10\x59\x1c\x6e\xcb\x25\x7e\xc8\x01\xb3\xe7\xad\xd9\x8f\xef\x55\x81\xab\xf4\xe8\xf4\x15\x4e\x12\xfa\x48\x48\x86\x23\x4e\x6c\x09\xf4\xd4\x90\x4f\x60\x87\x46\x3a\x6f\x59\xbb\x86\x30\x70\x32\x23\xcd\xf3\x21\xa5\x2a\xf0\xf5\xf9\x08\xa9\x93\x66\x07\x8d\x46\xfc\x15\x72\xfa\x67\x1c\x74\x1a\x05\xe7\xc7\xa4\xe4\xdf\x55\xd5\x30\x0c\xa5\x1e\xc5\x96\x12\xce\x95\x9d\x02\x63\xf5\x69\xbb\xde\xec\x0e\x9b\xc5\x6d\xb9\x1c\x21\x5f\x9c\xa5\x18\x11\xe8\xf7\x9e\x03\xb5\xa8\xaf\xd0\xde\x5b\x6e\x74\x6d\x09\x56\x0f\x90\x00\x7d\x0e\x44\x2d\x92\x64\xbd\x43\xe0\xc4\xee\x3c\x47\x94\x53\x1a\x74\x20\x55\xa0\xe5\x98\x02\xd7\x7d\x7a\x65\xd6\x8b\x3a\x8e\xaf\x02\xc4\x41\x3b\xcc\x56\x07\x6c\x0f\x33\xdc\xad\x0e\xdb\xc3\x5c\x15\x78\xdc\x1e\x3f\xec\xbf\x1c\xf1\xb8\x7a\x78\x58\xed\x8e\xdb\xcd\x01\xfb\x07\xac\xf7\xbb\xfb\xed\x71\xbb\xdf\x1d\xb0\xff\x05\xab\xdd\x57\x7c\xdc\xee\xee\xe7\x20\x4e\x86\x02\xe8\xc9\x87\xac\x5f\x02\x38\xdb\x48\x6d\xf6\xec\x40\xf4\x4a\xc0\x49\x26\x41\xd1\x53\xc3\x27\x6e\x60\xb5\x3b\xf7\xfa\x4c\x38\xcb\x85\x82\x63\x77\x86\xa7\xd0\x71\xcc\xc5\x8c\xd0\xae\x55\x05\x2c\x77\x9c\x74\x1a\xff\xfc\x2b\xa9\x52\x8d\xf6\xdd\x89\xa4\x98\x82\xf6\x11\x1a\xeb\xcd\xe7\x0f\x88\x14\x2e\x14\xb2\x8a\x6d\x42\x13\x48\xe7\xb6\x4a\x83\x60\x7f\xb8\x8f\x39\x77\x2b\x8d\xb6\xe8\x74\x63\xd8\xd1\xfc\xaf\x90\x87\xbb\x7b\x78\x11\x9b\x49\x46\x4f\xb5\x6b\x73\x4e\x12\x52\xc4\xdb\xda\x4a\xf3\xfd\x2d\x5a\xba\x70\x43\x53\xc8\xd4\xa3\x8f\x84\xae\x8f\x2f\x4c\x38\x05\x8a\x66\xa2\xca\xf8\xdc\x6a\xf1\x1a\x13\x75\xc8\x90\x39\x6a\x6a\x74\x6e\xc4\x68\xd8\xfb\x9c\x36\x27\x55\xe0\xb9\xaf\x5c\xee\x30\x0a\x18\xa4\xb7\x2d\xd8\xe5\x33\xe3\xe4\x24\x77\xd9\xad\xfa\x8a\x3f\x7e\x5a\x2e\x7f\xbd\xcb\xdc\xe3\x30\x4d\xac\x15\xa5\xa6\x6a\xc8\x9b\xf1\x55\x36\xe2\x4e\x2a\x1a\x94\x7f\x2f\xcb\x68\xf0\xcd\x48\x4c\x4e\x77\x84\x05\x7f\x9b\x46\xd1\x9d\xf8\xdc\x07\x1a\xb5\xc6\xa4\x43\x42\x46\x2c\x3a\x71\x13\xbe\x13\xf7\xbf\x91\xb7\x4f\x13\x58\x62\xab\xba\xef\x2d\x07\x2c\x3c\xaa\x8b\x0e\x95\xe5\x7a\x52\x27\xb1\x1d\x3f\x16\xcb\xff\xda\xb8\x99\x78\x25\xb6\x99\x77\xf9\x6a\x75\x93\x99\x3f\x07\xf2\x3a\xf3\x8e\x05\xbb\x88\xed\xbb\x5c\xac\xdd\xfe\xb8\x79\x87\x81\xe0\xf2\xa0\xac\xc9\x1b\x7c\xcf\x77\x8a\x45\x27\x6d\x6f\x69\xac\x7c\x36\x32\x67\xf2\x46\x85\xfa\xa5\xb6\x18\x2b\x8b\x93\x88\x52\xd4\x18\xc1\x6c\x04\x73\x1e\x49\xdd\x5e\x67\x99\xf3\x51\x73\xca\x3d\x4c\x17\x0a\x6a\x30\xf9\xfa\x48\xa1\xa7\xf7\x68\x45\xe5\x91\x8f\x96\xc8\xe3\x66\xa9\x5a\x71\xa4\xfe\x0c\x00\x00\xff\xff\xbb\x6f\x02\x07\xf0\x04\x00\x00") + +func testImagesVolumesTesterRbdBootstrapShBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterRbdBootstrapSh, + "test/images/volumes-tester/rbd/bootstrap.sh", + ) +} + +func testImagesVolumesTesterRbdBootstrapSh() (*asset, error) { + bytes, err := testImagesVolumesTesterRbdBootstrapShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/rbd/bootstrap.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterRbdCephConfSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\x41\x6b\xdb\x4c\x10\x86\xef\xfb\x2b\xde\xcf\xfa\x0e\x2d\xb8\x92\x63\x28\x94\x16\x17\x5c\x27\xa5\x22\xc1\x86\xc8\x69\x08\x21\x87\xd5\x6a\x24\x4d\x59\xed\xa8\xbb\xab\x38\xee\xaf\x2f\xb2\x13\xd2\x34\xd5\x71\xde\x99\xd1\xb3\xcf\x24\xff\x65\x25\xbb\xac\xd4\xa1\x55\x2a\xc1\x4a\xfa\xbd\xe7\xa6\x8d\x98\xcf\x4e\xde\x63\xdb\x12\xce\x87\x92\xbc\xa3\x48\x01\xcb\x21\xb6\xe2\x43\xaa\x12\x95\xe0\x82\x0d\xb9\x40\x15\x06\x57\x91\x47\x6c\x09\xcb\x5e\x9b\x96\x9e\x92\x29\xbe\x93\x0f\x2c\x0e\xf3\x74\x86\x37\x63\xc3\xe4\x31\x9a\xbc\xfd\xa4\x12\xec\x65\x40\xa7\xf7\x70\x12\x31\x04\x42\x6c\x39\xa0\x66\x4b\xa0\x07\x43\x7d\x04\x3b\x18\xe9\x7a\xcb\xda\x19\xc2\x8e\x63\x7b\xf8\xcd\xe3\x92\x54\x25\xb8\x79\x5c\x21\x65\xd4\xec\xa0\x61\xa4\xdf\x43\xea\x3f\xfb\xa0\xe3\x01\x78\xfc\xda\x18\xfb\x8f\x59\xb6\xdb\xed\x52\x7d\x80\x4d\xc5\x37\x99\x3d\x36\x86\xec\x22\x5f\x9d\xad\x8b\xb3\x77\xf3\x74\x76\x18\xb9\x72\x96\x42\x80\xa7\x9f\x03\x7b\xaa\x50\xee\xa1\xfb\xde\xb2\xd1\xa5\x25\x58\xbd\x83\x78\xe8\xc6\x13\x55\x88\x32\xf2\xee\x3c\x47\x76\xcd\x14\x41\xea\xb8\xd3\x9e\x54\x82\x8a\x43\xf4\x5c\x0e\xf1\x85\xac\x27\x3a\x0e\x2f\x1a\xc4\x41\x3b\x4c\x96\x05\xf2\x62\x82\x2f\xcb\x22\x2f\xa6\x2a\xc1\x75\xbe\xfd\xb6\xb9\xda\xe2\x7a\x79\x79\xb9\x5c\x6f\xf3\xb3\x02\x9b\x4b\xac\x36\xeb\xd3\x7c\x9b\x6f\xd6\x05\x36\x5f\xb1\x5c\xdf\xe0\x3c\x5f\x9f\x4e\x41\x1c\x5b\xf2\xa0\x87\xde\x8f\xfc\xe2\xc1\xa3\x46\xaa\x46\x67\x05\xd1\x0b\x80\x5a\x8e\x40\xa1\x27\xc3\x35\x1b\x58\xed\x9a\x41\x37\x84\x46\xee\xc9\x3b\x76\x0d\x7a\xf2\x1d\x87\xf1\x98\x01\xda\x55\x2a\x81\xe5\x8e\xa3\x8e\x87\xca\xab\x47\xa5\xea\xa0\x6f\x25\xae\xe6\x66\xf0\x14\x90\x51\x34\x99\xa1\xbe\x4d\x8d\xb8\x1a\xb5\x97\x0e\x1a\x91\xba\xde\xea\x38\x9e\x52\x29\x32\xad\x60\xa2\x6e\x1b\x2b\xa5\xb6\x77\x4a\x0f\xb1\x85\xb1\x43\x88\xe4\x9f\x4f\xb0\x80\x13\x47\xc7\x30\x90\xbf\x67\x43\xff\x0e\x8d\x65\x72\xf1\x55\xa6\x6e\x3b\x71\xa9\xbe\x53\xad\x84\x88\x05\x46\xa6\x52\x1e\x54\x37\x8a\xaf\x2a\x8f\x05\xfe\x3f\x51\xea\x56\x42\x75\xa7\x24\x54\xf8\x21\x83\x77\xda\x22\xf0\x2f\xc2\x02\x27\xf3\x0f\x50\x4f\xb5\x8a\x05\x0b\xd4\xda\x06\x3a\x8e\xa4\xb3\xe3\xd0\x5f\xcb\x27\xf8\xfc\x6c\xe0\x59\x83\x52\xbf\x03\x00\x00\xff\xff\x81\xc1\x43\x49\x7f\x03\x00\x00") + +func testImagesVolumesTesterRbdCephConfShBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterRbdCephConfSh, + "test/images/volumes-tester/rbd/ceph.conf.sh", + ) +} + +func testImagesVolumesTesterRbdCephConfSh() (*asset, error) { + bytes, err := testImagesVolumesTesterRbdCephConfShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/rbd/ceph.conf.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterRbdCreate_blockSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x93\x4f\x6f\xdb\x46\x10\xc5\xef\xfb\x29\x5e\x44\x03\xb1\x51\x9b\xb2\x0d\xf4\x92\x42\x29\x64\x5b\x45\x88\xc4\x32\x20\x31\x4d\x73\xcb\x92\x1c\x92\x0b\x2f\x77\xd9\xd9\xa1\xfe\xb8\xe9\x77\x2f\x48\x4a\x88\x85\x1c\xca\x23\xe7\xed\xdb\xdf\xbc\xd9\x89\xde\x4c\x33\xe3\xa6\x99\x0e\xb5\x52\x11\xee\x7d\xbb\x67\x53\xd5\x82\xdb\xeb\x9b\x5f\x91\xd6\x84\x8f\x5d\x46\xec\x48\x28\x60\xde\x49\xed\x39\xc4\x2a\x52\x11\x3e\x99\x9c\x5c\xa0\x02\x9d\x2b\x88\x21\x35\x61\xde\xea\xbc\xa6\x63\xe5\x12\x7f\x12\x07\xe3\x1d\x6e\xe3\x6b\x9c\xf7\x82\xc9\xa1\x34\xb9\xf8\x4d\x45\xd8\xfb\x0e\x8d\xde\xc3\x79\x41\x17\x08\x52\x9b\x80\xd2\x58\x02\xed\x72\x6a\x05\xc6\x21\xf7\x4d\x6b\x8d\x76\x39\x61\x6b\xa4\x1e\xae\x39\x98\xc4\x2a\xc2\xd7\x83\x85\xcf\x44\x1b\x07\x8d\xdc\xb7\x7b\xf8\xf2\xb5\x0e\x5a\x06\xe0\xfe\xab\x45\xda\x77\xd3\xe9\x76\xbb\x8d\xf5\x00\x1b\x7b\xae\xa6\x76\x14\x86\xe9\xa7\xe4\x7e\xb1\x5c\x2f\xae\x6e\xe3\xeb\xe1\xc8\x67\x67\x29\x04\x30\xfd\xdd\x19\xa6\x02\xd9\x1e\xba\x6d\xad\xc9\x75\x66\x09\x56\x6f\xe1\x19\xba\x62\xa2\x02\xe2\x7b\xde\x2d\x1b\x31\xae\xba\x44\xf0\xa5\x6c\x35\x93\x8a\x50\x98\x20\x6c\xb2\x4e\x4e\xc2\x3a\xd2\x99\x70\x22\xf0\x0e\xda\x61\x32\x5f\x23\x59\x4f\x70\x37\x5f\x27\xeb\x4b\x15\xe1\x4b\x92\x7e\x78\xfa\x9c\xe2\xcb\x7c\xb5\x9a\x2f\xd3\x64\xb1\xc6\xd3\x0a\xf7\x4f\xcb\x87\x24\x4d\x9e\x96\x6b\x3c\xfd\x81\xf9\xf2\x2b\x3e\x26\xcb\x87\x4b\x90\x91\x9a\x18\xb4\x6b\xb9\xe7\xf7\x0c\xd3\xc7\x48\x45\x9f\xd9\x9a\xe8\x04\xa0\xf4\x23\x50\x68\x29\x37\xa5\xc9\x61\xb5\xab\x3a\x5d\x11\x2a\xbf\x21\x76\xc6\x55\x68\x89\x1b\x13\xfa\x61\x06\x68\x57\xa8\x08\xd6\x34\x46\xb4\x0c\x7f\x7e\x6a\x2a\x1e\xde\x12\x93\x16\x42\x66\x7d\xfe\x1c\x8b\xe6\xb8\x7a\x19\x67\xa8\x11\x1a\x6d\x2d\x68\x27\xb7\xc3\xbc\xc3\x3e\x08\x35\x3d\x5b\x22\x68\xba\x20\xc8\x08\xdc\x39\xe8\x00\xf6\x5e\x70\x2e\x1e\x8d\xef\x9c\x8c\x06\x6f\xaf\x3c\xac\xf7\xed\xdb\x8b\x37\xfd\x45\x8b\x9d\x91\x3e\xb7\x1e\xa0\x34\x1c\x04\xc4\xec\x39\x56\x81\x04\x57\xa4\xd4\xe3\x32\x7d\x48\x56\xb3\x6f\xcd\xb3\x50\xd3\xe2\xaa\xf8\xa6\x54\x6e\x49\xbb\xae\x3d\xbf\x50\xff\xa8\xfe\x65\x44\x78\xd4\xcf\x84\xd0\x31\x61\x4b\x60\x92\x8e\x47\xcb\x71\x1f\xa8\xbf\x24\xf7\x05\x0d\xea\xd5\x22\x9d\x9d\xfd\x7e\x38\xb8\x36\x96\x9c\xd8\x3d\x98\x1a\xbf\x21\xd0\x86\x78\x2f\x75\x9f\x9b\x76\x05\x4c\xe5\x3c\xd3\xc8\x14\x86\x23\x3d\xd7\x2f\xa3\xd1\xb0\x7d\xdd\xd8\xdb\xd9\xc8\x89\xdb\xf7\xd3\x82\x36\x53\xd7\x59\xfb\x43\xc3\x4d\x61\xf8\xff\x24\x63\xd8\x3f\x55\x07\xf6\xb3\xd5\x22\x55\xff\x2a\x25\xac\x5b\x1c\xba\x47\xba\x58\x3d\x62\xf1\x57\x92\xbe\x1a\xd8\xcd\xe3\x1d\x0a\xda\x98\xe3\xca\xf5\x63\x52\x45\x01\x53\xce\x06\xdb\x17\x62\x0f\x5f\xce\xc6\xbb\xf2\x1e\x7d\x76\x83\x2c\xcc\x6e\x1e\x55\xf3\x5c\x86\x78\x98\xeb\x50\xed\x5d\xe7\xfd\x51\x57\xd0\x2e\xae\xa5\xb1\xc3\x9a\x88\x1a\x1b\x3e\x8c\xf1\x40\x7d\xe8\x4d\x51\x5e\x7b\x4c\x3e\x90\xb5\x1e\x25\xfb\x06\xab\xbb\x87\x09\xde\x1f\xeb\xd3\x1f\x66\xea\x34\x38\xa5\x8e\x09\x1c\x9f\xdb\xab\x20\xf0\xfd\x3b\xde\x29\xd1\x8c\xbc\x7c\x39\x55\x8d\xa8\xff\x05\x00\x00\xff\xff\x99\x7d\x58\x41\x0a\x05\x00\x00") + +func testImagesVolumesTesterRbdCreate_blockShBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterRbdCreate_blockSh, + "test/images/volumes-tester/rbd/create_block.sh", + ) +} + +func testImagesVolumesTesterRbdCreate_blockSh() (*asset, error) { + bytes, err := testImagesVolumesTesterRbdCreate_blockShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/rbd/create_block.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterRbdKeyring = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8a\xce\xcd\xcf\xd3\x8b\xe5\x52\x80\x82\xec\xd4\x4a\x05\x5b\x05\xc7\x40\x97\xa0\x22\x6f\xbf\x30\xb3\x2a\x93\x50\xe7\x0c\x47\x47\xa7\xaa\x00\xc3\xa8\xca\xca\xe2\x90\x50\x93\x82\xac\xf4\x2c\x3f\xff\x34\xfd\x02\x63\x47\x5b\x5b\xae\xe8\xe4\x9c\xcc\xd4\xbc\x12\xbd\xc4\x94\xdc\xcc\x3c\x5c\xa6\x24\xb9\xa6\x96\x81\x4c\x71\xcd\x0d\x72\xd6\x2e\x08\xd7\xf7\x76\x0a\xf3\xa8\x48\x34\x28\xd7\x0f\xf0\xf7\xf4\x01\x99\x02\xd3\x96\x58\x9a\x99\xa2\x60\xab\x60\x00\x17\x48\x4e\x2c\x28\x56\xc8\x4d\x29\x56\xb0\x55\x50\x4a\xcc\xc9\xc9\x2f\x57\xd0\x52\x42\x93\xcc\xcf\xc3\x2d\x99\x5f\x9c\x82\x22\x09\x08\x00\x00\xff\xff\x71\x6c\x55\x44\xec\x00\x00\x00") + +func testImagesVolumesTesterRbdKeyringBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterRbdKeyring, + "test/images/volumes-tester/rbd/keyring", + ) +} + +func testImagesVolumesTesterRbdKeyring() (*asset, error) { + bytes, err := testImagesVolumesTesterRbdKeyringBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/rbd/keyring", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterRbdMonSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x94\x5f\x6f\xdb\x36\x14\xc5\xdf\xf9\x29\xce\xa2\x01\x6d\x81\xc8\x4a\x03\xec\x5f\xf7\xe4\xa5\x19\x66\xb4\xb3\x81\xd8\x5d\xd1\xb7\x52\xe4\x95\x78\x11\x89\xe4\xc8\xab\xaa\xfa\xf6\x83\xe4\xa4\xb0\x91\x15\x45\xfd\x42\x9a\xe7\xdc\xc3\x1f\x2f\x09\x15\x3f\x54\x35\xfb\xaa\xd6\xd9\x29\x55\xe0\x26\xc4\x29\x71\xeb\x04\xd7\x57\x2f\x7f\xc2\xc1\x11\xde\x0c\x35\x25\x4f\x42\x19\xeb\x41\x5c\x48\x79\xa5\x0a\x55\xe0\x2d\x1b\xf2\x99\x2c\x06\x6f\x29\x41\x1c\x61\x1d\xb5\x71\xf4\xa8\x5c\xe2\x1f\x4a\x99\x83\xc7\xf5\xea\x0a\xcf\x67\xc3\xc5\x83\x74\xf1\xe2\x77\x55\x60\x0a\x03\x7a\x3d\xc1\x07\xc1\x90\x09\xe2\x38\xa3\xe1\x8e\x40\x9f\x0d\x45\x01\x7b\x98\xd0\xc7\x8e\xb5\x37\x84\x91\xc5\x2d\xdb\x3c\x84\xac\x54\x81\x0f\x0f\x11\xa1\x16\xcd\x1e\x1a\x26\xc4\x09\xa1\x39\xf5\x41\xcb\x02\x3c\xff\x9c\x48\x7c\x55\x55\xe3\x38\xae\xf4\x02\xbb\x0a\xa9\xad\xba\xa3\x31\x57\x6f\x37\x37\xb7\xdb\xfd\x6d\x79\xbd\xba\x5a\x4a\xde\xf9\x8e\x72\x46\xa2\x7f\x07\x4e\x64\x51\x4f\xd0\x31\x76\x6c\x74\xdd\x11\x3a\x3d\x22\x24\xe8\x36\x11\x59\x48\x98\x79\xc7\xc4\xc2\xbe\xbd\x44\x0e\x8d\x8c\x3a\x91\x2a\x60\x39\x4b\xe2\x7a\x90\xb3\x66\x3d\xd2\x71\x3e\x33\x04\x0f\xed\x71\xb1\xde\x63\xb3\xbf\xc0\x1f\xeb\xfd\x66\x7f\xa9\x0a\xbc\xdf\x1c\xfe\xda\xbd\x3b\xe0\xfd\xfa\xee\x6e\xbd\x3d\x6c\x6e\xf7\xd8\xdd\xe1\x66\xb7\x7d\xbd\x39\x6c\x76\xdb\x3d\x76\x7f\x62\xbd\xfd\x80\x37\x9b\xed\xeb\x4b\x10\x8b\xa3\x04\xfa\x1c\xd3\xcc\x1f\x12\x78\x6e\x23\xd9\xb9\x67\x7b\xa2\x33\x80\x26\x1c\x81\x72\x24\xc3\x0d\x1b\x74\xda\xb7\x83\x6e\x09\x6d\xf8\x44\xc9\xb3\x6f\x11\x29\xf5\x9c\xe7\xcb\xcc\xd0\xde\xaa\x02\x1d\xf7\x2c\x5a\x96\x95\x27\x87\x5a\xa9\xa5\x7d\x37\xc1\x37\xdc\x0e\x89\x96\x22\x74\x7a\xf0\xc6\xcd\x7f\xe0\x69\xc4\xdf\xbb\xed\xfc\x92\x54\x81\x3e\x78\x96\x90\x90\x49\x86\xa8\xfa\xe0\x7b\x1d\x25\x84\x0e\x65\x69\x12\x69\xa1\x79\xd2\x85\xba\xa6\x84\xb2\x6c\x32\x5b\x7c\x1c\x06\xb6\x2d\xf9\x8f\x28\x4b\x6d\x2d\x34\x7e\x7c\xf9\xea\xe7\x5f\x7e\xfd\x0d\x15\x89\xa9\x0c\x45\x57\x1d\x83\x54\x7f\x6f\x39\xa1\xfa\xa4\x53\xd5\x71\xfd\x45\x5a\x26\xa5\x56\xcb\xd0\x07\x8f\x92\xa1\x51\x96\xfd\x7d\x93\xe7\x61\x29\x7e\x92\x86\xf2\xfe\x7f\xa2\xee\x69\x4a\xec\x5b\x65\xe2\xd7\xc5\xef\x20\xf8\x9e\xad\x8f\x19\x5f\x08\x54\x01\xd3\x31\x79\x39\x36\x13\xcf\x9d\xf6\x76\x7a\xf1\x0d\xb2\xc7\x9d\xe6\xf2\xe3\x73\xe0\x0c\xa1\x2c\x18\x09\xa3\xf6\x02\x09\x0b\x26\x42\xb6\x68\x49\x4c\x1a\xb2\x5b\x98\x02\x2a\xe9\x63\xb5\x2c\x18\xb5\x0c\xc7\xab\xb3\xa7\xc2\xb9\xcf\xaa\xf9\xbb\x51\x32\x9e\xe5\x2a\x0b\x45\x18\x17\x42\xa6\x8e\x74\x83\x86\x53\x16\x8f\x2b\xc8\x14\x09\x2e\x64\xf9\x86\x25\x64\x5b\x3d\x3b\x0b\x3f\x81\x30\xa7\xc2\x13\xd8\xc7\x03\xe5\xd3\x03\xf1\x99\xe7\xbf\x00\x00\x00\xff\xff\xb9\x5b\x18\xdd\x20\x05\x00\x00") + +func testImagesVolumesTesterRbdMonShBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterRbdMonSh, + "test/images/volumes-tester/rbd/mon.sh", + ) +} + +func testImagesVolumesTesterRbdMonSh() (*asset, error) { + bytes, err := testImagesVolumesTesterRbdMonShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/rbd/mon.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testImagesVolumesTesterRbdOsdSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xc1\x6f\x9b\x30\x18\xc5\xef\xfc\x15\x6f\x21\x52\xb7\x29\x81\xa6\xd2\x2e\x9b\x7a\x60\x69\xa7\xa1\x56\x89\x54\xd2\x55\x3d\x1a\xf8\xc0\x9f\xe2\xd8\xcc\x36\x25\xfc\xf7\x93\x49\x2b\x35\xea\x65\x5c\xe0\xc3\xef\x3d\xff\x78\x38\xfe\x94\x96\xac\xd3\x52\x38\x19\x45\x31\xd6\xa6\x1b\x2d\xb7\xd2\xe3\xea\x72\xf5\x0d\x3b\x49\xb8\xeb\x4b\xb2\x9a\x3c\x39\x64\xbd\x97\xc6\xba\x24\x8a\xa3\x18\xf7\x5c\x91\x76\x54\xa3\xd7\x35\x59\x78\x49\xc8\x3a\x51\x49\x7a\x5b\x59\xe0\x0f\x59\xc7\x46\xe3\x2a\xb9\xc4\xe7\x20\x98\xbd\x2e\xcd\xbe\xfc\x88\x62\x8c\xa6\xc7\x41\x8c\xd0\xc6\xa3\x77\x04\x2f\xd9\xa1\x61\x45\xa0\x63\x45\x9d\x07\x6b\x54\xe6\xd0\x29\x16\xba\x22\x0c\xec\xe5\xb4\xcd\x6b\x48\x12\xc5\x78\x7e\x8d\x30\xa5\x17\xac\x21\x50\x99\x6e\x84\x69\xde\xeb\x20\xfc\x04\x1c\x2e\xe9\x7d\xf7\x3d\x4d\x87\x61\x48\xc4\x04\x9b\x18\xdb\xa6\xea\x24\x74\xe9\x7d\xbe\xbe\xdd\x14\xb7\xcb\xab\xe4\x72\xb2\x3c\x6a\x45\xce\xc1\xd2\xdf\x9e\x2d\xd5\x28\x47\x88\xae\x53\x5c\x89\x52\x11\x94\x18\x60\x2c\x44\x6b\x89\x6a\x78\x13\x78\x07\xcb\x9e\x75\xbb\x80\x33\x8d\x1f\x84\xa5\x28\x46\xcd\xce\x5b\x2e\x7b\x7f\x56\xd6\x1b\x1d\xbb\x33\x81\xd1\x10\x1a\xb3\xac\x40\x5e\xcc\xf0\x33\x2b\xf2\x62\x11\xc5\x78\xca\x77\xbf\xb7\x8f\x3b\x3c\x65\x0f\x0f\xd9\x66\x97\xdf\x16\xd8\x3e\x60\xbd\xdd\xdc\xe4\xbb\x7c\xbb\x29\xb0\xfd\x85\x6c\xf3\x8c\xbb\x7c\x73\xb3\x00\xb1\x97\x64\x41\xc7\xce\x06\x7e\x63\xc1\xa1\x46\xaa\x43\x67\x05\xd1\x19\x40\x63\x4e\x40\xae\xa3\x8a\x1b\xae\xa0\x84\x6e\x7b\xd1\x12\x5a\xf3\x42\x56\xb3\x6e\xd1\x91\x3d\xb0\x0b\x3f\xd3\x41\xe8\x3a\x8a\xa1\xf8\xc0\x5e\xf8\xe9\xcd\x87\x8f\x4a\xa2\xa9\xbe\xb5\xd1\x0d\xb7\xbd\xa5\xc9\x04\x25\x7a\x5d\xc9\x30\x40\xd3\x80\x6d\x71\x13\x4e\x52\x54\x51\x27\x61\x5c\x8d\xca\x92\xf0\x34\xcd\xcb\x30\x2f\x19\xf3\x15\x96\xcb\xc3\xbe\x71\xd3\x6d\x4f\xe3\x49\x2d\x7a\x2f\x21\xea\x3a\xd8\x92\xf9\x6a\x72\x5f\x08\xa5\xcc\x80\xaf\x17\x38\x18\xfd\x36\xd9\xe1\x78\x11\x72\xd2\x17\x61\x53\xc5\x65\x1a\xec\xa9\x71\xf5\xf4\xb0\x9c\xaf\xd2\x3d\x8d\x96\x75\xfb\x9e\xa2\x77\xa7\xf0\xf9\x0a\x2b\x58\x63\xfc\x75\x4d\x8d\xe8\x95\x87\x34\xce\x5f\x07\x65\x69\x8e\x1f\x38\xf7\xff\xb1\xcb\xbf\x00\x00\x00\xff\xff\xf8\x34\x6a\xb0\x6f\x03\x00\x00") + +func testImagesVolumesTesterRbdOsdShBytes() ([]byte, error) { + return bindataRead( + _testImagesVolumesTesterRbdOsdSh, + "test/images/volumes-tester/rbd/osd.sh", + ) +} + +func testImagesVolumesTesterRbdOsdSh() (*asset, error) { + bytes, err := testImagesVolumesTesterRbdOsdShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/images/volumes-tester/rbd/osd.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesBuild = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xdd\x6a\xc3\x30\x0c\x85\xef\xfd\x14\x42\x57\x89\xe9\x96\xfb\x42\x9e\x24\x98\xa1\xb8\x8e\xd1\xa6\xc4\xc1\x3f\x65\x7d\xfb\xe1\x2c\xb0\x15\xd2\x52\x5d\x7e\x12\x47\x1f\x67\x25\xfb\x45\xde\x35\x17\x37\x51\x91\xfc\x71\xe5\xc4\x23\x0b\xe7\x1b\xf4\x30\x60\xd7\xfd\x81\xf3\x5a\x46\x61\x8b\xa6\x55\x6a\x62\x71\x3e\x86\xb2\x36\x0a\x00\x60\xa1\xd9\x41\x0f\x38\xf1\x77\x2e\xd1\x25\x3c\x6d\x38\x45\x9b\xa0\x07\x2f\x61\x6c\x86\x8d\xd4\x41\xad\x3b\xfd\x7e\xa3\x59\xf6\xb3\x7f\xf0\x80\x7d\xa6\xb0\xec\xd0\xb4\x27\xf5\xf8\x79\x0a\x25\xda\x57\x7e\xbf\x94\xb6\x17\xf3\x56\x73\x8e\x22\x51\x6b\xac\x09\x75\x91\xc9\xa7\xad\x2e\x2a\x39\xcc\xb4\x90\x77\x17\x34\xbf\xbb\xa7\x85\x46\xbe\x52\x76\xf5\xf4\xb1\x08\x89\x1c\x48\x0c\x78\xbe\x33\x34\xcf\x4d\x5a\xf5\x13\x00\x00\xff\xff\x54\xa2\x55\x44\xe9\x01\x00\x00") + +func testFixturesBuildBytes() ([]byte, error) { + return bindataRead( + _testFixturesBuild, + "test/fixtures/BUILD", + ) +} + +func testFixturesBuild() (*asset, error) { + bytes, err := testFixturesBuildBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/BUILD", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlAdminDaemonYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x8e\x41\x6a\x03\x31\x0c\x45\xf7\x3e\x85\x2e\x60\x92\x2c\xe3\x75\x0f\x50\x28\x74\xaf\x8c\x3f\x8d\xe9\x58\x32\xb2\x1a\x72\xfc\xe2\x4c\xe2\x64\x51\xa8\x56\x82\xaf\xff\x9e\xb8\x95\x4f\x58\x2f\x2a\x89\x70\x75\xc8\x58\xfb\xee\x72\x38\xc1\xf9\x40\xe1\xbb\x48\x4e\xf4\xc6\xa8\x2a\x1f\xf0\x50\xe1\x9c\xd9\x39\x05\x22\xe1\x8a\x44\xcd\xb4\xc2\xcf\xf8\xe9\x51\x34\x23\xe2\xda\xd4\x1c\x16\x7a\xc3\x32\xce\x1c\xb5\xad\xec\x18\x3b\xd1\x2b\x60\xcc\x3f\x90\xed\x68\xe5\x13\xd6\xfe\xa8\x10\xe5\xdb\x3f\x5b\x6d\x16\x6e\xe9\x43\x3a\x66\x51\x71\x2e\x02\x9b\xcd\x78\xd7\x2d\x93\x54\x2a\x7f\xdd\xfd\xbb\xe7\x13\x33\x1e\x5f\xbc\x78\xe3\x93\xf9\xae\xe6\x89\x8e\xfb\xe3\x7e\xa6\x44\x67\xed\xfe\x67\xb0\x69\x3b\xec\x02\x1b\xcc\xf0\x1b\x00\x00\xff\xff\x53\x1c\x0d\x23\x78\x01\x00\x00") + +func testFixturesDocYamlAdminDaemonYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlAdminDaemonYaml, + "test/fixtures/doc-yaml/admin/daemon.yaml", + ) +} + +func testFixturesDocYamlAdminDaemonYaml() (*asset, error) { + bytes, err := testFixturesDocYamlAdminDaemonYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/admin/daemon.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlAdminHighAvailabilityEtcdYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x94\xbd\x6e\xdb\x30\x10\x80\x77\x3d\x05\x87\xae\x92\x6c\x77\x48\xc3\xad\x68\x3c\x04\x45\x6c\xa3\x2d\x02\x74\x32\x68\xea\x60\x13\xa6\x48\xe1\x78\x52\x11\x14\x79\xf7\x82\x92\x42\xfd\xf9\x07\xea\x48\xde\xdd\xc7\xd3\xf1\xa3\x44\xa1\x5e\x01\x9d\xb2\x86\xb3\x6a\x19\x9d\x95\xc9\x38\xdb\xd9\x2c\xca\x81\x44\x26\x48\xf0\x88\x31\x23\x72\xe0\x0c\x48\x66\xb1\x03\xac\x00\x23\x57\x80\xf4\x91\x93\x75\xb4\x01\xfa\x63\xf1\xcc\x19\x61\x09\x11\x63\xd2\x1a\x12\xca\x00\x3a\x9f\x11\x33\x95\x8b\x23\x70\x76\x94\x98\x28\x9b\x1e\xad\x3d\x6a\xd8\x77\x49\xa9\xe7\xf2\x55\xb2\x48\x1e\x23\xc6\x06\x87\x85\xa4\x3a\x20\x6d\x9e\x0b\x93\xf1\x7a\x11\xb3\xb4\x74\x98\x6a\x2b\x85\x4e\x0f\xca\xd4\x94\x36\x12\xc7\x9e\xd1\x2e\x3e\xfd\xdd\x6c\x9f\xd6\xfb\xcd\xd7\x97\xf5\x7b\x88\x2b\xa3\x48\x09\x1d\x8b\xac\x02\x24\xe5\x20\x2e\x00\x30\x2e\x51\xbb\x36\xe7\x44\x54\xf0\x34\x6d\xab\x9f\x77\xef\x7c\xf5\xf9\xcb\x22\x00\xb4\x72\x04\x66\x6e\x55\x77\x9c\xd4\x0a\x0c\xdd\x2b\x7d\x78\x1c\x1f\x78\xb5\x6e\xb9\x7a\x48\x16\xc9\x22\x59\x0e\xcb\xfc\x0d\xc6\x99\xc2\x8f\x99\x55\x02\xeb\x49\xa5\x3e\xd0\x65\x29\x27\x6d\x05\xf8\x16\x66\xf6\xf4\xfc\xf3\xdb\xf6\x75\xfd\xe3\xf7\xfe\xd7\xf6\xfb\x7a\xd3\x4c\xae\xb0\x48\xee\x63\xfc\xe1\x6e\x76\x16\x89\xb3\xf0\x9d\x8d\x13\x93\xcd\xe6\x56\x1b\x7b\x3c\xe7\x1a\xa5\xed\x7d\x48\x09\x9b\x0d\xa5\x19\x42\xa0\x54\x56\x97\x39\xbc\xd8\xd2\x74\xdd\xe5\x7e\xb5\x13\x74\xe2\xdd\x37\x0f\x18\x95\xc0\x9e\x31\xfd\x74\x20\x99\x3a\xa7\x07\xd9\x40\xb2\xdb\x42\x10\xd9\xd6\xe8\xb7\x20\xfc\x98\xe0\xc5\x74\x27\x81\x30\xe1\x94\x0e\xeb\xc0\x0c\x98\xef\x7e\x8c\xa9\x04\xce\x6d\xe7\x42\x23\xf3\x08\x5a\x1d\x2e\x51\xb4\x3a\xcc\x05\xd5\x4f\xd6\x16\x60\x2e\xe1\x7c\x70\x18\xbb\x0b\xf5\x17\x76\x09\x07\x24\xff\x83\x54\x9c\x55\x4a\xed\xeb\xea\x91\x8a\xb3\xea\x76\x27\xa0\x46\xc1\xf6\x7f\x57\x9b\xeb\x81\x6d\x76\x31\xd4\xb0\x7b\x7a\x63\x13\xaf\x96\xf6\x95\x1c\x09\x79\xb5\x66\x2a\xe1\x25\x05\x6f\x76\x3b\x2c\x0c\xd2\xdd\x3e\x72\x72\xd8\xfd\x9a\xbe\x5a\x53\xb1\x6e\x97\x4e\x64\xba\xa6\xd2\xcd\xe1\x4e\x01\x03\x79\x6e\xd6\xf6\x85\x19\xeb\xf2\x2f\x00\x00\xff\xff\x0f\x0e\x7f\x50\x5e\x07\x00\x00") + +func testFixturesDocYamlAdminHighAvailabilityEtcdYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlAdminHighAvailabilityEtcdYaml, + "test/fixtures/doc-yaml/admin/high-availability/etcd.yaml", + ) +} + +func testFixturesDocYamlAdminHighAvailabilityEtcdYaml() (*asset, error) { + bytes, err := testFixturesDocYamlAdminHighAvailabilityEtcdYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/admin/high-availability/etcd.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlAdminHighAvailabilityKubeApiserverYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x95\x51\x6f\xdb\x36\x10\xc7\xdf\xfd\x29\xf8\xb4\x27\xd3\x92\x5c\x2f\x71\x04\x28\xc0\xd0\xa1\xc0\x80\xae\xcd\x5a\x60\xaf\x01\x4d\x5d\x65\x42\x14\x29\xdc\x9d\x94\x79\x9f\x7e\x20\xed\x2a\xb6\x24\x3b\xc8\x1e\x75\x77\xff\x1f\xef\xce\x7f\xd2\xaa\x35\x7f\x03\x92\xf1\x2e\x17\x7d\xb6\xa8\x8d\x2b\x73\xf1\xe4\xcb\x45\x03\xac\x4a\xc5\x2a\x5f\x08\xe1\x54\x03\xb9\xa8\xbb\x1d\x48\xd5\x1a\x02\xec\x01\x17\xd4\x82\x0e\xc9\xbd\x27\xfe\x02\xfc\xe2\xb1\xce\x05\x63\x07\x0b\x21\xb4\x77\xac\x8c\x03\xa4\x50\x21\xe7\x01\x42\x08\x61\x1a\x55\x41\x2e\x2a\x8d\x2b\xe3\x93\xca\xfb\xca\xc2\xf3\xab\x3a\xb9\x94\xe4\x0f\x77\xdb\x14\xee\xb7\x6b\x48\xb7\x2a\x53\x99\x7e\xd8\xe8\xbb\x5f\xef\xb2\x87\x34\xcd\xb2\x5d\x99\xae\x23\x53\xfb\xa6\x51\xae\xcc\xe3\x87\x14\xc9\xce\xb8\x84\xf6\xa7\x2f\xa9\x7f\x86\x3b\xc2\xc4\x7a\xad\x6c\x2c\xb8\x3c\x48\x48\xa9\xca\x12\x81\xa8\xc8\xd6\xf7\xab\x74\x95\xae\x32\x21\x25\xb0\x2e\xe5\xb1\x82\x8a\x3d\x73\x9b\x27\xc9\x90\xcf\x37\x69\x9a\x45\xb8\x10\x52\x6a\xeb\xbb\x52\xb6\xe8\x7b\x53\x02\x16\x95\x86\x18\x56\x65\x63\x28\x6c\x5b\x86\x21\xd1\xdb\xe2\x0f\x67\xd8\x28\x6b\xfe\x05\xa4\xe5\x17\xd5\x00\xb5\x4a\xc3\x67\xf3\x03\xf4\x41\x5b\x58\x7e\x36\x8d\xe1\x6f\xca\x55\x80\xcb\xef\xa0\x3b\x34\x7c\xf8\xe8\x1d\xc3\x3f\xfc\x3b\xb8\xc3\xf2\x3b\x60\x6f\x34\xfc\xa6\xb5\xef\x1c\x2f\xbf\x01\xf9\x0e\x35\xfc\xd5\x79\x56\x43\x37\x74\x2c\x92\xda\x76\xc4\x80\xd2\xb4\x12\x03\xb2\xc8\xd2\xd8\x7c\x9a\x64\x77\xb1\x69\x03\x8e\xa5\x56\xf2\x87\xb1\x50\x24\x84\x7d\x5c\x0c\x3a\x60\xa0\x44\xab\x95\x46\x1e\xa0\x3b\x45\x46\x4b\xd5\xf1\x7e\xbe\x3c\xe6\x9f\x43\x7e\xa5\xa9\x8f\xf8\xe3\xe9\xc1\x0d\x05\xac\x41\x32\x10\xcb\xdd\xae\x43\x47\x03\x95\x2d\x49\x0d\xc8\xf3\xcc\xe3\xf2\x57\xa1\xe0\x54\xdb\xa2\xe9\x15\x83\xac\xe1\x70\x53\x52\xc3\xe1\x6c\x1d\xba\x43\x90\xad\x47\x2e\x36\x9b\x0f\x81\xe4\x6b\x70\x37\x66\xa9\x9d\x7f\x71\xcf\xb1\x8a\xe2\x34\x42\xca\xbe\x58\x0f\x44\x65\xad\x7f\x89\xbd\x18\x0b\x15\x94\xc5\x27\x65\x09\x44\xf6\xf8\x98\xf4\x2a\xf8\xac\x1a\x39\x6c\x65\x7d\x25\xd6\x8f\xbf\x1c\x1d\x13\x3a\xa1\x9f\x86\x1d\xec\xff\xe4\x91\x73\xb1\xd9\x7c\x38\x1d\x13\x6e\xda\x38\x76\xbc\x59\xc1\x8b\x34\x2f\xbf\x4f\xb7\xe9\x44\x7f\x16\x7c\x05\xcc\xeb\xb7\x73\xfa\xed\x58\x1f\x2f\x52\x8c\xf4\xde\x76\x0d\xfc\x19\xcc\x38\x4c\xd4\x84\xaf\x27\xc5\xfb\x5c\x8c\x16\x7b\x01\x21\xec\x43\xe6\x14\x43\x50\xe5\x57\x67\x0f\xc3\xa3\x32\x26\x5d\x5f\xec\xa8\xb5\x2a\xfc\xa4\x33\x00\x60\x9d\x10\xd9\x8b\x6a\x60\xfd\x1a\x7a\xb3\x85\xf0\x86\xd0\x5e\x21\x4c\x38\x1d\x61\x4c\xbc\x03\x16\xe6\x19\x63\x7a\x85\xef\x6d\x67\xa6\x91\xf7\x11\xac\xd9\xcd\x51\xac\xd9\xbd\x17\x14\x5f\x57\xdf\x82\x9b\xc3\x85\xe4\x65\xee\x4d\x68\xf8\xc1\xe6\x70\xc0\xfa\x7f\x90\xda\xda\x24\x6c\x69\x4c\x6a\x6b\xf3\x1a\x9d\x80\x8e\xf6\x3e\xfd\xad\xc5\x0b\x11\x80\xa7\xea\xf6\xaa\xc5\xc7\x06\xbf\xaa\x7d\xd3\xd4\x7c\x68\x21\x17\x9f\x8c\x85\xaf\xf8\x11\x41\x31\x2c\xe6\xbc\x7e\xf5\x80\x73\xd3\x8f\x2c\x7f\x55\x33\xb5\xf9\x9c\xc9\x6f\xce\x74\x29\x1c\x6c\x7d\xfb\xc8\xc9\x61\x6f\x6b\xce\xcd\x3b\xb5\xee\x6d\xe9\xc4\xae\xd7\xcc\x7a\x73\xb9\x53\xc0\x85\x3d\x6f\x6a\xcf\x2d\x39\x36\xe4\x7f\x01\x00\x00\xff\xff\x42\xc6\x6a\x5c\xaa\x09\x00\x00") + +func testFixturesDocYamlAdminHighAvailabilityKubeApiserverYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlAdminHighAvailabilityKubeApiserverYaml, + "test/fixtures/doc-yaml/admin/high-availability/kube-apiserver.yaml", + ) +} + +func testFixturesDocYamlAdminHighAvailabilityKubeApiserverYaml() (*asset, error) { + bytes, err := testFixturesDocYamlAdminHighAvailabilityKubeApiserverYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/admin/high-availability/kube-apiserver.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlAdminHighAvailabilityKubeControllerManagerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x94\x4d\x6f\xdb\x3c\x0c\xc7\xef\xf9\x14\x3a\x3d\x37\xc5\xb1\x93\xb4\x79\x0c\xa4\x97\x0d\xdb\x69\x6b\x81\x01\xbb\x0e\xb4\xc4\x3a\x42\x64\xc9\xa0\x68\x0f\xd9\xa7\x1f\xe4\xa6\x4d\x1c\xdb\x69\xb3\x23\xdf\x7e\xa4\xcc\x3f\x0d\xb5\xf9\x89\x14\x8c\x77\xb9\x68\xd3\xd9\xde\x38\x9d\x8b\x27\xaf\x67\x15\x32\x68\x60\xc8\x67\x42\x38\xa8\x30\x17\xfb\xa6\x40\xa9\xbc\x63\xf2\xd6\x22\xc9\x0a\x1c\x94\x48\xb3\x50\xa3\x8a\x59\x31\x04\xc6\x21\x85\x68\x49\xa1\x7c\x55\x81\xd3\xd1\x88\x66\x52\x18\x97\x84\xdd\xd1\x92\xea\xd5\xdd\x04\x4a\xac\x57\x60\xbb\x84\x89\x26\x42\xca\x0a\x02\x23\x6d\xd3\xec\x7e\xbe\x98\x2f\xe6\x69\xbe\x59\x6c\x16\x42\x4a\x65\x9b\x18\x90\x71\xc8\x2d\x66\x28\x19\x03\xcb\xa2\x68\xc8\x85\xae\x87\x38\x4b\x52\x46\xd3\x36\x5d\xcc\xb3\xd5\x3a\x52\x92\xf4\x4e\x48\x09\x36\xf6\x67\x94\xce\x6b\xec\x52\xc2\x96\xa9\xc1\xae\xce\x37\x5a\xd6\xe4\x5b\xa3\x91\xb6\xa5\xc2\x48\x0b\x48\xad\x51\x28\x41\x29\xdf\x38\x96\x35\x99\x36\xd6\xef\xf1\x20\x9f\x8d\xc5\x6d\x12\xa8\xed\x9e\x42\x0e\x19\x43\x12\x0b\x90\xe6\x7b\x3c\xbc\x4d\xd4\x6e\x33\x91\x3e\x3c\x24\x2d\xc4\xe7\x97\x53\x0f\x9f\x5b\x5f\x0a\x29\x2d\x82\x46\x92\x68\x51\xb1\xc8\x1e\xfe\x4b\x3b\x8e\xa9\xa0\xc4\x5c\x94\x8a\xe6\xc6\x27\xa5\xf7\xa5\xc5\x5f\xa7\x35\x4c\x31\xf3\x67\x0d\xd9\xea\x6e\xb9\xd1\xeb\x14\x56\x9b\x02\x20\x5d\xaa\xe5\x7a\xb9\xbc\x7f\x56\x7a\x75\xff\xff\xb2\x83\x5b\xd3\xa2\xc3\x10\x9e\xc8\x17\x98\x1f\xe7\xde\x31\xd7\x5f\x91\x5f\x4d\x21\x6a\xe0\x5d\x2e\x92\x1d\x82\xe5\xdd\x9f\x93\xdb\x13\xe7\x22\x5d\x64\xeb\xec\xe8\x33\xce\xb0\x01\xfb\x19\x2d\x1c\x7e\xa0\xf2\x4e\x87\x5c\xa4\xeb\x63\x94\x4d\x85\xbe\xe1\x53\xa0\xf3\x5f\xd7\x5d\xcc\x68\xbd\x6d\x2a\xfc\x16\xb7\x10\x5e\x85\x56\x45\xeb\xe9\x65\xae\xfe\x1e\x8e\xcd\x5e\xb0\x81\xda\x18\x39\xfa\x08\x41\x3f\x3a\x7b\xc8\x45\xdc\xfc\x08\xe9\x03\x7b\xea\xe1\xad\x2f\xa3\x14\x46\x48\xc8\x2a\x09\xc1\xf6\xb2\x91\xd5\xc9\xf5\xee\x2c\xf1\x64\xc2\x0e\x08\x07\x9c\x26\x50\x17\xb8\x01\x16\x1f\x76\x89\x69\x81\x6e\x1d\x67\x64\x90\xdb\x08\xd6\x14\x63\x14\x6b\x8a\x5b\x41\xdd\xcf\xc4\xd7\xe8\xc6\x70\x31\xd8\x8f\xbd\x0b\x8d\x0b\x1b\xc3\x21\xab\x7f\x20\xd5\x7b\x93\xb0\x0d\x97\xa4\x7a\x6f\x4e\xde\x01\x68\xe7\x03\x7f\x47\xfe\xed\x69\xff\xe6\x7b\xd1\xfe\xf1\x67\x1b\x13\xba\x26\xb3\xde\x5d\x8e\xe8\xff\x52\xfd\x93\xb5\x1f\x57\x3c\x1f\x6a\xcc\xc5\x17\x63\xf1\x91\x3e\x11\x02\xe3\x6c\xec\x10\x26\x3b\x9d\x5f\xc4\xc5\x3d\x4c\xd6\x0c\x6f\x60\xec\x02\xae\x3e\xae\x5f\xf8\xa6\xf9\xeb\x2d\x07\xcd\xde\xaf\x39\x57\xf6\x50\xd7\xd7\x4b\x07\x5a\x9e\x52\xf2\xd5\x8f\x3b\x04\xf4\xb4\x7b\xb5\xf6\x5c\xaf\x97\x6a\xfd\x1b\x00\x00\xff\xff\x4e\xa7\x2b\x54\x3e\x08\x00\x00") + +func testFixturesDocYamlAdminHighAvailabilityKubeControllerManagerYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlAdminHighAvailabilityKubeControllerManagerYaml, + "test/fixtures/doc-yaml/admin/high-availability/kube-controller-manager.yaml", + ) +} + +func testFixturesDocYamlAdminHighAvailabilityKubeControllerManagerYaml() (*asset, error) { + bytes, err := testFixturesDocYamlAdminHighAvailabilityKubeControllerManagerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/admin/high-availability/kube-controller-manager.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlAdminHighAvailabilityKubeSchedulerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x52\x4d\xaf\xd3\x30\x10\xbc\xe7\x57\xec\x89\x9b\x9b\x8f\xf2\x68\x6a\xe9\xf5\x02\x82\x13\xbc\x4a\x48\x5c\x91\x63\x4f\x13\x53\xc7\xae\xec\x4d\x50\xf9\xf5\x28\x69\x4a\x15\x04\x7a\x37\xef\x8c\x77\x46\xb3\xbb\xea\x62\xbf\x21\x26\x1b\xbc\xa4\xb1\xcc\xce\xd6\x1b\x49\xc7\x60\xb2\x1e\xac\x8c\x62\x25\x33\x22\xaf\x7a\x48\x3a\x0f\x0d\x44\xd2\x1d\xcc\xe0\x10\xb3\x74\x81\x9e\xc8\x2e\x24\xfe\x02\xfe\x19\xe2\x59\x12\xc7\x01\x19\x91\x0e\x9e\x95\xf5\x88\x69\xfa\x21\xfe\x2d\x40\x44\x64\x7b\xd5\x42\x52\xab\xe3\xc6\x86\xbc\x0d\xa1\x75\xf8\xfe\xe8\xce\xd7\x2d\x72\xfb\xd6\x14\x4d\x7d\xaa\x9b\x6d\x89\x6a\xb7\xdf\xee\xb6\xd5\x6e\xff\xae\x7c\xaa\xea\xdd\x76\xdf\xe8\xfd\xac\xa9\x43\xdf\x2b\x6f\xe4\x5c\x08\xca\x1b\xeb\xf3\xd4\x2d\x95\xd0\x77\x78\x48\x31\x77\x41\x2b\x37\x7f\x58\x1b\x91\x10\xbd\x4a\x8c\xf8\x5c\x56\xbb\x4d\xb1\x29\x36\xa5\xac\x8b\xba\x20\x21\xc6\xe7\x8a\x84\x70\x50\x06\x51\xc0\x41\x33\x95\x87\x43\x3e\xaa\x49\xad\xfd\x4b\x67\xe3\x42\x3b\xfb\x11\x55\x87\x37\xe5\xfc\x74\x76\x84\x47\x4a\xc7\x18\x1a\xc8\x85\xed\x98\x2f\x9f\xc0\xf7\x92\xe8\xa2\xb8\x93\x94\x77\x50\x8e\xbb\x5f\x0f\x38\x44\x96\x54\x16\xd5\x53\xb9\x60\xd6\x5b\xb6\xca\x7d\x80\x53\xd7\xaf\xd0\xc1\x9b\x24\xa9\x7c\x5a\x58\xb6\x3d\xc2\xc0\x0f\x62\xc6\xc7\xe0\x86\x1e\x9f\xc3\xe0\x39\xdd\xc7\xd4\x4f\xd5\xf1\xe6\xfa\x6a\x98\xdb\x3e\x5d\x68\x4f\xd6\xe1\x3f\x02\x71\xf0\x79\x82\x8e\xe0\xdb\x1a\xa3\x07\x23\x4d\x6b\x4e\x88\xa3\xd5\x50\x5a\x4f\x2d\x2b\x49\x83\x93\x1a\x1c\x0b\x0e\x67\x78\x91\x6a\xfc\x30\x0b\x1f\xa1\xcc\x8b\x77\xd7\x3f\x37\x76\x0b\xb1\x1c\xd8\x74\x84\xb3\x77\xb6\x1a\xdf\xab\x41\xf8\x7a\x81\xa4\x8f\xd6\xe1\x25\xbe\x8f\x50\x7c\x4b\xb3\xce\xf7\x3b\x00\x00\xff\xff\xa6\xf1\xcb\xf2\x24\x03\x00\x00") + +func testFixturesDocYamlAdminHighAvailabilityKubeSchedulerYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlAdminHighAvailabilityKubeSchedulerYaml, + "test/fixtures/doc-yaml/admin/high-availability/kube-scheduler.yaml", + ) +} + +func testFixturesDocYamlAdminHighAvailabilityKubeSchedulerYaml() (*asset, error) { + bytes, err := testFixturesDocYamlAdminHighAvailabilityKubeSchedulerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/admin/high-availability/kube-scheduler.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlAdminLimitrangeInvalidPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8d\x41\x8a\xc3\x30\x0c\x45\xf7\x3e\x85\xc8\xde\x93\x84\xd9\xf9\x0e\x03\xb3\xea\x36\xa8\xb6\x70\x45\x62\xcb\xc8\x4e\xa0\xb7\x2f\x0e\x25\xa5\xda\x7d\x3d\x3d\x7d\x2c\x7c\x23\xad\x2c\xd9\xc1\x31\x9b\x95\x73\x70\xf0\x2f\xc1\x24\x6a\x18\xb0\xa1\x33\x00\x19\x13\x39\xe0\x7c\xe0\xc6\xc1\x16\x09\xa6\x16\xf2\x9d\x78\xc9\x0d\x39\x93\xd6\x9e\xec\xfb\x72\xdd\xef\xa4\x99\x1a\x55\x5b\x49\x0f\xb2\x0f\xa9\xad\x23\x03\x00\xc0\x09\x23\x39\x88\x5e\x7f\x58\xc6\x28\x12\x37\x5a\x3e\x8f\xc6\x53\x59\xbe\x14\xa5\x2a\xbb\x7a\x3a\x5b\xfa\x6c\x9c\xb8\x5d\x09\xc0\x97\xdd\xc1\xf0\x3b\x5c\x8b\x44\x49\xf4\xe9\x60\x9e\xa6\x3f\x36\xaf\x00\x00\x00\xff\xff\x6c\xec\x86\x0c\xe6\x00\x00\x00") + +func testFixturesDocYamlAdminLimitrangeInvalidPodYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlAdminLimitrangeInvalidPodYaml, + "test/fixtures/doc-yaml/admin/limitrange/invalid-pod.yaml", + ) +} + +func testFixturesDocYamlAdminLimitrangeInvalidPodYaml() (*asset, error) { + bytes, err := testFixturesDocYamlAdminLimitrangeInvalidPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/admin/limitrange/invalid-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlAdminLimitrangeLimitsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x8f\x31\x8b\xc3\x30\x0c\x85\x77\xff\x0a\x91\xfd\xc0\x4e\xe0\x06\xaf\x37\xdc\x72\x07\x25\x43\x77\x11\xab\x45\x34\xb2\xdd\xd8\x29\xcd\xbf\x2f\x4e\x42\x21\xcd\x50\xa8\x27\xe9\xf9\x7d\x7a\x3c\x8c\x7c\xa4\x21\x71\xf0\x16\x6e\x46\x5d\xd8\x3b\x0b\x7f\x2c\x9c\x5b\xf4\x67\x52\x42\x19\x1d\x66\xb4\x0a\xc0\xa3\x90\x05\x99\xfa\xf2\x9d\x54\x8a\xd4\x15\x79\x59\xcb\xf4\x05\x82\xf7\x32\x94\xd7\xc5\xd1\x42\x55\x57\xeb\x2a\x24\x61\x98\x2c\x98\x5f\x9e\x15\x61\xbf\x71\xd6\x5a\xcb\x8b\xf5\xfb\x7f\xb1\xe6\x29\x92\x85\x43\x70\x73\x84\xa3\x13\x8e\x7d\xde\xc0\xcd\x1e\xae\xb5\x5e\xf1\x15\x68\xe9\x3a\x52\xca\xef\x42\xcd\x93\xfb\xbc\x8b\xd9\x9f\x6d\x36\x5d\x7e\x82\xcf\xc8\x9e\x06\xf5\x08\x00\x00\xff\xff\xb5\xd3\x47\x59\x80\x01\x00\x00") + +func testFixturesDocYamlAdminLimitrangeLimitsYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlAdminLimitrangeLimitsYaml, + "test/fixtures/doc-yaml/admin/limitrange/limits.yaml", + ) +} + +func testFixturesDocYamlAdminLimitrangeLimitsYaml() (*asset, error) { + bytes, err := testFixturesDocYamlAdminLimitrangeLimitsYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/admin/limitrange/limits.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlAdminLimitrangeNamespaceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\x31\x0e\x84\x40\x08\x05\xd0\x9e\x53\x70\x81\x2d\xb6\xe5\x10\x96\xf6\x3f\xce\x2f\x88\x03\x12\x87\x18\x8f\xef\x43\xf9\xce\x7b\xf9\x95\xa6\xcf\x5f\x4e\xcf\x61\xba\x21\xb8\x0a\x07\x25\xd8\x18\x68\x98\xa8\x26\x82\xa6\xd3\xc3\xfb\xc7\x17\x51\x93\xf2\x05\x00\x00\xff\xff\xa4\x0d\x06\xa4\x3f\x00\x00\x00") + +func testFixturesDocYamlAdminLimitrangeNamespaceYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlAdminLimitrangeNamespaceYaml, + "test/fixtures/doc-yaml/admin/limitrange/namespace.yaml", + ) +} + +func testFixturesDocYamlAdminLimitrangeNamespaceYaml() (*asset, error) { + bytes, err := testFixturesDocYamlAdminLimitrangeNamespaceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/admin/limitrange/namespace.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlAdminLimitrangeValidPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8e\xb1\x6a\x04\x31\x0c\x44\x7b\x7f\x85\xb8\xde\x39\x36\x90\xc6\xff\x10\x48\x95\xf6\xd0\xd9\x83\x23\xce\xb6\x8c\xec\x5d\xc8\xdf\x87\x5d\x8e\x0d\x21\xa5\xf4\x66\x1e\xc3\x5d\x3e\x61\x43\xb4\x05\xda\x16\xf7\x90\x96\x02\x7d\x68\x72\x15\x93\x13\x4f\x0e\x8e\xa8\x71\x45\xa0\x8d\x8b\x24\xdf\x35\x39\xa2\xc2\x77\x94\xb1\xb3\xff\x74\x74\xc4\x9d\x44\x6d\x93\xa5\xc1\x8e\x9c\x7f\xe6\x1e\xeb\x1d\xd6\x30\x31\xfc\x80\x6d\xf0\x5f\x3a\xe6\x8e\x0e\x97\x54\xce\x08\x94\xa3\xbd\x88\x5e\xb3\x6a\x2e\xb8\xfd\x8a\xae\x47\xe5\xf6\xa7\x62\x18\xba\x5a\xc4\x73\x0d\x51\x91\x2a\xf3\xbc\x88\x62\x5f\x03\x5d\x96\xcb\xf9\xa8\xa8\x6a\xdf\x81\xde\x96\xd7\x77\x71\x3f\x01\x00\x00\xff\xff\x9e\xd4\xcd\x6a\x02\x01\x00\x00") + +func testFixturesDocYamlAdminLimitrangeValidPodYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlAdminLimitrangeValidPodYaml, + "test/fixtures/doc-yaml/admin/limitrange/valid-pod.yaml", + ) +} + +func testFixturesDocYamlAdminLimitrangeValidPodYaml() (*asset, error) { + bytes, err := testFixturesDocYamlAdminLimitrangeValidPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/admin/limitrange/valid-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlAdminNamespacesNamespaceDevJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xcb\xa1\x0e\x02\x31\x10\x84\x61\xdf\xa7\x98\xac\xc6\x60\xef\x21\x90\xf8\x81\x8e\x68\x68\xf7\x1a\xda\x9c\x21\xf7\xee\x64\x8f\x04\x77\x62\xcd\xfc\xdf\x7e\x12\x60\xaf\xe2\xd9\x16\xd8\x8d\x4d\xa3\xf3\x29\xbb\xc4\xcc\x5e\xee\x7a\x8f\xb2\x7a\xc4\xed\xfa\x5b\x9b\x26\x33\x27\x6d\x41\x3c\x03\xe6\x6c\x0a\x91\xb5\xa9\xae\xbd\xc9\xe7\x41\x01\xab\x7c\xa8\x8e\x3f\x3d\xc1\x47\xdb\x53\xdc\x9e\xbe\x01\x00\x00\xff\xff\x99\xf7\x0a\x5a\x92\x00\x00\x00") + +func testFixturesDocYamlAdminNamespacesNamespaceDevJsonBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlAdminNamespacesNamespaceDevJson, + "test/fixtures/doc-yaml/admin/namespaces/namespace-dev.json", + ) +} + +func testFixturesDocYamlAdminNamespacesNamespaceDevJson() (*asset, error) { + bytes, err := testFixturesDocYamlAdminNamespacesNamespaceDevJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/admin/namespaces/namespace-dev.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlAdminNamespacesNamespaceProdJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xe6\x52\x50\x50\xca\xce\xcc\x4b\x51\xb2\x52\x50\xf2\x4b\xcc\x4d\x2d\x2e\x48\x4c\x4e\x55\xd2\x01\x09\x27\x16\x64\x86\xa5\x16\x15\x67\xe6\xe7\x81\x24\xcb\x0c\x21\xa2\xb9\xa9\x25\x89\x29\x89\x25\x89\x4a\x56\x0a\x20\xcd\x0a\x0a\x4a\x79\x89\xb9\xa9\x20\x15\x05\x45\xf9\x29\xa5\xc9\x25\x20\xf5\x3a\x10\x99\x9c\xc4\xa4\xd4\x9c\x62\xb8\x4a\xec\x6a\xc1\x52\xb5\x5c\x20\x5c\xcb\x05\x08\x00\x00\xff\xff\xa0\x41\x9f\x81\x90\x00\x00\x00") + +func testFixturesDocYamlAdminNamespacesNamespaceProdJsonBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlAdminNamespacesNamespaceProdJson, + "test/fixtures/doc-yaml/admin/namespaces/namespace-prod.json", + ) +} + +func testFixturesDocYamlAdminNamespacesNamespaceProdJson() (*asset, error) { + bytes, err := testFixturesDocYamlAdminNamespacesNamespaceProdJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/admin/namespaces/namespace-prod.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlAdminResourcequotaLimitsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8b\x31\x0e\xc2\x30\x0c\x45\xf7\x9c\xc2\x17\x40\x6a\x2b\x95\xc1\x2b\x2b\x2c\x1d\xd8\xad\xd6\x20\x8b\xda\x0d\x89\x83\xd4\xdb\xa3\x40\x16\x84\x27\xbf\xf7\xf5\x28\xca\x95\x53\x96\xcd\x10\x5e\x7d\x78\x88\x2d\x08\x67\x51\xf1\x89\xec\xce\x41\xd9\x69\x21\x27\x0c\x00\x46\xca\x08\x6b\x1d\x73\xc8\x91\xe7\x2a\xbf\x58\xbf\x03\x2c\x7c\xa3\xb2\x7a\x85\x7a\x73\x2c\x08\x43\xd7\x69\x63\x65\xdd\xd2\x8e\x30\xf6\xc3\x45\x3e\xae\x05\x13\x3f\x0b\xe7\xdf\xae\xff\xef\x86\xf1\xd8\x3a\xdf\x23\x23\x9c\x36\x73\x12\xe3\x14\xde\x01\x00\x00\xff\xff\xc1\xba\xa5\x77\xc6\x00\x00\x00") + +func testFixturesDocYamlAdminResourcequotaLimitsYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlAdminResourcequotaLimitsYaml, + "test/fixtures/doc-yaml/admin/resourcequota/limits.yaml", + ) +} + +func testFixturesDocYamlAdminResourcequotaLimitsYaml() (*asset, error) { + bytes, err := testFixturesDocYamlAdminResourcequotaLimitsYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/admin/resourcequota/limits.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlAdminResourcequotaNamespaceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\xb1\x11\x84\x40\x08\x05\xd0\x9c\x2a\x68\xe0\x82\x4b\x29\xc2\xd0\xfc\x8f\xfb\x83\x1d\x85\x45\x17\x1d\xcb\xf7\x21\xfb\xca\x6b\xf6\x11\xa6\xcf\x5f\xf6\x1e\xcd\x74\x81\x73\x26\x36\x8a\xb3\xd0\x50\x30\x51\x0d\x38\x4d\xcf\x7b\x14\x7e\x7c\xe1\x79\x50\xbe\x00\x00\x00\xff\xff\x4d\x03\x2d\x13\x3f\x00\x00\x00") + +func testFixturesDocYamlAdminResourcequotaNamespaceYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlAdminResourcequotaNamespaceYaml, + "test/fixtures/doc-yaml/admin/resourcequota/namespace.yaml", + ) +} + +func testFixturesDocYamlAdminResourcequotaNamespaceYaml() (*asset, error) { + bytes, err := testFixturesDocYamlAdminResourcequotaNamespaceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/admin/resourcequota/namespace.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlAdminResourcequotaQuotaYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\x31\x6a\x05\x31\x0c\x44\xfb\x3d\x85\xf0\x09\xb2\x81\x34\xbe\x40\xea\xa4\x48\x2f\x64\x41\x44\x6c\xcb\x91\xe4\x85\xdc\x3e\xd8\xff\x17\x5b\x89\xf7\x60\x34\x83\x43\xbe\xd8\x5c\xb4\x67\xb8\xce\xe3\x47\x7a\xc9\xf0\xc9\xae\xd3\x88\x3f\xa6\x06\x1e\x8d\x03\x0b\x06\xe6\x03\xa0\x63\xe3\x0c\xbf\xdb\xfb\x60\x5a\xee\x1b\xad\xac\x0b\x40\x63\x66\x48\xaf\x2f\x69\x53\xe3\xa6\xf6\x97\xe1\x7c\x97\xcd\x63\xf5\x78\x70\x8f\x4b\xeb\x6c\x4c\x15\xa5\x79\x86\x74\x3e\x03\x43\xcb\x1d\x8d\x47\x15\xc2\x10\xed\xa4\x3d\x4c\x6b\x65\xf3\x5b\x81\x3d\x67\xee\x39\x3b\xf9\xf0\xce\x64\x1c\xf7\x57\xce\x76\x09\xf1\x52\x6f\xe9\xf8\x0f\x00\x00\xff\xff\x9d\x63\xab\x79\xf4\x00\x00\x00") + +func testFixturesDocYamlAdminResourcequotaQuotaYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlAdminResourcequotaQuotaYaml, + "test/fixtures/doc-yaml/admin/resourcequota/quota.yaml", + ) +} + +func testFixturesDocYamlAdminResourcequotaQuotaYaml() (*asset, error) { + bytes, err := testFixturesDocYamlAdminResourcequotaQuotaYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/admin/resourcequota/quota.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlGettingStartedGuidesCoreosCloudConfigsMasterYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x57\x5b\x53\x1b\x3b\x12\x7e\xf7\xaf\xe8\x75\xa8\xf0\xb0\xc8\x63\x3b\x0e\xb0\x93\x9a\xdd\x62\x03\xd9\xa2\x96\x24\x2c\x26\xfb\xe2\x75\x51\xb2\xa6\x6d\xab\xac\x91\x66\xa5\x1e\x1b\x87\xc3\x7f\x3f\xa5\xf1\xf8\x32\xbe\x80\xc9\x81\x97\x53\x3c\xe0\x91\xba\xbf\xbe\xa8\xfb\x53\xeb\x9d\x50\x26\x8b\x99\x30\xba\x2f\x07\x95\x0a\x63\xac\x32\xb1\x92\x90\xf5\xa5\x42\x17\x56\x00\x18\xa4\x9c\x86\x21\x04\x48\x22\xf0\x72\xb5\x38\xd0\x7d\x57\x01\x00\x48\xd1\x26\xd2\x39\x69\xb4\x0b\xe1\xb0\x7e\xdc\x6a\x1d\xe6\xeb\xc2\x68\x42\x4d\x21\xfc\x96\x7f\x02\x7c\xbf\xbe\x6d\xdf\xdd\x5c\x7f\xbe\xfb\xfa\xfd\xc7\xb7\xdb\xf3\xa8\x5a\x5d\x45\x36\x29\x05\x3d\xa9\x83\x49\x96\x4a\x6e\xb6\x21\x9f\x7c\xfc\xb8\x03\xf9\xdd\x5f\x72\xd5\x1e\x77\xc3\xf9\x0a\x74\x26\x5d\x2e\x09\x3a\x59\x57\x93\x54\xd0\x49\xbb\xc6\x12\x74\x64\xd7\x41\x87\x77\x05\x65\x5c\xa9\x29\x74\x4c\x37\x45\x5d\x28\x75\x80\x69\xa8\x1e\x34\xaa\xd0\x85\xf7\xef\xe1\x7f\xc5\x32\x40\x96\x43\x88\xcc\x2a\x60\x06\x82\x18\xc7\x81\xce\x94\x02\xe6\x2e\xfb\x30\x24\x4a\xc3\x20\x38\x78\x68\x3c\x7e\x82\xd8\xac\xa8\x01\x38\x85\x98\x42\xc3\xa3\xa1\x18\x1a\xa8\x7d\x5a\x6c\xc6\x46\xe3\xfc\x0b\xef\x25\xc1\xc1\x3f\x2a\x95\xa1\x71\xa4\x79\x82\x21\x24\xdc\x11\xda\x8a\x30\x16\x4d\x7e\x04\x48\x22\x6e\x86\xb9\x42\x49\xc2\x2f\x28\xe9\x08\x35\x13\x4a\xa2\x26\x96\x59\xe5\xc2\xb9\x5b\xf5\x5a\xfe\x17\x36\x3f\x9c\xfc\xed\x68\x6d\xad\x55\xaf\x37\x72\x7d\x1e\x8f\xd1\x92\x74\xb8\x15\xe2\x20\xb5\x72\xcc\x09\xef\x64\x3a\x6e\x95\x80\xca\x3b\x0b\x38\xa9\x25\x49\xae\x98\x50\x99\x77\x91\x91\x19\xa1\x0e\x61\x74\xea\xee\x7c\x14\xab\x2e\xa7\x88\xf6\x69\x6b\xa7\xf5\xed\xd6\x4e\xd6\xad\x2d\x83\xd8\x07\x74\x9b\xa3\xf3\x9c\x46\x2f\xd2\x62\x8e\x38\x61\x08\x1a\x27\x15\x80\xbe\x42\xa4\xd9\x31\x25\x48\x3c\xe6\xc4\x43\xa8\x5a\xa3\x30\x9a\x81\xfb\xa2\xcf\xb4\x24\x37\x13\x62\xc5\x69\xe6\xc7\x5b\x73\x68\xc7\x52\x60\x51\x16\xc2\x24\x09\xd7\x71\x08\x8e\xb8\xa5\x92\xf8\x00\x35\x5a\x4e\xc8\x0a\x0d\x2e\x84\xc9\x34\xb1\x11\x4e\x9f\x07\xd9\xd2\x41\x00\x9d\x1f\x5a\x52\x77\xf1\x79\x8e\x4e\x58\x99\x92\x34\x3a\xfa\x57\x61\x0c\x0a\x64\x56\x58\x83\x11\x4e\xc1\x73\x44\x65\x89\xd2\x9e\x89\x2c\x81\x2e\xee\x51\xb4\xbd\xe9\x6b\x8b\x11\x0b\x32\x67\xf3\x5e\x4d\x46\xb1\xb4\xc0\xd2\x45\xe3\x6f\x2a\x44\xb9\xa0\x49\x51\x3b\xa7\x7c\xc4\xd6\x71\x60\x26\xa3\x25\x59\x8c\xb2\xde\x7a\x0a\x6a\xde\xa9\x66\xbd\x75\x0a\xcd\xbf\x2f\x3a\x75\x01\x7e\x83\x09\x97\xfa\xac\x4f\x68\x2f\xee\x25\x45\x53\x74\x8b\xbd\xdb\x69\x8a\x91\xd1\xe8\x86\xa6\x9c\x6c\x87\x94\xa5\x4c\x23\x4d\x8c\x1d\x31\xd4\x63\x69\x8d\x4e\x50\xd3\xeb\xa7\xba\xed\x4d\xc1\xb7\x99\x29\xb8\x58\x9a\x5a\x4a\x1b\x91\xf9\x05\x9e\xcb\xfb\x4a\x75\x61\x10\x0c\x24\x0d\xb3\x5e\x4d\x98\x24\x18\xa1\x72\x38\x1d\xca\xc1\x90\xcc\x04\x6d\xb0\xd3\xfb\x95\xa4\xfc\x3f\x93\x16\x5d\x34\x17\x32\x5a\x49\x8d\x35\xe2\x76\x80\x4b\xb1\x3c\x6b\x3b\x64\xde\xa4\x00\xbc\xc2\x42\x7e\xc6\xbe\x57\x39\x01\xcf\x8f\x7f\x67\x68\xc0\x7e\xee\x23\xf5\x47\xb2\x17\x58\x54\xc8\x1d\xba\x20\x36\x13\xad\x0c\x8f\x83\x71\xc3\xd3\xea\x1e\x09\xdf\x11\xe1\x30\x31\x31\xfc\xf5\x7e\x0f\xcf\xb7\x35\xcb\xfe\x4a\xbf\xd4\x04\x39\xb1\xed\x4f\x50\x7d\xc5\xb5\x46\x15\xef\xd3\x22\xb1\x35\x29\x93\xba\x60\xc4\x55\x94\x8f\xf5\x45\x20\xb3\xe9\xa4\xe6\xff\xad\x5c\xb0\x5b\xba\x6b\x4b\x87\x95\x8a\x7c\x1b\xd3\xee\xaa\xdd\xdd\x87\xe5\x51\x04\x29\xcf\x0d\x10\xcc\x6e\xe9\xbc\x7e\x0a\x77\x83\x99\xbb\x70\xf8\x50\x2d\x9a\xb9\x1a\x56\x1b\xf5\x5a\xb3\xd5\xca\x6b\xa4\x71\x5c\x3d\x82\xea\x3f\xb9\x18\xa1\x8e\xab\x21\x3c\x54\x7d\xe2\xab\x21\x54\xc7\xf7\x8a\xeb\xea\xe3\xe3\x61\x29\x9d\xb1\x11\x23\xb4\xfb\xa7\x3f\x27\x46\x9e\x4a\xaf\xb0\x8f\xde\x4b\x79\xea\xdf\x59\x0f\xad\x46\x42\x07\x67\xd7\x97\xd0\xce\xcd\xbc\x80\xa3\x16\xea\x2b\x3f\x37\xf9\xe8\x59\xe2\x2d\x5f\x9b\x2f\xb8\x15\xe7\x6c\xf6\x16\x16\x9e\xe2\xc2\xa5\x81\x2f\x52\x61\x94\xcf\xd3\x7b\x33\xc5\xeb\x92\x67\xb9\x44\x4a\x8c\xb9\xb6\x35\x3f\x40\x47\xc6\xf2\x01\xd6\x06\xc6\x0c\x14\xfa\xfd\xb5\xc3\x64\x05\x27\xce\xb9\xd1\x33\x62\xa3\xd6\xcc\x31\x95\xd4\xd9\x7d\xc0\x93\xf8\xb8\xb5\x86\xff\x62\x5a\xdc\x4b\xbd\xfc\x9e\x80\x46\xf3\x24\x9f\x7a\x1b\xf9\x00\x1b\x8c\x9b\x41\xc2\xc5\x50\xea\x95\xb2\xdb\xc2\xa5\x6b\x89\x58\x8e\xf6\x8c\xad\xcd\x42\xbe\x02\xf2\xf7\x52\xf4\xec\x70\xf2\x14\x8a\x32\x66\x94\xa5\x11\xd9\x0c\x4b\x72\x3c\x2e\x5e\x42\x9e\x07\xc9\x1a\x15\x5d\xce\xa6\x50\xf9\x13\xad\x3b\xfa\xc6\x13\x74\x29\x17\x78\x25\xfb\x28\xa6\x42\xe1\x72\xe9\x2c\x23\x73\x6d\xcd\x58\x7a\xf5\xa3\x2b\x99\x48\xba\xe1\x7a\x80\xf6\xa8\x8d\x22\xb3\x92\xa6\x9f\x7d\xeb\xdf\xd3\x39\xea\xe9\x51\x51\xb2\x67\x33\x7f\x8e\x6e\xd0\x99\xcc\x0a\xfc\x4f\x66\x88\x97\x3c\xb2\xfe\x51\x94\x60\xc1\xcb\x11\x4f\x65\x30\x6e\x94\x7d\x56\xca\x4c\x98\x9f\xa1\xa5\xc2\x01\xc6\x9b\x51\x49\xed\xbc\x0b\xc8\x7a\x52\xc7\x8c\xc7\xb1\x45\xe7\xa2\xe2\x79\xb2\x5d\x32\x35\x96\xa2\xd3\xfa\x69\x79\xdb\xa7\x5a\x21\xb1\xbc\x52\x37\xed\xac\xea\x1e\xb7\x5a\x1f\xb6\x1e\xc1\x7c\x9c\x97\x29\xb3\x3e\x3f\x51\xa3\x5e\x6b\xd4\xeb\x05\x5d\x97\x54\x3c\x27\xb0\x59\x4d\xb8\xf9\x63\xa1\x5c\x60\x25\xf1\x34\xeb\x29\x29\xe6\xf1\x31\x33\x46\x6b\x65\x8c\xd1\xc1\xc3\xf9\xc5\x97\xb3\x1f\x57\xb7\x77\x97\xd7\xff\x6d\x3d\x96\x74\x94\x19\x90\x71\x14\xa3\xb5\x79\x3c\x2b\xe4\x98\xb3\x76\xc4\xd5\x84\x4f\xdd\xfa\x72\x1b\x45\xd4\xa8\x6f\x5e\x05\x45\xd5\x28\xb4\x2c\xe1\x9a\x0f\xde\xf8\x4e\xf8\xbc\x30\x07\x5f\x67\xe6\x5e\xfd\x6e\x78\xf2\x86\x9b\xd3\xfb\x0e\xa1\x7d\xa7\xd5\xe7\xf9\x73\x33\xaf\x9b\x44\xba\x45\xe6\x6d\x18\x75\xd3\xd0\xaf\x51\xeb\x3e\x38\xd1\xb3\x31\x3e\x45\x73\xc5\xc3\xfa\x17\x49\xb3\x78\xa5\x2f\x3b\x6e\x83\x0f\x5e\xb9\x7b\x9c\x18\x62\x9c\xa9\x37\x6e\x9a\xf6\xdc\xca\x9f\xb4\x57\x16\x59\xdc\x6c\x91\xe5\xd6\xdb\x74\x86\xdb\x48\xed\x8b\x1a\xe2\x09\xf5\xf5\xca\x5d\xc6\xb8\xbd\x4c\x5f\x5a\x89\x59\x1a\x73\xc2\xd9\xcb\x68\x60\x4d\x96\x86\xc0\x55\x3a\xe4\xf9\x82\xc5\x9e\x31\xc4\x1c\xf9\x91\x74\x30\x0d\xc1\xf4\xfb\x95\xdf\x03\x00\x00\xff\xff\xd2\x73\x56\x89\xce\x15\x00\x00") + +func testFixturesDocYamlGettingStartedGuidesCoreosCloudConfigsMasterYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlGettingStartedGuidesCoreosCloudConfigsMasterYaml, + "test/fixtures/doc-yaml/getting-started-guides/coreos/cloud-configs/master.yaml", + ) +} + +func testFixturesDocYamlGettingStartedGuidesCoreosCloudConfigsMasterYaml() (*asset, error) { + bytes, err := testFixturesDocYamlGettingStartedGuidesCoreosCloudConfigsMasterYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/getting-started-guides/coreos/cloud-configs/master.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlGettingStartedGuidesCoreosCloudConfigsNodeYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x56\x6d\x6f\x1b\x37\x0c\xfe\xee\x5f\xc1\x26\x41\xfb\x61\x93\xcf\x76\x9d\x35\xbd\xee\x36\x14\x68\x0a\x0c\x2d\x86\xa0\x69\xf7\xc5\x33\x06\xf9\x44\xfb\x84\xe8\x44\x4d\xa2\xfc\xd2\x2c\xff\x7d\xb8\xf3\x7b\x62\x67\x76\xbb\x01\x2b\x0c\xd8\x16\xf5\x50\x14\xa9\xe7\x11\x75\x9a\x1b\x8a\x4a\xe4\x64\x87\x7a\xd4\x98\x78\xcd\x28\x86\xda\x60\x48\x1b\x00\x02\x9c\xe4\x22\x85\x84\x1c\x27\x03\x6d\x93\x49\x74\x5a\x52\x03\x00\xc0\xa1\x2f\x75\x08\x9a\x6c\x48\xe1\x59\xeb\xc5\xf9\xf9\xb3\xda\x9e\x93\x65\xb4\x9c\xc2\x5f\xf5\x10\xe0\xf4\x49\xed\x3a\x90\xa1\x58\x5a\xa0\x37\xe9\x4b\xcd\xd0\x8b\x7d\xcb\xda\x40\xcf\xf5\xc9\x33\xf4\x74\x3f\x40\x4f\xf6\x73\x8e\xd2\x98\x19\xf4\xa8\xef\xd0\x2e\x9c\x7a\x20\x2c\x9c\x9c\xb5\x4f\xa0\x0f\x4f\x9f\x2e\x87\x9d\xc5\x70\x52\x68\x83\xf0\x04\xf2\xe8\x0d\x08\x41\x91\x5d\x64\x48\x14\x8e\x13\x1b\x8d\x81\xdf\x17\xab\x00\x08\x11\xb4\x41\xcb\x20\x44\x81\x52\x81\x10\x43\xa9\x37\x01\x05\xb3\x4b\x93\xe4\xec\xb6\x7d\x97\x9e\xdd\x76\xee\x5e\x81\x22\x08\x06\xd1\x41\xbb\x0a\x85\x79\x41\x55\xf0\x66\x35\x61\xf1\xd5\xc2\x11\xa7\x9a\xe1\xec\xe7\x46\x4e\x1e\xa9\xae\x1e\x72\xae\x3a\x69\x3d\x6d\x74\x60\xb4\x22\x37\x1a\x2d\x8b\xe8\x4d\x48\x97\x71\x5a\xcd\xfa\x93\x76\x9e\xbf\x78\xf9\xfd\x3d\x5b\xb7\xd5\x6a\xd7\xfe\x52\x8d\xd1\xb3\x0e\xf8\xe5\x4b\x68\xab\x59\x4b\x23\x72\x13\x03\xa3\x4f\xa1\x94\xd5\x6f\xb6\xc0\xff\x38\x1f\x0a\xe7\xf5\x58\x32\x0a\xed\x7e\x4a\x3b\xcf\x2f\x5a\xf3\xb3\xf6\x34\x9d\xa5\x40\xd5\x59\x0c\x0d\x22\xcf\xb3\x2a\x91\xa5\x92\x2c\x53\x38\xf1\x64\x30\xb3\xa4\xf0\xa4\x01\x10\xad\xe6\x30\x87\x08\xb0\xb2\xc4\x74\x5e\x8b\x66\x40\x3f\xd6\x39\x2e\x2a\x96\x53\x59\x4a\xab\x52\x08\x2c\x3d\x6f\xc1\xeb\x20\xc7\xc0\xa5\xb5\x68\xd4\xe1\x1e\x8a\xf2\x1b\xf4\x87\xe3\x03\x72\x74\xc2\x22\x4f\xc8\xdf\x08\xb4\x63\xed\xc9\x96\x68\x0f\xd8\xe4\x0e\x49\x00\xf4\x3e\x59\xcd\xfd\xd5\xf0\x0d\x86\xdc\x6b\xc7\x9a\x6c\x76\x5d\x85\x82\x5f\xe7\xa1\xe0\x72\x1d\x6a\x8d\xa6\x3c\x56\x06\x59\xe3\xab\x03\x0c\x69\x92\x8c\x34\x17\x71\xd0\xcc\xa9\x4c\x6e\xd0\x04\x9c\x15\x7a\x54\x30\x4d\xd0\x27\x7b\x77\xbf\x5a\xf2\x03\xfe\x19\xb5\xc7\x90\x2d\x41\x64\x8d\xb6\xd8\x64\xe9\x47\xb8\x86\xbd\x1e\x56\x94\xd9\x8d\x59\xe7\x76\x3d\x2f\xc9\x3a\xbd\xcb\x29\xe6\xd7\x55\x41\xae\x3c\x66\x22\x89\xc1\xd7\x57\x42\x79\xa3\xb4\x07\xe1\x56\xf7\xcb\x6e\x87\x15\x7e\x2e\xee\xf7\x20\x68\x7d\x23\xed\x4d\x0d\xc4\xe7\x43\x50\x5f\x53\xbd\xc4\xa3\x41\x19\x30\x24\x8a\x26\xd6\x90\x54\xc9\xb8\x5d\xa9\xee\x80\x82\xef\xc9\xb0\x28\x49\xc1\x77\xd3\x03\x76\xfe\x70\xa5\xec\x08\xa7\x0f\x58\x4a\x6d\xeb\xe3\xbc\x9c\x6a\xce\x66\x18\x56\x73\x1f\x67\x0e\x33\xb2\x18\x0a\xda\x16\xc1\x4d\x1c\xa0\xa8\xef\x82\x7f\x9f\xf5\xef\xe2\x00\xbd\x45\xc6\x00\x57\x55\x84\x23\xc8\xbe\xf2\xdc\xf8\xfb\x90\xd8\x87\x2a\x78\x49\xf2\x7f\xc6\x1f\x4a\xf8\x47\xf9\xbb\xae\xe9\x16\x61\x37\xcc\xcb\x94\x03\x93\x97\x23\x6c\x8e\x88\x46\x06\xa5\xd3\xe1\x5e\xfa\x62\x41\xc7\x25\x2d\x2b\x32\xb6\x9b\x9d\x7a\x3d\xa3\x6d\x9c\x26\xb2\x54\x3f\x74\x37\xd6\x3e\x9a\x8d\x3b\x5c\x4f\x61\x52\xb5\xf2\x21\x79\x58\x6f\x65\xd1\x5c\x80\x09\x06\x08\xd1\x81\xb4\x0a\x3c\x4a\xb5\x2f\xe4\xf6\x03\x03\x76\x74\x23\xb8\x68\x2d\xba\xd1\x1e\xd2\x6f\x94\x6c\xb3\xdb\x2f\xda\xdc\xae\xfe\x56\xad\xb8\x85\x35\x34\x62\x0a\xac\xd0\xfb\x8c\x7d\xc4\x0d\x16\xd5\xcc\xce\xa4\x99\xc8\x59\xb8\x6f\xbe\xc6\x3c\x6b\xb7\x1e\x4a\xa5\xfa\x32\x87\xf4\xb1\xaf\x10\xcb\xbb\x79\x8c\x6f\x5c\x2e\x6b\xf8\x5b\x6d\x30\x4b\x90\xf3\xe4\x0b\x6e\xcf\x3d\xfa\x32\xc8\x0f\xc4\x55\xd9\xfe\x13\x65\x6d\x1e\xc6\x31\xb2\xda\xf4\xfb\x5f\x69\xaa\xaa\xd4\xa6\x48\xa4\x52\x1e\x43\xc8\x16\x2f\xcc\xad\x39\x47\x9e\xb3\x76\xab\x73\xbe\x6d\x2e\x28\x70\xa5\x0b\x41\x63\xf4\x5e\x2b\xcc\xce\x6e\xdf\x5c\xbe\x7d\xfd\xe9\xfd\xc7\x3f\x7e\xb9\xfa\xad\x7b\xb7\x1d\xc0\x69\x51\x91\x06\x7d\x38\x4c\xb6\xd2\x18\x9a\xd4\x10\x6d\x70\x84\xaa\xd6\xee\xa3\xc2\xde\x9a\xcc\xa5\x1a\xeb\x40\x7e\xbe\xfb\x6e\xfb\x65\x77\x7b\xf3\x28\x0d\x17\x9f\xc5\x40\x5b\xf5\x68\xf2\x4b\xe0\xb2\x08\xdd\x8b\x63\xef\x8f\xe8\x94\x64\x9c\xbf\x9c\x47\x9e\xa2\x4b\x41\x1a\x57\xc8\xda\xe0\x71\x40\xc4\x22\xb0\x97\x8c\xa3\xea\x39\x3e\x1c\x36\xfe\x0e\x00\x00\xff\xff\x23\xfb\x6e\x2b\xbf\x0d\x00\x00") + +func testFixturesDocYamlGettingStartedGuidesCoreosCloudConfigsNodeYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlGettingStartedGuidesCoreosCloudConfigsNodeYaml, + "test/fixtures/doc-yaml/getting-started-guides/coreos/cloud-configs/node.yaml", + ) +} + +func testFixturesDocYamlGettingStartedGuidesCoreosCloudConfigsNodeYaml() (*asset, error) { + bytes, err := testFixturesDocYamlGettingStartedGuidesCoreosCloudConfigsNodeYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/getting-started-guides/coreos/cloud-configs/node.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideConfigmapCommandPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x90\x31\x6b\xc3\x30\x10\x85\x77\xff\x8a\xc3\x74\x68\xa0\xaa\x71\x46\x8d\x2d\x4d\x29\xa1\x69\x28\xb4\x4b\x29\xe6\x2c\x9f\x15\x11\x4b\x67\x24\xc5\xd4\xff\xbe\x28\x98\xa4\xf1\xd0\x31\x8b\x90\xee\xbd\x3b\x7d\xf7\xb0\x37\x9f\xe4\x83\x61\x27\x61\x28\xb3\xbd\x71\x8d\x84\x2d\x37\x99\xa5\x88\x0d\x46\x94\x19\x80\x43\x4b\x12\x14\xbb\xd6\x68\xa1\x6c\x23\x22\x85\x28\x7a\x6e\xb2\xd0\x93\x4a\x0e\xc5\x2e\xa2\x71\xe4\x43\x7a\x01\x88\xa9\xe7\x68\x3c\x89\x47\x09\xc0\x58\xd4\x24\x41\x2b\x7f\x6f\xb8\xd0\xcc\xba\xa3\xea\x3c\xa1\xa8\x0f\x61\xac\xf9\x67\x72\x2b\xb6\x16\x13\xd5\x17\xe4\x45\x6d\x5c\x11\x76\xf9\x1d\xe4\x42\xa5\x93\xd4\x8e\xe1\xe6\x76\xfd\xf1\xf0\x54\x3d\xbe\x6d\x56\x2f\xcf\x55\xb9\x98\x15\x96\x8b\x1c\xbe\xa7\x61\xe4\x06\x39\x5d\xcf\x90\x17\xdd\x27\x15\x60\xc0\xee\x40\x2b\xcf\x56\xfe\x29\xc2\x94\xc3\x2b\xf6\x6b\x1a\xdf\xa9\xbd\x14\x61\xb6\x78\x6b\xb4\xc5\x7e\x66\xd9\xd3\x28\x21\x85\x2b\xca\x7f\x61\x96\xd7\x85\x49\xdf\x79\x0a\x11\x7d\xdc\x72\x67\xd4\x28\x61\x43\x03\xf9\xec\x37\x00\x00\xff\xff\x9b\x1a\x25\x7d\x25\x02\x00\x00") + +func testFixturesDocYamlUserGuideConfigmapCommandPodYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideConfigmapCommandPodYaml, + "test/fixtures/doc-yaml/user-guide/configmap/command-pod.yaml", + ) +} + +func testFixturesDocYamlUserGuideConfigmapCommandPodYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideConfigmapCommandPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/configmap/command-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideConfigmapConfigmapYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2c\xc8\x0c\x4b\x2d\x2a\xce\xcc\xcf\xb3\x52\x28\x33\xe4\xca\xce\xcc\x4b\xb1\x52\x70\xce\xcf\x4b\xcb\x4c\xf7\x4d\x2c\xe0\xca\x4d\x2d\x49\x4c\x49\x2c\x49\xb4\xe2\x52\x50\xc8\x4b\xcc\x4d\xb5\x52\x28\x49\x2d\x2e\xd1\x4d\x06\x2b\xc8\x4d\x2c\xe0\x82\x49\x82\x68\x5d\x43\x2b\x85\xb2\xc4\x9c\xd2\x54\x5d\x43\x98\x88\x11\x4c\xc4\x88\x0b\x10\x00\x00\xff\xff\x21\xcc\x3c\xb6\x6a\x00\x00\x00") + +func testFixturesDocYamlUserGuideConfigmapConfigmapYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideConfigmapConfigmapYaml, + "test/fixtures/doc-yaml/user-guide/configmap/configmap.yaml", + ) +} + +func testFixturesDocYamlUserGuideConfigmapConfigmapYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideConfigmapConfigmapYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/configmap/configmap.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideConfigmapEnvPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x90\x41\x4f\xc3\x20\x14\xc7\xef\xfd\x14\x2f\x3d\x8b\xcd\x3c\x72\xd4\x38\x63\x16\xe7\x62\xa2\x17\x63\x9a\x57\xfa\x8a\x64\xe5\xbd\x06\x18\xb1\xdf\xde\xb0\x34\x9b\xee\xe0\xd1\x0b\x01\xfe\x3f\xe0\xf7\x07\x27\xf7\x46\x21\x3a\x61\x0d\x79\x55\xed\x1d\xf7\x1a\x76\xd2\x57\x9e\x12\xf6\x98\x50\x57\x00\x8c\x9e\x34\x18\xe1\xc1\x59\x45\x9c\x55\xa2\x98\xd4\x24\x7d\x15\x27\x32\x85\x30\xc2\x09\x1d\x53\x88\x65\x05\xa0\x96\x33\x47\xf0\x14\x1e\x23\x00\xe7\xd1\x92\x06\x6b\xc2\xb5\x93\xc6\x8a\xd8\x91\xda\xf3\x0d\x4d\x77\x88\x73\x27\x5f\x0b\x6d\xc4\x7b\x2c\x56\xef\x50\x37\x9d\xe3\x26\x7e\xd6\x57\x50\x2b\x53\x46\xe2\x5c\xc3\xc7\x42\x12\x67\xbd\x4c\xcf\x06\x9b\xd7\xdb\xfb\xf6\xee\x79\xbb\x7e\x7c\x68\x57\xa7\x14\x20\xe3\x78\xa0\x75\x10\xaf\x7f\x6c\xc2\x52\xf2\x09\xa7\x0d\xcd\x2f\x34\xfc\x0e\xe1\xa2\xd5\xe0\xac\xc7\xe9\x02\xd9\xd3\xac\xa1\xfc\x9c\x5a\xfd\x29\x73\xf3\xbf\x32\xe5\xb9\x40\x31\x61\x48\x3b\x19\x9d\x99\x35\x6c\x29\x53\xa8\xbe\x03\x00\x00\xff\xff\x7d\xc3\xa1\x04\x02\x02\x00\x00") + +func testFixturesDocYamlUserGuideConfigmapEnvPodYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideConfigmapEnvPodYaml, + "test/fixtures/doc-yaml/user-guide/configmap/env-pod.yaml", + ) +} + +func testFixturesDocYamlUserGuideConfigmapEnvPodYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideConfigmapEnvPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/configmap/env-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideConfigmapRedisRedisPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\x4d\x4b\xc3\x40\x10\xbd\xe7\x57\x3c\x7a\x4f\xb5\x08\x8a\x73\x13\xf4\x58\x28\x2a\xde\xc7\x64\xac\x4b\xb3\x1f\xec\xce\x06\x8b\xf8\xdf\x25\x9b\x26\x6d\x04\x6f\x99\xf7\xb5\xf3\x26\x1c\xcc\x9b\xc4\x64\xbc\x23\xf4\x9b\xea\x60\x5c\x4b\xd8\xf9\xb6\xb2\xa2\xdc\xb2\x32\x55\x80\x63\x2b\x84\x28\xad\x49\x55\x0a\xd2\x0c\x58\xe3\x9d\xb2\x71\x12\xd3\x30\xd5\x0b\x0d\x00\x18\xcb\x7b\x21\x1c\xf2\xbb\x44\x27\x2a\xe9\xaa\x70\xd4\x6f\x0a\x2d\xae\xa7\xf2\x31\x39\xb7\x0f\x2f\xaf\x4f\xcf\x05\x02\x7a\xee\xb2\x10\x56\x1a\xb3\xac\x0a\x16\x7c\xd4\x34\x39\xe6\xb7\x77\x3e\x2a\xe1\xf6\xe6\xee\xbe\x30\x51\x92\xcf\xb1\x91\x93\x10\xe8\x8c\x35\x3a\x4f\x40\x13\x32\x61\x75\xbd\xde\x8c\xa1\xbd\xef\xb2\x95\xad\xcf\xee\x9c\x6d\x87\x69\xc7\xfa\x49\x18\x37\xae\x2d\x27\x95\x58\x0f\xc7\x38\x05\x8d\x1b\xcf\xc0\xff\xa6\x85\xbe\xf1\xee\xc3\xec\xab\xe9\xd9\xb4\xec\x7f\x11\x2f\x36\xe8\xf1\xd1\x44\xc2\xf7\xcf\x42\x33\x27\x94\x2e\x65\xd8\x72\x38\xd7\x1b\x55\xf2\xc5\x36\x74\x52\x8f\x8b\x2c\x3c\x80\x51\xb1\x17\x07\xa9\x71\x90\xe3\xe9\xb7\xfd\x95\x02\xa1\x34\x2a\xe4\x7a\x20\xab\xdf\x00\x00\x00\xff\xff\x8d\x60\x4a\x44\x2e\x02\x00\x00") + +func testFixturesDocYamlUserGuideConfigmapRedisRedisPodYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideConfigmapRedisRedisPodYaml, + "test/fixtures/doc-yaml/user-guide/configmap/redis/redis-pod.yaml", + ) +} + +func testFixturesDocYamlUserGuideConfigmapRedisRedisPodYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideConfigmapRedisRedisPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/configmap/redis/redis-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideConfigmapVolumePodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x91\xc1\x6e\x03\x21\x0c\x44\xef\x7c\x85\xb5\xe7\x52\x94\x2b\xff\x90\x2a\xa7\x5e\xaa\xaa\x72\x58\x87\x58\x59\x30\x02\x27\xea\xfe\x7d\x45\xb2\xdd\x34\x55\x2e\x48\x78\x86\xe1\x0d\x60\xe1\x77\xaa\x8d\x25\x7b\xb8\x6c\xcc\x89\xf3\xe8\x61\x27\xa3\x49\xa4\x38\xa2\xa2\x37\x00\x19\x13\x79\x08\x92\x0f\x1c\xed\x45\xa6\x73\x22\xab\xd4\xd4\x16\x19\x4d\x2b\x14\xba\x29\x48\x56\xe4\x4c\xb5\xf5\x1d\x80\x5d\x8e\x5d\x8d\xab\x78\x95\x00\x38\x61\x24\x0f\x31\xd4\x57\x16\x17\x45\xe2\x44\x5f\xf7\x04\xb7\x3f\xb7\x79\x2f\xdf\x8b\x3b\x48\x4a\xd8\xc1\x3e\x60\x70\x7b\xce\xae\x1d\x87\x17\x18\x6c\xe8\x6b\x40\x05\x47\x1a\xdc\x8d\xcf\x15\xd4\xa3\x53\x71\x9d\x8b\x71\xb2\x27\x9a\x07\xf8\x5c\x92\x6e\xf0\x5b\x39\x67\x5d\x30\xef\xa0\x0f\xfd\x16\x0d\x20\x75\xef\x0e\xf5\xe8\xff\xde\x62\x7e\xa3\xfe\x95\x7d\x96\x71\x9b\x6d\xb1\xf8\x35\xf4\xf1\x65\x0e\x1c\x13\x96\x55\x64\xa5\xd4\xee\x5e\x0b\x27\x9a\x3d\xf4\xbf\xb0\x9b\x75\x0a\x50\xae\x4c\x4f\xda\x1a\x80\x4a\x4d\xb1\xea\x4e\x26\x0e\xb3\x87\x37\xba\x50\xfd\x09\x00\x00\xff\xff\xa2\xe1\x16\xc4\xea\x01\x00\x00") + +func testFixturesDocYamlUserGuideConfigmapVolumePodYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideConfigmapVolumePodYaml, + "test/fixtures/doc-yaml/user-guide/configmap/volume-pod.yaml", + ) +} + +func testFixturesDocYamlUserGuideConfigmapVolumePodYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideConfigmapVolumePodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/configmap/volume-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideDeploymentYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8e\x3d\x4e\xc5\x30\x10\x84\x7b\x9f\x62\x2e\x10\xc1\x13\x0d\x72\x4d\x49\x41\x45\xbf\xcf\x19\x05\x0b\x7b\x6d\xd9\x2b\x14\x6e\x8f\x2c\x7e\x92\x10\xbd\xa9\x2c\xeb\x9b\x6f\x47\x6a\x7c\x65\xeb\xb1\xa8\x07\x57\xa3\x8e\x67\xbf\xfb\xb8\x5c\x69\x72\x81\x7b\x8f\x3a\x7b\x3c\xb1\xa6\xf2\x99\xa9\xe6\x32\x4d\x66\x31\xf1\x0e\x50\xc9\xf4\xd0\x25\xea\x3a\xcd\x1b\x02\x24\xb9\x32\xf5\x81\xdc\x84\x7a\x65\x18\x40\x63\x4d\x31\x48\xf7\x78\x70\x40\x67\x62\xb0\xd2\xbe\xab\x59\x2c\xbc\x3d\xef\x5c\x07\x9b\x03\x8c\xb9\x26\x31\xfe\xe0\xbb\x69\x23\xe9\xd0\xfc\xdf\x05\x7e\x27\x8c\x84\xa2\x26\x51\xd9\xfe\xf8\xe9\xc4\x8f\xc4\x2c\xcb\xe9\xb3\x96\x66\xbb\x3b\xd3\x66\x7b\x29\xcd\x3c\x1e\xef\xdd\x57\x00\x00\x00\xff\xff\xff\x73\x33\x7d\x68\x01\x00\x00") + +func testFixturesDocYamlUserGuideDeploymentYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideDeploymentYaml, + "test/fixtures/doc-yaml/user-guide/deployment.yaml", + ) +} + +func testFixturesDocYamlUserGuideDeploymentYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideDeploymentYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/deployment.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideDownwardApiDapiPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x90\xcf\x4a\xf4\x30\x14\xc5\xf7\x7d\x8a\x4b\xd7\x5f\xa7\x7c\xdb\xec\x06\xff\xa0\x8b\x99\x09\x8e\x08\x22\x52\x6e\x93\x3b\x6d\xb0\xc9\x0d\x49\x5a\x9c\xb7\x97\x96\x3a\x53\x41\xdd\xa8\x9b\x90\x9c\x73\x38\xbf\x43\xd0\x9b\x07\x0a\xd1\xb0\x13\x30\xfc\xcf\x5e\x8c\xd3\x02\x24\xeb\xcc\x52\x42\x8d\x09\x45\x06\xe0\xd0\x92\x00\x8d\xde\x14\x89\x62\x2a\x3c\xeb\x2c\x7a\x52\xa3\xa7\xd8\x25\x34\x8e\x42\x1c\x5f\x00\xc5\x9c\x9e\x82\x27\x73\xb2\x00\x8c\xc5\x86\x04\x34\x2a\xac\x0c\x97\x0d\x73\xd3\x51\x75\x6e\x28\xeb\x3e\x1e\x6b\x7e\x9d\xd3\x8a\xad\xc5\x71\xcf\x13\xe4\x65\x6d\x5c\x19\xdb\xfc\x1f\xe4\x85\x1a\x4f\x72\x43\x0e\xcf\x73\x92\xdc\x20\xe6\xeb\x79\xc1\xe6\xb1\x92\xbb\xcb\x6a\xbb\xde\x5c\x9d\x3c\x80\x01\xbb\x9e\xae\x03\x5b\xb1\x10\x01\x0e\x86\x3a\x7d\x47\x87\x8f\xea\xac\x4b\x4c\xad\x80\xf7\x1f\x59\x8d\xf5\xdf\xd1\xf6\x72\x7d\xf1\x07\xc8\xe8\x51\x7d\xc9\xbd\x95\xbf\x02\x8c\x09\x53\x1f\x57\x9e\xf5\xa2\x70\x81\xba\xd9\xed\xef\x7f\xc4\xfa\x04\xd6\x72\x4c\x53\x65\xa0\x98\x30\x24\xc9\x9d\x51\x47\x01\x5b\x1a\x28\x64\x6f\x01\x00\x00\xff\xff\xd9\x21\x72\xba\xa1\x02\x00\x00") + +func testFixturesDocYamlUserGuideDownwardApiDapiPodYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideDownwardApiDapiPodYaml, + "test/fixtures/doc-yaml/user-guide/downward-api/dapi-pod.yaml", + ) +} + +func testFixturesDocYamlUserGuideDownwardApiDapiPodYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideDownwardApiDapiPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/downward-api/dapi-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideDownwardApiVolumeDapiVolumeYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\xb1\x8e\xdb\x30\x0c\xdd\xfd\x15\x84\xe7\xea\x82\x3b\xa0\x8b\x32\x75\xec\x50\x34\xe8\xd0\x25\x08\x0a\x5a\xa2\x63\x35\x32\x69\x48\xf4\xe5\xae\x5f\x5f\xc8\xf6\x35\xba\x43\xa6\x2e\x02\xf4\x1e\xdf\x23\xf5\x44\x9c\xc2\x4f\x4a\x39\x08\x5b\x78\x7e\x6c\x2e\x81\xbd\x85\x83\xf8\x66\x24\x45\x8f\x8a\xb6\x01\x60\x1c\xc9\xc2\x65\xee\x28\x31\x29\x65\xe3\xe5\xca\x57\x4c\x1e\xa7\x60\x9e\x25\xce\x23\x19\x7a\xc1\x71\x8a\xd4\x00\x44\xec\x28\xe6\xa2\x03\xf8\x23\x4c\x16\xe6\x6c\x28\xab\x71\x82\x59\x17\xd8\xc5\x39\x2b\x25\x0b\xba\xe0\xeb\xed\x71\xa1\x12\xba\x8b\x5d\x4e\xf3\xf4\xd4\x00\x20\xb3\x28\x6a\x10\xde\x2c\xbb\x39\x44\x6f\x41\xaf\x72\xbb\x16\xab\xdf\x32\xb0\xf1\x42\x4d\x9e\xc8\x95\x52\x27\xac\x18\x98\xd2\x26\x34\xdb\x3b\x5c\x0c\xc4\x65\x9a\x8d\x5e\x48\x80\x30\xe2\x99\x2c\x9c\x5d\x7a\x08\xb2\x3b\x8b\x9c\x23\xfd\xba\x79\xec\xba\x39\xbf\x76\xf2\xb2\x55\x3b\x19\x47\x2c\x59\x1d\xdb\x3c\xb4\x9f\xa0\x35\xae\x9c\xd7\x21\x44\x02\x4d\x33\xed\xc1\x0b\x84\x1e\x8e\x47\x30\x04\x3b\x52\xb7\x5b\x83\x81\xd3\x69\x0f\x3a\x10\x83\x43\xad\x89\x3d\xf4\x61\xff\x41\x52\xbd\xfe\x8e\xae\x62\x57\x71\x8e\x44\x13\x7c\x2e\xbd\x99\xda\xd3\x36\xeb\xfa\x43\xdf\x64\x66\xdd\xa2\xa8\xe3\x98\xc4\x07\xee\xe5\x1f\x0e\x30\x96\xca\x03\xea\x60\x97\x36\x15\x93\x08\xfd\x77\x8e\xaf\x16\x7a\x8c\xb9\x7c\xf6\xea\xfd\x21\xe1\xf7\x96\x6f\xcb\xf2\xe5\xf0\xf5\xd6\x3d\x28\x8d\xd5\x30\x45\x3b\x2d\x1d\xdb\x35\x8c\xb6\xa2\x00\xfa\x40\xd1\xff\xa0\xde\xbe\x43\x37\x7c\x9d\xf4\x6d\x5f\x1f\x56\xfd\x3d\xe7\x2a\xae\xff\xb7\xaf\x4c\x9a\xbf\x01\x00\x00\xff\xff\x5b\xb5\xb9\x55\x3d\x03\x00\x00") + +func testFixturesDocYamlUserGuideDownwardApiVolumeDapiVolumeYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideDownwardApiVolumeDapiVolumeYaml, + "test/fixtures/doc-yaml/user-guide/downward-api/volume/dapi-volume.yaml", + ) +} + +func testFixturesDocYamlUserGuideDownwardApiVolumeDapiVolumeYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideDownwardApiVolumeDapiVolumeYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/downward-api/volume/dapi-volume.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideEnvironmentGuideBackendRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x90\xcd\x6e\x23\x21\x10\x84\xef\x3c\x45\xbf\x00\xfe\xd1\x6a\x2f\xdc\x2c\xef\xee\x6d\x13\xe4\x44\xb9\x46\x6d\xa6\x3d\x41\xee\xa1\x11\xe0\x89\xfc\xf6\x11\xb2\x43\x70\x24\x1f\xd3\x37\xaa\xa8\xaf\x0b\xb4\xd6\x0a\xa3\x7f\xa1\x94\xbd\x04\x03\xf3\x5a\x1d\x7d\x18\x0c\xec\x28\xb2\x77\x58\xbc\x84\xad\x84\x92\x84\x99\x92\x9a\xa8\xe0\x80\x05\x8d\x02\x08\x38\x91\x81\x3d\xba\x23\x85\x41\x27\xa7\x00\x18\xf7\xc4\xb9\x9a\x00\xe5\x1c\x3b\xbb\x9e\x54\x8e\xe4\xaa\x99\x2e\xec\x6c\xe0\x97\x02\x28\x34\x45\xc6\x42\x97\x58\xbf\xa1\x4e\x8f\xbc\x83\xad\xf2\x27\xba\x8e\x93\x50\xd0\x07\x4a\x2d\xa6\xbf\x95\x6d\x37\x1a\xd6\x4f\x38\x92\x81\xd1\xa5\x85\x97\xe5\x28\x32\x32\xe9\x8c\x53\x64\xca\x4b\x0a\xb3\xbe\x46\xcd\x7a\xb1\xbe\x0d\xd9\x13\xb3\x15\xf6\xee\x6c\x60\xc3\xef\x78\xce\xcd\x8f\x92\x4a\x57\x5d\x7f\x35\xb3\x92\x8a\x81\xdf\xab\xd5\xaa\xb9\x00\x31\x49\x11\x27\x6c\xe0\x79\x6b\x9b\x4e\x61\xee\x11\x97\x87\xd8\xc7\x3f\xaf\x0f\x9b\xff\x7f\xbb\xf4\x8c\x7c\xa2\x7f\x49\x26\xd3\x89\x00\x07\x4f\x3c\xec\xe8\x70\xab\x5e\x75\x8b\xe5\xcd\xb4\x2f\x5f\x54\xf6\xdd\x55\x4f\x76\xb3\xfd\x81\x7d\x39\xa2\x23\xf5\x11\x00\x00\xff\xff\xda\xcb\xb6\xbb\x87\x02\x00\x00") + +func testFixturesDocYamlUserGuideEnvironmentGuideBackendRcYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideEnvironmentGuideBackendRcYaml, + "test/fixtures/doc-yaml/user-guide/environment-guide/backend-rc.yaml", + ) +} + +func testFixturesDocYamlUserGuideEnvironmentGuideBackendRcYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideEnvironmentGuideBackendRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/environment-guide/backend-rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideEnvironmentGuideBackendSrvYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\xcc\x31\xca\xc3\x30\x0c\x05\xe0\x5d\xa7\x78\x17\x30\xe4\x1f\xfe\x45\x6b\x2f\x50\x68\xe9\xae\x38\x1a\x4c\x1c\xcb\xc8\x22\xd0\xdb\x97\x78\xea\xd2\x4d\xe2\x7b\xef\xa5\x94\x48\x7a\x79\xa9\x8f\x62\x8d\x71\xfe\xd1\x5e\xda\xc6\x78\xa8\x9f\x25\x2b\x1d\x1a\xb2\x49\x08\x13\xd0\xe4\x50\xc6\x2a\x79\xd7\xb6\xa5\xe1\x27\x01\x55\x56\xad\xe3\x52\x20\xde\xfd\xcb\xaf\x8f\x46\xd7\x7c\x61\x37\x8f\x99\x4a\xf3\x64\xfc\x2f\xcb\x32\x4b\xdd\x2d\x2c\x5b\x65\x3c\x6f\x77\x02\x86\x56\xcd\x61\xfe\x73\xf2\x13\x00\x00\xff\xff\x45\xfa\xc6\xaa\xb3\x00\x00\x00") + +func testFixturesDocYamlUserGuideEnvironmentGuideBackendSrvYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideEnvironmentGuideBackendSrvYaml, + "test/fixtures/doc-yaml/user-guide/environment-guide/backend-srv.yaml", + ) +} + +func testFixturesDocYamlUserGuideEnvironmentGuideBackendSrvYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideEnvironmentGuideBackendSrvYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/environment-guide/backend-srv.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideEnvironmentGuideShowRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x91\xcb\x8e\xdb\x30\x0c\x45\xf7\xfa\x0a\xfe\x80\xf2\x40\x37\x81\x76\x46\x9a\xee\xda\x1a\x4e\x9b\x6d\xc0\x2a\x8c\x23\x94\x12\x05\x49\x71\x90\xbf\x1f\x68\x32\xf1\x38\xf3\x58\x8e\x56\xc6\xbd\x38\x87\x34\xa8\xb5\x56\x18\xdd\x8e\x52\x76\x12\x0c\x0c\x4b\xf5\xdf\x85\x83\x81\x8e\x22\x3b\x8b\xc5\x49\x58\x4b\x28\x49\x98\x29\x29\x4f\x05\x0f\x58\xd0\x28\x80\x80\x9e\x0c\xe4\x93\x5c\x74\xb2\x0a\x80\xf1\x1f\x71\xae\x0d\x40\xb9\xc6\x7b\x57\x3f\x55\x8e\x64\x6b\x93\x6e\xd6\x6c\xe0\x9b\x02\x28\xe4\x23\x63\xa1\x1b\x33\x75\xd7\x37\xf5\x7d\xe4\xac\xd9\xdd\x5b\x9f\x95\x50\xd0\x05\x4a\x23\xa3\xa7\x3b\x8e\xf5\x28\x74\x1e\x7b\x32\xd0\xdb\x34\x73\x32\xef\x45\x7a\x26\x9d\xd1\x47\xa6\x3c\xa7\x30\xe8\xca\x99\xe5\x6c\xf9\x48\xb4\x67\xe6\x56\xd8\xd9\xab\x81\x86\x2f\x78\xcd\x63\x1f\x25\x95\xc9\xc6\xfa\x75\xa7\x56\x52\x31\xb0\x5a\xac\x16\x63\x0b\x10\x93\x14\xb1\xc2\x06\xfe\xac\xdb\x31\xa7\x30\x4c\x15\xb7\x5f\xf8\xbb\xdd\x74\xfb\x5d\xd3\x4d\xe8\x01\xf9\x4c\x06\x9c\xaf\x53\x31\x14\x70\xe1\x28\xc9\x3f\x9f\xec\x1d\xdf\xfe\xfe\xbe\xff\xd5\xfc\xdc\xbc\xe5\x7f\x24\xf1\x66\x12\x02\x1c\x1d\xf1\xa1\xa3\xe3\x63\xfa\x92\xb7\x58\x4e\x66\xbc\xd4\xac\xba\x3f\x1d\xb5\x6d\x9b\xf5\x17\xcc\xcb\x11\x2d\xa9\xa7\x00\x00\x00\xff\xff\x3e\xb5\x88\xe6\xb8\x02\x00\x00") + +func testFixturesDocYamlUserGuideEnvironmentGuideShowRcYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideEnvironmentGuideShowRcYaml, + "test/fixtures/doc-yaml/user-guide/environment-guide/show-rc.yaml", + ) +} + +func testFixturesDocYamlUserGuideEnvironmentGuideShowRcYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideEnvironmentGuideShowRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/environment-guide/show-rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideEnvironmentGuideShowSrvYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8d\xb1\x8e\x02\x31\x0c\x44\x7b\x7f\xc5\xfc\x40\xa4\xbb\xee\x94\xf2\xae\xbd\x62\x25\x10\xbd\xc9\x5a\x10\x91\x8d\x23\xc7\x5a\xc4\xdf\xa3\xcd\x42\x47\x37\xf2\x1b\xbf\x09\x21\x10\xb7\x7c\x12\xeb\x59\x6b\xc4\xfa\x4d\xb7\x5c\xe7\x88\x83\xd8\x9a\x93\xd0\x22\xce\x33\x3b\x47\x02\x2a\x2f\x12\xd1\xaf\x7a\x0f\xdd\x56\x02\x0a\x9f\xa5\xf4\x0d\x01\xfe\x68\x6f\xb8\x45\xea\x4d\xd2\x46\xf6\xfb\xbf\xf2\xfc\xcb\x85\x6b\x12\x23\xa0\xa9\xf9\xf8\x0b\x23\x46\xfc\x7c\x0d\x49\x33\x75\x4d\x5a\x22\x8e\x7f\xd3\xae\x65\xbb\x88\x4f\xaf\xd2\xa8\x75\x29\x92\x5c\xed\xf3\xee\x33\x00\x00\xff\xff\x8e\x2e\xad\xec\xd2\x00\x00\x00") + +func testFixturesDocYamlUserGuideEnvironmentGuideShowSrvYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideEnvironmentGuideShowSrvYaml, + "test/fixtures/doc-yaml/user-guide/environment-guide/show-srv.yaml", + ) +} + +func testFixturesDocYamlUserGuideEnvironmentGuideShowSrvYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideEnvironmentGuideShowSrvYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/environment-guide/show-srv.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideHorizontalPodAutoscalingHpaPhpApacheYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xb1\x4e\x43\x31\x0c\x45\xf7\x7c\x85\x7f\x00\xd1\x37\xb0\x64\x43\x2c\x8c\x55\x25\xd8\xdd\xe4\xb6\xb5\xc8\xb3\xa3\xc4\x41\x55\xbf\x1e\xe5\xb5\x03\x43\xb7\xab\x93\xe8\x1c\x73\x95\x6f\xb4\x2e\xa6\x91\x70\x75\xe8\x9c\xfd\xf5\x77\x39\xc2\x79\x09\x3f\xa2\x39\xd2\xa7\x35\xb9\x99\x3a\x97\xbd\xe5\xf7\xe1\xd6\x13\x17\xb4\xb0\xc2\x39\xb3\x73\x0c\x44\xca\x2b\x22\xd5\x4b\x7d\xe1\xca\xe9\x82\x07\xea\x95\x13\x22\x65\x9c\x78\x14\x0f\xbd\x22\xcd\xdf\x9b\xe0\x80\xd3\xdc\x44\xf7\xca\x01\xb5\x48\x62\x17\xd3\x0f\x53\x6f\x56\x66\x63\xbe\x3f\x71\x13\xf5\x71\x6c\xe8\x36\xda\xf4\x6f\xbe\x40\xb4\x8a\x3e\x34\x3d\xd2\x32\x01\x5f\xff\x81\x5d\x20\x4a\x75\x7c\xb9\x14\xb9\x6d\xa5\xfb\x01\xce\xed\x0c\xdf\xa3\x25\xa8\xf3\x19\x91\xde\x76\xe1\x2f\x00\x00\xff\xff\x28\x5a\x31\xad\x1b\x01\x00\x00") + +func testFixturesDocYamlUserGuideHorizontalPodAutoscalingHpaPhpApacheYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideHorizontalPodAutoscalingHpaPhpApacheYaml, + "test/fixtures/doc-yaml/user-guide/horizontal-pod-autoscaling/hpa-php-apache.yaml", + ) +} + +func testFixturesDocYamlUserGuideHorizontalPodAutoscalingHpaPhpApacheYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideHorizontalPodAutoscalingHpaPhpApacheYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/horizontal-pod-autoscaling/hpa-php-apache.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideIngressYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xca\x31\x0a\x02\x41\x0c\x46\xe1\x3e\xa7\xc8\x05\x44\xb7\x93\xdc\xc0\x46\xac\xec\xb3\x33\x3f\x12\x96\xcd\x0e\x93\x30\x78\x7c\x19\x10\xb1\x7b\xf0\x3d\x6d\xf6\x44\x0f\x3b\x5c\x18\xef\x84\xcf\x8c\xf3\x58\x56\xa4\x2e\xb4\x99\x57\xe1\x9b\xbf\x3a\x22\x68\x47\x6a\xd5\x54\x21\x66\xd7\x1d\xc2\x89\xc8\x93\x7d\x39\x1a\xca\xa4\x55\xcb\x06\xaf\x33\x99\x03\x7d\x58\xc1\xfd\xb7\xc7\x28\xff\xf0\x38\x7a\x0a\x5f\x2f\x44\x9f\x00\x00\x00\xff\xff\x04\x9f\x49\xb6\x8b\x00\x00\x00") + +func testFixturesDocYamlUserGuideIngressYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideIngressYaml, + "test/fixtures/doc-yaml/user-guide/ingress.yaml", + ) +} + +func testFixturesDocYamlUserGuideIngressYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideIngressYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/ingress.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideJobYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x8e\xcf\x6a\xc3\x30\x0c\x87\xef\x7e\x0a\xe1\xd3\x06\x09\xcb\x76\x34\xec\x05\x06\x1b\x3b\xed\x32\x7a\x90\x1d\x91\x8a\xfa\x1f\xb6\x9a\xd2\xb7\x2f\x82\x26\xb4\xbf\x8b\xa4\x8f\x4f\x42\x58\xf9\x8f\x5a\xe7\x92\x1d\x78\x94\x70\x7c\x5b\xdf\xcd\x89\xf3\xec\xe0\xab\x78\x93\x48\x70\x46\x41\x67\x00\x32\x26\x72\x50\xd9\xf4\x4a\x41\x81\x50\xaa\x11\x85\xb4\x07\x78\x54\x35\xbb\xae\xc3\xb6\xa2\x09\x25\x0b\x72\xa6\xd6\x37\x32\x3e\xcb\x1a\x4e\xb8\x28\xa1\x16\x77\x16\x4a\x4a\xa8\x9f\xfd\x5b\xe5\x76\x00\xb0\xe3\xb7\xe7\x25\x9f\xd3\xa7\xaf\x6c\x07\xb0\xe3\x25\x92\xd6\xda\x38\x0b\xf8\xca\x2f\x1f\xd3\x34\xbd\xda\xc3\xfd\x4a\xa3\x2e\xd8\xe4\xb7\x44\x0e\x57\x07\x3f\xb4\x52\x33\xe6\x16\x00\x00\xff\xff\x88\x8f\xaf\xe9\x06\x01\x00\x00") + +func testFixturesDocYamlUserGuideJobYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideJobYaml, + "test/fixtures/doc-yaml/user-guide/job.yaml", + ) +} + +func testFixturesDocYamlUserGuideJobYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideJobYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/job.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideLivenessExecLivenessYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xb1\x6e\xc3\x30\x0c\x44\x77\x7f\xc5\xfd\x80\x2a\x7b\x68\x07\x05\xe8\xd4\x0f\x08\x50\xa0\x6b\x41\xcb\xac\x4d\x44\x12\x0d\x49\x09\x92\xbf\x2f\xec\x38\x70\x86\x6c\xc7\x3b\x8a\x78\x27\x9a\xe5\x87\x73\x11\x4d\x0e\x97\xae\x39\x49\x1a\x1c\x8e\x3a\x34\x91\x2b\x0d\x54\xc9\x35\x40\xa0\x9e\x43\x59\x14\x50\xb9\x54\x87\x20\x17\x4e\x5c\x4a\x03\x24\x8a\xbc\x1b\x86\xaf\xec\x9b\x32\xb3\x5f\xd6\xbd\xa6\x4a\x92\x38\xaf\x8f\x0d\x28\x8f\xdb\x19\x03\xdb\x4b\xb2\x65\xda\x26\xe3\x37\xc1\x7e\x52\xe8\x09\x9f\xb0\x35\xce\x76\x62\x0a\x75\x3a\xa0\x04\xe6\x19\x5d\x7b\x40\x8e\x30\xf9\xef\x55\xfa\xd1\xb6\xeb\x11\x89\x34\xb2\xc3\xe8\xf3\x9b\xa8\x1d\x55\xc7\xc0\xbf\x3b\x8a\xed\xcf\xe5\xd6\xeb\x75\xdd\x7d\x70\x1f\xb3\xf6\x7c\x47\x03\x96\x0e\x0f\xbd\x94\x88\x91\xd2\xb0\x1b\x06\x9e\xea\xd3\xf4\x84\xb2\xb9\x92\xa4\x0a\x85\x2f\x0e\x74\xfb\x66\xaf\x69\x28\x0e\xdd\xfb\x96\x56\x89\xac\xe7\xba\x07\xab\xff\xea\x1f\xff\x03\x00\x00\xff\xff\x51\xa3\x2c\xf5\x9e\x01\x00\x00") + +func testFixturesDocYamlUserGuideLivenessExecLivenessYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideLivenessExecLivenessYaml, + "test/fixtures/doc-yaml/user-guide/liveness/exec-liveness.yaml", + ) +} + +func testFixturesDocYamlUserGuideLivenessExecLivenessYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideLivenessExecLivenessYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/liveness/exec-liveness.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideLivenessHttpLivenessYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x50\x4d\x6a\xf3\x30\x10\xdd\xfb\x14\xef\x02\xfe\x9c\x2c\x3e\x08\xda\x95\x16\xda\x65\xa0\x50\xba\x2b\x13\xfb\x61\x8b\x4a\x1a\x23\x4d\x5c\xda\xd3\x17\x3b\x4e\x9c\x45\xb5\xd2\xbc\x5f\x69\x64\xf4\x6f\xcc\xc5\x6b\x72\x98\xf6\xd5\xa7\x4f\x9d\xc3\x51\xbb\x2a\xd2\xa4\x13\x13\x57\x01\x41\x4e\x0c\x65\xbe\x01\xc6\x62\x0e\xc1\x4f\x4c\x2c\xa5\x02\x92\x44\x6e\x40\x3d\x98\x8d\x55\x19\xd9\xce\xf2\x56\x93\x89\x4f\xcc\x8b\xb9\x86\xe4\x7e\x8d\xa9\xd1\x14\xe6\x89\x79\x99\x7c\x94\x9e\x0e\x7d\x9b\xff\x79\x6d\x7a\xd5\x3e\xf0\x63\x33\x37\x77\x75\xb8\x55\x1d\xb3\x9e\x78\x49\x03\xe6\xda\x67\xda\x75\x04\x46\xb1\xc1\xa1\x19\x28\xc1\x86\x9f\x0d\xd6\x6c\x0e\x87\xdd\x61\x77\x83\x66\xeb\x0b\xa5\x5b\x5f\x79\x3d\xf5\xfa\xb3\xf7\xfa\xf1\x5c\x4c\x63\x7d\xd1\xdc\x29\x80\x49\xc2\x99\x0e\x0f\x5f\x2c\x1a\xb9\x52\x3e\x79\xf3\x12\x9e\x18\xe4\xfb\x95\xad\xa6\xae\x38\xec\xff\xaf\xac\xf9\x48\x3d\xdb\x46\x2c\xf8\x5f\x4b\xfc\x0d\x00\x00\xff\xff\x77\x95\xff\xf0\x9b\x01\x00\x00") + +func testFixturesDocYamlUserGuideLivenessHttpLivenessYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideLivenessHttpLivenessYaml, + "test/fixtures/doc-yaml/user-guide/liveness/http-liveness.yaml", + ) +} + +func testFixturesDocYamlUserGuideLivenessHttpLivenessYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideLivenessHttpLivenessYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/liveness/http-liveness.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideLoggingDemoSynthetic_0_25lpsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x6b\x1c\x39\x10\xc5\xef\xfd\x29\x1e\x33\x06\xdb\xec\xf6\x60\xaf\x67\x0f\xdb\x83\x4f\x0b\x39\x87\x60\x72\x09\x01\xd7\x48\x35\xad\x22\xea\x52\x47\xaa\xb6\x99\x6f\x1f\xa4\xe9\xfc\x31\x84\x9c\xba\xaa\x4b\xbc\x7a\xfa\xe9\x6d\xf1\x14\xa4\x60\x4e\x1e\x65\x66\x27\x27\x71\x64\x92\x14\x2e\x33\x19\x17\x90\x42\xb4\x18\xa9\x63\xa4\x13\x08\xe5\xac\x16\xd8\xc4\x21\xa6\x71\xe4\xbc\xc3\x53\xe0\xb5\xee\xb6\x90\x82\x22\xd3\x1c\xcf\x20\xcc\x39\x8d\x99\x26\x58\x20\xc3\x6b\x96\xaa\x97\x16\x83\x05\x46\x48\xc5\x94\xa6\x26\x5a\xfb\x39\xf9\xbf\x41\x70\x69\x51\xc3\x6b\x10\x17\x20\xea\x32\x4f\xac\x56\xba\x2d\x8e\x67\x24\x65\x24\x05\x53\x9d\x19\xe7\x8b\xd1\x1b\x4b\x08\x1c\x67\x68\x32\x71\x8c\x49\x4a\x11\x1d\xab\x23\xb0\x1a\x67\xe1\x72\x0b\x52\xdf\xd6\x78\x32\xc6\x52\x0f\x74\x5b\x10\x62\xd2\x11\xa7\x94\x27\x32\xdc\x7c\x78\xf7\x7f\xff\xf0\xf0\xf0\xdf\x2d\x2c\x41\x49\x53\x5f\xd8\x25\xf5\x98\x33\x3b\x29\x92\x74\xb7\xd2\x5a\xef\x15\xd3\x58\x40\x06\xc2\x29\xf3\xd7\x85\xd5\x9d\xbb\x6d\xbd\xd0\xdd\xee\x9f\x7f\x11\x45\xb9\x60\xe6\x8c\x8b\xcc\x05\x54\x09\x1c\x63\x71\x59\x66\xfb\xa1\x23\x05\xa3\xbc\xb0\xc2\x4b\x66\x67\xf1\x5c\x0d\x1c\xa9\x04\x50\x41\xef\x40\x79\x5c\x2a\x87\x6a\x59\x7d\x65\x14\x3d\x02\xbd\x30\x8e\xcc\xda\xc8\x1a\x6b\x43\x4b\x65\xe8\xb6\x00\xe4\x71\x73\xb7\x69\xd5\x6b\x90\xc8\xb0\xbc\x70\x6b\x7d\x6a\x1f\x80\x5d\x48\xe8\x15\x9b\xe7\xef\x4f\xf1\x3c\xe0\x4a\x06\x6c\xd6\x03\x0d\x55\xdf\xe7\x93\x6b\x54\xa0\x65\x1d\x94\xc8\x3c\x63\xbf\x76\xf2\x78\xf5\xe9\x4a\xfe\xba\xff\xbc\xca\x2b\x77\x34\xcb\x47\xce\x15\xd8\x80\x97\xfb\xee\x8b\xa8\x1f\xf0\x3e\xf9\x6e\x62\x23\x4f\x46\x43\x07\x44\x3a\x72\x2c\xb5\x02\xea\xf6\xe1\x92\xac\xbe\x26\x49\x74\xec\x4b\x5a\xb2\xe3\xee\xcd\xb0\xc6\xae\xbf\x44\xad\xaf\x8c\xe3\x5c\xfa\x39\xf9\xae\x46\xb7\x2a\xb9\xa4\x46\xa2\x9c\x9b\x6e\xff\x56\x77\xcc\x6d\x97\x4c\x34\xf2\x80\xe5\xb8\xa8\x2d\xc3\xfd\x7e\x77\xb7\x6f\xff\x29\x8f\xab\x9b\xbe\xb1\x5f\xcb\xde\xad\xc5\x75\x43\x7a\xf8\x85\xe7\x01\x3e\xfd\x01\xe3\xe1\x37\x04\x0f\x17\x78\x4d\x12\xd8\x1f\x7e\xd2\x3b\x34\x74\xd7\x6d\xd2\x7d\x0b\x00\x00\xff\xff\xe6\x62\x0c\xc7\x96\x03\x00\x00") + +func testFixturesDocYamlUserGuideLoggingDemoSynthetic_0_25lpsYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideLoggingDemoSynthetic_0_25lpsYaml, + "test/fixtures/doc-yaml/user-guide/logging-demo/synthetic_0_25lps.yaml", + ) +} + +func testFixturesDocYamlUserGuideLoggingDemoSynthetic_0_25lpsYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideLoggingDemoSynthetic_0_25lpsYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/logging-demo/synthetic_0_25lps.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideLoggingDemoSynthetic_10lpsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x4f\x6b\x24\x37\x10\xc5\xef\xfd\x29\x1e\x33\x06\xdb\x24\x3d\xcc\xc4\xce\x21\x3d\xf8\x14\xc8\x39\x04\x93\xcb\xb2\xe0\x1a\xa9\xa6\x55\xac\xba\xd4\x2b\x55\xdb\xcc\xb7\x5f\xa4\xe9\xfd\x63\x58\xf6\xd4\x55\x5d\xe2\xd5\xd3\x4f\x6f\x8b\xe7\x20\x05\x73\xf2\x28\x33\x3b\x39\x8b\x23\x93\xa4\x70\x99\xc9\xb8\x80\x14\xa2\xc5\x48\x1d\x23\x9d\x41\x28\x17\xb5\xc0\x26\x0e\x31\x8d\x23\xe7\x1d\x9e\x03\xaf\x75\xb7\x85\x14\x14\x99\xe6\x78\x01\x61\xce\x69\xcc\x34\xc1\x02\x19\xde\xb2\x54\xbd\xb4\x18\x2c\x30\x42\x2a\xa6\x34\x35\xd1\xda\xcf\xc9\xff\x0e\x82\x4b\x8b\x1a\xde\x82\xb8\x00\x51\x97\x79\x62\xb5\xd2\x6d\x71\xba\x20\x29\x23\x29\x98\xea\xcc\x38\x5f\x8d\xde\x59\x42\xe0\x38\x43\x93\x89\x63\x4c\x52\x8a\xe8\x58\x1d\x81\xd5\x38\x0b\x97\x7b\x90\xfa\xb6\xc6\x93\x31\x96\x7a\xa0\xdb\x82\x10\x93\x8e\x38\xa7\x3c\x91\xe1\xee\xbf\x7f\xfe\xee\x1f\x1e\x1e\xfe\xba\x87\x25\x28\x69\xea\x0b\xbb\xa4\x1e\x73\x66\x27\x45\x92\xee\x56\x5a\xeb\xbd\x62\x1a\x0b\xc8\x40\x38\x67\xfe\xbc\xb0\xba\x4b\xb7\xad\x17\xda\xef\xfe\xf8\x13\x51\x94\x0b\x66\xce\xb8\xca\x5c\x41\x95\xc0\x31\x16\x97\x65\xb6\x6f\x3a\x52\x30\xca\x2b\x2b\xbc\x64\x76\x16\x2f\xd5\xc0\x89\x4a\x00\x15\xf4\x0e\x94\xc7\xa5\x72\xa8\x96\xd5\x57\x46\xd1\x23\xd0\x2b\xe3\xc4\xac\x8d\xac\xb1\x36\xb4\x54\x86\x6e\x0b\x40\x9e\x36\xfb\x4d\xab\xde\x82\x44\x86\xe5\x85\x5b\xeb\x53\xfb\x00\xec\x42\x42\xaf\xd8\xbc\x7c\x7d\x8a\x97\x01\x37\x32\x60\xb3\x1e\x68\xa8\xfa\x3e\x9f\x5d\xa3\x02\x2d\xeb\xa0\x44\xe6\x19\x8f\x6b\x27\x4f\x37\x1f\x6e\xe4\xb7\xc3\xc7\x55\x5e\xb9\xa3\x59\xfe\xe7\x5c\x81\x0d\x78\x3d\x74\x9f\x44\xfd\x80\x7f\x93\xef\x26\x36\xf2\x64\x34\x74\x40\xa4\x13\xc7\x52\x2b\xa0\x6e\x1f\xae\xc9\xea\x6b\x92\x44\xc7\xbe\xa4\x25\x3b\xee\xde\x0d\x6b\xec\xfa\x6b\xd4\xfa\xc3\x3e\xce\xa5\x9f\x93\xef\x6a\x70\xab\x8e\x4b\x6a\x24\xca\xb9\xa9\xf6\xef\x55\xc7\xdc\x36\xc9\x44\x23\x0f\x58\x4e\x8b\xda\x32\x1c\x1e\x77\xfb\xc7\xf6\x9f\xf2\xb8\x7a\xe9\x1b\xf9\xb5\xec\xdd\x5a\xdc\x36\xa0\xc7\x1f\x68\x1e\xe1\xd3\x2f\x20\x1e\x7f\xc2\xef\x78\x45\xd7\x24\x81\xfd\xee\x70\xfc\x4e\xef\xd8\xd0\xdd\xae\x33\xa0\xfb\x12\x00\x00\xff\xff\xcc\x93\x57\xf5\x9a\x03\x00\x00") + +func testFixturesDocYamlUserGuideLoggingDemoSynthetic_10lpsYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideLoggingDemoSynthetic_10lpsYaml, + "test/fixtures/doc-yaml/user-guide/logging-demo/synthetic_10lps.yaml", + ) +} + +func testFixturesDocYamlUserGuideLoggingDemoSynthetic_10lpsYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideLoggingDemoSynthetic_10lpsYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/logging-demo/synthetic_10lps.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideMultiPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4d\x6b\xe3\x30\x10\xbd\xeb\x57\x0c\xbe\x2b\x5e\x67\xc9\x2e\xd5\xad\xd0\x1c\x0a\x4d\x08\x4d\xe8\x35\x28\xf6\xe0\x88\x48\x1a\x23\xc9\x86\x50\xfa\xdf\x8b\xbf\xed\x34\x87\x42\x7c\x1a\xcf\xcc\x7b\x33\xf3\xf4\x38\xe7\x4c\x16\xea\x03\x9d\x57\x64\x05\x54\x09\xbb\x28\x9b\x09\xd8\x51\xc6\x0c\x06\x99\xc9\x20\x05\x03\xd0\xf2\x84\xda\xd7\x11\x80\x95\x06\x05\x38\xcc\x94\x6f\xfe\x9b\x88\x7b\xb4\x41\x59\xd4\x02\xa2\xe0\x4a\x8c\xda\x12\x69\x14\x60\xa4\x0f\xe8\xd8\x0c\xc9\xbb\xa4\x2f\x30\xad\x69\x53\xb2\x41\x2a\x8b\xae\x1b\xc2\xbb\xe6\x01\x5b\x7f\xca\xc8\x1c\x05\x5c\xca\x13\x3a\x8b\x01\x7d\xdc\x70\x89\x2a\xe9\x1a\xd0\x56\xa2\x0b\x47\x8a\xcd\xf3\xfe\xb0\x7e\x1f\xd2\x00\x95\xd4\x25\xce\xf6\x04\x28\xc8\x05\x3f\xc5\x0e\x0b\xed\xc8\x05\x01\xff\xfe\xfe\x7f\xea\xaa\x0e\x3d\x95\x2e\xc5\x49\xbb\x56\x46\x4d\xe1\x00\x69\x51\x0a\x88\xfe\x2c\x56\xfd\x80\x8a\x74\x69\x70\x43\xa5\x9d\xcf\x31\x75\x66\x27\xc3\x59\x40\x3c\x55\x86\xd7\xd2\x4f\x08\xdb\x5b\x86\x64\x7f\x5c\x2f\xfb\x43\x0a\xed\xd7\xdb\xc3\xeb\x76\xfd\xf6\xa0\x46\xcb\x4e\xa4\xf6\xd4\x9b\x87\x9c\x9c\x83\xa6\x08\xd7\x17\xe5\x04\x7c\x7e\xb1\x5f\x5b\xb0\xa5\xa9\xa4\x56\x19\x2f\x28\xbb\x6b\xca\xb1\x7a\xdf\x57\xfd\x32\xa3\x3e\xdc\xa3\xab\x90\x9f\xc9\x87\xba\xc4\x26\x22\xe6\xa9\x5b\x28\x8a\x73\xa2\x5c\xe3\x71\x24\x8a\x1b\xc8\x71\x06\xf9\xe1\x89\x5b\x47\xb4\x7e\x48\xa2\x21\x61\xd0\x90\xbb\x0a\x58\x25\xcb\x8d\x62\xdf\x01\x00\x00\xff\xff\x67\x94\x9c\x15\x89\x03\x00\x00") + +func testFixturesDocYamlUserGuideMultiPodYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideMultiPodYaml, + "test/fixtures/doc-yaml/user-guide/multi-pod.yaml", + ) +} + +func testFixturesDocYamlUserGuideMultiPodYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideMultiPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/multi-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideNewNginxDeploymentYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\x3d\x0e\xc2\x30\x0c\x85\xf7\x9c\xc2\x17\x68\x21\x62\x81\xcc\x1c\x80\x89\xdd\x6d\xad\xca\x22\x71\xac\xc4\x42\xe5\xf6\x28\x88\xfe\xbc\xc9\x7e\xef\xe9\xb3\x51\xf9\x49\xa5\x72\x96\x00\xb4\x18\x49\x1b\xeb\xe9\xed\x07\x32\xf4\xee\xc5\x32\x05\xb8\x93\xc6\xfc\x49\x24\xe6\x12\x19\x4e\x68\x18\x1c\x80\x60\xa2\x00\x32\xb3\x2c\xdd\xb4\x57\xaa\xd2\xd8\xe2\x42\x1a\x79\xc4\x1a\xe0\xe2\x00\x8c\x92\x46\x34\x6a\x09\xc0\x11\xd3\x14\x71\xa0\x58\xd7\x0d\x00\x55\xff\xe4\x9f\xb5\x22\x9b\xc6\x2c\x86\x2c\x54\xb6\x7a\x77\xfc\x64\x43\x70\xc2\x79\x35\x83\xef\x6f\xbd\xdf\x22\xcd\xc5\x0e\xc7\xba\x9d\xf9\xc8\xc5\x02\x5c\xcf\xee\x1b\x00\x00\xff\xff\xb1\xf5\x9a\xa0\x18\x01\x00\x00") + +func testFixturesDocYamlUserGuideNewNginxDeploymentYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideNewNginxDeploymentYaml, + "test/fixtures/doc-yaml/user-guide/new-nginx-deployment.yaml", + ) +} + +func testFixturesDocYamlUserGuideNewNginxDeploymentYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideNewNginxDeploymentYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/new-nginx-deployment.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideNginxDeploymentYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\x8e\xbd\x6e\xc3\x30\x0c\x84\x77\x3d\x05\x5f\xc0\x6e\x8d\x0e\x6d\x35\xe7\x01\x32\x65\xa7\xed\x83\x21\x44\xa2\x08\x89\x08\x9c\xb7\x0f\x14\xc4\x3f\x37\x91\x77\x87\x8f\x64\x0d\x37\x94\x1a\xb2\x78\xc2\x6a\x90\x36\xd6\xaf\xc7\x30\xc2\x78\x70\xf7\x20\xb3\xa7\x0b\x34\xe6\x67\x82\x98\x4b\x30\x9e\xd9\xd8\x3b\x22\xe1\x04\x4f\xb2\x04\x59\xbb\xf9\xa8\x54\xc5\xd4\xe2\x02\x8d\x61\xe2\xea\xe9\xc7\x11\x19\x92\x46\x36\xb4\x84\xe8\x8c\x69\x8a\x3c\x22\xd6\x6d\x23\x62\xd5\x0f\xf9\x6d\x6d\xc8\xa6\x29\x8b\x71\x10\x94\xbd\xde\x9d\x3f\xd9\x11\x21\xf1\xb2\x99\x7e\xe8\x7f\xfb\xff\x3d\xd2\x5c\xec\x74\xac\x3b\x98\xd7\x5c\xcc\xd3\xdf\xb7\x7b\x05\x00\x00\xff\xff\xa3\xce\x31\xed\x18\x01\x00\x00") + +func testFixturesDocYamlUserGuideNginxDeploymentYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideNginxDeploymentYaml, + "test/fixtures/doc-yaml/user-guide/nginx-deployment.yaml", + ) +} + +func testFixturesDocYamlUserGuideNginxDeploymentYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideNginxDeploymentYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/nginx-deployment.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideNodeSelectionPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\xcd\x31\xce\xc2\x30\x0c\xc5\xf1\x3d\xa7\xf0\x05\xbe\xe1\x5b\x73\x03\x16\x14\x09\x89\xdd\x24\x8f\xca\x6a\x6a\x57\xb1\xa9\xe8\xed\x51\x61\x83\xf5\xa7\xf7\xf4\xe7\x55\xae\x18\x2e\xa6\x99\xb6\xff\x34\x8b\xb6\x4c\xc5\x5a\x5a\x10\xdc\x38\x38\x27\x22\xe5\x05\x99\x74\x12\x7d\x26\xa2\xce\x37\x74\x3f\x9c\x08\xba\x65\x0a\x78\x24\x5f\x51\x0f\xab\xa6\xc1\xa2\x18\xef\xc5\xdf\xd7\x97\x48\x16\x9e\x7e\xa1\x3c\x7a\x2f\xd6\xa5\xee\x99\x4e\xf7\xb3\x45\x19\x70\x68\x1c\x71\x6b\xb8\xa0\xa3\x86\x8d\x4f\xb4\x89\xcf\xb1\xaf\xc8\xe4\xde\xd2\x2b\x00\x00\xff\xff\xdb\x33\x2b\x8d\xc2\x00\x00\x00") + +func testFixturesDocYamlUserGuideNodeSelectionPodYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideNodeSelectionPodYaml, + "test/fixtures/doc-yaml/user-guide/node-selection/pod.yaml", + ) +} + +func testFixturesDocYamlUserGuideNodeSelectionPodYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideNodeSelectionPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/node-selection/pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim01Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xca\xb1\x0a\x02\x31\x10\x84\xe1\x3e\x4f\x31\x2f\x70\xc5\x61\x97\xd6\xc2\x4a\x14\x8b\xb3\x5e\x92\x41\x82\x97\xe4\xdc\xdd\x13\x7c\x7b\x09\x68\xf9\xcf\x7c\xcf\xd2\x72\xc4\x95\x6a\xc5\x9c\xcd\x97\xbe\xee\x95\xc7\x55\x4a\x0d\xb2\x95\x65\x1c\xbd\x45\xbc\xe7\x50\xe9\x92\xc5\x25\x06\xa0\x49\x65\x44\xfd\xa4\x01\xa7\x39\xd8\xc6\x34\x76\x49\x89\x66\xe7\x9e\x69\x23\x81\x09\x37\x4a\xbe\x6b\x71\x5e\x5a\x62\x00\x94\xd6\x77\x4d\x7f\xa0\x7c\xed\x34\xff\x15\x60\xde\x55\x1e\x8c\x38\x9c\x4a\xf8\x06\x00\x00\xff\xff\x87\xb5\xc5\xba\x9e\x00\x00\x00") + +func testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim01YamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim01Yaml, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/claims/claim-01.yaml", + ) +} + +func testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim01Yaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim01YamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/persistent-volumes/claims/claim-01.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim02Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x34\xca\xb1\x0a\x02\x31\x10\x84\xe1\x3e\x4f\x31\x2f\x70\x85\x56\x92\xd6\xc2\x4a\x14\x8b\xb3\x5e\x92\x41\x82\x97\xe4\xdc\xdd\x13\x7c\x7b\x09\x68\xf9\xcf\x7c\xcf\xd2\x72\xc4\x95\x6a\xc5\x9c\xcd\xe7\xbe\x6c\x95\xc7\x45\x4a\x0d\xb2\x96\x79\x1c\xbd\x45\xbc\x77\xa1\xd2\x25\x8b\x4b\x0c\x40\x93\xca\x88\xfa\x49\x03\x4e\xfb\x60\x2b\xd3\xd8\x25\x25\x9a\x9d\x7b\xa6\x8d\x04\x26\xdc\x28\xf9\xae\xc5\x79\x69\x89\x01\x50\x5a\xdf\x34\xfd\x81\xf2\xb5\xd1\xfc\x57\x80\x79\x57\x79\x30\xe2\x70\x2a\xe1\x1b\x00\x00\xff\xff\x1e\x84\x80\xc1\x9e\x00\x00\x00") + +func testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim02YamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim02Yaml, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/claims/claim-02.yaml", + ) +} + +func testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim02Yaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim02YamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/persistent-volumes/claims/claim-02.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim03Json = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x8f\x31\x4b\xc6\x30\x10\x86\xf7\xfc\x8a\xe3\xe6\x0a\x16\xb7\xae\x0e\x4e\xa5\xe2\x50\x07\x71\x38\x92\x43\x82\x4d\x52\x73\xa9\x50\x4a\xfe\xbb\x24\xd5\x4a\xf8\xb6\xe3\x7d\x9e\x7b\x8f\x3b\x14\x00\x00\x7e\x5a\x6f\x70\x00\x7c\xe6\x28\x56\x12\xfb\x34\x87\x65\x73\xfc\xb8\x90\x75\xd8\x9d\x12\xad\x76\x2e\x3c\xf8\xa2\x7e\xf7\x7f\xb9\xe3\x44\x86\x12\xe1\x00\x67\x5d\x4d\x3d\x39\x2e\x9e\xdb\x75\x29\xb9\x7b\xc0\xca\x72\x07\x28\x2b\xeb\x56\x26\xad\x59\x64\x0c\x86\x05\x07\x78\xbb\x40\x85\x2f\x4c\xe6\x35\xda\xc4\x93\xd7\xfc\x7b\xb4\x81\x93\x5f\xf6\x91\xfc\x8e\x17\x7a\xff\xb7\x30\xb2\x84\x2d\xea\xda\x7c\xb4\xcb\x91\xbf\x36\x96\x74\x4b\x2a\x95\x14\x22\x7d\xd4\x27\xfa\xfb\x27\x6c\x84\xac\xda\x29\xab\xac\x7e\x02\x00\x00\xff\xff\xfa\x56\x3a\xe5\x4c\x01\x00\x00") + +func testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim03JsonBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim03Json, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/claims/claim-03.json", + ) +} + +func testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim03Json() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim03JsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/persistent-volumes/claims/claim-03.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuidePersistentVolumesSimpletestNamespaceJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcc\x31\x0a\x02\x31\x10\x85\xe1\x3e\xa7\x18\xa6\xb6\xb1\xcd\x21\x2c\xed\x9f\xe6\x15\xc1\xcc\x6c\x30\x61\x41\x64\xef\x2e\x6e\x74\x21\xcd\x14\xff\x7c\xbc\x77\x10\x11\xd1\x47\xf6\xa4\x51\xf4\x02\x63\xab\xb8\x53\x4f\xe3\x81\x9a\xaf\x7c\xb6\xbc\xb8\x46\x5d\xcf\xff\x6c\xec\x48\xe8\xd0\x28\x63\x61\xaf\x0e\xe3\x77\xc5\x5e\xde\x7e\x72\xef\x05\x37\x96\x36\xd9\xc9\x27\xae\x2c\x4b\x35\x7a\xd7\x43\x6c\x61\xdc\x2d\x7c\x02\x00\x00\xff\xff\x98\x50\xe8\x42\xa4\x00\x00\x00") + +func testFixturesDocYamlUserGuidePersistentVolumesSimpletestNamespaceJsonBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuidePersistentVolumesSimpletestNamespaceJson, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/simpletest/namespace.json", + ) +} + +func testFixturesDocYamlUserGuidePersistentVolumesSimpletestNamespaceJson() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuidePersistentVolumesSimpletestNamespaceJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/persistent-volumes/simpletest/namespace.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuidePersistentVolumesSimpletestPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x50\xbd\x4e\xc4\x30\x0c\xde\xf3\x14\x56\xf7\xaa\xdc\x86\xb2\x32\x83\x3a\xdd\x6e\x5a\x73\x8d\x48\xec\xc8\x71\x2b\xee\xed\x51\x7a\x69\x11\xba\xf1\xfb\x8d\xbf\x7c\x07\x9e\x3d\x8c\x32\x3b\xcc\xe1\x4a\x5a\x82\xb0\x87\xed\xe2\x12\x19\xce\x68\xe8\x1d\x00\x63\x22\x0f\xe9\x9e\x65\x76\x00\x11\x3f\x29\x96\xca\x1f\xca\x97\x0a\x1b\xf1\xbc\x98\x65\x57\x32\x4d\x55\x9c\x84\x0d\x03\x93\x36\x6b\x7f\xd6\x1c\xf6\x9d\x06\x08\x09\x6f\xe4\x81\x6f\x81\x7f\x1a\x95\x45\xad\xc5\x1e\xd1\xb3\x6c\x14\x35\x0f\xaf\x2f\xa7\x76\xdc\xd0\xd5\xc7\xfb\x42\xba\x91\x76\x4d\xdd\x24\xae\x89\xde\x65\xe5\xbf\xb6\x1e\x52\xc5\x23\xda\xe2\xa1\x1b\xd6\xa2\x43\x59\x50\x69\xd8\xdf\x1f\x16\x4b\xb1\x73\xff\xab\xd3\x3d\xd7\x5b\x1f\x6d\x4f\x6b\xf2\xb1\x23\xd7\xdf\x2b\x46\x6c\xd7\xdd\xf9\x16\x31\xa4\x73\xc4\x54\xd1\x47\xcb\xec\xa0\xbf\xb8\xdf\x00\x00\x00\xff\xff\x02\x10\x1c\x72\x7e\x01\x00\x00") + +func testFixturesDocYamlUserGuidePersistentVolumesSimpletestPodYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuidePersistentVolumesSimpletestPodYaml, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/simpletest/pod.yaml", + ) +} + +func testFixturesDocYamlUserGuidePersistentVolumesSimpletestPodYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuidePersistentVolumesSimpletestPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/persistent-volumes/simpletest/pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuidePersistentVolumesSimpletestServiceJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\xbd\x6a\x04\x31\x0c\x84\x7b\x3f\x85\x50\x9d\xc0\x86\x74\x6e\xf3\x02\x0b\x09\x69\x42\x0a\xe3\x55\x12\x93\x5d\xcb\xc8\x62\x9b\xc3\xef\x7e\xc8\xde\xfb\x29\xae\x32\x9e\x99\x6f\x34\x27\x07\x80\xff\x29\x2f\xe8\x01\xdf\x49\xf6\x14\x09\x9f\x4c\x0c\x25\x7d\x92\xd4\xc4\xd9\xac\xfd\x65\xa8\x1b\x69\x58\x82\x06\xf4\x60\x28\x00\xe6\xb0\x91\x25\x7e\x84\xb3\x52\x5e\xea\x51\xe2\x00\x5a\x47\x6a\xa1\x78\x8b\x17\x16\xad\xe8\xe1\xab\x7f\xe1\x90\x87\x25\xac\x1c\x79\xb5\xb6\x8f\xb7\xb9\x1f\xbc\x58\x2c\x8a\x1e\x5e\xa7\x69\xba\x53\x35\xc8\x2f\xe9\x3c\x3c\xfc\x53\x2d\xcf\x76\x9d\x04\x8f\x4c\xeb\xef\xf7\x40\xb0\xd2\x4a\x51\x59\xae\x63\x1e\xac\xb7\x92\x41\x1b\xdb\x5c\x73\xe7\x00\x00\x00\xff\xff\x89\xf9\x10\x70\x22\x01\x00\x00") + +func testFixturesDocYamlUserGuidePersistentVolumesSimpletestServiceJsonBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuidePersistentVolumesSimpletestServiceJson, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/simpletest/service.json", + ) +} + +func testFixturesDocYamlUserGuidePersistentVolumesSimpletestServiceJson() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuidePersistentVolumesSimpletestServiceJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/persistent-volumes/simpletest/service.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuidePersistentVolumesVolumesGceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xce\xb1\x6a\xc4\x30\x0c\xc6\xf1\xdd\x4f\x21\xb2\x17\x9c\xa6\x93\xe7\x42\xa7\x34\xa5\x94\x74\xd6\xc9\xba\x60\x92\xd8\x26\xd2\x85\xf3\xdb\x1f\x4e\x86\xbb\x4d\xfc\xd0\x07\xff\x39\x44\xef\xe0\x87\x37\x09\xa2\x1c\x75\x4c\xcb\x6d\x65\x83\x39\x8c\xd5\x52\x74\xb0\xb7\x66\x65\x45\x8f\x8a\xce\x00\x44\x5c\xd9\x41\xde\xad\xb5\x9d\x91\xcc\x54\x91\x30\x23\x05\x2d\xf5\x06\x10\x4d\x1b\x4e\xec\xa0\xb5\x5f\xc1\x00\x20\x11\x8b\xf4\xc9\xb3\x9c\x0f\x6f\xf0\xcb\xe8\xff\xb7\xa0\x3c\x44\xe2\x17\x1b\xe2\x52\x7a\x8c\xc5\x00\x4c\xc4\xcf\xae\xcf\x20\xf3\xb9\xcd\xfe\xfb\x28\x68\xf0\x42\xed\x7b\xd7\x1c\x78\x95\xbf\x92\x2b\xf2\x5d\x3f\x1a\xf3\x08\x00\x00\xff\xff\x23\x32\x13\xb0\xd6\x00\x00\x00") + +func testFixturesDocYamlUserGuidePersistentVolumesVolumesGceYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuidePersistentVolumesVolumesGceYaml, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/volumes/gce.yaml", + ) +} + +func testFixturesDocYamlUserGuidePersistentVolumesVolumesGceYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuidePersistentVolumesVolumesGceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/persistent-volumes/volumes/gce.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuidePersistentVolumesVolumesLocal01Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\x8e\x3d\x6a\xc0\x30\x0c\x46\x77\x9d\xe2\x23\x7b\x89\xbd\xfa\x02\x9d\x4a\x43\x87\x74\x56\x6d\xd1\x98\xfa\x8f\x48\x0d\xe4\xf6\xc5\xa4\xdb\xe3\x3d\x21\xbe\x9f\xdc\x52\xc0\x26\xa7\x66\x35\x69\xb6\xf7\xf2\x5b\x85\x78\xe4\x7d\xba\xde\x02\x2e\x4f\x55\x8c\x13\x1b\x07\x02\x1a\x57\x09\x18\x97\x73\xce\x13\x50\xf8\x4b\x8a\xce\x00\xd8\x3d\x24\xa0\xf4\xc8\x85\x74\x48\x9c\x36\xf2\xe0\x98\xed\x7e\x2e\xd4\xfa\xc9\xdf\x12\xe0\xdd\x6b\x26\x80\x63\x14\xd5\xb7\x9e\xe4\xff\xc5\x0b\x3e\x84\xd3\xe7\x99\x4d\xde\x5b\x14\x02\x8e\xae\xb6\xb1\x1d\x4f\x1f\x93\xb0\xac\xda\xab\x4c\x5e\xe7\x2c\xe7\x17\xfa\x0b\x00\x00\xff\xff\xd4\x69\x2f\xa0\xc9\x00\x00\x00") + +func testFixturesDocYamlUserGuidePersistentVolumesVolumesLocal01YamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuidePersistentVolumesVolumesLocal01Yaml, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/volumes/local-01.yaml", + ) +} + +func testFixturesDocYamlUserGuidePersistentVolumesVolumesLocal01Yaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuidePersistentVolumesVolumesLocal01YamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/persistent-volumes/volumes/local-01.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuidePersistentVolumesVolumesLocal02Yaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8f\x31\x6a\x03\x41\x0c\x45\x7b\x9d\xe2\xe3\x3e\x78\xe3\x2a\xcc\x05\x52\x85\x2c\x5b\x38\xb5\xa2\xfd\xc4\x43\x66\x67\x86\x95\x62\xd8\xdb\x87\xc1\xa9\xd2\x3d\xde\x13\x42\xfa\xce\x75\x4d\x98\xb9\x7b\xf6\x60\x8d\x6b\x2b\x3f\x1b\x45\x7b\xbe\x0e\xd7\x6a\xc2\xfd\x59\x36\x86\xae\x1a\x9a\x04\xa8\xba\x31\xa1\xdf\xa7\x69\xba\x08\x50\xf4\x93\xc5\x47\x00\xe2\xe8\x4c\x28\xcd\xb4\x88\x77\xda\xb0\xa6\x5d\x2d\xc7\xf1\x98\xf0\x68\xbb\x7e\x31\xe1\xe5\x35\x0b\xa0\x66\x74\x7f\x6b\x2b\xff\x36\x3c\x61\xa1\xae\x1f\x7b\x0e\xbe\x57\xa3\x00\xb7\xe6\x31\x6b\xdc\x1e\xbd\x0f\xc2\xe9\xec\x6d\xe3\xe0\xf3\xb8\x6a\xba\x9c\x04\xe8\xff\x7e\x58\x68\x45\xf3\x36\xb7\x92\xed\x48\x58\x68\x87\x15\xca\x6f\x00\x00\x00\xff\xff\x1e\x18\x48\xf3\xf1\x00\x00\x00") + +func testFixturesDocYamlUserGuidePersistentVolumesVolumesLocal02YamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuidePersistentVolumesVolumesLocal02Yaml, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/volumes/local-02.yaml", + ) +} + +func testFixturesDocYamlUserGuidePersistentVolumesVolumesLocal02Yaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuidePersistentVolumesVolumesLocal02YamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/persistent-volumes/volumes/local-02.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuidePersistentVolumesVolumesNfsYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x2c\x8c\x4d\xaa\x02\x31\x10\x06\xf7\x39\x45\x5f\xe0\xcd\xcb\x8c\xc8\x40\x2e\xe0\x4a\x14\x17\xe3\xba\x49\x3e\x35\x68\x7e\x48\xb7\x03\xde\x5e\xc2\xb8\x2b\xaa\xa0\xb8\xc6\x05\x4d\x62\xc9\x8e\xd6\xd1\x3c\x63\x0e\x8e\xce\xdd\x88\x22\xeb\x52\x5e\xef\x04\x93\xa0\x1c\x58\xd9\x19\xa2\xcc\x09\x8e\xea\x6a\xad\xdd\x19\xa9\xf0\x5d\x7a\xae\xec\xa3\x7e\x3a\x13\x89\x96\xc6\x77\x38\xda\x1f\xa2\x21\x62\xef\x21\x72\x2c\x01\xb2\xf5\x3f\xba\x80\xc3\xb5\x45\xc5\x29\x7b\xf4\xe9\xed\x97\x2a\xeb\xc3\xd1\xbf\x94\x84\x8e\xdb\x0e\x6d\x45\x73\x34\xce\xd3\x30\xce\x83\x1d\x26\xf3\x0d\x00\x00\xff\xff\xe0\xa5\xa0\x46\xb7\x00\x00\x00") + +func testFixturesDocYamlUserGuidePersistentVolumesVolumesNfsYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuidePersistentVolumesVolumesNfsYaml, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/volumes/nfs.yaml", + ) +} + +func testFixturesDocYamlUserGuidePersistentVolumesVolumesNfsYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuidePersistentVolumesVolumesNfsYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/persistent-volumes/volumes/nfs.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuidePodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\x41\x0a\xc2\x40\x0c\x85\xe1\xfd\x9c\xe2\x5d\xa0\xa0\x3b\xc9\x29\xba\x72\x1f\x3b\xa1\x04\x3b\x49\x98\x09\xe2\xf1\xa5\xa2\x88\xdd\x7e\xc9\xff\x38\xf4\x2a\x7d\xa8\x1b\xe1\x71\x2e\x77\xb5\x4a\x98\xbd\x96\x26\xc9\x95\x93\xa9\x00\xc6\x4d\x08\xb6\xaa\x3d\x0b\xb0\xf1\x4d\xb6\xb1\x3b\xc0\x11\xdf\xc3\x08\x59\x76\x5c\xdc\x92\xd5\xa4\xbf\x5f\xa6\x43\x0c\x68\xe3\xf5\x0f\xc2\x7b\x7e\xe6\xa6\x5f\x3d\x7b\x4f\xc2\xe5\x54\x5e\x01\x00\x00\xff\xff\x76\xb9\xf1\x84\xa2\x00\x00\x00") + +func testFixturesDocYamlUserGuidePodYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuidePodYaml, + "test/fixtures/doc-yaml/user-guide/pod.yaml", + ) +} + +func testFixturesDocYamlUserGuidePodYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuidePodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideReplicasetFrontendYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xbd\x6e\xdc\x3c\x10\xec\xef\x29\x06\x70\xe1\xc6\xe7\x1f\xb8\xf9\xa0\xfe\xcb\x0f\x10\xc3\x81\x6d\xa4\x35\x56\xe4\x4a\x47\x98\xe4\x32\xe4\x4a\xc9\xbd\x7d\x40\xdd\x49\xa7\x73\xdc\x46\x95\x38\xdc\x19\x0e\x87\x43\xc9\xfd\xe0\x5c\x9c\xc4\x06\xfc\x5b\x39\xd6\xdf\x72\x33\xde\xb5\xac\x74\xb7\x79\x73\xd1\x36\x78\xe2\xe4\x9d\xa1\x67\xd6\x4d\x60\x25\x4b\x4a\xcd\x06\x88\x14\xb8\x41\x97\x25\x2a\x47\xbb\x01\x2e\xa0\x3b\x2e\x0c\x4f\x2d\xfb\x02\x43\x11\x2d\x83\x52\xf2\x8e\x2d\x68\x50\x09\xa4\xce\x90\xf7\xfb\x69\xba\xcb\x12\x2a\x65\x26\xb8\x38\xad\x92\x58\x28\x87\xe4\x49\x19\xae\x43\x14\x45\x61\x9d\x28\x87\xc9\x7a\x7a\x5d\x51\x4a\x0d\xfa\x81\x8b\xb6\x22\x6f\x47\x50\x1d\xe7\x95\xad\x92\xd8\x34\x47\x73\xae\x20\x1f\xee\x52\x30\x92\x1f\x18\xae\xc0\x72\x47\x83\x3f\xc8\x07\xb1\xae\xdb\xc3\x29\xc8\x18\xc9\xd6\xc5\x1e\x2a\xd8\xcb\x90\x61\xa8\xf0\x06\x8b\x40\x83\xfb\x89\x52\xd8\xb3\x51\xc9\xff\xe4\xba\xb3\xf8\xe1\x02\x40\x20\x35\xbb\x6f\x4b\x06\x15\xc2\xdf\x29\x1c\xe0\x77\x39\x60\x39\xe4\x90\xde\xfa\x25\xeb\xb7\x4e\xf6\x43\x55\x7c\xac\x0a\xcc\x09\xd7\xcf\x48\x54\x72\x91\xf3\xa2\xb4\x3d\xf6\x24\xed\xd2\x36\xb3\x75\x65\x91\x72\x81\x7a\x6e\xd0\x9b\x7c\xed\xe4\xa6\x17\xe9\x3d\xbf\x16\x0a\xc9\x73\xb9\xe9\xdb\xed\x7c\x48\x33\xde\x2f\x9c\xcc\x45\x86\x6c\x78\x65\xb4\x82\x3f\xab\xcf\x33\x0c\x30\x69\x68\x70\x77\x7b\x1b\xce\xd0\xc0\x41\xf2\x7e\xda\x78\x70\xcb\x0e\xc7\xf1\x44\x9e\x1d\x7f\xfe\xff\xe5\xf5\xcb\xe3\xf3\xcb\xf3\xeb\xa7\xa7\xc7\x87\x95\xca\x54\x9d\x06\x36\x96\x15\x78\x81\xaf\xdd\xb1\x28\x7e\x28\xca\xb9\x66\xd1\xb9\x1e\x56\xb8\x4c\x8f\xea\xa2\xf1\x83\x65\x50\x65\xa2\x70\x1e\x9d\xe1\xab\xda\x81\x08\x95\x33\x29\x17\x8b\x32\xd9\xda\x42\x2e\xa5\xda\x73\x59\x62\xe0\xa8\x18\x29\x3b\x6a\x3d\x97\x5a\xcc\xce\x45\x3b\x2b\x61\x27\x45\xdf\xa9\x74\x72\x05\x23\x61\x22\xca\xa0\x53\xdf\x2e\x4f\xf6\x2f\xe1\x5d\x64\x50\x2b\x23\x5f\x81\xa2\xc5\x10\xe7\x71\xdd\xf1\x99\xd8\x34\xd9\xb2\x97\x5f\xd7\x67\xf8\x51\x8d\xe3\xb8\xc0\x49\xf2\xfa\x31\xb6\xa7\x56\x7c\x97\xac\x0d\xfe\xbb\xdd\xfc\x09\x00\x00\xff\xff\x3d\xf1\x93\x9c\x78\x04\x00\x00") + +func testFixturesDocYamlUserGuideReplicasetFrontendYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideReplicasetFrontendYaml, + "test/fixtures/doc-yaml/user-guide/replicaset/frontend.yaml", + ) +} + +func testFixturesDocYamlUserGuideReplicasetFrontendYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideReplicasetFrontendYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/replicaset/frontend.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideReplicasetRedisSlaveYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4d\x6f\xdc\x38\x0c\xbd\xcf\xaf\x78\x40\x0e\xb9\x64\x92\xcc\x2e\xb0\x8b\xd5\x7d\xfb\x71\x08\x52\x24\x41\xaf\x01\x2d\x71\x1c\x22\x92\xe8\x4a\xb2\xdb\xf9\xf7\x85\x34\xf6\xcc\xb8\xa7\x5e\xca\x93\x4d\xf1\x3d\x3e\x92\x8f\x06\xf9\xca\x29\x8b\x46\x03\xfe\x51\x38\xd6\xcf\x7c\x37\xed\x3a\x2e\xb4\xdb\xbc\x4b\x74\x06\x4f\x3c\x78\xb1\xf4\xcc\x65\x13\xb8\x90\xa3\x42\x66\x03\x44\x0a\x6c\x90\xd8\x49\xde\x66\x4f\x13\x6f\x80\x2b\x94\x37\xce\x0c\x4f\x1d\xfb\x0c\x4b\x11\x1d\x83\x86\xc1\x0b\x3b\xd0\x58\x34\x50\x11\x4b\xde\x1f\x5a\xf5\x3e\x69\xa8\x90\x05\x20\xb1\xfd\x0d\xea\x50\x38\x0c\x9e\x0a\x43\xf6\x88\x5a\x90\xb9\x34\xc8\xb1\xd2\xb4\x6f\x54\xea\x59\xc3\x9c\x48\xea\xd9\xe0\xac\x07\x28\xc2\xc9\xa0\x23\xfb\xce\xd1\x6d\xf2\xc0\xd6\xcc\x4a\x25\x23\x1d\x67\xcb\x98\xc8\x8f\x0c\xc9\x70\xbc\xa7\xd1\x1f\x7b\x05\x75\xb2\x3f\x40\x0a\xc8\x5a\x4d\x4e\x62\x8f\xa2\x38\xe8\x98\x60\x29\xd7\x0e\x0b\x81\xc1\x5f\x0d\x92\xd9\xb3\x2d\x9a\xfe\xc8\xec\x0b\xf9\x6a\xfa\x7e\xe4\x5c\x3a\xd5\xf7\xdf\xdc\x00\x4e\xf4\x95\x06\xb8\xbc\x69\x8d\xf3\x82\x8f\xb1\x5a\xf1\x31\xd6\x2d\x8e\xf1\x6b\x13\x60\x59\x75\x0d\xab\xb1\x90\x44\x4e\x27\xe2\xed\x6c\xa0\x35\x8b\x04\xea\xd9\xa0\xb7\xe9\x56\xf4\xae\x57\xed\x3d\xbf\x66\x0a\x83\xe7\x7c\xd7\x77\xdb\xa6\xa3\x41\xcc\xb4\x3b\xeb\xe1\xac\x63\xb2\x7c\xa1\xba\x26\xbf\xd5\xcd\xac\x72\x80\x1d\x46\x83\xdd\xfd\x7d\x58\x65\x03\x07\x4d\x87\xf6\xf0\x20\xa7\x17\x8e\xd3\x19\xbc\xe8\xfd\xf8\xff\xcb\xeb\xa7\xc7\xe7\x97\xe7\xd7\x0f\x4f\x8f\x0f\x17\x2c\xcd\x41\x06\x2e\xe6\x8b\xe4\x15\x3e\xef\x67\xbf\xf8\x31\x17\x4e\x75\x13\x7b\xe9\xe1\x94\x73\xbb\xad\x44\xeb\x47\xc7\xa0\x8a\x44\xe6\x34\x89\xe5\x9b\x6a\x85\x88\xa2\x2b\x2a\x89\xb9\x30\xb9\x6a\x46\xce\x19\x14\xab\x42\x49\x1a\x03\xc7\x82\x89\x92\x50\xe7\xb9\x3a\x74\x2f\xd1\x35\x37\x05\xaa\x4d\x57\x2c\x73\x8b\xeb\x8c\x37\xcd\xe5\x06\x56\x43\xc3\xeb\x58\x1a\xe4\xfa\x3c\xc8\x35\xbc\x44\x06\x75\x3a\xf1\x0d\x68\xbe\xeb\x42\x34\xc6\x05\xda\x5c\x5c\x2b\x3b\xf6\xfa\xfd\x76\x55\x35\xb3\x71\x9c\x4e\xe9\x41\xd3\xe5\x59\xb6\x67\x77\x7c\xd1\x54\x0c\xfe\xf9\xfb\xdf\xff\x36\x3f\x03\x00\x00\xff\xff\x31\x55\xfc\xdd\x9b\x04\x00\x00") + +func testFixturesDocYamlUserGuideReplicasetRedisSlaveYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideReplicasetRedisSlaveYaml, + "test/fixtures/doc-yaml/user-guide/replicaset/redis-slave.yaml", + ) +} + +func testFixturesDocYamlUserGuideReplicasetRedisSlaveYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideReplicasetRedisSlaveYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/replicaset/redis-slave.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideReplicationYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8d\x31\x6a\x04\x31\x0c\x45\x7b\x9f\xe2\x5f\x60\x20\x21\x4d\x70\x9b\x0b\x84\x14\xe9\x15\x8f\x18\x44\x6c\xc9\xc8\x22\xe4\xf8\x8b\x19\x66\x77\xd8\x5d\x95\xff\x7d\xbd\x4f\x5d\xbe\xd9\x87\x98\x66\xfc\xbd\xa6\x5f\xd1\x35\xe3\x8b\x7b\x95\x42\x21\xa6\x1f\xa6\xe1\x56\x2b\x7b\x6a\x1c\xb4\x52\x50\x4e\x80\x52\xe3\x0c\xdd\x44\xff\xd3\xe8\x5c\x66\xe6\xfb\xd7\xc8\x78\x4b\xc0\xe0\xca\x25\xcc\x27\x01\xa8\xf7\xa3\x0e\x04\xb7\x5e\x29\x78\x47\x67\xed\xbc\xb3\x7a\x4f\x2a\xfd\x70\x1d\x07\xbf\x93\x01\xc7\xfe\xbc\x62\x1a\x24\xca\x7e\xad\x2f\x4f\x84\x80\x34\xda\x1e\xc2\x6e\x1e\xa7\x99\xe5\x66\xfb\x34\x8f\x8c\xf7\x97\x74\x09\x00\x00\xff\xff\x61\x99\x01\xcd\x2f\x01\x00\x00") + +func testFixturesDocYamlUserGuideReplicationYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideReplicationYaml, + "test/fixtures/doc-yaml/user-guide/replication.yaml", + ) +} + +func testFixturesDocYamlUserGuideReplicationYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideReplicationYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/replication.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideSecretsSecretEnvPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x51\x4b\xc3\x30\x14\x85\xdf\xf3\x2b\x0e\x7d\x36\x96\xbd\xe6\x6d\xe8\x7c\x11\x65\xcc\x21\x88\x48\xb9\x4d\xaf\x35\xac\xc9\x2d\x49\x16\xec\xbf\x97\x6a\xd9\xe6\x5e\x42\x92\xef\xe3\x72\xce\xa5\xd1\xbd\x72\x4c\x4e\x82\x41\x59\xa9\x83\x0b\x9d\xc1\x56\x3a\xe5\x39\x53\x47\x99\x8c\x02\x02\x79\x36\x48\x6c\x23\x67\xcd\xa1\xe8\x51\x3a\x95\x46\xb6\x33\xb4\x12\x32\xb9\xc0\x31\xcd\x2f\x40\x2f\x7a\xe6\x94\xf5\x09\xfe\x22\xc0\x79\xea\xd9\xa0\xb7\xf1\xd6\x49\xdd\x8b\xf4\x03\x37\xe7\x09\x75\x7b\x4c\x53\x2b\xdf\x8b\x6d\xc5\x7b\x9a\x03\xbd\xa3\xaa\x5b\x17\xea\xf4\x55\xdd\xa0\xd2\x76\x3e\x39\x94\x0a\x1f\x8b\xc9\xa1\x98\xe5\x7a\x4e\xf0\xf4\xd6\xbc\x6c\xee\x76\x9b\x7d\x73\xbf\xde\xaf\x4f\x18\x28\x34\x1c\xf9\x21\x8a\x37\x17\x9f\x58\x0a\x3e\xf2\xb4\xe3\xcf\xff\x04\x97\x9d\xfe\xb4\x2b\x7e\xe0\xc9\x60\xde\x97\x5e\x29\x20\x72\xca\x14\xf3\x56\x06\x67\x27\x83\x67\x2e\x1c\xd5\x4f\x00\x00\x00\xff\xff\x2b\xa5\x9d\xc3\x6b\x01\x00\x00") + +func testFixturesDocYamlUserGuideSecretsSecretEnvPodYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideSecretsSecretEnvPodYaml, + "test/fixtures/doc-yaml/user-guide/secrets/secret-env-pod.yaml", + ) +} + +func testFixturesDocYamlUserGuideSecretsSecretEnvPodYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideSecretsSecretEnvPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/secrets/secret-env-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideSecretsSecretPodYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcd\x4e\xc4\x20\x10\xc7\xef\x3c\xc5\xa4\x5e\x65\x71\x6f\x86\xc4\x47\x70\xb3\x27\x2f\xc6\x98\x91\x8e\x2d\xb1\x30\x0d\x4c\x6b\x7c\x7b\x43\x41\xbb\x7e\x70\x9b\xf9\x7f\xe4\xc7\xe0\xec\x1f\x28\x65\xcf\xd1\xc2\x7a\x54\x6f\x3e\xf6\x16\xce\xdc\xab\x40\x82\x3d\x0a\x5a\x05\x10\x31\x90\x85\x4c\x2e\x91\x68\xa1\x2c\x7a\xe6\x5e\xe5\x99\x5c\x51\x1d\x47\x41\x1f\x29\xe5\x32\x01\xe8\xe6\xdf\x8c\xdf\xe2\x26\x01\xf8\x80\x03\x59\x18\x5c\x3a\x78\x36\x03\xf3\x30\xd1\xf3\xde\x60\x02\x2f\x51\x4a\xd2\xde\x1c\x6e\x5b\xc6\x71\x08\x58\xb8\x1e\xa1\x33\x41\xba\x6b\xe8\xb4\x7e\xf5\x2d\x48\x51\xee\x0c\x89\x33\x8d\x6f\xe5\x69\x09\x64\x0a\xbb\x3e\x76\xf0\xd4\x4a\xea\xfa\xbe\xd4\x37\xce\xfa\xae\x36\x5a\x08\x4b\x16\x08\x28\x6e\x04\x19\xa9\xb9\xab\xf4\x42\x13\xbf\x5f\x24\xf4\xcf\x7b\x54\xeb\x85\x0e\xb0\x7d\xe2\x8c\x32\x5a\xf8\x4b\xa6\xbe\x58\x7e\x9d\xeb\xbf\xba\xba\xdb\x71\xeb\x7c\xda\xcf\x5b\x17\x0a\x20\x51\x16\x4c\x72\xe6\xc9\xbb\x0f\x0b\x27\x5a\x29\xa9\xcf\x00\x00\x00\xff\xff\x68\x2a\xaf\xe4\xdd\x01\x00\x00") + +func testFixturesDocYamlUserGuideSecretsSecretPodYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideSecretsSecretPodYaml, + "test/fixtures/doc-yaml/user-guide/secrets/secret-pod.yaml", + ) +} + +func testFixturesDocYamlUserGuideSecretsSecretPodYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideSecretsSecretPodYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/secrets/secret-pod.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideSecretsSecretYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2c\xc8\x0c\x4b\x2d\x2a\xce\xcc\xcf\xb3\x52\x28\x33\xe4\xca\xce\xcc\x4b\xb1\x52\x08\x4e\x4d\x2e\x4a\x2d\xe1\xca\x4d\x2d\x49\x4c\x49\x2c\x49\xb4\xe2\x52\x50\xc8\x4b\xcc\x4d\xb5\x52\x28\x49\x2d\x2e\xd1\x2d\x86\xc8\xc2\x64\x40\xb4\xae\xa1\x95\x42\x4a\xae\x5b\x71\x4a\x78\x68\x89\x6f\xa0\x81\x37\x4c\xd8\x08\x49\x38\xdd\xc0\xdb\x25\x30\xdf\x96\x0b\x10\x00\x00\xff\xff\x5d\x68\x23\xda\x72\x00\x00\x00") + +func testFixturesDocYamlUserGuideSecretsSecretYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideSecretsSecretYaml, + "test/fixtures/doc-yaml/user-guide/secrets/secret.yaml", + ) +} + +func testFixturesDocYamlUserGuideSecretsSecretYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideSecretsSecretYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/secrets/secret.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideUpdateDemoImagesKittenHtmlDataJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xe6\x52\x50\x50\xca\xcc\x4d\x4c\x4f\x55\xb2\x52\x50\xca\xce\x2c\x29\x49\xcd\xd3\xcb\x2a\x48\x57\xe2\xaa\xe5\x02\x04\x00\x00\xff\xff\x27\x07\xd0\xf9\x1c\x00\x00\x00") + +func testFixturesDocYamlUserGuideUpdateDemoImagesKittenHtmlDataJsonBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideUpdateDemoImagesKittenHtmlDataJson, + "test/fixtures/doc-yaml/user-guide/update-demo/images/kitten/html/data.json", + ) +} + +func testFixturesDocYamlUserGuideUpdateDemoImagesKittenHtmlDataJson() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideUpdateDemoImagesKittenHtmlDataJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/update-demo/images/kitten/html/data.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideUpdateDemoImagesNautilusHtmlDataJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xaa\xe6\x52\x50\x50\xca\xcc\x4d\x4c\x4f\x55\xb2\x52\x50\xca\x4b\x2c\x2d\xc9\xcc\x29\x2d\xd6\xcb\x2a\x48\x57\xe2\xaa\xe5\x02\x04\x00\x00\xff\xff\xbe\x2a\xe3\xd9\x1e\x00\x00\x00") + +func testFixturesDocYamlUserGuideUpdateDemoImagesNautilusHtmlDataJsonBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideUpdateDemoImagesNautilusHtmlDataJson, + "test/fixtures/doc-yaml/user-guide/update-demo/images/nautilus/html/data.json", + ) +} + +func testFixturesDocYamlUserGuideUpdateDemoImagesNautilusHtmlDataJson() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideUpdateDemoImagesNautilusHtmlDataJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/update-demo/images/nautilus/html/data.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideUpdateDemoKittenRcYamlIn = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\x31\x4f\x03\x31\x0c\x85\xf7\xfc\x0a\xff\x81\x43\xb0\xa1\xac\x9d\x10\x4b\x85\x10\xbb\xc9\x3d\xa1\xa8\x8e\x1d\xf9\x4c\x97\xaa\xff\x1d\xa5\x70\xa5\xc3\x21\xe1\x29\x8e\xdf\xfb\xde\xe3\x5e\xdf\xe0\x4b\x35\xcd\x74\x7c\x48\x87\xaa\x73\xa6\x17\x74\xa9\x85\xa3\x9a\xee\x4c\xc3\x4d\x04\x9e\x1a\x82\x67\x0e\xce\x89\x48\xb9\x21\xd3\x67\x9f\x39\x30\xcd\x68\x36\x1d\x6a\x04\x34\x2d\x1d\x65\x08\x16\x08\x4a\x98\x8f\xf7\x86\xfc\xf2\x7b\x5c\x83\x7f\xbc\x44\x81\xd6\x85\x03\xdf\xae\xdb\xc0\x31\xc2\xef\x90\x65\xdd\xfe\xa2\x6e\x93\x89\xd6\x66\x63\x8a\x69\x70\x55\xf8\x95\x36\x51\x6d\xfc\x81\x4c\xa7\xd3\xdd\xf3\xc5\xf4\x34\xf6\xf3\xf9\x1f\x69\xdd\x3c\x6e\x6a\x4d\xbf\xf8\xbd\x79\x64\x7a\xbc\xbf\xde\x88\xba\x5b\x58\x31\xc9\xf4\xba\xdb\xa7\xaf\x00\x00\x00\xff\xff\x67\x96\xe2\x98\x7f\x01\x00\x00") + +func testFixturesDocYamlUserGuideUpdateDemoKittenRcYamlInBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideUpdateDemoKittenRcYamlIn, + "test/fixtures/doc-yaml/user-guide/update-demo/kitten-rc.yaml.in", + ) +} + +func testFixturesDocYamlUserGuideUpdateDemoKittenRcYamlIn() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideUpdateDemoKittenRcYamlInBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/update-demo/kitten-rc.yaml.in", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideUpdateDemoNautilusRcYamlIn = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x8e\xb1\x4e\x03\x31\x0c\x86\xf7\x3c\xc5\xff\x02\x87\x80\x09\x65\xed\xc4\x82\x2a\x84\xd8\x4d\xce\x42\x11\x4e\x1c\x39\xbe\x2e\x55\xdf\x1d\x85\x72\x47\x07\x2a\xd5\x5b\xec\xfc\xdf\xff\x51\xcb\xef\x6c\x3d\x6b\x8d\x38\x3c\x84\xaf\x5c\xe7\x88\x57\x6e\x92\x13\x79\xd6\xba\xd3\xea\xa6\x22\x6c\xa1\xb0\xd3\x4c\x4e\x31\x00\x95\x0a\x47\x2c\x6d\x26\xe7\x69\xe6\xa2\x53\xa5\xc5\xb3\x2c\x3d\xf4\xc6\x69\x7c\xb1\x33\xa4\x47\x3c\x06\xa0\xb3\x70\x72\xb5\x71\xf9\x27\xfe\xb3\x3d\xac\x22\x1b\x0b\x70\x2e\x4d\xc8\xf9\x9c\xbb\x54\x18\x23\xf4\xc1\xd2\xd7\xd7\x35\xee\x35\x36\xb0\xba\x8e\x49\x5a\x9d\x72\x65\xdb\x78\x13\x72\xa1\x4f\x8e\x38\x1e\xef\x5e\x7e\x63\xcf\x63\x73\x3a\xdd\xd0\xd8\xd4\xfc\x42\x6d\xfa\x2b\xd8\xab\x79\xc4\xd3\xfd\x76\x03\x9a\xa9\x6b\x52\x89\x78\xdb\xed\xc3\x77\x00\x00\x00\xff\xff\x95\x67\x7a\xc0\x95\x01\x00\x00") + +func testFixturesDocYamlUserGuideUpdateDemoNautilusRcYamlInBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideUpdateDemoNautilusRcYamlIn, + "test/fixtures/doc-yaml/user-guide/update-demo/nautilus-rc.yaml.in", + ) +} + +func testFixturesDocYamlUserGuideUpdateDemoNautilusRcYamlIn() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideUpdateDemoNautilusRcYamlInBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/update-demo/nautilus-rc.yaml.in", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideWalkthroughPodNginxWithLabelYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\xcc\x41\x0a\xc2\x40\x0c\x85\xe1\xfd\x9c\xe2\x5d\xa0\xa0\x3b\xc9\x29\xba\x72\x1f\x3b\xa1\x04\x3b\x49\x98\x09\xe2\xf1\xa5\xa2\x88\xdd\x7e\xc9\xff\x38\xf4\x2a\x7d\xa8\x1b\xe1\x71\x2e\x77\xb5\x4a\x98\xbd\x96\x26\xc9\x95\x93\xa9\x00\xc6\x4d\x08\xb6\xaa\x3d\x0b\xb0\xf1\x4d\xb6\xb1\x3b\xc0\x11\xdf\xc3\x08\x59\x76\x5c\xdc\x92\xd5\xa4\xbf\x5f\xa6\x43\x0c\x68\xe3\xf5\x0f\xc2\x7b\x7e\xe6\xa6\x5f\x3d\x7b\x4f\xc2\xe5\x54\x5e\x01\x00\x00\xff\xff\x76\xb9\xf1\x84\xa2\x00\x00\x00") + +func testFixturesDocYamlUserGuideWalkthroughPodNginxWithLabelYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideWalkthroughPodNginxWithLabelYaml, + "test/fixtures/doc-yaml/user-guide/walkthrough/pod-nginx-with-label.yaml", + ) +} + +func testFixturesDocYamlUserGuideWalkthroughPodNginxWithLabelYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideWalkthroughPodNginxWithLabelYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/walkthrough/pod-nginx-with-label.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideWalkthroughPodNginxYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xcb\x31\x0a\x02\x41\x0c\x85\xe1\x3e\xa7\x78\x17\x10\xb4\x93\x9c\x62\x2b\xfb\xb0\x13\x96\x20\x93\x0c\x99\x20\x1e\x5f\xc6\x62\x61\xcb\xf7\xf3\x3d\x19\xf6\xd2\x9c\x16\xce\xf8\x3c\xe8\x6d\xde\x18\x5b\x34\xea\x5a\xd2\xa4\x84\x09\x70\xe9\xca\xf0\xc3\xfc\x4b\x73\xe8\xbe\xda\x1e\x5e\x62\xae\x39\xd7\xba\x5d\x0c\x00\x58\x97\xe3\x12\x46\x64\xfd\xed\xd2\xe7\x7b\x8b\x2c\xc6\xf3\x4e\xbf\x00\x00\x00\xff\xff\x83\x81\xaa\x06\x89\x00\x00\x00") + +func testFixturesDocYamlUserGuideWalkthroughPodNginxYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideWalkthroughPodNginxYaml, + "test/fixtures/doc-yaml/user-guide/walkthrough/pod-nginx.yaml", + ) +} + +func testFixturesDocYamlUserGuideWalkthroughPodNginxYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideWalkthroughPodNginxYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/walkthrough/pod-nginx.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideWalkthroughPodRedisYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x8e\xb1\x0a\x02\x31\x10\x44\xfb\x7c\xc5\xfc\x40\x38\x6c\x53\xdb\x0a\x57\xd9\x2f\x97\xe5\x5c\x34\x9b\x90\xec\x1d\x88\xf8\xef\x92\x13\x8b\x53\x2c\x77\x98\xf7\x76\xa8\xc8\x99\x6b\x93\xac\x01\xeb\xc1\x5d\x45\x63\xc0\x98\xa3\x4b\x6c\x14\xc9\x28\x38\x40\x29\x71\x40\xe5\x28\xcd\xb5\xc2\x53\xcf\xa6\xac\x46\xa2\x5c\x5b\xbf\xfc\xae\x03\x00\x92\x68\xde\x05\x6b\xbe\x2d\x89\x4f\x79\x51\xdb\x90\x2f\xc8\x97\x3e\xa3\x19\xab\xf9\x66\xb9\xd2\xcc\x5b\x09\x48\x1d\x19\xc9\x2e\x01\x43\x5f\x34\x7c\x9c\x6f\xe3\xef\xff\x7f\x2a\x4e\xc5\xee\x47\xa9\x01\x8f\xa7\x7b\x05\x00\x00\xff\xff\xde\xf9\xb5\xdc\xf9\x00\x00\x00") + +func testFixturesDocYamlUserGuideWalkthroughPodRedisYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideWalkthroughPodRedisYaml, + "test/fixtures/doc-yaml/user-guide/walkthrough/pod-redis.yaml", + ) +} + +func testFixturesDocYamlUserGuideWalkthroughPodRedisYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideWalkthroughPodRedisYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/walkthrough/pod-redis.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideWalkthroughPodWithHttpHealthcheckYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xc3\x30\x10\x44\xef\xfe\x8a\x81\x5e\x6b\xd2\xd0\x4b\xd1\xb9\xd0\x6b\xa0\xd0\x6b\xd9\xd8\x6b\x6b\x89\xbc\x12\xd2\x26\x69\xf2\xf5\x45\x4e\x1c\x53\xe8\x51\x6f\x66\x87\x19\x51\x92\x2f\xce\x45\xa2\x3a\x9c\xb6\xcd\x41\xb4\x77\xd8\xc5\xbe\x99\xd8\xa8\x27\x23\xd7\x00\x4a\x13\x3b\xa4\xd8\xb7\x67\x31\xdf\x7a\xa6\x60\xbe\xf3\xdc\x1d\x9a\x92\xb8\xab\x96\x2e\xaa\x91\x28\xe7\x52\x5f\xed\xfd\x44\x47\xd1\x9f\x06\x00\x64\xa2\xf1\x0f\x78\x42\xcf\x83\x28\x17\x98\x67\xdc\x22\x31\x67\x8a\x8e\xb3\x23\xc8\x89\x95\x4b\xd9\xe5\xb8\x67\x37\xa3\x7a\x46\x0a\x6f\x96\x90\x2a\xbe\xd3\x0a\x3e\xd8\x16\x13\x90\xc8\xbc\xc3\xe6\xbb\x18\xd9\xb1\x6c\x6e\xf1\xd7\x55\x8e\xd9\x1c\xde\x5e\x1e\xa1\x81\x75\x34\x8f\x38\xc0\x64\x62\x58\xc4\x99\xc4\x30\xc4\x0c\xaa\xc3\x2b\x11\x15\x13\x0a\x72\xe5\xb5\xcb\x60\x9c\x67\xbd\x18\x65\x3b\xa6\x67\xec\x79\x88\x99\x41\x29\x85\x8b\xe8\xf8\xef\x32\x2c\x59\xef\x1c\xe8\xf2\xc9\x5d\xd4\xbe\x38\xbc\x2e\x7d\x6a\x87\x78\xb4\x87\xb0\x6d\x96\xd2\xe5\x36\xb1\x5d\xff\x7b\xb7\x4c\xf9\x0d\x00\x00\xff\xff\xa7\xb1\x40\x95\xca\x01\x00\x00") + +func testFixturesDocYamlUserGuideWalkthroughPodWithHttpHealthcheckYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideWalkthroughPodWithHttpHealthcheckYaml, + "test/fixtures/doc-yaml/user-guide/walkthrough/pod-with-http-healthcheck.yaml", + ) +} + +func testFixturesDocYamlUserGuideWalkthroughPodWithHttpHealthcheckYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideWalkthroughPodWithHttpHealthcheckYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/walkthrough/pod-with-http-healthcheck.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideWalkthroughPodtemplateJson = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8d\xcd\x4a\xc5\x30\x10\x85\xf7\x7d\x8a\x61\xd6\x57\xd4\x9d\xf4\x21\xa4\x0b\x71\x23\x2e\xc6\x66\x2c\xa1\xc9\x24\xa4\x83\x08\x92\x77\x97\xfe\xa4\x4d\x2f\xdd\x84\x70\xce\x37\xdf\x01\xf8\x6b\x00\x00\x90\xa2\x7d\xe7\x34\xd9\x20\xd8\x02\xfe\x3c\xe3\x6d\xcd\x47\x2b\x66\x4e\xba\x60\xde\xd8\x47\x47\xca\xa5\xf2\xac\x64\x48\x09\xdb\x4d\x02\x80\x42\x9e\x67\x5c\x06\x2b\xbf\xb8\xa4\x79\xc3\xb5\x9c\x57\xf8\x85\x02\x00\x1d\x7d\xb1\x9b\x4e\xd9\xb5\xba\xd2\x2f\xc8\xc0\xc2\x89\x94\x5f\x6b\xf4\xa1\xb0\x3b\x89\x53\xe4\xfe\xac\xc7\x3e\x88\x92\x15\x4e\xf3\xee\x47\x3d\x7c\xbf\x7c\x3b\x75\xd6\xd3\xb0\x94\x26\xf4\x23\xa7\x6f\xeb\xf8\xf1\x8a\x8b\x21\xe9\xaa\x3e\xa6\xba\x90\x14\x5b\x78\x79\xca\x9f\x07\xbb\xff\x73\x53\xde\xdc\xfc\x07\x00\x00\xff\xff\x3d\x5f\x99\x9b\xa7\x01\x00\x00") + +func testFixturesDocYamlUserGuideWalkthroughPodtemplateJsonBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideWalkthroughPodtemplateJson, + "test/fixtures/doc-yaml/user-guide/walkthrough/podtemplate.json", + ) +} + +func testFixturesDocYamlUserGuideWalkthroughPodtemplateJson() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideWalkthroughPodtemplateJsonBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/walkthrough/podtemplate.json", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideWalkthroughReplicationControllerYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x31\x6f\xdb\x40\x0c\x85\x77\xfd\x8a\x07\x64\xc8\x94\xa2\xed\x54\x68\xed\xd4\x2d\x28\x82\xee\xf4\xe9\xc9\x22\x22\xf1\x0e\x24\xe3\xb4\xff\xbe\x38\x5b\xb1\x5d\xf4\x36\x4a\xe4\xf7\x1e\x1f\xa5\xe9\x2f\x7a\x68\xb5\x11\xa7\x2f\xc3\xab\xda\x34\xe2\x27\xdb\xaa\x45\x52\xab\x7d\xaf\x96\x5e\xd7\x95\x3e\x6c\x4c\x99\x24\x65\x1c\x00\x93\x8d\x23\xec\xa8\xf6\xfb\xa9\xdc\x5a\xa2\xb1\xf4\xdf\x7e\x01\xc4\x88\xaf\x03\xf0\x80\xe0\xca\x92\xd5\xa1\x13\x2d\x75\x56\x06\x72\x21\x82\x89\x3a\xe3\xb9\x4e\xbd\x96\x44\x2e\x1a\xe7\x09\xbf\x59\xc0\x4d\x00\x1a\x70\x46\xab\x16\x7a\x58\x89\xb9\x3a\x36\x31\x39\xaa\x1d\x07\x5c\x65\xba\x05\x40\x5a\xdb\x2d\x9e\x89\xad\x4e\x2f\xdc\xda\x2a\x49\x4c\x9c\xd5\x76\x0f\x8f\xa5\xd6\x57\x25\xca\x5b\x26\xfd\x11\x6f\xc1\xe9\x0c\x2e\x4e\xc9\x0b\xf8\x01\xc6\xf7\x4e\x08\xbc\x2f\x34\x18\x0b\x23\xc4\xff\x0c\x40\xee\xd0\x8b\xe8\x7d\x48\xfd\xad\x72\xe0\x1a\x1f\x55\x27\xfd\xd8\x5a\xf5\x14\xcb\xb1\xcb\x07\xf7\x16\x18\x39\x21\x2b\x36\xc9\xb2\xec\xe9\xec\xa9\xc9\xa1\x9e\x78\x87\x78\x59\x08\x69\x8a\xa0\x9f\xe8\xa0\xcd\xd5\xcb\x79\x1d\x8d\x9e\x56\xa4\x8b\x5a\x7e\xba\x8e\xfc\x13\x05\xf0\x71\xa6\xfe\x7a\xb8\xa2\x46\xbf\x9a\x7c\xba\xbf\xee\x15\xa1\x9b\x1c\xff\xfb\xd8\x37\xb9\x5b\xee\xe9\x46\x7b\xae\x9e\x23\xbe\x7d\x1e\xfe\x06\x00\x00\xff\xff\xc5\x95\xea\x88\x61\x02\x00\x00") + +func testFixturesDocYamlUserGuideWalkthroughReplicationControllerYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideWalkthroughReplicationControllerYaml, + "test/fixtures/doc-yaml/user-guide/walkthrough/replication-controller.yaml", + ) +} + +func testFixturesDocYamlUserGuideWalkthroughReplicationControllerYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideWalkthroughReplicationControllerYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/walkthrough/replication-controller.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesDocYamlUserGuideWalkthroughServiceYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\x91\x41\xeb\xdb\x30\x0c\xc5\xef\xf9\x14\x0f\x76\xe8\x0a\x6d\xc9\x6e\x25\xd7\x7d\x81\xc2\xc6\xee\x8a\xa3\x34\x5a\x1d\xc9\xd8\x4a\xbb\x8f\x3f\x6c\xcc\xff\x62\x24\x3d\x3f\xf9\xf7\x30\x25\xf9\xc3\xb9\x88\xe9\x84\xf7\x8f\xe1\x25\xba\x4c\xf8\xc5\xf9\x2d\x81\x87\x9d\x9d\x16\x72\x9a\x06\x40\x69\xe7\x09\xfa\x14\xfd\x77\x2d\x5d\x2f\x89\x43\xd5\x92\x65\x2f\xb5\xb8\xb6\x72\xc2\x7d\x1c\x47\x7c\x83\x6f\xdc\x06\xf0\x8d\xea\x21\x05\xdd\x8a\xb2\xd9\x11\x97\xd6\x32\x4c\x07\x00\xdd\x10\x4c\x9d\x44\x39\xc3\x14\x4c\x61\x43\xb2\x05\x6e\x55\x50\x0e\x0e\xb7\x0b\x02\x29\x66\x06\x35\xac\x6e\xfe\xce\xb7\xe7\x0d\xa7\xcf\xe7\x73\x3a\xc3\x72\x15\x8f\x7d\xe6\xdc\x85\xfb\x78\x6e\x17\x9d\xf2\x93\xfd\xd1\x39\xdb\x28\x65\x73\x0b\x16\x27\xfc\xfe\xf9\x18\xea\xae\xbf\x47\x71\x44\x79\x71\x43\x2a\x1c\x39\xb8\x65\x88\xb6\x3e\x73\x8a\x12\xc8\xc5\xb4\xe1\x66\x8b\x91\xf3\xa5\x39\xe7\xa3\x27\x75\xd9\x19\xe2\x90\x85\xd5\x65\x15\x2e\x7d\x97\xc3\xd6\x9a\xa9\xd4\x50\xd1\x68\xc1\x4c\x91\x34\x70\xf3\x7b\xa6\x75\x95\x00\xb7\xdb\x80\xaf\x97\xa7\xc6\x49\x29\xf5\x2f\x18\xfe\x07\x00\x00\xff\xff\xc8\xde\x6b\x40\xb8\x01\x00\x00") + +func testFixturesDocYamlUserGuideWalkthroughServiceYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesDocYamlUserGuideWalkthroughServiceYaml, + "test/fixtures/doc-yaml/user-guide/walkthrough/service.yaml", + ) +} + +func testFixturesDocYamlUserGuideWalkthroughServiceYaml() (*asset, error) { + bytes, err := testFixturesDocYamlUserGuideWalkthroughServiceYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/doc-yaml/user-guide/walkthrough/service.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesPkgKubectlOwners = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4a\x2c\x28\x28\xca\x2f\x4b\x2d\x2a\xb6\xe2\xd2\x55\x28\xce\x4c\xd7\x4d\xce\xc9\xd4\xcd\x4d\xcc\xcc\x2b\x49\xcc\xcc\x4b\x2d\x2a\xe6\x2a\x4a\x2d\xcb\x4c\x2d\x47\x55\xc0\x05\x08\x00\x00\xff\xff\x04\xd0\x0a\x1c\x36\x00\x00\x00") + +func testFixturesPkgKubectlOwnersBytes() ([]byte, error) { + return bindataRead( + _testFixturesPkgKubectlOwners, + "test/fixtures/pkg/kubectl/OWNERS", + ) +} + +func testFixturesPkgKubectlOwners() (*asset, error) { + bytes, err := testFixturesPkgKubectlOwnersBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/pkg/kubectl/OWNERS", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesPkgKubectlBuilderKittenRcYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8e\x4d\x4e\x03\x31\x0c\x85\xf7\x39\x85\x2f\x30\x14\x76\x28\xdb\x5e\xa0\x42\x88\x2d\x32\x99\xa7\x91\x55\x27\x8e\x3c\xa6\xe7\x47\x03\x4c\x9b\x45\xc1\xab\xfc\x3c\x7f\xdf\xe3\x2e\x6f\xf0\x55\xac\x65\xba\x3c\xa5\xb3\xb4\x39\xd3\x0b\xba\x4a\xe1\x10\x6b\x47\x6b\xe1\xa6\x0a\x4f\x15\xc1\x33\x07\xe7\x44\xd4\xb8\x22\xd3\x67\x9f\x39\x30\xcd\xa8\x36\x9d\x25\x02\x2d\xad\x1d\x65\x0b\xac\x50\x94\x30\xdf\xce\x77\xe2\xdf\xaf\x97\x5d\xfc\xbb\x4b\x14\xa8\x5d\x39\xf0\xb3\x35\x0a\xb7\x51\xfe\x80\xae\xfb\xed\x2f\xea\x7d\x32\xd1\xde\x6c\x9b\x62\x2d\x58\x1a\xfc\x4a\x9b\x48\x2a\x2f\xc8\xb4\x14\x7f\x10\x3b\x2c\x66\x8b\xe2\xfd\x16\x3c\x0c\x9e\x3c\x60\xff\x2f\xd2\xcd\x63\x68\x3c\xdd\xcc\x27\xf3\xc8\xf4\xfc\x78\xfd\x23\xea\x6e\x61\xc5\x34\xd3\xeb\xf1\x94\xbe\x02\x00\x00\xff\xff\xf1\x27\xe9\x67\x9a\x01\x00\x00") + +func testFixturesPkgKubectlBuilderKittenRcYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesPkgKubectlBuilderKittenRcYaml, + "test/fixtures/pkg/kubectl/builder/kitten-rc.yaml", + ) +} + +func testFixturesPkgKubectlBuilderKittenRcYaml() (*asset, error) { + bytes, err := testFixturesPkgKubectlBuilderKittenRcYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/pkg/kubectl/builder/kitten-rc.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesPkgKubectlPluginsEchoPluginYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x3c\xcd\x31\x0e\x02\x31\x0c\x44\xd1\x3e\xa7\x30\xee\xb9\xc0\xd6\xd0\x51\x72\x81\x95\x63\xe2\x88\x8d\x27\x8a\x83\xb8\x3e\x42\x44\xd4\xff\x69\xc6\xf7\xa6\x1b\xb1\x8a\x81\x53\x18\xc6\xbc\x68\xc8\x46\x7c\x15\x83\x06\x3d\x30\x68\x6a\xcc\xb3\xb4\xcc\xe9\x80\x97\xd5\x6f\xf0\x42\x59\x43\x46\xed\xb3\xc2\x7f\xd2\xf4\xaf\xe9\xbb\x49\xfd\x78\x95\xea\x9c\x04\xad\xed\x9e\xd7\x15\xdd\xad\xc6\x6a\xf4\xc6\x78\xc6\x89\xd3\x27\x00\x00\xff\xff\xa6\xd3\x6f\x7a\x8b\x00\x00\x00") + +func testFixturesPkgKubectlPluginsEchoPluginYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesPkgKubectlPluginsEchoPluginYaml, + "test/fixtures/pkg/kubectl/plugins/echo/plugin.yaml", + ) +} + +func testFixturesPkgKubectlPluginsEchoPluginYaml() (*asset, error) { + bytes, err := testFixturesPkgKubectlPluginsEchoPluginYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/pkg/kubectl/plugins/echo/plugin.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesPkgKubectlPluginsEnvEnvSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x51\x6f\xd3\x30\x14\x85\xdf\xfd\x2b\x0e\xcd\xc3\x40\x2a\xc9\xe8\x0b\x12\x3c\x65\x5d\x81\xa8\x55\x8a\x9a\x94\x69\x4f\xc8\x49\x6e\x93\x2b\xa5\xb6\xb1\x6f\x96\x55\xda\x8f\x47\xe9\x3a\x89\x0a\x3f\xfa\x7e\x3e\xfe\x7c\x1c\xbd\x4b\x2a\x36\x49\xa5\x43\xa7\x54\x84\xa5\x75\x27\xcf\x6d\x27\x58\xdc\x7e\xfa\x8c\xb2\x23\xac\x87\x8a\xbc\x21\xa1\x80\x74\x90\xce\xfa\x10\xab\x48\x45\xd8\x70\x4d\x26\x50\x83\xc1\x34\xe4\x21\x1d\x21\x75\xba\xee\xe8\x6d\x32\xc7\x2f\xf2\x81\xad\xc1\x22\xbe\xc5\xfb\x09\x98\x5d\x46\xb3\x0f\x5f\x55\x84\x93\x1d\x70\xd4\x27\x18\x2b\x18\x02\x41\x3a\x0e\x38\x70\x4f\xa0\xe7\x9a\x9c\x80\x0d\x6a\x7b\x74\x3d\x6b\x53\x13\x46\x96\xee\x7c\xcd\x25\x24\x56\x11\x1e\x2f\x11\xb6\x12\xcd\x06\x1a\xb5\x75\x27\xd8\xc3\xbf\x1c\xb4\x9c\x85\xa7\xd5\x89\xb8\x2f\x49\x32\x8e\x63\xac\xcf\xb2\xb1\xf5\x6d\xd2\xbf\x82\x21\xd9\x64\xcb\x55\x5e\xac\x3e\x2e\xe2\xdb\xf3\x91\xbd\xe9\x29\x04\x78\xfa\x33\xb0\xa7\x06\xd5\x09\xda\xb9\x9e\x6b\x5d\xf5\x84\x5e\x8f\xb0\x1e\xba\xf5\x44\x0d\xc4\x4e\xbe\xa3\x67\x61\xd3\xce\x11\xec\x41\x46\xed\x49\x45\x68\x38\x88\xe7\x6a\x90\xab\xb2\xde\xec\x38\x5c\x01\xd6\x40\x1b\xcc\xd2\x02\x59\x31\xc3\x5d\x5a\x64\xc5\x5c\x45\x78\xc8\xca\x1f\xdb\x7d\x89\x87\x74\xb7\x4b\xf3\x32\x5b\x15\xd8\xee\xb0\xdc\xe6\xf7\x59\x99\x6d\xf3\x02\xdb\x6f\x48\xf3\x47\xac\xb3\xfc\x7e\x0e\x62\xe9\xc8\x83\x9e\x9d\x9f\xfc\xad\x07\x4f\x35\x52\x33\x75\x56\x10\x5d\x09\x1c\xec\xab\x50\x70\x54\xf3\x81\x6b\xf4\xda\xb4\x83\x6e\x09\xad\x7d\x22\x6f\xd8\xb4\x70\xe4\x8f\x1c\xa6\xcf\x0c\xd0\xa6\x51\x11\x7a\x3e\xb2\x68\x39\xef\xfc\xf7\xa8\x58\x29\x32\x4f\x78\x41\xeb\xc9\xe1\x66\xbd\xbf\x5b\x2d\xcb\xcd\xef\x9f\x9b\xfd\xf7\x2c\x2f\x6e\xf0\x82\x60\xbd\xa8\xbf\x01\x00\x00\xff\xff\x41\x13\xe1\x5b\x7d\x02\x00\x00") + +func testFixturesPkgKubectlPluginsEnvEnvShBytes() ([]byte, error) { + return bindataRead( + _testFixturesPkgKubectlPluginsEnvEnvSh, + "test/fixtures/pkg/kubectl/plugins/env/env.sh", + ) +} + +func testFixturesPkgKubectlPluginsEnvEnvSh() (*asset, error) { + bytes, err := testFixturesPkgKubectlPluginsEnvEnvShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/pkg/kubectl/plugins/env/env.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesPkgKubectlPluginsEnvPluginYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x8e\x31\xca\xc3\x30\x0c\x46\x77\x9d\xe2\x43\xfb\x9f\x9f\xb6\x9b\xe7\x1e\xa1\x74\x17\x89\x12\x1b\x6c\xa7\x54\x76\xce\x5f\x9c\xa4\x85\x52\xc8\x26\x78\x4f\x4f\xca\x92\xd4\x41\xf3\x42\xe6\xe7\x67\xb9\xaa\xf5\x0e\x7c\xf3\x8a\x47\xac\x53\xc8\x0d\xd9\x3e\x33\xf5\x73\x4a\x92\x07\x07\xee\xfe\x35\x2f\x9d\x79\xa6\x31\xca\x64\x0e\x04\xfc\x61\xab\x71\x51\x2b\x27\x26\x00\x18\xde\xc1\x60\x08\x06\x41\xd3\xb1\xc2\x2f\xfd\x7c\xa4\xef\x70\xfd\xd0\x6f\xf7\xcb\x4f\xe1\x72\x54\xf8\xc0\xf1\x2e\xb1\xb6\x95\x41\x47\xa9\xb1\x30\xbd\x02\x00\x00\xff\xff\x0d\x64\xd9\xa6\x02\x01\x00\x00") + +func testFixturesPkgKubectlPluginsEnvPluginYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesPkgKubectlPluginsEnvPluginYaml, + "test/fixtures/pkg/kubectl/plugins/env/plugin.yaml", + ) +} + +func testFixturesPkgKubectlPluginsEnvPluginYaml() (*asset, error) { + bytes, err := testFixturesPkgKubectlPluginsEnvPluginYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/pkg/kubectl/plugins/env/plugin.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesPkgKubectlPluginsErrorPluginYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x04\xc0\xcb\x0d\xc2\x30\x0c\x06\xe0\x7b\xa6\xf8\xf1\x18\x39\x33\x02\x0b\x58\xad\x4b\x2a\xf9\x81\x6c\x47\x88\xed\xf9\x9c\x4d\x26\x48\x32\x23\x69\xd4\x8a\xec\xa7\xd4\x31\x41\xaf\x25\xe8\x14\x13\x3f\x63\x17\x3e\xba\xdf\xb7\xa3\x17\x37\x58\xbf\xfc\x2b\x5c\x7c\x6b\x3d\x68\x1c\x61\xc6\x7e\x4e\xd0\xc5\x5a\x42\xe3\x1f\x00\x00\xff\xff\x1b\xb0\x81\x7d\x55\x00\x00\x00") + +func testFixturesPkgKubectlPluginsErrorPluginYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesPkgKubectlPluginsErrorPluginYaml, + "test/fixtures/pkg/kubectl/plugins/error/plugin.yaml", + ) +} + +func testFixturesPkgKubectlPluginsErrorPluginYaml() (*asset, error) { + bytes, err := testFixturesPkgKubectlPluginsErrorPluginYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/pkg/kubectl/plugins/error/plugin.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesPkgKubectlPluginsGetPluginYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x1c\xcc\xbd\x0d\x80\x20\x10\x06\xd0\x9e\x29\xce\xeb\x59\x80\xda\x11\x5c\x00\xe1\x13\x4c\xe0\xce\xf0\x13\xd6\x37\xda\xbf\x3c\xf1\x15\x8e\x38\x61\xb0\xe9\x59\xdb\xd8\xd1\x83\x23\x3e\x32\x68\xa9\x44\xb4\x6b\x16\x12\x2c\x7a\xca\x4c\xb7\xd8\xd3\x77\x44\x4a\x18\x1b\x9b\xa0\xb5\x7a\x89\x8e\x18\x21\xeb\xa7\xec\x1f\xbd\x01\x00\x00\xff\xff\xa6\xa7\xb5\x39\x55\x00\x00\x00") + +func testFixturesPkgKubectlPluginsGetPluginYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesPkgKubectlPluginsGetPluginYaml, + "test/fixtures/pkg/kubectl/plugins/get/plugin.yaml", + ) +} + +func testFixturesPkgKubectlPluginsGetPluginYaml() (*asset, error) { + bytes, err := testFixturesPkgKubectlPluginsGetPluginYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/pkg/kubectl/plugins/get/plugin.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesPkgKubectlPluginsIncompletePluginYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xca\x4b\xcc\x4d\xb5\x52\x50\xca\xcc\x4b\xce\xcf\x2d\xc8\x49\x2d\x49\x55\xe2\x2a\xce\xc8\x2f\x2a\x71\x49\x2d\x4e\xb6\x52\x50\xf2\x84\x8b\x2b\x14\xe4\x94\xa6\x67\xe6\x29\x71\x01\x02\x00\x00\xff\xff\x67\x4c\xdb\x5f\x32\x00\x00\x00") + +func testFixturesPkgKubectlPluginsIncompletePluginYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesPkgKubectlPluginsIncompletePluginYaml, + "test/fixtures/pkg/kubectl/plugins/incomplete/plugin.yaml", + ) +} + +func testFixturesPkgKubectlPluginsIncompletePluginYaml() (*asset, error) { + bytes, err := testFixturesPkgKubectlPluginsIncompletePluginYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/pkg/kubectl/plugins/incomplete/plugin.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesPkgKubectlPluginsTreePluginYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\xcc\x31\xae\xc2\x30\x10\x84\xe1\x7e\x4f\x31\x72\xff\x8a\x07\x9d\x6b\x0e\x40\xc1\x05\x2c\x7b\xc3\x5a\x8a\xbd\x92\xbd\x28\xd7\x47\x26\x41\x42\x4a\x0a\x68\x67\x7e\x7d\x35\x14\xf6\x70\xd6\x98\x1d\x75\xd1\x66\x17\xee\xd1\xc3\x5d\xe7\xc7\x3d\x57\x2c\xd9\x04\x01\xe3\x87\x4e\x88\x5a\x4a\xa8\xa9\x3b\x1a\x8b\x27\xe0\x0f\x1b\x11\x25\xcf\xe9\xdf\x11\x00\x7c\x42\x37\x61\x4c\xb9\x75\xc3\xab\x18\xca\xea\xad\xe9\x26\x7a\x70\x14\x7d\x27\x95\x77\xf2\xe9\x58\xee\x1c\xb5\xa6\xef\x69\x5b\x74\x47\x9f\x8f\x69\x93\xdc\x7e\x91\xa5\x31\x13\x3d\x03\x00\x00\xff\xff\x26\x28\x31\x5c\x51\x01\x00\x00") + +func testFixturesPkgKubectlPluginsTreePluginYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesPkgKubectlPluginsTreePluginYaml, + "test/fixtures/pkg/kubectl/plugins/tree/plugin.yaml", + ) +} + +func testFixturesPkgKubectlPluginsTreePluginYaml() (*asset, error) { + bytes, err := testFixturesPkgKubectlPluginsTreePluginYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/pkg/kubectl/plugins/tree/plugin.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesPkgKubectlPlugins2HelloHelloSh = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x4f\x8f\xd3\x30\x10\xc5\xef\xfe\x14\x8f\xe4\x02\x52\x49\x4a\x2f\x48\x70\x0a\xdd\x22\xa2\x5d\xa5\x52\xd3\x65\xb5\x47\xc7\x99\xc6\x23\xb9\xb6\xb1\x1d\xb2\xfd\xf6\x28\xfd\x23\xa8\x98\xdb\xf8\x3d\x8f\x7f\x7e\x93\xbf\x2b\x3b\xb6\x65\x27\xa3\x16\x22\xc7\xda\xf9\x53\xe0\x41\x27\xac\x96\x9f\x3e\x63\xaf\x09\x8f\x63\x47\xc1\x52\xa2\x88\x6a\x4c\xda\x85\x58\x88\x5c\xe4\x78\x62\x45\x36\x52\x8f\xd1\xf6\x14\x90\x34\xa1\xf2\x52\x69\xba\x29\x0b\xfc\xa4\x10\xd9\x59\xac\x8a\x25\xde\xcf\x86\xec\x2a\x65\x1f\xbe\x8a\x1c\x27\x37\xe2\x28\x4f\xb0\x2e\x61\x8c\x84\xa4\x39\xe2\xc0\x86\x40\x6f\x8a\x7c\x02\x5b\x28\x77\xf4\x86\xa5\x55\x84\x89\x93\x3e\x3f\x73\x1d\x52\x88\x1c\xaf\xd7\x11\xae\x4b\x92\x2d\x24\x94\xf3\x27\xb8\xc3\xbf\x3e\xc8\x74\x06\x9e\x4b\xa7\xe4\xbf\x94\xe5\x34\x4d\x85\x3c\xc3\x16\x2e\x0c\xa5\xb9\x18\x63\xf9\x54\xaf\x37\x4d\xbb\xf9\xb8\x2a\x96\xe7\x2b\xcf\xd6\x50\x8c\x08\xf4\x6b\xe4\x40\x3d\xba\x13\xa4\xf7\x86\x95\xec\x0c\xc1\xc8\x09\x2e\x40\x0e\x81\xa8\x47\x72\x33\xef\x14\x38\xb1\x1d\x16\x88\xee\x90\x26\x19\x48\xe4\xe8\x39\xa6\xc0\xdd\x98\xee\xc2\xba\xd1\x71\xbc\x33\x38\x0b\x69\x91\x55\x2d\xea\x36\xc3\xb7\xaa\xad\xdb\x85\xc8\xf1\x52\xef\x7f\x6c\x9f\xf7\x78\xa9\x76\xbb\xaa\xd9\xd7\x9b\x16\xdb\x1d\xd6\xdb\xe6\xa1\xde\xd7\xdb\xa6\xc5\xf6\x3b\xaa\xe6\x15\x8f\x75\xf3\xb0\x00\x71\xd2\x14\x40\x6f\x3e\xcc\xfc\x2e\x80\xe7\x18\xa9\x9f\x33\x6b\x89\xee\x00\x0e\xee\x02\x14\x3d\x29\x3e\xb0\x82\x91\x76\x18\xe5\x40\x18\xdc\x6f\x0a\x96\xed\x00\x4f\xe1\xc8\x71\x5e\x66\x84\xb4\xbd\xc8\x61\xf8\xc8\x49\xa6\xf3\xc9\x7f\x9f\x2a\x84\x20\xa5\x1d\xb2\xfc\x52\xd9\xad\xd5\x64\x8c\xfb\xdb\xde\xd4\x3f\x01\x00\x00\xff\xff\x2c\x6f\xb0\x25\x86\x02\x00\x00") + +func testFixturesPkgKubectlPlugins2HelloHelloShBytes() ([]byte, error) { + return bindataRead( + _testFixturesPkgKubectlPlugins2HelloHelloSh, + "test/fixtures/pkg/kubectl/plugins2/hello/hello.sh", + ) +} + +func testFixturesPkgKubectlPlugins2HelloHelloSh() (*asset, error) { + bytes, err := testFixturesPkgKubectlPlugins2HelloHelloShBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/pkg/kubectl/plugins2/hello/hello.sh", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +var _testFixturesPkgKubectlPlugins2HelloPluginYaml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x8c\x31\x8e\xc3\x30\x0c\x04\x7b\xbe\x62\xe1\xfe\x7c\xbd\x8a\x54\x79\x42\x3e\xa0\x48\x84\x25\x80\x22\x8d\x90\x42\x90\xdf\x07\xb0\xe1\x26\xe5\xce\x2c\x46\xf3\xe0\x84\xc6\x22\x46\xde\xec\x15\x77\xf6\x92\xb0\x3c\x1a\x9f\x14\xbb\xcc\xad\xeb\x42\x62\xba\x9d\xf2\x46\xc0\xaf\x47\x77\x64\x28\xbf\x09\x17\x99\xce\x15\xcf\x0f\x82\x3d\xfe\xca\xa8\x04\x84\x1d\x0b\x63\x4a\xf4\x5d\xf8\xba\x8a\x95\x1c\xdd\xd4\x57\x2a\x36\x46\xd6\x9a\xb0\xfe\x1f\xfd\xd5\x1b\x7d\x03\x00\x00\xff\xff\xf3\xd5\x01\xc8\xa5\x00\x00\x00") + +func testFixturesPkgKubectlPlugins2HelloPluginYamlBytes() ([]byte, error) { + return bindataRead( + _testFixturesPkgKubectlPlugins2HelloPluginYaml, + "test/fixtures/pkg/kubectl/plugins2/hello/plugin.yaml", + ) +} + +func testFixturesPkgKubectlPlugins2HelloPluginYaml() (*asset, error) { + bytes, err := testFixturesPkgKubectlPlugins2HelloPluginYamlBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "test/fixtures/pkg/kubectl/plugins2/hello/plugin.yaml", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info} + return a, nil +} + +// Asset loads and returns the asset for the given name. +// It returns an error if the asset could not be found or +// could not be loaded. +func Asset(name string) ([]byte, error) { + cannonicalName := strings.Replace(name, "\\", "/", -1) + if f, ok := _bindata[cannonicalName]; ok { + a, err := f() + if err != nil { + return nil, fmt.Errorf("Asset %s can't read by error: %v", name, err) + } + return a.bytes, nil + } + return nil, fmt.Errorf("Asset %s not found", name) +} + +// MustAsset is like Asset but panics when Asset would return an error. +// It simplifies safe initialization of global variables. +func MustAsset(name string) []byte { + a, err := Asset(name) + if err != nil { + panic("asset: Asset(" + name + "): " + err.Error()) + } + + return a +} + +// AssetInfo loads and returns the asset info for the given name. +// It returns an error if the asset could not be found or +// could not be loaded. +func AssetInfo(name string) (os.FileInfo, error) { + cannonicalName := strings.Replace(name, "\\", "/", -1) + if f, ok := _bindata[cannonicalName]; ok { + a, err := f() + if err != nil { + return nil, fmt.Errorf("AssetInfo %s can't read by error: %v", name, err) + } + return a.info, nil + } + return nil, fmt.Errorf("AssetInfo %s not found", name) +} + +// AssetNames returns the names of the assets. +func AssetNames() []string { + names := make([]string, 0, len(_bindata)) + for name := range _bindata { + names = append(names, name) + } + return names +} + +// _bindata is a table, holding each asset generator, mapped to its name. +var _bindata = map[string]func() (*asset, error){ + "examples/BUILD": examplesBuild, + "examples/OWNERS": examplesOwners, + "examples/cloud-controller-manager/persistent-volume-label-initializer-config.yaml": examplesCloudControllerManagerPersistentVolumeLabelInitializerConfigYaml, + "examples/cluster-dns/dns-backend-rc.yaml": examplesClusterDnsDnsBackendRcYaml, + "examples/cluster-dns/dns-backend-service.yaml": examplesClusterDnsDnsBackendServiceYaml, + "examples/cluster-dns/dns-frontend-pod.yaml": examplesClusterDnsDnsFrontendPodYaml, + "examples/cluster-dns/images/backend/Dockerfile": examplesClusterDnsImagesBackendDockerfile, + "examples/cluster-dns/images/backend/Makefile": examplesClusterDnsImagesBackendMakefile, + "examples/cluster-dns/images/backend/server.py": examplesClusterDnsImagesBackendServerPy, + "examples/cluster-dns/images/frontend/Dockerfile": examplesClusterDnsImagesFrontendDockerfile, + "examples/cluster-dns/images/frontend/Makefile": examplesClusterDnsImagesFrontendMakefile, + "examples/cluster-dns/images/frontend/client.py": examplesClusterDnsImagesFrontendClientPy, + "examples/cluster-dns/namespace-dev.yaml": examplesClusterDnsNamespaceDevYaml, + "examples/cluster-dns/namespace-prod.yaml": examplesClusterDnsNamespaceProdYaml, + "examples/cockroachdb/OWNERS": examplesCockroachdbOwners, + "examples/cockroachdb/cockroachdb-statefulset.yaml": examplesCockroachdbCockroachdbStatefulsetYaml, + "examples/cockroachdb/demo.sh": examplesCockroachdbDemoSh, + "examples/cockroachdb/minikube.sh": examplesCockroachdbMinikubeSh, + "examples/doc.go": examplesDocGo, + "examples/elasticsearch/es-rc.yaml": examplesElasticsearchEsRcYaml, + "examples/elasticsearch/es-svc.yaml": examplesElasticsearchEsSvcYaml, + "examples/elasticsearch/production_cluster/es-client-rc.yaml": examplesElasticsearchProduction_clusterEsClientRcYaml, + "examples/elasticsearch/production_cluster/es-data-rc.yaml": examplesElasticsearchProduction_clusterEsDataRcYaml, + "examples/elasticsearch/production_cluster/es-discovery-svc.yaml": examplesElasticsearchProduction_clusterEsDiscoverySvcYaml, + "examples/elasticsearch/production_cluster/es-master-rc.yaml": examplesElasticsearchProduction_clusterEsMasterRcYaml, + "examples/elasticsearch/production_cluster/es-svc.yaml": examplesElasticsearchProduction_clusterEsSvcYaml, + "examples/elasticsearch/production_cluster/service-account.yaml": examplesElasticsearchProduction_clusterServiceAccountYaml, + "examples/elasticsearch/service-account.yaml": examplesElasticsearchServiceAccountYaml, + "examples/examples_test.go": examplesExamples_testGo, + "examples/explorer/BUILD": examplesExplorerBuild, + "examples/explorer/Dockerfile": examplesExplorerDockerfile, + "examples/explorer/Makefile": examplesExplorerMakefile, + "examples/explorer/explorer.go": examplesExplorerExplorerGo, + "examples/explorer/pod.yaml": examplesExplorerPodYaml, + "examples/guestbook/all-in-one/frontend.yaml": examplesGuestbookAllInOneFrontendYaml, + "examples/guestbook/all-in-one/guestbook-all-in-one.yaml": examplesGuestbookAllInOneGuestbookAllInOneYaml, + "examples/guestbook/all-in-one/redis-slave.yaml": examplesGuestbookAllInOneRedisSlaveYaml, + "examples/guestbook/frontend-deployment.yaml": examplesGuestbookFrontendDeploymentYaml, + "examples/guestbook/frontend-service.yaml": examplesGuestbookFrontendServiceYaml, + "examples/guestbook/legacy/frontend-controller.yaml": examplesGuestbookLegacyFrontendControllerYaml, + "examples/guestbook/legacy/redis-master-controller.yaml": examplesGuestbookLegacyRedisMasterControllerYaml, + "examples/guestbook/legacy/redis-slave-controller.yaml": examplesGuestbookLegacyRedisSlaveControllerYaml, + "examples/guestbook/php-redis/Dockerfile": examplesGuestbookPhpRedisDockerfile, + "examples/guestbook/php-redis/controllers.js": examplesGuestbookPhpRedisControllersJs, + "examples/guestbook/php-redis/guestbook.php": examplesGuestbookPhpRedisGuestbookPhp, + "examples/guestbook/php-redis/index.html": examplesGuestbookPhpRedisIndexHtml, + "examples/guestbook/redis-master-deployment.yaml": examplesGuestbookRedisMasterDeploymentYaml, + "examples/guestbook/redis-master-service.yaml": examplesGuestbookRedisMasterServiceYaml, + "examples/guestbook/redis-slave/Dockerfile": examplesGuestbookRedisSlaveDockerfile, + "examples/guestbook/redis-slave/run.sh": examplesGuestbookRedisSlaveRunSh, + "examples/guestbook/redis-slave-deployment.yaml": examplesGuestbookRedisSlaveDeploymentYaml, + "examples/guestbook/redis-slave-service.yaml": examplesGuestbookRedisSlaveServiceYaml, + "examples/guestbook-go/.gitignore": examplesGuestbookGoGitignore, + "examples/guestbook-go/BUILD": examplesGuestbookGoBuild, + "examples/guestbook-go/Dockerfile": examplesGuestbookGoDockerfile, + "examples/guestbook-go/Makefile": examplesGuestbookGoMakefile, + "examples/guestbook-go/guestbook-controller.json": examplesGuestbookGoGuestbookControllerJson, + "examples/guestbook-go/guestbook-service.json": examplesGuestbookGoGuestbookServiceJson, + "examples/guestbook-go/main.go": examplesGuestbookGoMainGo, + "examples/guestbook-go/public/index.html": examplesGuestbookGoPublicIndexHtml, + "examples/guestbook-go/public/script.js": examplesGuestbookGoPublicScriptJs, + "examples/guestbook-go/public/style.css": examplesGuestbookGoPublicStyleCss, + "examples/guestbook-go/redis-master-controller.json": examplesGuestbookGoRedisMasterControllerJson, + "examples/guestbook-go/redis-master-service.json": examplesGuestbookGoRedisMasterServiceJson, + "examples/guestbook-go/redis-slave-controller.json": examplesGuestbookGoRedisSlaveControllerJson, + "examples/guestbook-go/redis-slave-service.json": examplesGuestbookGoRedisSlaveServiceJson, + "examples/https-nginx/BUILD": examplesHttpsNginxBuild, + "examples/https-nginx/Dockerfile": examplesHttpsNginxDockerfile, + "examples/https-nginx/Makefile": examplesHttpsNginxMakefile, + "examples/https-nginx/auto-reload-nginx.sh": examplesHttpsNginxAutoReloadNginxSh, + "examples/https-nginx/default.conf": examplesHttpsNginxDefaultConf, + "examples/https-nginx/index2.html": examplesHttpsNginxIndex2Html, + "examples/https-nginx/make_secret.go": examplesHttpsNginxMake_secretGo, + "examples/https-nginx/nginx-app.yaml": examplesHttpsNginxNginxAppYaml, + "examples/javaee/mysql-pod.yaml": examplesJavaeeMysqlPodYaml, + "examples/javaee/mysql-service.yaml": examplesJavaeeMysqlServiceYaml, + "examples/javaee/wildfly-rc.yaml": examplesJavaeeWildflyRcYaml, + "examples/javaweb-tomcat-sidecar/javaweb-2.yaml": examplesJavawebTomcatSidecarJavaweb2Yaml, + "examples/javaweb-tomcat-sidecar/javaweb.yaml": examplesJavawebTomcatSidecarJavawebYaml, + "examples/kubectl-container/.gitignore": examplesKubectlContainerGitignore, + "examples/kubectl-container/Dockerfile": examplesKubectlContainerDockerfile, + "examples/kubectl-container/Makefile": examplesKubectlContainerMakefile, + "examples/kubectl-container/pod.json": examplesKubectlContainerPodJson, + "examples/meteor/dockerbase/Dockerfile": examplesMeteorDockerbaseDockerfile, + "examples/meteor/meteor-controller.json": examplesMeteorMeteorControllerJson, + "examples/meteor/meteor-service.json": examplesMeteorMeteorServiceJson, + "examples/meteor/mongo-pod.json": examplesMeteorMongoPodJson, + "examples/meteor/mongo-service.json": examplesMeteorMongoServiceJson, + "examples/mysql-cinder-pd/mysql-service.yaml": examplesMysqlCinderPdMysqlServiceYaml, + "examples/mysql-cinder-pd/mysql.yaml": examplesMysqlCinderPdMysqlYaml, + "examples/mysql-wordpress-pd/OWNERS": examplesMysqlWordpressPdOwners, + "examples/mysql-wordpress-pd/gce-volumes.yaml": examplesMysqlWordpressPdGceVolumesYaml, + "examples/mysql-wordpress-pd/local-volumes.yaml": examplesMysqlWordpressPdLocalVolumesYaml, + "examples/mysql-wordpress-pd/mysql-deployment.yaml": examplesMysqlWordpressPdMysqlDeploymentYaml, + "examples/mysql-wordpress-pd/wordpress-deployment.yaml": examplesMysqlWordpressPdWordpressDeploymentYaml, + "examples/newrelic/config-to-secret.sh": examplesNewrelicConfigToSecretSh, + "examples/newrelic/newrelic-config-template.yaml": examplesNewrelicNewrelicConfigTemplateYaml, + "examples/newrelic/newrelic-config.yaml": examplesNewrelicNewrelicConfigYaml, + "examples/newrelic/newrelic-daemonset.yaml": examplesNewrelicNewrelicDaemonsetYaml, + "examples/newrelic/nrconfig.env": examplesNewrelicNrconfigEnv, + "examples/newrelic-infrastructure/.gitignore": examplesNewrelicInfrastructureGitignore, + "examples/newrelic-infrastructure/config-to-secret.sh": examplesNewrelicInfrastructureConfigToSecretSh, + "examples/newrelic-infrastructure/newrelic-config-template.yaml": examplesNewrelicInfrastructureNewrelicConfigTemplateYaml, + "examples/newrelic-infrastructure/newrelic-infra-daemonset.yaml": examplesNewrelicInfrastructureNewrelicInfraDaemonsetYaml, + "examples/newrelic-infrastructure/nrconfig.env": examplesNewrelicInfrastructureNrconfigEnv, + "examples/nodesjs-mongodb/mongo-controller.yaml": examplesNodesjsMongodbMongoControllerYaml, + "examples/nodesjs-mongodb/mongo-service.yaml": examplesNodesjsMongodbMongoServiceYaml, + "examples/nodesjs-mongodb/web-controller-demo.yaml": examplesNodesjsMongodbWebControllerDemoYaml, + "examples/nodesjs-mongodb/web-controller.yaml": examplesNodesjsMongodbWebControllerYaml, + "examples/nodesjs-mongodb/web-service.yaml": examplesNodesjsMongodbWebServiceYaml, + "examples/oms/omsagent-daemonset.yaml": examplesOmsOmsagentDaemonsetYaml, + "examples/openshift-origin/.gitignore": examplesOpenshiftOriginGitignore, + "examples/openshift-origin/cleanup.sh": examplesOpenshiftOriginCleanupSh, + "examples/openshift-origin/create.sh": examplesOpenshiftOriginCreateSh, + "examples/openshift-origin/etcd-controller.yaml": examplesOpenshiftOriginEtcdControllerYaml, + "examples/openshift-origin/etcd-discovery-controller.yaml": examplesOpenshiftOriginEtcdDiscoveryControllerYaml, + "examples/openshift-origin/etcd-discovery-service.yaml": examplesOpenshiftOriginEtcdDiscoveryServiceYaml, + "examples/openshift-origin/etcd-service.yaml": examplesOpenshiftOriginEtcdServiceYaml, + "examples/openshift-origin/openshift-controller.yaml": examplesOpenshiftOriginOpenshiftControllerYaml, + "examples/openshift-origin/openshift-origin-namespace.yaml": examplesOpenshiftOriginOpenshiftOriginNamespaceYaml, + "examples/openshift-origin/openshift-service.yaml": examplesOpenshiftOriginOpenshiftServiceYaml, + "examples/openshift-origin/secret.json": examplesOpenshiftOriginSecretJson, + "examples/persistent-volume-provisioning/aws-ebs.yaml": examplesPersistentVolumeProvisioningAwsEbsYaml, + "examples/persistent-volume-provisioning/cinder/cinder-storage-class.yaml": examplesPersistentVolumeProvisioningCinderCinderStorageClassYaml, + "examples/persistent-volume-provisioning/cinder/example-pod.yaml": examplesPersistentVolumeProvisioningCinderExamplePodYaml, + "examples/persistent-volume-provisioning/claim1.json": examplesPersistentVolumeProvisioningClaim1Json, + "examples/persistent-volume-provisioning/gce-pd.yaml": examplesPersistentVolumeProvisioningGcePdYaml, + "examples/persistent-volume-provisioning/glusterfs/glusterfs-secret.yaml": examplesPersistentVolumeProvisioningGlusterfsGlusterfsSecretYaml, + "examples/persistent-volume-provisioning/glusterfs/glusterfs-storageclass.yaml": examplesPersistentVolumeProvisioningGlusterfsGlusterfsStorageclassYaml, + "examples/persistent-volume-provisioning/quobyte/example-pod.yaml": examplesPersistentVolumeProvisioningQuobyteExamplePodYaml, + "examples/persistent-volume-provisioning/quobyte/quobyte-admin-secret.yaml": examplesPersistentVolumeProvisioningQuobyteQuobyteAdminSecretYaml, + "examples/persistent-volume-provisioning/quobyte/quobyte-storage-class.yaml": examplesPersistentVolumeProvisioningQuobyteQuobyteStorageClassYaml, + "examples/persistent-volume-provisioning/rbd/ceph-secret-admin.yaml": examplesPersistentVolumeProvisioningRbdCephSecretAdminYaml, + "examples/persistent-volume-provisioning/rbd/ceph-secret-user.yaml": examplesPersistentVolumeProvisioningRbdCephSecretUserYaml, + "examples/persistent-volume-provisioning/rbd/pod.yaml": examplesPersistentVolumeProvisioningRbdPodYaml, + "examples/persistent-volume-provisioning/rbd/rbd-storage-class.yaml": examplesPersistentVolumeProvisioningRbdRbdStorageClassYaml, + "examples/phabricator/phabricator-controller.json": examplesPhabricatorPhabricatorControllerJson, + "examples/phabricator/phabricator-service.json": examplesPhabricatorPhabricatorServiceJson, + "examples/phabricator/php-phabricator/000-default.conf": examplesPhabricatorPhpPhabricator000DefaultConf, + "examples/phabricator/php-phabricator/Dockerfile": examplesPhabricatorPhpPhabricatorDockerfile, + "examples/phabricator/php-phabricator/run.sh": examplesPhabricatorPhpPhabricatorRunSh, + "examples/phabricator/setup.sh": examplesPhabricatorSetupSh, + "examples/phabricator/teardown.sh": examplesPhabricatorTeardownSh, + "examples/pod": examplesPod, + "examples/podsecuritypolicy/rbac/bindings.yaml": examplesPodsecuritypolicyRbacBindingsYaml, + "examples/podsecuritypolicy/rbac/pod.yaml": examplesPodsecuritypolicyRbacPodYaml, + "examples/podsecuritypolicy/rbac/pod_priv.yaml": examplesPodsecuritypolicyRbacPod_privYaml, + "examples/podsecuritypolicy/rbac/policies.yaml": examplesPodsecuritypolicyRbacPoliciesYaml, + "examples/podsecuritypolicy/rbac/roles.yaml": examplesPodsecuritypolicyRbacRolesYaml, + "examples/scheduler-policy-config-with-extender.json": examplesSchedulerPolicyConfigWithExtenderJson, + "examples/scheduler-policy-config.json": examplesSchedulerPolicyConfigJson, + "examples/selenium/selenium-hub-rc.yaml": examplesSeleniumSeleniumHubRcYaml, + "examples/selenium/selenium-hub-svc.yaml": examplesSeleniumSeleniumHubSvcYaml, + "examples/selenium/selenium-node-chrome-rc.yaml": examplesSeleniumSeleniumNodeChromeRcYaml, + "examples/selenium/selenium-node-firefox-rc.yaml": examplesSeleniumSeleniumNodeFirefoxRcYaml, + "examples/selenium/selenium-test.py": examplesSeleniumSeleniumTestPy, + "examples/sharing-clusters/BUILD": examplesSharingClustersBuild, + "examples/sharing-clusters/make_secret.go": examplesSharingClustersMake_secretGo, + "examples/spark/namespace-spark-cluster.yaml": examplesSparkNamespaceSparkClusterYaml, + "examples/spark/spark-gluster/glusterfs-endpoints.yaml": examplesSparkSparkGlusterGlusterfsEndpointsYaml, + "examples/spark/spark-gluster/spark-master-controller.yaml": examplesSparkSparkGlusterSparkMasterControllerYaml, + "examples/spark/spark-gluster/spark-master-service.yaml": examplesSparkSparkGlusterSparkMasterServiceYaml, + "examples/spark/spark-gluster/spark-worker-controller.yaml": examplesSparkSparkGlusterSparkWorkerControllerYaml, + "examples/spark/spark-master-controller.yaml": examplesSparkSparkMasterControllerYaml, + "examples/spark/spark-master-service.yaml": examplesSparkSparkMasterServiceYaml, + "examples/spark/spark-ui-proxy-controller.yaml": examplesSparkSparkUiProxyControllerYaml, + "examples/spark/spark-ui-proxy-service.yaml": examplesSparkSparkUiProxyServiceYaml, + "examples/spark/spark-worker-controller.yaml": examplesSparkSparkWorkerControllerYaml, + "examples/spark/zeppelin-controller.yaml": examplesSparkZeppelinControllerYaml, + "examples/spark/zeppelin-service.yaml": examplesSparkZeppelinServiceYaml, + "examples/storage/cassandra/cassandra-controller.yaml": examplesStorageCassandraCassandraControllerYaml, + "examples/storage/cassandra/cassandra-daemonset.yaml": examplesStorageCassandraCassandraDaemonsetYaml, + "examples/storage/cassandra/cassandra-service.yaml": examplesStorageCassandraCassandraServiceYaml, + "examples/storage/cassandra/cassandra-statefulset.yaml": examplesStorageCassandraCassandraStatefulsetYaml, + "examples/storage/cassandra/image/Dockerfile": examplesStorageCassandraImageDockerfile, + "examples/storage/cassandra/image/Makefile": examplesStorageCassandraImageMakefile, + "examples/storage/cassandra/image/files/cassandra.yaml": examplesStorageCassandraImageFilesCassandraYaml, + "examples/storage/cassandra/image/files/jvm.options": examplesStorageCassandraImageFilesJvmOptions, + "examples/storage/cassandra/image/files/kubernetes-cassandra.jar": examplesStorageCassandraImageFilesKubernetesCassandraJar, + "examples/storage/cassandra/image/files/logback.xml": examplesStorageCassandraImageFilesLogbackXml, + "examples/storage/cassandra/image/files/ready-probe.sh": examplesStorageCassandraImageFilesReadyProbeSh, + "examples/storage/cassandra/image/files/run.sh": examplesStorageCassandraImageFilesRunSh, + "examples/storage/cassandra/java/.gitignore": examplesStorageCassandraJavaGitignore, + "examples/storage/cassandra/java/pom.xml": examplesStorageCassandraJavaPomXml, + "examples/storage/cassandra/java/src/main/java/io/k8s/cassandra/KubernetesSeedProvider.java": examplesStorageCassandraJavaSrcMainJavaIoK8sCassandraKubernetesseedproviderJava, + "examples/storage/cassandra/java/src/test/java/io/k8s/cassandra/KubernetesSeedProviderTest.java": examplesStorageCassandraJavaSrcTestJavaIoK8sCassandraKubernetesseedprovidertestJava, + "examples/storage/cassandra/java/src/test/resources/cassandra.yaml": examplesStorageCassandraJavaSrcTestResourcesCassandraYaml, + "examples/storage/cassandra/java/src/test/resources/logback-test.xml": examplesStorageCassandraJavaSrcTestResourcesLogbackTestXml, + "examples/storage/hazelcast/hazelcast-deployment.yaml": examplesStorageHazelcastHazelcastDeploymentYaml, + "examples/storage/hazelcast/hazelcast-service.yaml": examplesStorageHazelcastHazelcastServiceYaml, + "examples/storage/minio/minio-distributed-headless-service.yaml": examplesStorageMinioMinioDistributedHeadlessServiceYaml, + "examples/storage/minio/minio-distributed-service.yaml": examplesStorageMinioMinioDistributedServiceYaml, + "examples/storage/minio/minio-distributed-statefulset.yaml": examplesStorageMinioMinioDistributedStatefulsetYaml, + "examples/storage/minio/minio-standalone-deployment.yaml": examplesStorageMinioMinioStandaloneDeploymentYaml, + "examples/storage/minio/minio-standalone-pvc.yaml": examplesStorageMinioMinioStandalonePvcYaml, + "examples/storage/minio/minio-standalone-service.yaml": examplesStorageMinioMinioStandaloneServiceYaml, + "examples/storage/mysql-galera/image/Dockerfile": examplesStorageMysqlGaleraImageDockerfile, + "examples/storage/mysql-galera/image/cluster.cnf": examplesStorageMysqlGaleraImageClusterCnf, + "examples/storage/mysql-galera/image/docker-entrypoint.sh": examplesStorageMysqlGaleraImageDockerEntrypointSh, + "examples/storage/mysql-galera/image/my.cnf": examplesStorageMysqlGaleraImageMyCnf, + "examples/storage/mysql-galera/pxc-cluster-service.yaml": examplesStorageMysqlGaleraPxcClusterServiceYaml, + "examples/storage/mysql-galera/pxc-node1.yaml": examplesStorageMysqlGaleraPxcNode1Yaml, + "examples/storage/mysql-galera/pxc-node2.yaml": examplesStorageMysqlGaleraPxcNode2Yaml, + "examples/storage/mysql-galera/pxc-node3.yaml": examplesStorageMysqlGaleraPxcNode3Yaml, + "examples/storage/redis/image/Dockerfile": examplesStorageRedisImageDockerfile, + "examples/storage/redis/image/redis-master.conf": examplesStorageRedisImageRedisMasterConf, + "examples/storage/redis/image/redis-slave.conf": examplesStorageRedisImageRedisSlaveConf, + "examples/storage/redis/image/run.sh": examplesStorageRedisImageRunSh, + "examples/storage/redis/redis-controller.yaml": examplesStorageRedisRedisControllerYaml, + "examples/storage/redis/redis-master.yaml": examplesStorageRedisRedisMasterYaml, + "examples/storage/redis/redis-sentinel-controller.yaml": examplesStorageRedisRedisSentinelControllerYaml, + "examples/storage/redis/redis-sentinel-service.yaml": examplesStorageRedisRedisSentinelServiceYaml, + "examples/storage/rethinkdb/admin-pod.yaml": examplesStorageRethinkdbAdminPodYaml, + "examples/storage/rethinkdb/admin-service.yaml": examplesStorageRethinkdbAdminServiceYaml, + "examples/storage/rethinkdb/driver-service.yaml": examplesStorageRethinkdbDriverServiceYaml, + "examples/storage/rethinkdb/gen-pod.sh": examplesStorageRethinkdbGenPodSh, + "examples/storage/rethinkdb/image/Dockerfile": examplesStorageRethinkdbImageDockerfile, + "examples/storage/rethinkdb/image/run.sh": examplesStorageRethinkdbImageRunSh, + "examples/storage/rethinkdb/rc.yaml": examplesStorageRethinkdbRcYaml, + "examples/storage/vitess/configure.sh": examplesStorageVitessConfigureSh, + "examples/storage/vitess/create_test_table.sql": examplesStorageVitessCreate_test_tableSql, + "examples/storage/vitess/env.sh": examplesStorageVitessEnvSh, + "examples/storage/vitess/etcd-controller-template.yaml": examplesStorageVitessEtcdControllerTemplateYaml, + "examples/storage/vitess/etcd-down.sh": examplesStorageVitessEtcdDownSh, + "examples/storage/vitess/etcd-service-template.yaml": examplesStorageVitessEtcdServiceTemplateYaml, + "examples/storage/vitess/etcd-up.sh": examplesStorageVitessEtcdUpSh, + "examples/storage/vitess/guestbook-controller.yaml": examplesStorageVitessGuestbookControllerYaml, + "examples/storage/vitess/guestbook-down.sh": examplesStorageVitessGuestbookDownSh, + "examples/storage/vitess/guestbook-service.yaml": examplesStorageVitessGuestbookServiceYaml, + "examples/storage/vitess/guestbook-up.sh": examplesStorageVitessGuestbookUpSh, + "examples/storage/vitess/vitess-down.sh": examplesStorageVitessVitessDownSh, + "examples/storage/vitess/vitess-up.sh": examplesStorageVitessVitessUpSh, + "examples/storage/vitess/vtctld-controller-template.yaml": examplesStorageVitessVtctldControllerTemplateYaml, + "examples/storage/vitess/vtctld-down.sh": examplesStorageVitessVtctldDownSh, + "examples/storage/vitess/vtctld-service.yaml": examplesStorageVitessVtctldServiceYaml, + "examples/storage/vitess/vtctld-up.sh": examplesStorageVitessVtctldUpSh, + "examples/storage/vitess/vtgate-controller-template.yaml": examplesStorageVitessVtgateControllerTemplateYaml, + "examples/storage/vitess/vtgate-down.sh": examplesStorageVitessVtgateDownSh, + "examples/storage/vitess/vtgate-service.yaml": examplesStorageVitessVtgateServiceYaml, + "examples/storage/vitess/vtgate-up.sh": examplesStorageVitessVtgateUpSh, + "examples/storage/vitess/vttablet-down.sh": examplesStorageVitessVttabletDownSh, + "examples/storage/vitess/vttablet-pod-template.yaml": examplesStorageVitessVttabletPodTemplateYaml, + "examples/storage/vitess/vttablet-up.sh": examplesStorageVitessVttabletUpSh, + "examples/storm/storm-nimbus-service.json": examplesStormStormNimbusServiceJson, + "examples/storm/storm-nimbus.json": examplesStormStormNimbusJson, + "examples/storm/storm-worker-controller.json": examplesStormStormWorkerControllerJson, + "examples/storm/zookeeper-service.json": examplesStormZookeeperServiceJson, + "examples/storm/zookeeper.json": examplesStormZookeeperJson, + "examples/sysdig-cloud/sysdig-daemonset.yaml": examplesSysdigCloudSysdigDaemonsetYaml, + "examples/sysdig-cloud/sysdig-rc.yaml": examplesSysdigCloudSysdigRcYaml, + "examples/volumes/aws_ebs/aws-ebs-web.yaml": examplesVolumesAws_ebsAwsEbsWebYaml, + "examples/volumes/azure_disk/azure.yaml": examplesVolumesAzure_diskAzureYaml, + "examples/volumes/azure_file/azure.yaml": examplesVolumesAzure_fileAzureYaml, + "examples/volumes/azure_file/secret/azure-secret.yaml": examplesVolumesAzure_fileSecretAzureSecretYaml, + "examples/volumes/cephfs/cephfs-with-secret.yaml": examplesVolumesCephfsCephfsWithSecretYaml, + "examples/volumes/cephfs/cephfs.yaml": examplesVolumesCephfsCephfsYaml, + "examples/volumes/cephfs/secret/ceph-secret.yaml": examplesVolumesCephfsSecretCephSecretYaml, + "examples/volumes/cinder/cinder-web.yaml": examplesVolumesCinderCinderWebYaml, + "examples/volumes/fibre_channel/fc.yaml": examplesVolumesFibre_channelFcYaml, + "examples/volumes/flexvolume/lvm": examplesVolumesFlexvolumeLvm, + "examples/volumes/flexvolume/nfs": examplesVolumesFlexvolumeNfs, + "examples/volumes/flexvolume/nginx-nfs.yaml": examplesVolumesFlexvolumeNginxNfsYaml, + "examples/volumes/flexvolume/nginx.yaml": examplesVolumesFlexvolumeNginxYaml, + "examples/volumes/flocker/flocker-pod-with-rc.yml": examplesVolumesFlockerFlockerPodWithRcYml, + "examples/volumes/flocker/flocker-pod.yml": examplesVolumesFlockerFlockerPodYml, + "examples/volumes/glusterfs/glusterfs-endpoints.json": examplesVolumesGlusterfsGlusterfsEndpointsJson, + "examples/volumes/glusterfs/glusterfs-pod.json": examplesVolumesGlusterfsGlusterfsPodJson, + "examples/volumes/glusterfs/glusterfs-service.json": examplesVolumesGlusterfsGlusterfsServiceJson, + "examples/volumes/iscsi/chap-secret.yaml": examplesVolumesIscsiChapSecretYaml, + "examples/volumes/iscsi/iscsi-chap.yaml": examplesVolumesIscsiIscsiChapYaml, + "examples/volumes/iscsi/iscsi.yaml": examplesVolumesIscsiIscsiYaml, + "examples/volumes/nfs/nfs-busybox-rc.yaml": examplesVolumesNfsNfsBusyboxRcYaml, + "examples/volumes/nfs/nfs-data/Dockerfile": examplesVolumesNfsNfsDataDockerfile, + "examples/volumes/nfs/nfs-data/index.html": examplesVolumesNfsNfsDataIndexHtml, + "examples/volumes/nfs/nfs-data/run_nfs.sh": examplesVolumesNfsNfsDataRun_nfsSh, + "examples/volumes/nfs/nfs-pv.yaml": examplesVolumesNfsNfsPvYaml, + "examples/volumes/nfs/nfs-pvc.yaml": examplesVolumesNfsNfsPvcYaml, + "examples/volumes/nfs/nfs-server-rc.yaml": examplesVolumesNfsNfsServerRcYaml, + "examples/volumes/nfs/nfs-server-service.yaml": examplesVolumesNfsNfsServerServiceYaml, + "examples/volumes/nfs/nfs-web-rc.yaml": examplesVolumesNfsNfsWebRcYaml, + "examples/volumes/nfs/nfs-web-service.yaml": examplesVolumesNfsNfsWebServiceYaml, + "examples/volumes/nfs/provisioner/nfs-server-gce-pv.yaml": examplesVolumesNfsProvisionerNfsServerGcePvYaml, + "examples/volumes/portworx/portworx-volume-pod.yaml": examplesVolumesPortworxPortworxVolumePodYaml, + "examples/volumes/portworx/portworx-volume-pv.yaml": examplesVolumesPortworxPortworxVolumePvYaml, + "examples/volumes/portworx/portworx-volume-pvc.yaml": examplesVolumesPortworxPortworxVolumePvcYaml, + "examples/volumes/portworx/portworx-volume-pvcpod.yaml": examplesVolumesPortworxPortworxVolumePvcpodYaml, + "examples/volumes/portworx/portworx-volume-pvcsc.yaml": examplesVolumesPortworxPortworxVolumePvcscYaml, + "examples/volumes/portworx/portworx-volume-pvcscpod.yaml": examplesVolumesPortworxPortworxVolumePvcscpodYaml, + "examples/volumes/portworx/portworx-volume-sc-high.yaml": examplesVolumesPortworxPortworxVolumeScHighYaml, + "examples/volumes/quobyte/quobyte-pod.yaml": examplesVolumesQuobyteQuobytePodYaml, + "examples/volumes/rbd/rbd-with-secret.json": examplesVolumesRbdRbdWithSecretJson, + "examples/volumes/rbd/rbd.json": examplesVolumesRbdRbdJson, + "examples/volumes/rbd/secret/ceph-secret.yaml": examplesVolumesRbdSecretCephSecretYaml, + "examples/volumes/scaleio/pod-sc-pvc.yaml": examplesVolumesScaleioPodScPvcYaml, + "examples/volumes/scaleio/pod.yaml": examplesVolumesScaleioPodYaml, + "examples/volumes/scaleio/sc-pvc.yaml": examplesVolumesScaleioScPvcYaml, + "examples/volumes/scaleio/sc.yaml": examplesVolumesScaleioScYaml, + "examples/volumes/scaleio/secret.yaml": examplesVolumesScaleioSecretYaml, + "examples/volumes/storageos/storageos-pod.yaml": examplesVolumesStorageosStorageosPodYaml, + "examples/volumes/storageos/storageos-pv.yaml": examplesVolumesStorageosStorageosPvYaml, + "examples/volumes/storageos/storageos-pvc.yaml": examplesVolumesStorageosStorageosPvcYaml, + "examples/volumes/storageos/storageos-pvcpod.yaml": examplesVolumesStorageosStorageosPvcpodYaml, + "examples/volumes/storageos/storageos-sc-pvc.yaml": examplesVolumesStorageosStorageosScPvcYaml, + "examples/volumes/storageos/storageos-sc-pvcpod.yaml": examplesVolumesStorageosStorageosScPvcpodYaml, + "examples/volumes/storageos/storageos-sc.yaml": examplesVolumesStorageosStorageosScYaml, + "examples/volumes/storageos/storageos-secret.yaml": examplesVolumesStorageosStorageosSecretYaml, + "examples/volumes/vsphere/deployment.yaml": examplesVolumesVsphereDeploymentYaml, + "examples/volumes/vsphere/simple-statefulset.yaml": examplesVolumesVsphereSimpleStatefulsetYaml, + "examples/volumes/vsphere/simple-storageclass.yaml": examplesVolumesVsphereSimpleStorageclassYaml, + "examples/volumes/vsphere/vsphere-volume-pod.yaml": examplesVolumesVsphereVsphereVolumePodYaml, + "examples/volumes/vsphere/vsphere-volume-pv.yaml": examplesVolumesVsphereVsphereVolumePvYaml, + "examples/volumes/vsphere/vsphere-volume-pvc.yaml": examplesVolumesVsphereVsphereVolumePvcYaml, + "examples/volumes/vsphere/vsphere-volume-pvcpod.yaml": examplesVolumesVsphereVsphereVolumePvcpodYaml, + "examples/volumes/vsphere/vsphere-volume-pvcsc.yaml": examplesVolumesVsphereVsphereVolumePvcscYaml, + "examples/volumes/vsphere/vsphere-volume-pvcscpod.yaml": examplesVolumesVsphereVsphereVolumePvcscpodYaml, + "examples/volumes/vsphere/vsphere-volume-sc-fast.yaml": examplesVolumesVsphereVsphereVolumeScFastYaml, + "examples/volumes/vsphere/vsphere-volume-sc-vsancapabilities-with-datastore.yaml": examplesVolumesVsphereVsphereVolumeScVsancapabilitiesWithDatastoreYaml, + "examples/volumes/vsphere/vsphere-volume-sc-vsancapabilities.yaml": examplesVolumesVsphereVsphereVolumeScVsancapabilitiesYaml, + "examples/volumes/vsphere/vsphere-volume-sc-with-datastore.yaml": examplesVolumesVsphereVsphereVolumeScWithDatastoreYaml, + "examples/volumes/vsphere/vsphere-volume-spbm-policy-with-datastore.yaml": examplesVolumesVsphereVsphereVolumeSpbmPolicyWithDatastoreYaml, + "examples/volumes/vsphere/vsphere-volume-spbm-policy.yaml": examplesVolumesVsphereVsphereVolumeSpbmPolicyYaml, + "test/e2e/testing-manifests/BUILD": testE2eTestingManifestsBuild, + "test/e2e/testing-manifests/flexvolume/dummy": testE2eTestingManifestsFlexvolumeDummy, + "test/e2e/testing-manifests/flexvolume/dummy-attachable": testE2eTestingManifestsFlexvolumeDummyAttachable, + "test/e2e/testing-manifests/guestbook/frontend-deployment.yaml.in": testE2eTestingManifestsGuestbookFrontendDeploymentYamlIn, + "test/e2e/testing-manifests/guestbook/frontend-service.yaml": testE2eTestingManifestsGuestbookFrontendServiceYaml, + "test/e2e/testing-manifests/guestbook/redis-master-deployment.yaml.in": testE2eTestingManifestsGuestbookRedisMasterDeploymentYamlIn, + "test/e2e/testing-manifests/guestbook/redis-master-service.yaml": testE2eTestingManifestsGuestbookRedisMasterServiceYaml, + "test/e2e/testing-manifests/guestbook/redis-slave-deployment.yaml.in": testE2eTestingManifestsGuestbookRedisSlaveDeploymentYamlIn, + "test/e2e/testing-manifests/guestbook/redis-slave-service.yaml": testE2eTestingManifestsGuestbookRedisSlaveServiceYaml, + "test/e2e/testing-manifests/ingress/http/ing.yaml": testE2eTestingManifestsIngressHttpIngYaml, + "test/e2e/testing-manifests/ingress/http/rc.yaml": testE2eTestingManifestsIngressHttpRcYaml, + "test/e2e/testing-manifests/ingress/http/svc.yaml": testE2eTestingManifestsIngressHttpSvcYaml, + "test/e2e/testing-manifests/ingress/nginx/rc.yaml": testE2eTestingManifestsIngressNginxRcYaml, + "test/e2e/testing-manifests/ingress/static-ip/ing.yaml": testE2eTestingManifestsIngressStaticIpIngYaml, + "test/e2e/testing-manifests/ingress/static-ip/rc.yaml": testE2eTestingManifestsIngressStaticIpRcYaml, + "test/e2e/testing-manifests/ingress/static-ip/secret.yaml": testE2eTestingManifestsIngressStaticIpSecretYaml, + "test/e2e/testing-manifests/ingress/static-ip/svc.yaml": testE2eTestingManifestsIngressStaticIpSvcYaml, + "test/e2e/testing-manifests/kubectl/nginx-deployment1.yaml.in": testE2eTestingManifestsKubectlNginxDeployment1YamlIn, + "test/e2e/testing-manifests/kubectl/nginx-deployment2.yaml.in": testE2eTestingManifestsKubectlNginxDeployment2YamlIn, + "test/e2e/testing-manifests/kubectl/nginx-deployment3.yaml.in": testE2eTestingManifestsKubectlNginxDeployment3YamlIn, + "test/e2e/testing-manifests/kubectl/pause-pod.yaml.in": testE2eTestingManifestsKubectlPausePodYamlIn, + "test/e2e/testing-manifests/kubectl/pod-with-readiness-probe.yaml.in": testE2eTestingManifestsKubectlPodWithReadinessProbeYamlIn, + "test/e2e/testing-manifests/kubectl/redis-master-controller.json.in": testE2eTestingManifestsKubectlRedisMasterControllerJsonIn, + "test/e2e/testing-manifests/kubectl/redis-master-service.json": testE2eTestingManifestsKubectlRedisMasterServiceJson, + "test/e2e/testing-manifests/serviceloadbalancer/haproxyrc.yaml": testE2eTestingManifestsServiceloadbalancerHaproxyrcYaml, + "test/e2e/testing-manifests/serviceloadbalancer/netexecrc.yaml": testE2eTestingManifestsServiceloadbalancerNetexecrcYaml, + "test/e2e/testing-manifests/serviceloadbalancer/netexecsvc.yaml": testE2eTestingManifestsServiceloadbalancerNetexecsvcYaml, + "test/e2e/testing-manifests/serviceloadbalancer/nginxrc.yaml": testE2eTestingManifestsServiceloadbalancerNginxrcYaml, + "test/e2e/testing-manifests/serviceloadbalancer/nginxsvc.yaml": testE2eTestingManifestsServiceloadbalancerNginxsvcYaml, + "test/e2e/testing-manifests/statefulset/cassandra/pdb.yaml": testE2eTestingManifestsStatefulsetCassandraPdbYaml, + "test/e2e/testing-manifests/statefulset/cassandra/service.yaml": testE2eTestingManifestsStatefulsetCassandraServiceYaml, + "test/e2e/testing-manifests/statefulset/cassandra/statefulset.yaml": testE2eTestingManifestsStatefulsetCassandraStatefulsetYaml, + "test/e2e/testing-manifests/statefulset/cassandra/tester.yaml": testE2eTestingManifestsStatefulsetCassandraTesterYaml, + "test/e2e/testing-manifests/statefulset/cockroachdb/service.yaml": testE2eTestingManifestsStatefulsetCockroachdbServiceYaml, + "test/e2e/testing-manifests/statefulset/cockroachdb/statefulset.yaml": testE2eTestingManifestsStatefulsetCockroachdbStatefulsetYaml, + "test/e2e/testing-manifests/statefulset/etcd/pdb.yaml": testE2eTestingManifestsStatefulsetEtcdPdbYaml, + "test/e2e/testing-manifests/statefulset/etcd/service.yaml": testE2eTestingManifestsStatefulsetEtcdServiceYaml, + "test/e2e/testing-manifests/statefulset/etcd/statefulset.yaml": testE2eTestingManifestsStatefulsetEtcdStatefulsetYaml, + "test/e2e/testing-manifests/statefulset/etcd/tester.yaml": testE2eTestingManifestsStatefulsetEtcdTesterYaml, + "test/e2e/testing-manifests/statefulset/mysql-galera/service.yaml": testE2eTestingManifestsStatefulsetMysqlGaleraServiceYaml, + "test/e2e/testing-manifests/statefulset/mysql-galera/statefulset.yaml": testE2eTestingManifestsStatefulsetMysqlGaleraStatefulsetYaml, + "test/e2e/testing-manifests/statefulset/mysql-upgrade/configmap.yaml": testE2eTestingManifestsStatefulsetMysqlUpgradeConfigmapYaml, + "test/e2e/testing-manifests/statefulset/mysql-upgrade/service.yaml": testE2eTestingManifestsStatefulsetMysqlUpgradeServiceYaml, + "test/e2e/testing-manifests/statefulset/mysql-upgrade/statefulset.yaml": testE2eTestingManifestsStatefulsetMysqlUpgradeStatefulsetYaml, + "test/e2e/testing-manifests/statefulset/mysql-upgrade/tester.yaml": testE2eTestingManifestsStatefulsetMysqlUpgradeTesterYaml, + "test/e2e/testing-manifests/statefulset/redis/service.yaml": testE2eTestingManifestsStatefulsetRedisServiceYaml, + "test/e2e/testing-manifests/statefulset/redis/statefulset.yaml": testE2eTestingManifestsStatefulsetRedisStatefulsetYaml, + "test/e2e/testing-manifests/statefulset/zookeeper/service.yaml": testE2eTestingManifestsStatefulsetZookeeperServiceYaml, + "test/e2e/testing-manifests/statefulset/zookeeper/statefulset.yaml": testE2eTestingManifestsStatefulsetZookeeperStatefulsetYaml, + "test/images/BUILD": testImagesBuild, + "test/images/Makefile": testImagesMakefile, + "test/images/clusterapi-tester/BASEIMAGE": testImagesClusterapiTesterBaseimage, + "test/images/clusterapi-tester/BUILD": testImagesClusterapiTesterBuild, + "test/images/clusterapi-tester/Dockerfile": testImagesClusterapiTesterDockerfile, + "test/images/clusterapi-tester/Makefile": testImagesClusterapiTesterMakefile, + "test/images/clusterapi-tester/VERSION": testImagesClusterapiTesterVersion, + "test/images/clusterapi-tester/clusterapi-tester.go": testImagesClusterapiTesterClusterapiTesterGo, + "test/images/clusterapi-tester/pod.yaml": testImagesClusterapiTesterPodYaml, + "test/images/cuda-vector-add/BASEIMAGE": testImagesCudaVectorAddBaseimage, + "test/images/cuda-vector-add/Dockerfile": testImagesCudaVectorAddDockerfile, + "test/images/cuda-vector-add/VERSION": testImagesCudaVectorAddVersion, + "test/images/dnsutils/BASEIMAGE": testImagesDnsutilsBaseimage, + "test/images/dnsutils/Dockerfile": testImagesDnsutilsDockerfile, + "test/images/dnsutils/VERSION": testImagesDnsutilsVersion, + "test/images/entrypoint-tester/BUILD": testImagesEntrypointTesterBuild, + "test/images/entrypoint-tester/Dockerfile": testImagesEntrypointTesterDockerfile, + "test/images/entrypoint-tester/Makefile": testImagesEntrypointTesterMakefile, + "test/images/entrypoint-tester/VERSION": testImagesEntrypointTesterVersion, + "test/images/entrypoint-tester/ep.go": testImagesEntrypointTesterEpGo, + "test/images/fakegitserver/BUILD": testImagesFakegitserverBuild, + "test/images/fakegitserver/Dockerfile": testImagesFakegitserverDockerfile, + "test/images/fakegitserver/Makefile": testImagesFakegitserverMakefile, + "test/images/fakegitserver/VERSION": testImagesFakegitserverVersion, + "test/images/fakegitserver/gitserver.go": testImagesFakegitserverGitserverGo, + "test/images/goproxy/.gitignore": testImagesGoproxyGitignore, + "test/images/goproxy/BUILD": testImagesGoproxyBuild, + "test/images/goproxy/Dockerfile": testImagesGoproxyDockerfile, + "test/images/goproxy/Makefile": testImagesGoproxyMakefile, + "test/images/goproxy/VERSION": testImagesGoproxyVersion, + "test/images/goproxy/goproxy.go": testImagesGoproxyGoproxyGo, + "test/images/goproxy/pod.yaml": testImagesGoproxyPodYaml, + "test/images/hostexec/BASEIMAGE": testImagesHostexecBaseimage, + "test/images/hostexec/Dockerfile": testImagesHostexecDockerfile, + "test/images/hostexec/VERSION": testImagesHostexecVersion, + "test/images/hostexec/pod.yaml": testImagesHostexecPodYaml, + "test/images/image-util.sh": testImagesImageUtilSh, + "test/images/iperf/BASEIMAGE": testImagesIperfBaseimage, + "test/images/iperf/Dockerfile": testImagesIperfDockerfile, + "test/images/iperf/VERSION": testImagesIperfVersion, + "test/images/jessie-dnsutils/BASEIMAGE": testImagesJessieDnsutilsBaseimage, + "test/images/jessie-dnsutils/Dockerfile": testImagesJessieDnsutilsDockerfile, + "test/images/jessie-dnsutils/VERSION": testImagesJessieDnsutilsVersion, + "test/images/kitten/BASEIMAGE": testImagesKittenBaseimage, + "test/images/kitten/Dockerfile": testImagesKittenDockerfile, + "test/images/kitten/VERSION": testImagesKittenVersion, + "test/images/kitten/html/data.json": testImagesKittenHtmlDataJson, + "test/images/liveness/BUILD": testImagesLivenessBuild, + "test/images/liveness/Dockerfile": testImagesLivenessDockerfile, + "test/images/liveness/Makefile": testImagesLivenessMakefile, + "test/images/liveness/VERSION": testImagesLivenessVersion, + "test/images/liveness/server.go": testImagesLivenessServerGo, + "test/images/logs-generator/BASEIMAGE": testImagesLogsGeneratorBaseimage, + "test/images/logs-generator/BUILD": testImagesLogsGeneratorBuild, + "test/images/logs-generator/Dockerfile": testImagesLogsGeneratorDockerfile, + "test/images/logs-generator/Makefile": testImagesLogsGeneratorMakefile, + "test/images/logs-generator/VERSION": testImagesLogsGeneratorVersion, + "test/images/logs-generator/logs_generator.go": testImagesLogsGeneratorLogs_generatorGo, + "test/images/mounttest/BUILD": testImagesMounttestBuild, + "test/images/mounttest/Dockerfile": testImagesMounttestDockerfile, + "test/images/mounttest/Makefile": testImagesMounttestMakefile, + "test/images/mounttest/VERSION": testImagesMounttestVersion, + "test/images/mounttest/mt.go": testImagesMounttestMtGo, + "test/images/mounttest-user/BASEIMAGE": testImagesMounttestUserBaseimage, + "test/images/mounttest-user/Dockerfile": testImagesMounttestUserDockerfile, + "test/images/mounttest-user/VERSION": testImagesMounttestUserVersion, + "test/images/n-way-http/BASEIMAGE": testImagesNWayHttpBaseimage, + "test/images/n-way-http/BUILD": testImagesNWayHttpBuild, + "test/images/n-way-http/Dockerfile": testImagesNWayHttpDockerfile, + "test/images/n-way-http/Makefile": testImagesNWayHttpMakefile, + "test/images/n-way-http/VERSION": testImagesNWayHttpVersion, + "test/images/n-way-http/server.go": testImagesNWayHttpServerGo, + "test/images/nautilus/BASEIMAGE": testImagesNautilusBaseimage, + "test/images/nautilus/Dockerfile": testImagesNautilusDockerfile, + "test/images/nautilus/VERSION": testImagesNautilusVersion, + "test/images/nautilus/html/data.json": testImagesNautilusHtmlDataJson, + "test/images/net/.gitignore": testImagesNetGitignore, + "test/images/net/BASEIMAGE": testImagesNetBaseimage, + "test/images/net/BUILD": testImagesNetBuild, + "test/images/net/Dockerfile": testImagesNetDockerfile, + "test/images/net/Makefile": testImagesNetMakefile, + "test/images/net/VERSION": testImagesNetVersion, + "test/images/net/common/BUILD": testImagesNetCommonBuild, + "test/images/net/common/common.go": testImagesNetCommonCommonGo, + "test/images/net/main.go": testImagesNetMainGo, + "test/images/net/nat/BUILD": testImagesNetNatBuild, + "test/images/net/nat/closewait.go": testImagesNetNatClosewaitGo, + "test/images/netexec/.gitignore": testImagesNetexecGitignore, + "test/images/netexec/BASEIMAGE": testImagesNetexecBaseimage, + "test/images/netexec/BUILD": testImagesNetexecBuild, + "test/images/netexec/Dockerfile": testImagesNetexecDockerfile, + "test/images/netexec/Makefile": testImagesNetexecMakefile, + "test/images/netexec/VERSION": testImagesNetexecVersion, + "test/images/netexec/netexec.go": testImagesNetexecNetexecGo, + "test/images/netexec/pod.yaml": testImagesNetexecPodYaml, + "test/images/nettest/BUILD": testImagesNettestBuild, + "test/images/nettest/Dockerfile": testImagesNettestDockerfile, + "test/images/nettest/Makefile": testImagesNettestMakefile, + "test/images/nettest/VERSION": testImagesNettestVersion, + "test/images/nettest/nettest.go": testImagesNettestNettestGo, + "test/images/nettest/rc.json": testImagesNettestRcJson, + "test/images/nettest/service.json": testImagesNettestServiceJson, + "test/images/nettest/slow-pod.json": testImagesNettestSlowPodJson, + "test/images/nettest/slow-rc.json": testImagesNettestSlowRcJson, + "test/images/no-snat-test/BASEIMAGE": testImagesNoSnatTestBaseimage, + "test/images/no-snat-test/BUILD": testImagesNoSnatTestBuild, + "test/images/no-snat-test/Dockerfile": testImagesNoSnatTestDockerfile, + "test/images/no-snat-test/Makefile": testImagesNoSnatTestMakefile, + "test/images/no-snat-test/VERSION": testImagesNoSnatTestVersion, + "test/images/no-snat-test/main.go": testImagesNoSnatTestMainGo, + "test/images/no-snat-test-proxy/BASEIMAGE": testImagesNoSnatTestProxyBaseimage, + "test/images/no-snat-test-proxy/BUILD": testImagesNoSnatTestProxyBuild, + "test/images/no-snat-test-proxy/Dockerfile": testImagesNoSnatTestProxyDockerfile, + "test/images/no-snat-test-proxy/Makefile": testImagesNoSnatTestProxyMakefile, + "test/images/no-snat-test-proxy/VERSION": testImagesNoSnatTestProxyVersion, + "test/images/no-snat-test-proxy/main.go": testImagesNoSnatTestProxyMainGo, + "test/images/nonewprivs/.gitignore": testImagesNonewprivsGitignore, + "test/images/nonewprivs/BASEIMAGE": testImagesNonewprivsBaseimage, + "test/images/nonewprivs/BUILD": testImagesNonewprivsBuild, + "test/images/nonewprivs/Dockerfile": testImagesNonewprivsDockerfile, + "test/images/nonewprivs/Makefile": testImagesNonewprivsMakefile, + "test/images/nonewprivs/VERSION": testImagesNonewprivsVersion, + "test/images/nonewprivs/nnp.go": testImagesNonewprivsNnpGo, + "test/images/pets/peer-finder/BASEIMAGE": testImagesPetsPeerFinderBaseimage, + "test/images/pets/peer-finder/BUILD": testImagesPetsPeerFinderBuild, + "test/images/pets/peer-finder/Dockerfile": testImagesPetsPeerFinderDockerfile, + "test/images/pets/peer-finder/Makefile": testImagesPetsPeerFinderMakefile, + "test/images/pets/peer-finder/VERSION": testImagesPetsPeerFinderVersion, + "test/images/pets/peer-finder/peer-finder.go": testImagesPetsPeerFinderPeerFinderGo, + "test/images/pets/redis-installer/BASEIMAGE": testImagesPetsRedisInstallerBaseimage, + "test/images/pets/redis-installer/Dockerfile": testImagesPetsRedisInstallerDockerfile, + "test/images/pets/redis-installer/Makefile": testImagesPetsRedisInstallerMakefile, + "test/images/pets/redis-installer/VERSION": testImagesPetsRedisInstallerVersion, + "test/images/pets/redis-installer/install.sh": testImagesPetsRedisInstallerInstallSh, + "test/images/pets/redis-installer/on-start.sh": testImagesPetsRedisInstallerOnStartSh, + "test/images/pets/zookeeper-installer/BASEIMAGE": testImagesPetsZookeeperInstallerBaseimage, + "test/images/pets/zookeeper-installer/Dockerfile": testImagesPetsZookeeperInstallerDockerfile, + "test/images/pets/zookeeper-installer/Makefile": testImagesPetsZookeeperInstallerMakefile, + "test/images/pets/zookeeper-installer/VERSION": testImagesPetsZookeeperInstallerVersion, + "test/images/pets/zookeeper-installer/install.sh": testImagesPetsZookeeperInstallerInstallSh, + "test/images/pets/zookeeper-installer/on-start.sh": testImagesPetsZookeeperInstallerOnStartSh, + "test/images/port-forward-tester/.gitignore": testImagesPortForwardTesterGitignore, + "test/images/port-forward-tester/BUILD": testImagesPortForwardTesterBuild, + "test/images/port-forward-tester/Dockerfile": testImagesPortForwardTesterDockerfile, + "test/images/port-forward-tester/Makefile": testImagesPortForwardTesterMakefile, + "test/images/port-forward-tester/VERSION": testImagesPortForwardTesterVersion, + "test/images/port-forward-tester/portforwardtester.go": testImagesPortForwardTesterPortforwardtesterGo, + "test/images/porter/.gitignore": testImagesPorterGitignore, + "test/images/porter/BUILD": testImagesPorterBuild, + "test/images/porter/Dockerfile": testImagesPorterDockerfile, + "test/images/porter/Makefile": testImagesPorterMakefile, + "test/images/porter/VERSION": testImagesPorterVersion, + "test/images/porter/localhost.crt": testImagesPorterLocalhostCrt, + "test/images/porter/localhost.key": testImagesPorterLocalhostKey, + "test/images/porter/pod.json": testImagesPorterPodJson, + "test/images/porter/porter.go": testImagesPorterPorterGo, + "test/images/redis/BASEIMAGE": testImagesRedisBaseimage, + "test/images/redis/Dockerfile": testImagesRedisDockerfile, + "test/images/redis/VERSION": testImagesRedisVersion, + "test/images/redis/redis.conf": testImagesRedisRedisConf, + "test/images/resource-consumer/.gitignore": testImagesResourceConsumerGitignore, + "test/images/resource-consumer/BASEIMAGE": testImagesResourceConsumerBaseimage, + "test/images/resource-consumer/BUILD": testImagesResourceConsumerBuild, + "test/images/resource-consumer/Dockerfile": testImagesResourceConsumerDockerfile, + "test/images/resource-consumer/Makefile": testImagesResourceConsumerMakefile, + "test/images/resource-consumer/VERSION": testImagesResourceConsumerVersion, + "test/images/resource-consumer/common/BUILD": testImagesResourceConsumerCommonBuild, + "test/images/resource-consumer/common/common.go": testImagesResourceConsumerCommonCommonGo, + "test/images/resource-consumer/consume-cpu/BUILD": testImagesResourceConsumerConsumeCpuBuild, + "test/images/resource-consumer/consume-cpu/consume_cpu.go": testImagesResourceConsumerConsumeCpuConsume_cpuGo, + "test/images/resource-consumer/controller/BASEIMAGE": testImagesResourceConsumerControllerBaseimage, + "test/images/resource-consumer/controller/BUILD": testImagesResourceConsumerControllerBuild, + "test/images/resource-consumer/controller/Dockerfile": testImagesResourceConsumerControllerDockerfile, + "test/images/resource-consumer/controller/Makefile": testImagesResourceConsumerControllerMakefile, + "test/images/resource-consumer/controller/VERSION": testImagesResourceConsumerControllerVersion, + "test/images/resource-consumer/controller/controller.go": testImagesResourceConsumerControllerControllerGo, + "test/images/resource-consumer/resource_consumer.go": testImagesResourceConsumerResource_consumerGo, + "test/images/resource-consumer/resource_consumer_handler.go": testImagesResourceConsumerResource_consumer_handlerGo, + "test/images/resource-consumer/utils.go": testImagesResourceConsumerUtilsGo, + "test/images/serve-hostname/BASEIMAGE": testImagesServeHostnameBaseimage, + "test/images/serve-hostname/BUILD": testImagesServeHostnameBuild, + "test/images/serve-hostname/Dockerfile": testImagesServeHostnameDockerfile, + "test/images/serve-hostname/Makefile": testImagesServeHostnameMakefile, + "test/images/serve-hostname/VERSION": testImagesServeHostnameVersion, + "test/images/serve-hostname/serve_hostname.go": testImagesServeHostnameServe_hostnameGo, + "test/images/test-webserver/BUILD": testImagesTestWebserverBuild, + "test/images/test-webserver/Dockerfile": testImagesTestWebserverDockerfile, + "test/images/test-webserver/Makefile": testImagesTestWebserverMakefile, + "test/images/test-webserver/VERSION": testImagesTestWebserverVersion, + "test/images/test-webserver/test-webserver.go": testImagesTestWebserverTestWebserverGo, + "test/images/volumes-tester/ceph/Dockerfile": testImagesVolumesTesterCephDockerfile, + "test/images/volumes-tester/ceph/Makefile": testImagesVolumesTesterCephMakefile, + "test/images/volumes-tester/ceph/index.html": testImagesVolumesTesterCephIndexHtml, + "test/images/volumes-tester/ceph/init.sh": testImagesVolumesTesterCephInitSh, + "test/images/volumes-tester/ceph/install.sh": testImagesVolumesTesterCephInstallSh, + "test/images/volumes-tester/gluster/Dockerfile": testImagesVolumesTesterGlusterDockerfile, + "test/images/volumes-tester/gluster/Makefile": testImagesVolumesTesterGlusterMakefile, + "test/images/volumes-tester/gluster/glusterd.vol": testImagesVolumesTesterGlusterGlusterdVol, + "test/images/volumes-tester/gluster/index.html": testImagesVolumesTesterGlusterIndexHtml, + "test/images/volumes-tester/gluster/run_gluster.sh": testImagesVolumesTesterGlusterRun_glusterSh, + "test/images/volumes-tester/iscsi/Dockerfile": testImagesVolumesTesterIscsiDockerfile, + "test/images/volumes-tester/iscsi/Makefile": testImagesVolumesTesterIscsiMakefile, + "test/images/volumes-tester/iscsi/block.tar.gz": testImagesVolumesTesterIscsiBlockTarGz, + "test/images/volumes-tester/iscsi/create_block.sh": testImagesVolumesTesterIscsiCreate_blockSh, + "test/images/volumes-tester/iscsi/initiatorname.iscsi": testImagesVolumesTesterIscsiInitiatornameIscsi, + "test/images/volumes-tester/iscsi/run_iscsid.sh": testImagesVolumesTesterIscsiRun_iscsidSh, + "test/images/volumes-tester/iscsi/saveconfig.json": testImagesVolumesTesterIscsiSaveconfigJson, + "test/images/volumes-tester/nfs/Dockerfile": testImagesVolumesTesterNfsDockerfile, + "test/images/volumes-tester/nfs/Makefile": testImagesVolumesTesterNfsMakefile, + "test/images/volumes-tester/nfs/index.html": testImagesVolumesTesterNfsIndexHtml, + "test/images/volumes-tester/nfs/run_nfs.sh": testImagesVolumesTesterNfsRun_nfsSh, + "test/images/volumes-tester/rbd/Dockerfile": testImagesVolumesTesterRbdDockerfile, + "test/images/volumes-tester/rbd/Makefile": testImagesVolumesTesterRbdMakefile, + "test/images/volumes-tester/rbd/block.tar.gz": testImagesVolumesTesterRbdBlockTarGz, + "test/images/volumes-tester/rbd/bootstrap.sh": testImagesVolumesTesterRbdBootstrapSh, + "test/images/volumes-tester/rbd/ceph.conf.sh": testImagesVolumesTesterRbdCephConfSh, + "test/images/volumes-tester/rbd/create_block.sh": testImagesVolumesTesterRbdCreate_blockSh, + "test/images/volumes-tester/rbd/keyring": testImagesVolumesTesterRbdKeyring, + "test/images/volumes-tester/rbd/mon.sh": testImagesVolumesTesterRbdMonSh, + "test/images/volumes-tester/rbd/osd.sh": testImagesVolumesTesterRbdOsdSh, + "test/fixtures/BUILD": testFixturesBuild, + "test/fixtures/doc-yaml/admin/daemon.yaml": testFixturesDocYamlAdminDaemonYaml, + "test/fixtures/doc-yaml/admin/high-availability/etcd.yaml": testFixturesDocYamlAdminHighAvailabilityEtcdYaml, + "test/fixtures/doc-yaml/admin/high-availability/kube-apiserver.yaml": testFixturesDocYamlAdminHighAvailabilityKubeApiserverYaml, + "test/fixtures/doc-yaml/admin/high-availability/kube-controller-manager.yaml": testFixturesDocYamlAdminHighAvailabilityKubeControllerManagerYaml, + "test/fixtures/doc-yaml/admin/high-availability/kube-scheduler.yaml": testFixturesDocYamlAdminHighAvailabilityKubeSchedulerYaml, + "test/fixtures/doc-yaml/admin/limitrange/invalid-pod.yaml": testFixturesDocYamlAdminLimitrangeInvalidPodYaml, + "test/fixtures/doc-yaml/admin/limitrange/limits.yaml": testFixturesDocYamlAdminLimitrangeLimitsYaml, + "test/fixtures/doc-yaml/admin/limitrange/namespace.yaml": testFixturesDocYamlAdminLimitrangeNamespaceYaml, + "test/fixtures/doc-yaml/admin/limitrange/valid-pod.yaml": testFixturesDocYamlAdminLimitrangeValidPodYaml, + "test/fixtures/doc-yaml/admin/namespaces/namespace-dev.json": testFixturesDocYamlAdminNamespacesNamespaceDevJson, + "test/fixtures/doc-yaml/admin/namespaces/namespace-prod.json": testFixturesDocYamlAdminNamespacesNamespaceProdJson, + "test/fixtures/doc-yaml/admin/resourcequota/limits.yaml": testFixturesDocYamlAdminResourcequotaLimitsYaml, + "test/fixtures/doc-yaml/admin/resourcequota/namespace.yaml": testFixturesDocYamlAdminResourcequotaNamespaceYaml, + "test/fixtures/doc-yaml/admin/resourcequota/quota.yaml": testFixturesDocYamlAdminResourcequotaQuotaYaml, + "test/fixtures/doc-yaml/getting-started-guides/coreos/cloud-configs/master.yaml": testFixturesDocYamlGettingStartedGuidesCoreosCloudConfigsMasterYaml, + "test/fixtures/doc-yaml/getting-started-guides/coreos/cloud-configs/node.yaml": testFixturesDocYamlGettingStartedGuidesCoreosCloudConfigsNodeYaml, + "test/fixtures/doc-yaml/user-guide/configmap/command-pod.yaml": testFixturesDocYamlUserGuideConfigmapCommandPodYaml, + "test/fixtures/doc-yaml/user-guide/configmap/configmap.yaml": testFixturesDocYamlUserGuideConfigmapConfigmapYaml, + "test/fixtures/doc-yaml/user-guide/configmap/env-pod.yaml": testFixturesDocYamlUserGuideConfigmapEnvPodYaml, + "test/fixtures/doc-yaml/user-guide/configmap/redis/redis-pod.yaml": testFixturesDocYamlUserGuideConfigmapRedisRedisPodYaml, + "test/fixtures/doc-yaml/user-guide/configmap/volume-pod.yaml": testFixturesDocYamlUserGuideConfigmapVolumePodYaml, + "test/fixtures/doc-yaml/user-guide/deployment.yaml": testFixturesDocYamlUserGuideDeploymentYaml, + "test/fixtures/doc-yaml/user-guide/downward-api/dapi-pod.yaml": testFixturesDocYamlUserGuideDownwardApiDapiPodYaml, + "test/fixtures/doc-yaml/user-guide/downward-api/volume/dapi-volume.yaml": testFixturesDocYamlUserGuideDownwardApiVolumeDapiVolumeYaml, + "test/fixtures/doc-yaml/user-guide/environment-guide/backend-rc.yaml": testFixturesDocYamlUserGuideEnvironmentGuideBackendRcYaml, + "test/fixtures/doc-yaml/user-guide/environment-guide/backend-srv.yaml": testFixturesDocYamlUserGuideEnvironmentGuideBackendSrvYaml, + "test/fixtures/doc-yaml/user-guide/environment-guide/show-rc.yaml": testFixturesDocYamlUserGuideEnvironmentGuideShowRcYaml, + "test/fixtures/doc-yaml/user-guide/environment-guide/show-srv.yaml": testFixturesDocYamlUserGuideEnvironmentGuideShowSrvYaml, + "test/fixtures/doc-yaml/user-guide/horizontal-pod-autoscaling/hpa-php-apache.yaml": testFixturesDocYamlUserGuideHorizontalPodAutoscalingHpaPhpApacheYaml, + "test/fixtures/doc-yaml/user-guide/ingress.yaml": testFixturesDocYamlUserGuideIngressYaml, + "test/fixtures/doc-yaml/user-guide/job.yaml": testFixturesDocYamlUserGuideJobYaml, + "test/fixtures/doc-yaml/user-guide/liveness/exec-liveness.yaml": testFixturesDocYamlUserGuideLivenessExecLivenessYaml, + "test/fixtures/doc-yaml/user-guide/liveness/http-liveness.yaml": testFixturesDocYamlUserGuideLivenessHttpLivenessYaml, + "test/fixtures/doc-yaml/user-guide/logging-demo/synthetic_0_25lps.yaml": testFixturesDocYamlUserGuideLoggingDemoSynthetic_0_25lpsYaml, + "test/fixtures/doc-yaml/user-guide/logging-demo/synthetic_10lps.yaml": testFixturesDocYamlUserGuideLoggingDemoSynthetic_10lpsYaml, + "test/fixtures/doc-yaml/user-guide/multi-pod.yaml": testFixturesDocYamlUserGuideMultiPodYaml, + "test/fixtures/doc-yaml/user-guide/new-nginx-deployment.yaml": testFixturesDocYamlUserGuideNewNginxDeploymentYaml, + "test/fixtures/doc-yaml/user-guide/nginx-deployment.yaml": testFixturesDocYamlUserGuideNginxDeploymentYaml, + "test/fixtures/doc-yaml/user-guide/node-selection/pod.yaml": testFixturesDocYamlUserGuideNodeSelectionPodYaml, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/claims/claim-01.yaml": testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim01Yaml, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/claims/claim-02.yaml": testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim02Yaml, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/claims/claim-03.json": testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim03Json, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/simpletest/namespace.json": testFixturesDocYamlUserGuidePersistentVolumesSimpletestNamespaceJson, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/simpletest/pod.yaml": testFixturesDocYamlUserGuidePersistentVolumesSimpletestPodYaml, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/simpletest/service.json": testFixturesDocYamlUserGuidePersistentVolumesSimpletestServiceJson, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/volumes/gce.yaml": testFixturesDocYamlUserGuidePersistentVolumesVolumesGceYaml, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/volumes/local-01.yaml": testFixturesDocYamlUserGuidePersistentVolumesVolumesLocal01Yaml, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/volumes/local-02.yaml": testFixturesDocYamlUserGuidePersistentVolumesVolumesLocal02Yaml, + "test/fixtures/doc-yaml/user-guide/persistent-volumes/volumes/nfs.yaml": testFixturesDocYamlUserGuidePersistentVolumesVolumesNfsYaml, + "test/fixtures/doc-yaml/user-guide/pod.yaml": testFixturesDocYamlUserGuidePodYaml, + "test/fixtures/doc-yaml/user-guide/replicaset/frontend.yaml": testFixturesDocYamlUserGuideReplicasetFrontendYaml, + "test/fixtures/doc-yaml/user-guide/replicaset/redis-slave.yaml": testFixturesDocYamlUserGuideReplicasetRedisSlaveYaml, + "test/fixtures/doc-yaml/user-guide/replication.yaml": testFixturesDocYamlUserGuideReplicationYaml, + "test/fixtures/doc-yaml/user-guide/secrets/secret-env-pod.yaml": testFixturesDocYamlUserGuideSecretsSecretEnvPodYaml, + "test/fixtures/doc-yaml/user-guide/secrets/secret-pod.yaml": testFixturesDocYamlUserGuideSecretsSecretPodYaml, + "test/fixtures/doc-yaml/user-guide/secrets/secret.yaml": testFixturesDocYamlUserGuideSecretsSecretYaml, + "test/fixtures/doc-yaml/user-guide/update-demo/images/kitten/html/data.json": testFixturesDocYamlUserGuideUpdateDemoImagesKittenHtmlDataJson, + "test/fixtures/doc-yaml/user-guide/update-demo/images/nautilus/html/data.json": testFixturesDocYamlUserGuideUpdateDemoImagesNautilusHtmlDataJson, + "test/fixtures/doc-yaml/user-guide/update-demo/kitten-rc.yaml.in": testFixturesDocYamlUserGuideUpdateDemoKittenRcYamlIn, + "test/fixtures/doc-yaml/user-guide/update-demo/nautilus-rc.yaml.in": testFixturesDocYamlUserGuideUpdateDemoNautilusRcYamlIn, + "test/fixtures/doc-yaml/user-guide/walkthrough/pod-nginx-with-label.yaml": testFixturesDocYamlUserGuideWalkthroughPodNginxWithLabelYaml, + "test/fixtures/doc-yaml/user-guide/walkthrough/pod-nginx.yaml": testFixturesDocYamlUserGuideWalkthroughPodNginxYaml, + "test/fixtures/doc-yaml/user-guide/walkthrough/pod-redis.yaml": testFixturesDocYamlUserGuideWalkthroughPodRedisYaml, + "test/fixtures/doc-yaml/user-guide/walkthrough/pod-with-http-healthcheck.yaml": testFixturesDocYamlUserGuideWalkthroughPodWithHttpHealthcheckYaml, + "test/fixtures/doc-yaml/user-guide/walkthrough/podtemplate.json": testFixturesDocYamlUserGuideWalkthroughPodtemplateJson, + "test/fixtures/doc-yaml/user-guide/walkthrough/replication-controller.yaml": testFixturesDocYamlUserGuideWalkthroughReplicationControllerYaml, + "test/fixtures/doc-yaml/user-guide/walkthrough/service.yaml": testFixturesDocYamlUserGuideWalkthroughServiceYaml, + "test/fixtures/pkg/kubectl/OWNERS": testFixturesPkgKubectlOwners, + "test/fixtures/pkg/kubectl/builder/kitten-rc.yaml": testFixturesPkgKubectlBuilderKittenRcYaml, + "test/fixtures/pkg/kubectl/plugins/echo/plugin.yaml": testFixturesPkgKubectlPluginsEchoPluginYaml, + "test/fixtures/pkg/kubectl/plugins/env/env.sh": testFixturesPkgKubectlPluginsEnvEnvSh, + "test/fixtures/pkg/kubectl/plugins/env/plugin.yaml": testFixturesPkgKubectlPluginsEnvPluginYaml, + "test/fixtures/pkg/kubectl/plugins/error/plugin.yaml": testFixturesPkgKubectlPluginsErrorPluginYaml, + "test/fixtures/pkg/kubectl/plugins/get/plugin.yaml": testFixturesPkgKubectlPluginsGetPluginYaml, + "test/fixtures/pkg/kubectl/plugins/incomplete/plugin.yaml": testFixturesPkgKubectlPluginsIncompletePluginYaml, + "test/fixtures/pkg/kubectl/plugins/tree/plugin.yaml": testFixturesPkgKubectlPluginsTreePluginYaml, + "test/fixtures/pkg/kubectl/plugins2/hello/hello.sh": testFixturesPkgKubectlPlugins2HelloHelloSh, + "test/fixtures/pkg/kubectl/plugins2/hello/plugin.yaml": testFixturesPkgKubectlPlugins2HelloPluginYaml, +} + +// AssetDir returns the file names below a certain +// directory embedded in the file by go-bindata. +// For example if you run go-bindata on data/... and data contains the +// following hierarchy: +// data/ +// foo.txt +// img/ +// a.png +// b.png +// then AssetDir("data") would return []string{"foo.txt", "img"} +// AssetDir("data/img") would return []string{"a.png", "b.png"} +// AssetDir("foo.txt") and AssetDir("notexist") would return an error +// AssetDir("") will return []string{"data"}. +func AssetDir(name string) ([]string, error) { + node := _bintree + if len(name) != 0 { + cannonicalName := strings.Replace(name, "\\", "/", -1) + pathList := strings.Split(cannonicalName, "/") + for _, p := range pathList { + node = node.Children[p] + if node == nil { + return nil, fmt.Errorf("Asset %s not found", name) + } + } + } + if node.Func != nil { + return nil, fmt.Errorf("Asset %s not found", name) + } + rv := make([]string, 0, len(node.Children)) + for childName := range node.Children { + rv = append(rv, childName) + } + return rv, nil +} + +type bintree struct { + Func func() (*asset, error) + Children map[string]*bintree +} + +var _bintree = &bintree{nil, map[string]*bintree{ + "examples": {nil, map[string]*bintree{ + "BUILD": {examplesBuild, map[string]*bintree{}}, + "OWNERS": {examplesOwners, map[string]*bintree{}}, + "cloud-controller-manager": {nil, map[string]*bintree{ + "persistent-volume-label-initializer-config.yaml": {examplesCloudControllerManagerPersistentVolumeLabelInitializerConfigYaml, map[string]*bintree{}}, + }}, + "cluster-dns": {nil, map[string]*bintree{ + "dns-backend-rc.yaml": {examplesClusterDnsDnsBackendRcYaml, map[string]*bintree{}}, + "dns-backend-service.yaml": {examplesClusterDnsDnsBackendServiceYaml, map[string]*bintree{}}, + "dns-frontend-pod.yaml": {examplesClusterDnsDnsFrontendPodYaml, map[string]*bintree{}}, + "images": {nil, map[string]*bintree{ + "backend": {nil, map[string]*bintree{ + "Dockerfile": {examplesClusterDnsImagesBackendDockerfile, map[string]*bintree{}}, + "Makefile": {examplesClusterDnsImagesBackendMakefile, map[string]*bintree{}}, + "server.py": {examplesClusterDnsImagesBackendServerPy, map[string]*bintree{}}, + }}, + "frontend": {nil, map[string]*bintree{ + "Dockerfile": {examplesClusterDnsImagesFrontendDockerfile, map[string]*bintree{}}, + "Makefile": {examplesClusterDnsImagesFrontendMakefile, map[string]*bintree{}}, + "client.py": {examplesClusterDnsImagesFrontendClientPy, map[string]*bintree{}}, + }}, + }}, + "namespace-dev.yaml": {examplesClusterDnsNamespaceDevYaml, map[string]*bintree{}}, + "namespace-prod.yaml": {examplesClusterDnsNamespaceProdYaml, map[string]*bintree{}}, + }}, + "cockroachdb": {nil, map[string]*bintree{ + "OWNERS": {examplesCockroachdbOwners, map[string]*bintree{}}, + "cockroachdb-statefulset.yaml": {examplesCockroachdbCockroachdbStatefulsetYaml, map[string]*bintree{}}, + "demo.sh": {examplesCockroachdbDemoSh, map[string]*bintree{}}, + "minikube.sh": {examplesCockroachdbMinikubeSh, map[string]*bintree{}}, + }}, + "doc.go": {examplesDocGo, map[string]*bintree{}}, + "elasticsearch": {nil, map[string]*bintree{ + "es-rc.yaml": {examplesElasticsearchEsRcYaml, map[string]*bintree{}}, + "es-svc.yaml": {examplesElasticsearchEsSvcYaml, map[string]*bintree{}}, + "production_cluster": {nil, map[string]*bintree{ + "es-client-rc.yaml": {examplesElasticsearchProduction_clusterEsClientRcYaml, map[string]*bintree{}}, + "es-data-rc.yaml": {examplesElasticsearchProduction_clusterEsDataRcYaml, map[string]*bintree{}}, + "es-discovery-svc.yaml": {examplesElasticsearchProduction_clusterEsDiscoverySvcYaml, map[string]*bintree{}}, + "es-master-rc.yaml": {examplesElasticsearchProduction_clusterEsMasterRcYaml, map[string]*bintree{}}, + "es-svc.yaml": {examplesElasticsearchProduction_clusterEsSvcYaml, map[string]*bintree{}}, + "service-account.yaml": {examplesElasticsearchProduction_clusterServiceAccountYaml, map[string]*bintree{}}, + }}, + "service-account.yaml": {examplesElasticsearchServiceAccountYaml, map[string]*bintree{}}, + }}, + "examples_test.go": {examplesExamples_testGo, map[string]*bintree{}}, + "explorer": {nil, map[string]*bintree{ + "BUILD": {examplesExplorerBuild, map[string]*bintree{}}, + "Dockerfile": {examplesExplorerDockerfile, map[string]*bintree{}}, + "Makefile": {examplesExplorerMakefile, map[string]*bintree{}}, + "explorer.go": {examplesExplorerExplorerGo, map[string]*bintree{}}, + "pod.yaml": {examplesExplorerPodYaml, map[string]*bintree{}}, + }}, + "guestbook": {nil, map[string]*bintree{ + "all-in-one": {nil, map[string]*bintree{ + "frontend.yaml": {examplesGuestbookAllInOneFrontendYaml, map[string]*bintree{}}, + "guestbook-all-in-one.yaml": {examplesGuestbookAllInOneGuestbookAllInOneYaml, map[string]*bintree{}}, + "redis-slave.yaml": {examplesGuestbookAllInOneRedisSlaveYaml, map[string]*bintree{}}, + }}, + "frontend-deployment.yaml": {examplesGuestbookFrontendDeploymentYaml, map[string]*bintree{}}, + "frontend-service.yaml": {examplesGuestbookFrontendServiceYaml, map[string]*bintree{}}, + "legacy": {nil, map[string]*bintree{ + "frontend-controller.yaml": {examplesGuestbookLegacyFrontendControllerYaml, map[string]*bintree{}}, + "redis-master-controller.yaml": {examplesGuestbookLegacyRedisMasterControllerYaml, map[string]*bintree{}}, + "redis-slave-controller.yaml": {examplesGuestbookLegacyRedisSlaveControllerYaml, map[string]*bintree{}}, + }}, + "php-redis": {nil, map[string]*bintree{ + "Dockerfile": {examplesGuestbookPhpRedisDockerfile, map[string]*bintree{}}, + "controllers.js": {examplesGuestbookPhpRedisControllersJs, map[string]*bintree{}}, + "guestbook.php": {examplesGuestbookPhpRedisGuestbookPhp, map[string]*bintree{}}, + "index.html": {examplesGuestbookPhpRedisIndexHtml, map[string]*bintree{}}, + }}, + "redis-master-deployment.yaml": {examplesGuestbookRedisMasterDeploymentYaml, map[string]*bintree{}}, + "redis-master-service.yaml": {examplesGuestbookRedisMasterServiceYaml, map[string]*bintree{}}, + "redis-slave": {nil, map[string]*bintree{ + "Dockerfile": {examplesGuestbookRedisSlaveDockerfile, map[string]*bintree{}}, + "run.sh": {examplesGuestbookRedisSlaveRunSh, map[string]*bintree{}}, + }}, + "redis-slave-deployment.yaml": {examplesGuestbookRedisSlaveDeploymentYaml, map[string]*bintree{}}, + "redis-slave-service.yaml": {examplesGuestbookRedisSlaveServiceYaml, map[string]*bintree{}}, + }}, + "guestbook-go": {nil, map[string]*bintree{ + ".gitignore": {examplesGuestbookGoGitignore, map[string]*bintree{}}, + "BUILD": {examplesGuestbookGoBuild, map[string]*bintree{}}, + "Dockerfile": {examplesGuestbookGoDockerfile, map[string]*bintree{}}, + "Makefile": {examplesGuestbookGoMakefile, map[string]*bintree{}}, + "guestbook-controller.json": {examplesGuestbookGoGuestbookControllerJson, map[string]*bintree{}}, + "guestbook-service.json": {examplesGuestbookGoGuestbookServiceJson, map[string]*bintree{}}, + "main.go": {examplesGuestbookGoMainGo, map[string]*bintree{}}, + "public": {nil, map[string]*bintree{ + "index.html": {examplesGuestbookGoPublicIndexHtml, map[string]*bintree{}}, + "script.js": {examplesGuestbookGoPublicScriptJs, map[string]*bintree{}}, + "style.css": {examplesGuestbookGoPublicStyleCss, map[string]*bintree{}}, + }}, + "redis-master-controller.json": {examplesGuestbookGoRedisMasterControllerJson, map[string]*bintree{}}, + "redis-master-service.json": {examplesGuestbookGoRedisMasterServiceJson, map[string]*bintree{}}, + "redis-slave-controller.json": {examplesGuestbookGoRedisSlaveControllerJson, map[string]*bintree{}}, + "redis-slave-service.json": {examplesGuestbookGoRedisSlaveServiceJson, map[string]*bintree{}}, + }}, + "https-nginx": {nil, map[string]*bintree{ + "BUILD": {examplesHttpsNginxBuild, map[string]*bintree{}}, + "Dockerfile": {examplesHttpsNginxDockerfile, map[string]*bintree{}}, + "Makefile": {examplesHttpsNginxMakefile, map[string]*bintree{}}, + "auto-reload-nginx.sh": {examplesHttpsNginxAutoReloadNginxSh, map[string]*bintree{}}, + "default.conf": {examplesHttpsNginxDefaultConf, map[string]*bintree{}}, + "index2.html": {examplesHttpsNginxIndex2Html, map[string]*bintree{}}, + "make_secret.go": {examplesHttpsNginxMake_secretGo, map[string]*bintree{}}, + "nginx-app.yaml": {examplesHttpsNginxNginxAppYaml, map[string]*bintree{}}, + }}, + "javaee": {nil, map[string]*bintree{ + "mysql-pod.yaml": {examplesJavaeeMysqlPodYaml, map[string]*bintree{}}, + "mysql-service.yaml": {examplesJavaeeMysqlServiceYaml, map[string]*bintree{}}, + "wildfly-rc.yaml": {examplesJavaeeWildflyRcYaml, map[string]*bintree{}}, + }}, + "javaweb-tomcat-sidecar": {nil, map[string]*bintree{ + "javaweb-2.yaml": {examplesJavawebTomcatSidecarJavaweb2Yaml, map[string]*bintree{}}, + "javaweb.yaml": {examplesJavawebTomcatSidecarJavawebYaml, map[string]*bintree{}}, + }}, + "kubectl-container": {nil, map[string]*bintree{ + ".gitignore": {examplesKubectlContainerGitignore, map[string]*bintree{}}, + "Dockerfile": {examplesKubectlContainerDockerfile, map[string]*bintree{}}, + "Makefile": {examplesKubectlContainerMakefile, map[string]*bintree{}}, + "pod.json": {examplesKubectlContainerPodJson, map[string]*bintree{}}, + }}, + "meteor": {nil, map[string]*bintree{ + "dockerbase": {nil, map[string]*bintree{ + "Dockerfile": {examplesMeteorDockerbaseDockerfile, map[string]*bintree{}}, + }}, + "meteor-controller.json": {examplesMeteorMeteorControllerJson, map[string]*bintree{}}, + "meteor-service.json": {examplesMeteorMeteorServiceJson, map[string]*bintree{}}, + "mongo-pod.json": {examplesMeteorMongoPodJson, map[string]*bintree{}}, + "mongo-service.json": {examplesMeteorMongoServiceJson, map[string]*bintree{}}, + }}, + "mysql-cinder-pd": {nil, map[string]*bintree{ + "mysql-service.yaml": {examplesMysqlCinderPdMysqlServiceYaml, map[string]*bintree{}}, + "mysql.yaml": {examplesMysqlCinderPdMysqlYaml, map[string]*bintree{}}, + }}, + "mysql-wordpress-pd": {nil, map[string]*bintree{ + "OWNERS": {examplesMysqlWordpressPdOwners, map[string]*bintree{}}, + "gce-volumes.yaml": {examplesMysqlWordpressPdGceVolumesYaml, map[string]*bintree{}}, + "local-volumes.yaml": {examplesMysqlWordpressPdLocalVolumesYaml, map[string]*bintree{}}, + "mysql-deployment.yaml": {examplesMysqlWordpressPdMysqlDeploymentYaml, map[string]*bintree{}}, + "wordpress-deployment.yaml": {examplesMysqlWordpressPdWordpressDeploymentYaml, map[string]*bintree{}}, + }}, + "newrelic": {nil, map[string]*bintree{ + "config-to-secret.sh": {examplesNewrelicConfigToSecretSh, map[string]*bintree{}}, + "newrelic-config-template.yaml": {examplesNewrelicNewrelicConfigTemplateYaml, map[string]*bintree{}}, + "newrelic-config.yaml": {examplesNewrelicNewrelicConfigYaml, map[string]*bintree{}}, + "newrelic-daemonset.yaml": {examplesNewrelicNewrelicDaemonsetYaml, map[string]*bintree{}}, + "nrconfig.env": {examplesNewrelicNrconfigEnv, map[string]*bintree{}}, + }}, + "newrelic-infrastructure": {nil, map[string]*bintree{ + ".gitignore": {examplesNewrelicInfrastructureGitignore, map[string]*bintree{}}, + "config-to-secret.sh": {examplesNewrelicInfrastructureConfigToSecretSh, map[string]*bintree{}}, + "newrelic-config-template.yaml": {examplesNewrelicInfrastructureNewrelicConfigTemplateYaml, map[string]*bintree{}}, + "newrelic-infra-daemonset.yaml": {examplesNewrelicInfrastructureNewrelicInfraDaemonsetYaml, map[string]*bintree{}}, + "nrconfig.env": {examplesNewrelicInfrastructureNrconfigEnv, map[string]*bintree{}}, + }}, + "nodesjs-mongodb": {nil, map[string]*bintree{ + "mongo-controller.yaml": {examplesNodesjsMongodbMongoControllerYaml, map[string]*bintree{}}, + "mongo-service.yaml": {examplesNodesjsMongodbMongoServiceYaml, map[string]*bintree{}}, + "web-controller-demo.yaml": {examplesNodesjsMongodbWebControllerDemoYaml, map[string]*bintree{}}, + "web-controller.yaml": {examplesNodesjsMongodbWebControllerYaml, map[string]*bintree{}}, + "web-service.yaml": {examplesNodesjsMongodbWebServiceYaml, map[string]*bintree{}}, + }}, + "oms": {nil, map[string]*bintree{ + "omsagent-daemonset.yaml": {examplesOmsOmsagentDaemonsetYaml, map[string]*bintree{}}, + }}, + "openshift-origin": {nil, map[string]*bintree{ + ".gitignore": {examplesOpenshiftOriginGitignore, map[string]*bintree{}}, + "cleanup.sh": {examplesOpenshiftOriginCleanupSh, map[string]*bintree{}}, + "create.sh": {examplesOpenshiftOriginCreateSh, map[string]*bintree{}}, + "etcd-controller.yaml": {examplesOpenshiftOriginEtcdControllerYaml, map[string]*bintree{}}, + "etcd-discovery-controller.yaml": {examplesOpenshiftOriginEtcdDiscoveryControllerYaml, map[string]*bintree{}}, + "etcd-discovery-service.yaml": {examplesOpenshiftOriginEtcdDiscoveryServiceYaml, map[string]*bintree{}}, + "etcd-service.yaml": {examplesOpenshiftOriginEtcdServiceYaml, map[string]*bintree{}}, + "openshift-controller.yaml": {examplesOpenshiftOriginOpenshiftControllerYaml, map[string]*bintree{}}, + "openshift-origin-namespace.yaml": {examplesOpenshiftOriginOpenshiftOriginNamespaceYaml, map[string]*bintree{}}, + "openshift-service.yaml": {examplesOpenshiftOriginOpenshiftServiceYaml, map[string]*bintree{}}, + "secret.json": {examplesOpenshiftOriginSecretJson, map[string]*bintree{}}, + }}, + "persistent-volume-provisioning": {nil, map[string]*bintree{ + "aws-ebs.yaml": {examplesPersistentVolumeProvisioningAwsEbsYaml, map[string]*bintree{}}, + "cinder": {nil, map[string]*bintree{ + "cinder-storage-class.yaml": {examplesPersistentVolumeProvisioningCinderCinderStorageClassYaml, map[string]*bintree{}}, + "example-pod.yaml": {examplesPersistentVolumeProvisioningCinderExamplePodYaml, map[string]*bintree{}}, + }}, + "claim1.json": {examplesPersistentVolumeProvisioningClaim1Json, map[string]*bintree{}}, + "gce-pd.yaml": {examplesPersistentVolumeProvisioningGcePdYaml, map[string]*bintree{}}, + "glusterfs": {nil, map[string]*bintree{ + "glusterfs-secret.yaml": {examplesPersistentVolumeProvisioningGlusterfsGlusterfsSecretYaml, map[string]*bintree{}}, + "glusterfs-storageclass.yaml": {examplesPersistentVolumeProvisioningGlusterfsGlusterfsStorageclassYaml, map[string]*bintree{}}, + }}, + "quobyte": {nil, map[string]*bintree{ + "example-pod.yaml": {examplesPersistentVolumeProvisioningQuobyteExamplePodYaml, map[string]*bintree{}}, + "quobyte-admin-secret.yaml": {examplesPersistentVolumeProvisioningQuobyteQuobyteAdminSecretYaml, map[string]*bintree{}}, + "quobyte-storage-class.yaml": {examplesPersistentVolumeProvisioningQuobyteQuobyteStorageClassYaml, map[string]*bintree{}}, + }}, + "rbd": {nil, map[string]*bintree{ + "ceph-secret-admin.yaml": {examplesPersistentVolumeProvisioningRbdCephSecretAdminYaml, map[string]*bintree{}}, + "ceph-secret-user.yaml": {examplesPersistentVolumeProvisioningRbdCephSecretUserYaml, map[string]*bintree{}}, + "pod.yaml": {examplesPersistentVolumeProvisioningRbdPodYaml, map[string]*bintree{}}, + "rbd-storage-class.yaml": {examplesPersistentVolumeProvisioningRbdRbdStorageClassYaml, map[string]*bintree{}}, + }}, + }}, + "phabricator": {nil, map[string]*bintree{ + "phabricator-controller.json": {examplesPhabricatorPhabricatorControllerJson, map[string]*bintree{}}, + "phabricator-service.json": {examplesPhabricatorPhabricatorServiceJson, map[string]*bintree{}}, + "php-phabricator": {nil, map[string]*bintree{ + "000-default.conf": {examplesPhabricatorPhpPhabricator000DefaultConf, map[string]*bintree{}}, + "Dockerfile": {examplesPhabricatorPhpPhabricatorDockerfile, map[string]*bintree{}}, + "run.sh": {examplesPhabricatorPhpPhabricatorRunSh, map[string]*bintree{}}, + }}, + "setup.sh": {examplesPhabricatorSetupSh, map[string]*bintree{}}, + "teardown.sh": {examplesPhabricatorTeardownSh, map[string]*bintree{}}, + }}, + "pod": {examplesPod, map[string]*bintree{}}, + "podsecuritypolicy": {nil, map[string]*bintree{ + "rbac": {nil, map[string]*bintree{ + "bindings.yaml": {examplesPodsecuritypolicyRbacBindingsYaml, map[string]*bintree{}}, + "pod.yaml": {examplesPodsecuritypolicyRbacPodYaml, map[string]*bintree{}}, + "pod_priv.yaml": {examplesPodsecuritypolicyRbacPod_privYaml, map[string]*bintree{}}, + "policies.yaml": {examplesPodsecuritypolicyRbacPoliciesYaml, map[string]*bintree{}}, + "roles.yaml": {examplesPodsecuritypolicyRbacRolesYaml, map[string]*bintree{}}, + }}, + }}, + "scheduler-policy-config-with-extender.json": {examplesSchedulerPolicyConfigWithExtenderJson, map[string]*bintree{}}, + "scheduler-policy-config.json": {examplesSchedulerPolicyConfigJson, map[string]*bintree{}}, + "selenium": {nil, map[string]*bintree{ + "selenium-hub-rc.yaml": {examplesSeleniumSeleniumHubRcYaml, map[string]*bintree{}}, + "selenium-hub-svc.yaml": {examplesSeleniumSeleniumHubSvcYaml, map[string]*bintree{}}, + "selenium-node-chrome-rc.yaml": {examplesSeleniumSeleniumNodeChromeRcYaml, map[string]*bintree{}}, + "selenium-node-firefox-rc.yaml": {examplesSeleniumSeleniumNodeFirefoxRcYaml, map[string]*bintree{}}, + "selenium-test.py": {examplesSeleniumSeleniumTestPy, map[string]*bintree{}}, + }}, + "sharing-clusters": {nil, map[string]*bintree{ + "BUILD": {examplesSharingClustersBuild, map[string]*bintree{}}, + "make_secret.go": {examplesSharingClustersMake_secretGo, map[string]*bintree{}}, + }}, + "spark": {nil, map[string]*bintree{ + "namespace-spark-cluster.yaml": {examplesSparkNamespaceSparkClusterYaml, map[string]*bintree{}}, + "spark-gluster": {nil, map[string]*bintree{ + "glusterfs-endpoints.yaml": {examplesSparkSparkGlusterGlusterfsEndpointsYaml, map[string]*bintree{}}, + "spark-master-controller.yaml": {examplesSparkSparkGlusterSparkMasterControllerYaml, map[string]*bintree{}}, + "spark-master-service.yaml": {examplesSparkSparkGlusterSparkMasterServiceYaml, map[string]*bintree{}}, + "spark-worker-controller.yaml": {examplesSparkSparkGlusterSparkWorkerControllerYaml, map[string]*bintree{}}, + }}, + "spark-master-controller.yaml": {examplesSparkSparkMasterControllerYaml, map[string]*bintree{}}, + "spark-master-service.yaml": {examplesSparkSparkMasterServiceYaml, map[string]*bintree{}}, + "spark-ui-proxy-controller.yaml": {examplesSparkSparkUiProxyControllerYaml, map[string]*bintree{}}, + "spark-ui-proxy-service.yaml": {examplesSparkSparkUiProxyServiceYaml, map[string]*bintree{}}, + "spark-worker-controller.yaml": {examplesSparkSparkWorkerControllerYaml, map[string]*bintree{}}, + "zeppelin-controller.yaml": {examplesSparkZeppelinControllerYaml, map[string]*bintree{}}, + "zeppelin-service.yaml": {examplesSparkZeppelinServiceYaml, map[string]*bintree{}}, + }}, + "storage": {nil, map[string]*bintree{ + "cassandra": {nil, map[string]*bintree{ + "cassandra-controller.yaml": {examplesStorageCassandraCassandraControllerYaml, map[string]*bintree{}}, + "cassandra-daemonset.yaml": {examplesStorageCassandraCassandraDaemonsetYaml, map[string]*bintree{}}, + "cassandra-service.yaml": {examplesStorageCassandraCassandraServiceYaml, map[string]*bintree{}}, + "cassandra-statefulset.yaml": {examplesStorageCassandraCassandraStatefulsetYaml, map[string]*bintree{}}, + "image": {nil, map[string]*bintree{ + "Dockerfile": {examplesStorageCassandraImageDockerfile, map[string]*bintree{}}, + "Makefile": {examplesStorageCassandraImageMakefile, map[string]*bintree{}}, + "files": {nil, map[string]*bintree{ + "cassandra.yaml": {examplesStorageCassandraImageFilesCassandraYaml, map[string]*bintree{}}, + "jvm.options": {examplesStorageCassandraImageFilesJvmOptions, map[string]*bintree{}}, + "kubernetes-cassandra.jar": {examplesStorageCassandraImageFilesKubernetesCassandraJar, map[string]*bintree{}}, + "logback.xml": {examplesStorageCassandraImageFilesLogbackXml, map[string]*bintree{}}, + "ready-probe.sh": {examplesStorageCassandraImageFilesReadyProbeSh, map[string]*bintree{}}, + "run.sh": {examplesStorageCassandraImageFilesRunSh, map[string]*bintree{}}, + }}, + }}, + "java": {nil, map[string]*bintree{ + ".gitignore": {examplesStorageCassandraJavaGitignore, map[string]*bintree{}}, + "pom.xml": {examplesStorageCassandraJavaPomXml, map[string]*bintree{}}, + "src": {nil, map[string]*bintree{ + "main": {nil, map[string]*bintree{ + "java": {nil, map[string]*bintree{ + "io": {nil, map[string]*bintree{ + "k8s": {nil, map[string]*bintree{ + "cassandra": {nil, map[string]*bintree{ + "KubernetesSeedProvider.java": {examplesStorageCassandraJavaSrcMainJavaIoK8sCassandraKubernetesseedproviderJava, map[string]*bintree{}}, + }}, + }}, + }}, + }}, + }}, + "test": {nil, map[string]*bintree{ + "java": {nil, map[string]*bintree{ + "io": {nil, map[string]*bintree{ + "k8s": {nil, map[string]*bintree{ + "cassandra": {nil, map[string]*bintree{ + "KubernetesSeedProviderTest.java": {examplesStorageCassandraJavaSrcTestJavaIoK8sCassandraKubernetesseedprovidertestJava, map[string]*bintree{}}, + }}, + }}, + }}, + }}, + "resources": {nil, map[string]*bintree{ + "cassandra.yaml": {examplesStorageCassandraJavaSrcTestResourcesCassandraYaml, map[string]*bintree{}}, + "logback-test.xml": {examplesStorageCassandraJavaSrcTestResourcesLogbackTestXml, map[string]*bintree{}}, + }}, + }}, + }}, + }}, + }}, + "hazelcast": {nil, map[string]*bintree{ + "hazelcast-deployment.yaml": {examplesStorageHazelcastHazelcastDeploymentYaml, map[string]*bintree{}}, + "hazelcast-service.yaml": {examplesStorageHazelcastHazelcastServiceYaml, map[string]*bintree{}}, + }}, + "minio": {nil, map[string]*bintree{ + "minio-distributed-headless-service.yaml": {examplesStorageMinioMinioDistributedHeadlessServiceYaml, map[string]*bintree{}}, + "minio-distributed-service.yaml": {examplesStorageMinioMinioDistributedServiceYaml, map[string]*bintree{}}, + "minio-distributed-statefulset.yaml": {examplesStorageMinioMinioDistributedStatefulsetYaml, map[string]*bintree{}}, + "minio-standalone-deployment.yaml": {examplesStorageMinioMinioStandaloneDeploymentYaml, map[string]*bintree{}}, + "minio-standalone-pvc.yaml": {examplesStorageMinioMinioStandalonePvcYaml, map[string]*bintree{}}, + "minio-standalone-service.yaml": {examplesStorageMinioMinioStandaloneServiceYaml, map[string]*bintree{}}, + }}, + "mysql-galera": {nil, map[string]*bintree{ + "image": {nil, map[string]*bintree{ + "Dockerfile": {examplesStorageMysqlGaleraImageDockerfile, map[string]*bintree{}}, + "cluster.cnf": {examplesStorageMysqlGaleraImageClusterCnf, map[string]*bintree{}}, + "docker-entrypoint.sh": {examplesStorageMysqlGaleraImageDockerEntrypointSh, map[string]*bintree{}}, + "my.cnf": {examplesStorageMysqlGaleraImageMyCnf, map[string]*bintree{}}, + }}, + "pxc-cluster-service.yaml": {examplesStorageMysqlGaleraPxcClusterServiceYaml, map[string]*bintree{}}, + "pxc-node1.yaml": {examplesStorageMysqlGaleraPxcNode1Yaml, map[string]*bintree{}}, + "pxc-node2.yaml": {examplesStorageMysqlGaleraPxcNode2Yaml, map[string]*bintree{}}, + "pxc-node3.yaml": {examplesStorageMysqlGaleraPxcNode3Yaml, map[string]*bintree{}}, + }}, + "redis": {nil, map[string]*bintree{ + "image": {nil, map[string]*bintree{ + "Dockerfile": {examplesStorageRedisImageDockerfile, map[string]*bintree{}}, + "redis-master.conf": {examplesStorageRedisImageRedisMasterConf, map[string]*bintree{}}, + "redis-slave.conf": {examplesStorageRedisImageRedisSlaveConf, map[string]*bintree{}}, + "run.sh": {examplesStorageRedisImageRunSh, map[string]*bintree{}}, + }}, + "redis-controller.yaml": {examplesStorageRedisRedisControllerYaml, map[string]*bintree{}}, + "redis-master.yaml": {examplesStorageRedisRedisMasterYaml, map[string]*bintree{}}, + "redis-sentinel-controller.yaml": {examplesStorageRedisRedisSentinelControllerYaml, map[string]*bintree{}}, + "redis-sentinel-service.yaml": {examplesStorageRedisRedisSentinelServiceYaml, map[string]*bintree{}}, + }}, + "rethinkdb": {nil, map[string]*bintree{ + "admin-pod.yaml": {examplesStorageRethinkdbAdminPodYaml, map[string]*bintree{}}, + "admin-service.yaml": {examplesStorageRethinkdbAdminServiceYaml, map[string]*bintree{}}, + "driver-service.yaml": {examplesStorageRethinkdbDriverServiceYaml, map[string]*bintree{}}, + "gen-pod.sh": {examplesStorageRethinkdbGenPodSh, map[string]*bintree{}}, + "image": {nil, map[string]*bintree{ + "Dockerfile": {examplesStorageRethinkdbImageDockerfile, map[string]*bintree{}}, + "run.sh": {examplesStorageRethinkdbImageRunSh, map[string]*bintree{}}, + }}, + "rc.yaml": {examplesStorageRethinkdbRcYaml, map[string]*bintree{}}, + }}, + "vitess": {nil, map[string]*bintree{ + "configure.sh": {examplesStorageVitessConfigureSh, map[string]*bintree{}}, + "create_test_table.sql": {examplesStorageVitessCreate_test_tableSql, map[string]*bintree{}}, + "env.sh": {examplesStorageVitessEnvSh, map[string]*bintree{}}, + "etcd-controller-template.yaml": {examplesStorageVitessEtcdControllerTemplateYaml, map[string]*bintree{}}, + "etcd-down.sh": {examplesStorageVitessEtcdDownSh, map[string]*bintree{}}, + "etcd-service-template.yaml": {examplesStorageVitessEtcdServiceTemplateYaml, map[string]*bintree{}}, + "etcd-up.sh": {examplesStorageVitessEtcdUpSh, map[string]*bintree{}}, + "guestbook-controller.yaml": {examplesStorageVitessGuestbookControllerYaml, map[string]*bintree{}}, + "guestbook-down.sh": {examplesStorageVitessGuestbookDownSh, map[string]*bintree{}}, + "guestbook-service.yaml": {examplesStorageVitessGuestbookServiceYaml, map[string]*bintree{}}, + "guestbook-up.sh": {examplesStorageVitessGuestbookUpSh, map[string]*bintree{}}, + "vitess-down.sh": {examplesStorageVitessVitessDownSh, map[string]*bintree{}}, + "vitess-up.sh": {examplesStorageVitessVitessUpSh, map[string]*bintree{}}, + "vtctld-controller-template.yaml": {examplesStorageVitessVtctldControllerTemplateYaml, map[string]*bintree{}}, + "vtctld-down.sh": {examplesStorageVitessVtctldDownSh, map[string]*bintree{}}, + "vtctld-service.yaml": {examplesStorageVitessVtctldServiceYaml, map[string]*bintree{}}, + "vtctld-up.sh": {examplesStorageVitessVtctldUpSh, map[string]*bintree{}}, + "vtgate-controller-template.yaml": {examplesStorageVitessVtgateControllerTemplateYaml, map[string]*bintree{}}, + "vtgate-down.sh": {examplesStorageVitessVtgateDownSh, map[string]*bintree{}}, + "vtgate-service.yaml": {examplesStorageVitessVtgateServiceYaml, map[string]*bintree{}}, + "vtgate-up.sh": {examplesStorageVitessVtgateUpSh, map[string]*bintree{}}, + "vttablet-down.sh": {examplesStorageVitessVttabletDownSh, map[string]*bintree{}}, + "vttablet-pod-template.yaml": {examplesStorageVitessVttabletPodTemplateYaml, map[string]*bintree{}}, + "vttablet-up.sh": {examplesStorageVitessVttabletUpSh, map[string]*bintree{}}, + }}, + }}, + "storm": {nil, map[string]*bintree{ + "storm-nimbus-service.json": {examplesStormStormNimbusServiceJson, map[string]*bintree{}}, + "storm-nimbus.json": {examplesStormStormNimbusJson, map[string]*bintree{}}, + "storm-worker-controller.json": {examplesStormStormWorkerControllerJson, map[string]*bintree{}}, + "zookeeper-service.json": {examplesStormZookeeperServiceJson, map[string]*bintree{}}, + "zookeeper.json": {examplesStormZookeeperJson, map[string]*bintree{}}, + }}, + "sysdig-cloud": {nil, map[string]*bintree{ + "sysdig-daemonset.yaml": {examplesSysdigCloudSysdigDaemonsetYaml, map[string]*bintree{}}, + "sysdig-rc.yaml": {examplesSysdigCloudSysdigRcYaml, map[string]*bintree{}}, + }}, + "volumes": {nil, map[string]*bintree{ + "aws_ebs": {nil, map[string]*bintree{ + "aws-ebs-web.yaml": {examplesVolumesAws_ebsAwsEbsWebYaml, map[string]*bintree{}}, + }}, + "azure_disk": {nil, map[string]*bintree{ + "azure.yaml": {examplesVolumesAzure_diskAzureYaml, map[string]*bintree{}}, + }}, + "azure_file": {nil, map[string]*bintree{ + "azure.yaml": {examplesVolumesAzure_fileAzureYaml, map[string]*bintree{}}, + "secret": {nil, map[string]*bintree{ + "azure-secret.yaml": {examplesVolumesAzure_fileSecretAzureSecretYaml, map[string]*bintree{}}, + }}, + }}, + "cephfs": {nil, map[string]*bintree{ + "cephfs-with-secret.yaml": {examplesVolumesCephfsCephfsWithSecretYaml, map[string]*bintree{}}, + "cephfs.yaml": {examplesVolumesCephfsCephfsYaml, map[string]*bintree{}}, + "secret": {nil, map[string]*bintree{ + "ceph-secret.yaml": {examplesVolumesCephfsSecretCephSecretYaml, map[string]*bintree{}}, + }}, + }}, + "cinder": {nil, map[string]*bintree{ + "cinder-web.yaml": {examplesVolumesCinderCinderWebYaml, map[string]*bintree{}}, + }}, + "fibre_channel": {nil, map[string]*bintree{ + "fc.yaml": {examplesVolumesFibre_channelFcYaml, map[string]*bintree{}}, + }}, + "flexvolume": {nil, map[string]*bintree{ + "lvm": {examplesVolumesFlexvolumeLvm, map[string]*bintree{}}, + "nfs": {examplesVolumesFlexvolumeNfs, map[string]*bintree{}}, + "nginx-nfs.yaml": {examplesVolumesFlexvolumeNginxNfsYaml, map[string]*bintree{}}, + "nginx.yaml": {examplesVolumesFlexvolumeNginxYaml, map[string]*bintree{}}, + }}, + "flocker": {nil, map[string]*bintree{ + "flocker-pod-with-rc.yml": {examplesVolumesFlockerFlockerPodWithRcYml, map[string]*bintree{}}, + "flocker-pod.yml": {examplesVolumesFlockerFlockerPodYml, map[string]*bintree{}}, + }}, + "glusterfs": {nil, map[string]*bintree{ + "glusterfs-endpoints.json": {examplesVolumesGlusterfsGlusterfsEndpointsJson, map[string]*bintree{}}, + "glusterfs-pod.json": {examplesVolumesGlusterfsGlusterfsPodJson, map[string]*bintree{}}, + "glusterfs-service.json": {examplesVolumesGlusterfsGlusterfsServiceJson, map[string]*bintree{}}, + }}, + "iscsi": {nil, map[string]*bintree{ + "chap-secret.yaml": {examplesVolumesIscsiChapSecretYaml, map[string]*bintree{}}, + "iscsi-chap.yaml": {examplesVolumesIscsiIscsiChapYaml, map[string]*bintree{}}, + "iscsi.yaml": {examplesVolumesIscsiIscsiYaml, map[string]*bintree{}}, + }}, + "nfs": {nil, map[string]*bintree{ + "nfs-busybox-rc.yaml": {examplesVolumesNfsNfsBusyboxRcYaml, map[string]*bintree{}}, + "nfs-data": {nil, map[string]*bintree{ + "Dockerfile": {examplesVolumesNfsNfsDataDockerfile, map[string]*bintree{}}, + "index.html": {examplesVolumesNfsNfsDataIndexHtml, map[string]*bintree{}}, + "run_nfs.sh": {examplesVolumesNfsNfsDataRun_nfsSh, map[string]*bintree{}}, + }}, + "nfs-pv.yaml": {examplesVolumesNfsNfsPvYaml, map[string]*bintree{}}, + "nfs-pvc.yaml": {examplesVolumesNfsNfsPvcYaml, map[string]*bintree{}}, + "nfs-server-rc.yaml": {examplesVolumesNfsNfsServerRcYaml, map[string]*bintree{}}, + "nfs-server-service.yaml": {examplesVolumesNfsNfsServerServiceYaml, map[string]*bintree{}}, + "nfs-web-rc.yaml": {examplesVolumesNfsNfsWebRcYaml, map[string]*bintree{}}, + "nfs-web-service.yaml": {examplesVolumesNfsNfsWebServiceYaml, map[string]*bintree{}}, + "provisioner": {nil, map[string]*bintree{ + "nfs-server-gce-pv.yaml": {examplesVolumesNfsProvisionerNfsServerGcePvYaml, map[string]*bintree{}}, + }}, + }}, + "portworx": {nil, map[string]*bintree{ + "portworx-volume-pod.yaml": {examplesVolumesPortworxPortworxVolumePodYaml, map[string]*bintree{}}, + "portworx-volume-pv.yaml": {examplesVolumesPortworxPortworxVolumePvYaml, map[string]*bintree{}}, + "portworx-volume-pvc.yaml": {examplesVolumesPortworxPortworxVolumePvcYaml, map[string]*bintree{}}, + "portworx-volume-pvcpod.yaml": {examplesVolumesPortworxPortworxVolumePvcpodYaml, map[string]*bintree{}}, + "portworx-volume-pvcsc.yaml": {examplesVolumesPortworxPortworxVolumePvcscYaml, map[string]*bintree{}}, + "portworx-volume-pvcscpod.yaml": {examplesVolumesPortworxPortworxVolumePvcscpodYaml, map[string]*bintree{}}, + "portworx-volume-sc-high.yaml": {examplesVolumesPortworxPortworxVolumeScHighYaml, map[string]*bintree{}}, + }}, + "quobyte": {nil, map[string]*bintree{ + "quobyte-pod.yaml": {examplesVolumesQuobyteQuobytePodYaml, map[string]*bintree{}}, + }}, + "rbd": {nil, map[string]*bintree{ + "rbd-with-secret.json": {examplesVolumesRbdRbdWithSecretJson, map[string]*bintree{}}, + "rbd.json": {examplesVolumesRbdRbdJson, map[string]*bintree{}}, + "secret": {nil, map[string]*bintree{ + "ceph-secret.yaml": {examplesVolumesRbdSecretCephSecretYaml, map[string]*bintree{}}, + }}, + }}, + "scaleio": {nil, map[string]*bintree{ + "pod-sc-pvc.yaml": {examplesVolumesScaleioPodScPvcYaml, map[string]*bintree{}}, + "pod.yaml": {examplesVolumesScaleioPodYaml, map[string]*bintree{}}, + "sc-pvc.yaml": {examplesVolumesScaleioScPvcYaml, map[string]*bintree{}}, + "sc.yaml": {examplesVolumesScaleioScYaml, map[string]*bintree{}}, + "secret.yaml": {examplesVolumesScaleioSecretYaml, map[string]*bintree{}}, + }}, + "storageos": {nil, map[string]*bintree{ + "storageos-pod.yaml": {examplesVolumesStorageosStorageosPodYaml, map[string]*bintree{}}, + "storageos-pv.yaml": {examplesVolumesStorageosStorageosPvYaml, map[string]*bintree{}}, + "storageos-pvc.yaml": {examplesVolumesStorageosStorageosPvcYaml, map[string]*bintree{}}, + "storageos-pvcpod.yaml": {examplesVolumesStorageosStorageosPvcpodYaml, map[string]*bintree{}}, + "storageos-sc-pvc.yaml": {examplesVolumesStorageosStorageosScPvcYaml, map[string]*bintree{}}, + "storageos-sc-pvcpod.yaml": {examplesVolumesStorageosStorageosScPvcpodYaml, map[string]*bintree{}}, + "storageos-sc.yaml": {examplesVolumesStorageosStorageosScYaml, map[string]*bintree{}}, + "storageos-secret.yaml": {examplesVolumesStorageosStorageosSecretYaml, map[string]*bintree{}}, + }}, + "vsphere": {nil, map[string]*bintree{ + "deployment.yaml": {examplesVolumesVsphereDeploymentYaml, map[string]*bintree{}}, + "simple-statefulset.yaml": {examplesVolumesVsphereSimpleStatefulsetYaml, map[string]*bintree{}}, + "simple-storageclass.yaml": {examplesVolumesVsphereSimpleStorageclassYaml, map[string]*bintree{}}, + "vsphere-volume-pod.yaml": {examplesVolumesVsphereVsphereVolumePodYaml, map[string]*bintree{}}, + "vsphere-volume-pv.yaml": {examplesVolumesVsphereVsphereVolumePvYaml, map[string]*bintree{}}, + "vsphere-volume-pvc.yaml": {examplesVolumesVsphereVsphereVolumePvcYaml, map[string]*bintree{}}, + "vsphere-volume-pvcpod.yaml": {examplesVolumesVsphereVsphereVolumePvcpodYaml, map[string]*bintree{}}, + "vsphere-volume-pvcsc.yaml": {examplesVolumesVsphereVsphereVolumePvcscYaml, map[string]*bintree{}}, + "vsphere-volume-pvcscpod.yaml": {examplesVolumesVsphereVsphereVolumePvcscpodYaml, map[string]*bintree{}}, + "vsphere-volume-sc-fast.yaml": {examplesVolumesVsphereVsphereVolumeScFastYaml, map[string]*bintree{}}, + "vsphere-volume-sc-vsancapabilities-with-datastore.yaml": {examplesVolumesVsphereVsphereVolumeScVsancapabilitiesWithDatastoreYaml, map[string]*bintree{}}, + "vsphere-volume-sc-vsancapabilities.yaml": {examplesVolumesVsphereVsphereVolumeScVsancapabilitiesYaml, map[string]*bintree{}}, + "vsphere-volume-sc-with-datastore.yaml": {examplesVolumesVsphereVsphereVolumeScWithDatastoreYaml, map[string]*bintree{}}, + "vsphere-volume-spbm-policy-with-datastore.yaml": {examplesVolumesVsphereVsphereVolumeSpbmPolicyWithDatastoreYaml, map[string]*bintree{}}, + "vsphere-volume-spbm-policy.yaml": {examplesVolumesVsphereVsphereVolumeSpbmPolicyYaml, map[string]*bintree{}}, + }}, + }}, + }}, + "test": {nil, map[string]*bintree{ + "e2e": {nil, map[string]*bintree{ + "testing-manifests": {nil, map[string]*bintree{ + "BUILD": {testE2eTestingManifestsBuild, map[string]*bintree{}}, + "flexvolume": {nil, map[string]*bintree{ + "dummy": {testE2eTestingManifestsFlexvolumeDummy, map[string]*bintree{}}, + "dummy-attachable": {testE2eTestingManifestsFlexvolumeDummyAttachable, map[string]*bintree{}}, + }}, + "guestbook": {nil, map[string]*bintree{ + "frontend-deployment.yaml.in": {testE2eTestingManifestsGuestbookFrontendDeploymentYamlIn, map[string]*bintree{}}, + "frontend-service.yaml": {testE2eTestingManifestsGuestbookFrontendServiceYaml, map[string]*bintree{}}, + "redis-master-deployment.yaml.in": {testE2eTestingManifestsGuestbookRedisMasterDeploymentYamlIn, map[string]*bintree{}}, + "redis-master-service.yaml": {testE2eTestingManifestsGuestbookRedisMasterServiceYaml, map[string]*bintree{}}, + "redis-slave-deployment.yaml.in": {testE2eTestingManifestsGuestbookRedisSlaveDeploymentYamlIn, map[string]*bintree{}}, + "redis-slave-service.yaml": {testE2eTestingManifestsGuestbookRedisSlaveServiceYaml, map[string]*bintree{}}, + }}, + "ingress": {nil, map[string]*bintree{ + "http": {nil, map[string]*bintree{ + "ing.yaml": {testE2eTestingManifestsIngressHttpIngYaml, map[string]*bintree{}}, + "rc.yaml": {testE2eTestingManifestsIngressHttpRcYaml, map[string]*bintree{}}, + "svc.yaml": {testE2eTestingManifestsIngressHttpSvcYaml, map[string]*bintree{}}, + }}, + "nginx": {nil, map[string]*bintree{ + "rc.yaml": {testE2eTestingManifestsIngressNginxRcYaml, map[string]*bintree{}}, + }}, + "static-ip": {nil, map[string]*bintree{ + "ing.yaml": {testE2eTestingManifestsIngressStaticIpIngYaml, map[string]*bintree{}}, + "rc.yaml": {testE2eTestingManifestsIngressStaticIpRcYaml, map[string]*bintree{}}, + "secret.yaml": {testE2eTestingManifestsIngressStaticIpSecretYaml, map[string]*bintree{}}, + "svc.yaml": {testE2eTestingManifestsIngressStaticIpSvcYaml, map[string]*bintree{}}, + }}, + }}, + "kubectl": {nil, map[string]*bintree{ + "nginx-deployment1.yaml.in": {testE2eTestingManifestsKubectlNginxDeployment1YamlIn, map[string]*bintree{}}, + "nginx-deployment2.yaml.in": {testE2eTestingManifestsKubectlNginxDeployment2YamlIn, map[string]*bintree{}}, + "nginx-deployment3.yaml.in": {testE2eTestingManifestsKubectlNginxDeployment3YamlIn, map[string]*bintree{}}, + "pause-pod.yaml.in": {testE2eTestingManifestsKubectlPausePodYamlIn, map[string]*bintree{}}, + "pod-with-readiness-probe.yaml.in": {testE2eTestingManifestsKubectlPodWithReadinessProbeYamlIn, map[string]*bintree{}}, + "redis-master-controller.json.in": {testE2eTestingManifestsKubectlRedisMasterControllerJsonIn, map[string]*bintree{}}, + "redis-master-service.json": {testE2eTestingManifestsKubectlRedisMasterServiceJson, map[string]*bintree{}}, + }}, + "serviceloadbalancer": {nil, map[string]*bintree{ + "haproxyrc.yaml": {testE2eTestingManifestsServiceloadbalancerHaproxyrcYaml, map[string]*bintree{}}, + "netexecrc.yaml": {testE2eTestingManifestsServiceloadbalancerNetexecrcYaml, map[string]*bintree{}}, + "netexecsvc.yaml": {testE2eTestingManifestsServiceloadbalancerNetexecsvcYaml, map[string]*bintree{}}, + "nginxrc.yaml": {testE2eTestingManifestsServiceloadbalancerNginxrcYaml, map[string]*bintree{}}, + "nginxsvc.yaml": {testE2eTestingManifestsServiceloadbalancerNginxsvcYaml, map[string]*bintree{}}, + }}, + "statefulset": {nil, map[string]*bintree{ + "cassandra": {nil, map[string]*bintree{ + "pdb.yaml": {testE2eTestingManifestsStatefulsetCassandraPdbYaml, map[string]*bintree{}}, + "service.yaml": {testE2eTestingManifestsStatefulsetCassandraServiceYaml, map[string]*bintree{}}, + "statefulset.yaml": {testE2eTestingManifestsStatefulsetCassandraStatefulsetYaml, map[string]*bintree{}}, + "tester.yaml": {testE2eTestingManifestsStatefulsetCassandraTesterYaml, map[string]*bintree{}}, + }}, + "cockroachdb": {nil, map[string]*bintree{ + "service.yaml": {testE2eTestingManifestsStatefulsetCockroachdbServiceYaml, map[string]*bintree{}}, + "statefulset.yaml": {testE2eTestingManifestsStatefulsetCockroachdbStatefulsetYaml, map[string]*bintree{}}, + }}, + "etcd": {nil, map[string]*bintree{ + "pdb.yaml": {testE2eTestingManifestsStatefulsetEtcdPdbYaml, map[string]*bintree{}}, + "service.yaml": {testE2eTestingManifestsStatefulsetEtcdServiceYaml, map[string]*bintree{}}, + "statefulset.yaml": {testE2eTestingManifestsStatefulsetEtcdStatefulsetYaml, map[string]*bintree{}}, + "tester.yaml": {testE2eTestingManifestsStatefulsetEtcdTesterYaml, map[string]*bintree{}}, + }}, + "mysql-galera": {nil, map[string]*bintree{ + "service.yaml": {testE2eTestingManifestsStatefulsetMysqlGaleraServiceYaml, map[string]*bintree{}}, + "statefulset.yaml": {testE2eTestingManifestsStatefulsetMysqlGaleraStatefulsetYaml, map[string]*bintree{}}, + }}, + "mysql-upgrade": {nil, map[string]*bintree{ + "configmap.yaml": {testE2eTestingManifestsStatefulsetMysqlUpgradeConfigmapYaml, map[string]*bintree{}}, + "service.yaml": {testE2eTestingManifestsStatefulsetMysqlUpgradeServiceYaml, map[string]*bintree{}}, + "statefulset.yaml": {testE2eTestingManifestsStatefulsetMysqlUpgradeStatefulsetYaml, map[string]*bintree{}}, + "tester.yaml": {testE2eTestingManifestsStatefulsetMysqlUpgradeTesterYaml, map[string]*bintree{}}, + }}, + "redis": {nil, map[string]*bintree{ + "service.yaml": {testE2eTestingManifestsStatefulsetRedisServiceYaml, map[string]*bintree{}}, + "statefulset.yaml": {testE2eTestingManifestsStatefulsetRedisStatefulsetYaml, map[string]*bintree{}}, + }}, + "zookeeper": {nil, map[string]*bintree{ + "service.yaml": {testE2eTestingManifestsStatefulsetZookeeperServiceYaml, map[string]*bintree{}}, + "statefulset.yaml": {testE2eTestingManifestsStatefulsetZookeeperStatefulsetYaml, map[string]*bintree{}}, + }}, + }}, + }}, + }}, + "fixtures": {nil, map[string]*bintree{ + "BUILD": {testFixturesBuild, map[string]*bintree{}}, + "doc-yaml": {nil, map[string]*bintree{ + "admin": {nil, map[string]*bintree{ + "daemon.yaml": {testFixturesDocYamlAdminDaemonYaml, map[string]*bintree{}}, + "high-availability": {nil, map[string]*bintree{ + "etcd.yaml": {testFixturesDocYamlAdminHighAvailabilityEtcdYaml, map[string]*bintree{}}, + "kube-apiserver.yaml": {testFixturesDocYamlAdminHighAvailabilityKubeApiserverYaml, map[string]*bintree{}}, + "kube-controller-manager.yaml": {testFixturesDocYamlAdminHighAvailabilityKubeControllerManagerYaml, map[string]*bintree{}}, + "kube-scheduler.yaml": {testFixturesDocYamlAdminHighAvailabilityKubeSchedulerYaml, map[string]*bintree{}}, + }}, + "limitrange": {nil, map[string]*bintree{ + "invalid-pod.yaml": {testFixturesDocYamlAdminLimitrangeInvalidPodYaml, map[string]*bintree{}}, + "limits.yaml": {testFixturesDocYamlAdminLimitrangeLimitsYaml, map[string]*bintree{}}, + "namespace.yaml": {testFixturesDocYamlAdminLimitrangeNamespaceYaml, map[string]*bintree{}}, + "valid-pod.yaml": {testFixturesDocYamlAdminLimitrangeValidPodYaml, map[string]*bintree{}}, + }}, + "namespaces": {nil, map[string]*bintree{ + "namespace-dev.json": {testFixturesDocYamlAdminNamespacesNamespaceDevJson, map[string]*bintree{}}, + "namespace-prod.json": {testFixturesDocYamlAdminNamespacesNamespaceProdJson, map[string]*bintree{}}, + }}, + "resourcequota": {nil, map[string]*bintree{ + "limits.yaml": {testFixturesDocYamlAdminResourcequotaLimitsYaml, map[string]*bintree{}}, + "namespace.yaml": {testFixturesDocYamlAdminResourcequotaNamespaceYaml, map[string]*bintree{}}, + "quota.yaml": {testFixturesDocYamlAdminResourcequotaQuotaYaml, map[string]*bintree{}}, + }}, + }}, + "getting-started-guides": {nil, map[string]*bintree{ + "coreos": {nil, map[string]*bintree{ + "cloud-configs": {nil, map[string]*bintree{ + "master.yaml": {testFixturesDocYamlGettingStartedGuidesCoreosCloudConfigsMasterYaml, map[string]*bintree{}}, + "node.yaml": {testFixturesDocYamlGettingStartedGuidesCoreosCloudConfigsNodeYaml, map[string]*bintree{}}, + }}, + }}, + }}, + "user-guide": {nil, map[string]*bintree{ + "configmap": {nil, map[string]*bintree{ + "command-pod.yaml": {testFixturesDocYamlUserGuideConfigmapCommandPodYaml, map[string]*bintree{}}, + "configmap.yaml": {testFixturesDocYamlUserGuideConfigmapConfigmapYaml, map[string]*bintree{}}, + "env-pod.yaml": {testFixturesDocYamlUserGuideConfigmapEnvPodYaml, map[string]*bintree{}}, + "redis": {nil, map[string]*bintree{ + "redis-pod.yaml": {testFixturesDocYamlUserGuideConfigmapRedisRedisPodYaml, map[string]*bintree{}}, + }}, + "volume-pod.yaml": {testFixturesDocYamlUserGuideConfigmapVolumePodYaml, map[string]*bintree{}}, + }}, + "deployment.yaml": {testFixturesDocYamlUserGuideDeploymentYaml, map[string]*bintree{}}, + "downward-api": {nil, map[string]*bintree{ + "dapi-pod.yaml": {testFixturesDocYamlUserGuideDownwardApiDapiPodYaml, map[string]*bintree{}}, + "volume": {nil, map[string]*bintree{ + "dapi-volume.yaml": {testFixturesDocYamlUserGuideDownwardApiVolumeDapiVolumeYaml, map[string]*bintree{}}, + }}, + }}, + "environment-guide": {nil, map[string]*bintree{ + "backend-rc.yaml": {testFixturesDocYamlUserGuideEnvironmentGuideBackendRcYaml, map[string]*bintree{}}, + "backend-srv.yaml": {testFixturesDocYamlUserGuideEnvironmentGuideBackendSrvYaml, map[string]*bintree{}}, + "show-rc.yaml": {testFixturesDocYamlUserGuideEnvironmentGuideShowRcYaml, map[string]*bintree{}}, + "show-srv.yaml": {testFixturesDocYamlUserGuideEnvironmentGuideShowSrvYaml, map[string]*bintree{}}, + }}, + "horizontal-pod-autoscaling": {nil, map[string]*bintree{ + "hpa-php-apache.yaml": {testFixturesDocYamlUserGuideHorizontalPodAutoscalingHpaPhpApacheYaml, map[string]*bintree{}}, + }}, + "ingress.yaml": {testFixturesDocYamlUserGuideIngressYaml, map[string]*bintree{}}, + "job.yaml": {testFixturesDocYamlUserGuideJobYaml, map[string]*bintree{}}, + "liveness": {nil, map[string]*bintree{ + "exec-liveness.yaml": {testFixturesDocYamlUserGuideLivenessExecLivenessYaml, map[string]*bintree{}}, + "http-liveness.yaml": {testFixturesDocYamlUserGuideLivenessHttpLivenessYaml, map[string]*bintree{}}, + }}, + "logging-demo": {nil, map[string]*bintree{ + "synthetic_0_25lps.yaml": {testFixturesDocYamlUserGuideLoggingDemoSynthetic_0_25lpsYaml, map[string]*bintree{}}, + "synthetic_10lps.yaml": {testFixturesDocYamlUserGuideLoggingDemoSynthetic_10lpsYaml, map[string]*bintree{}}, + }}, + "multi-pod.yaml": {testFixturesDocYamlUserGuideMultiPodYaml, map[string]*bintree{}}, + "new-nginx-deployment.yaml": {testFixturesDocYamlUserGuideNewNginxDeploymentYaml, map[string]*bintree{}}, + "nginx-deployment.yaml": {testFixturesDocYamlUserGuideNginxDeploymentYaml, map[string]*bintree{}}, + "node-selection": {nil, map[string]*bintree{ + "pod.yaml": {testFixturesDocYamlUserGuideNodeSelectionPodYaml, map[string]*bintree{}}, + }}, + "persistent-volumes": {nil, map[string]*bintree{ + "claims": {nil, map[string]*bintree{ + "claim-01.yaml": {testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim01Yaml, map[string]*bintree{}}, + "claim-02.yaml": {testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim02Yaml, map[string]*bintree{}}, + "claim-03.json": {testFixturesDocYamlUserGuidePersistentVolumesClaimsClaim03Json, map[string]*bintree{}}, + }}, + "simpletest": {nil, map[string]*bintree{ + "namespace.json": {testFixturesDocYamlUserGuidePersistentVolumesSimpletestNamespaceJson, map[string]*bintree{}}, + "pod.yaml": {testFixturesDocYamlUserGuidePersistentVolumesSimpletestPodYaml, map[string]*bintree{}}, + "service.json": {testFixturesDocYamlUserGuidePersistentVolumesSimpletestServiceJson, map[string]*bintree{}}, + }}, + "volumes": {nil, map[string]*bintree{ + "gce.yaml": {testFixturesDocYamlUserGuidePersistentVolumesVolumesGceYaml, map[string]*bintree{}}, + "local-01.yaml": {testFixturesDocYamlUserGuidePersistentVolumesVolumesLocal01Yaml, map[string]*bintree{}}, + "local-02.yaml": {testFixturesDocYamlUserGuidePersistentVolumesVolumesLocal02Yaml, map[string]*bintree{}}, + "nfs.yaml": {testFixturesDocYamlUserGuidePersistentVolumesVolumesNfsYaml, map[string]*bintree{}}, + }}, + }}, + "pod.yaml": {testFixturesDocYamlUserGuidePodYaml, map[string]*bintree{}}, + "replicaset": {nil, map[string]*bintree{ + "frontend.yaml": {testFixturesDocYamlUserGuideReplicasetFrontendYaml, map[string]*bintree{}}, + "redis-slave.yaml": {testFixturesDocYamlUserGuideReplicasetRedisSlaveYaml, map[string]*bintree{}}, + }}, + "replication.yaml": {testFixturesDocYamlUserGuideReplicationYaml, map[string]*bintree{}}, + "secrets": {nil, map[string]*bintree{ + "secret-env-pod.yaml": {testFixturesDocYamlUserGuideSecretsSecretEnvPodYaml, map[string]*bintree{}}, + "secret-pod.yaml": {testFixturesDocYamlUserGuideSecretsSecretPodYaml, map[string]*bintree{}}, + "secret.yaml": {testFixturesDocYamlUserGuideSecretsSecretYaml, map[string]*bintree{}}, + }}, + "update-demo": {nil, map[string]*bintree{ + "images": {nil, map[string]*bintree{ + "kitten": {nil, map[string]*bintree{ + "html": {nil, map[string]*bintree{ + "data.json": {testFixturesDocYamlUserGuideUpdateDemoImagesKittenHtmlDataJson, map[string]*bintree{}}, + }}, + }}, + "nautilus": {nil, map[string]*bintree{ + "html": {nil, map[string]*bintree{ + "data.json": {testFixturesDocYamlUserGuideUpdateDemoImagesNautilusHtmlDataJson, map[string]*bintree{}}, + }}, + }}, + }}, + "kitten-rc.yaml.in": {testFixturesDocYamlUserGuideUpdateDemoKittenRcYamlIn, map[string]*bintree{}}, + "nautilus-rc.yaml.in": {testFixturesDocYamlUserGuideUpdateDemoNautilusRcYamlIn, map[string]*bintree{}}, + }}, + "walkthrough": {nil, map[string]*bintree{ + "pod-nginx-with-label.yaml": {testFixturesDocYamlUserGuideWalkthroughPodNginxWithLabelYaml, map[string]*bintree{}}, + "pod-nginx.yaml": {testFixturesDocYamlUserGuideWalkthroughPodNginxYaml, map[string]*bintree{}}, + "pod-redis.yaml": {testFixturesDocYamlUserGuideWalkthroughPodRedisYaml, map[string]*bintree{}}, + "pod-with-http-healthcheck.yaml": {testFixturesDocYamlUserGuideWalkthroughPodWithHttpHealthcheckYaml, map[string]*bintree{}}, + "podtemplate.json": {testFixturesDocYamlUserGuideWalkthroughPodtemplateJson, map[string]*bintree{}}, + "replication-controller.yaml": {testFixturesDocYamlUserGuideWalkthroughReplicationControllerYaml, map[string]*bintree{}}, + "service.yaml": {testFixturesDocYamlUserGuideWalkthroughServiceYaml, map[string]*bintree{}}, + }}, + }}, + }}, + "pkg": {nil, map[string]*bintree{ + "kubectl": {nil, map[string]*bintree{ + "OWNERS": {testFixturesPkgKubectlOwners, map[string]*bintree{}}, + "builder": {nil, map[string]*bintree{ + "kitten-rc.yaml": {testFixturesPkgKubectlBuilderKittenRcYaml, map[string]*bintree{}}, + }}, + "plugins": {nil, map[string]*bintree{ + "echo": {nil, map[string]*bintree{ + "plugin.yaml": {testFixturesPkgKubectlPluginsEchoPluginYaml, map[string]*bintree{}}, + }}, + "env": {nil, map[string]*bintree{ + "env.sh": {testFixturesPkgKubectlPluginsEnvEnvSh, map[string]*bintree{}}, + "plugin.yaml": {testFixturesPkgKubectlPluginsEnvPluginYaml, map[string]*bintree{}}, + }}, + "error": {nil, map[string]*bintree{ + "plugin.yaml": {testFixturesPkgKubectlPluginsErrorPluginYaml, map[string]*bintree{}}, + }}, + "get": {nil, map[string]*bintree{ + "plugin.yaml": {testFixturesPkgKubectlPluginsGetPluginYaml, map[string]*bintree{}}, + }}, + "incomplete": {nil, map[string]*bintree{ + "plugin.yaml": {testFixturesPkgKubectlPluginsIncompletePluginYaml, map[string]*bintree{}}, + }}, + "tree": {nil, map[string]*bintree{ + "plugin.yaml": {testFixturesPkgKubectlPluginsTreePluginYaml, map[string]*bintree{}}, + }}, + }}, + "plugins2": {nil, map[string]*bintree{ + "hello": {nil, map[string]*bintree{ + "hello.sh": {testFixturesPkgKubectlPlugins2HelloHelloSh, map[string]*bintree{}}, + "plugin.yaml": {testFixturesPkgKubectlPlugins2HelloPluginYaml, map[string]*bintree{}}, + }}, + }}, + }}, + }}, + }}, + "images": {nil, map[string]*bintree{ + "BUILD": {testImagesBuild, map[string]*bintree{}}, + "Makefile": {testImagesMakefile, map[string]*bintree{}}, + "clusterapi-tester": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesClusterapiTesterBaseimage, map[string]*bintree{}}, + "BUILD": {testImagesClusterapiTesterBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesClusterapiTesterDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesClusterapiTesterMakefile, map[string]*bintree{}}, + "VERSION": {testImagesClusterapiTesterVersion, map[string]*bintree{}}, + "clusterapi-tester.go": {testImagesClusterapiTesterClusterapiTesterGo, map[string]*bintree{}}, + "pod.yaml": {testImagesClusterapiTesterPodYaml, map[string]*bintree{}}, + }}, + "cuda-vector-add": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesCudaVectorAddBaseimage, map[string]*bintree{}}, + "Dockerfile": {testImagesCudaVectorAddDockerfile, map[string]*bintree{}}, + "VERSION": {testImagesCudaVectorAddVersion, map[string]*bintree{}}, + }}, + "dnsutils": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesDnsutilsBaseimage, map[string]*bintree{}}, + "Dockerfile": {testImagesDnsutilsDockerfile, map[string]*bintree{}}, + "VERSION": {testImagesDnsutilsVersion, map[string]*bintree{}}, + }}, + "entrypoint-tester": {nil, map[string]*bintree{ + "BUILD": {testImagesEntrypointTesterBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesEntrypointTesterDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesEntrypointTesterMakefile, map[string]*bintree{}}, + "VERSION": {testImagesEntrypointTesterVersion, map[string]*bintree{}}, + "ep.go": {testImagesEntrypointTesterEpGo, map[string]*bintree{}}, + }}, + "fakegitserver": {nil, map[string]*bintree{ + "BUILD": {testImagesFakegitserverBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesFakegitserverDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesFakegitserverMakefile, map[string]*bintree{}}, + "VERSION": {testImagesFakegitserverVersion, map[string]*bintree{}}, + "gitserver.go": {testImagesFakegitserverGitserverGo, map[string]*bintree{}}, + }}, + "goproxy": {nil, map[string]*bintree{ + ".gitignore": {testImagesGoproxyGitignore, map[string]*bintree{}}, + "BUILD": {testImagesGoproxyBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesGoproxyDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesGoproxyMakefile, map[string]*bintree{}}, + "VERSION": {testImagesGoproxyVersion, map[string]*bintree{}}, + "goproxy.go": {testImagesGoproxyGoproxyGo, map[string]*bintree{}}, + "pod.yaml": {testImagesGoproxyPodYaml, map[string]*bintree{}}, + }}, + "hostexec": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesHostexecBaseimage, map[string]*bintree{}}, + "Dockerfile": {testImagesHostexecDockerfile, map[string]*bintree{}}, + "VERSION": {testImagesHostexecVersion, map[string]*bintree{}}, + "pod.yaml": {testImagesHostexecPodYaml, map[string]*bintree{}}, + }}, + "image-util.sh": {testImagesImageUtilSh, map[string]*bintree{}}, + "iperf": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesIperfBaseimage, map[string]*bintree{}}, + "Dockerfile": {testImagesIperfDockerfile, map[string]*bintree{}}, + "VERSION": {testImagesIperfVersion, map[string]*bintree{}}, + }}, + "jessie-dnsutils": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesJessieDnsutilsBaseimage, map[string]*bintree{}}, + "Dockerfile": {testImagesJessieDnsutilsDockerfile, map[string]*bintree{}}, + "VERSION": {testImagesJessieDnsutilsVersion, map[string]*bintree{}}, + }}, + "kitten": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesKittenBaseimage, map[string]*bintree{}}, + "Dockerfile": {testImagesKittenDockerfile, map[string]*bintree{}}, + "VERSION": {testImagesKittenVersion, map[string]*bintree{}}, + "html": {nil, map[string]*bintree{ + "data.json": {testImagesKittenHtmlDataJson, map[string]*bintree{}}, + }}, + }}, + "liveness": {nil, map[string]*bintree{ + "BUILD": {testImagesLivenessBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesLivenessDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesLivenessMakefile, map[string]*bintree{}}, + "VERSION": {testImagesLivenessVersion, map[string]*bintree{}}, + "server.go": {testImagesLivenessServerGo, map[string]*bintree{}}, + }}, + "logs-generator": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesLogsGeneratorBaseimage, map[string]*bintree{}}, + "BUILD": {testImagesLogsGeneratorBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesLogsGeneratorDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesLogsGeneratorMakefile, map[string]*bintree{}}, + "VERSION": {testImagesLogsGeneratorVersion, map[string]*bintree{}}, + "logs_generator.go": {testImagesLogsGeneratorLogs_generatorGo, map[string]*bintree{}}, + }}, + "mounttest": {nil, map[string]*bintree{ + "BUILD": {testImagesMounttestBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesMounttestDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesMounttestMakefile, map[string]*bintree{}}, + "VERSION": {testImagesMounttestVersion, map[string]*bintree{}}, + "mt.go": {testImagesMounttestMtGo, map[string]*bintree{}}, + }}, + "mounttest-user": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesMounttestUserBaseimage, map[string]*bintree{}}, + "Dockerfile": {testImagesMounttestUserDockerfile, map[string]*bintree{}}, + "VERSION": {testImagesMounttestUserVersion, map[string]*bintree{}}, + }}, + "n-way-http": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesNWayHttpBaseimage, map[string]*bintree{}}, + "BUILD": {testImagesNWayHttpBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesNWayHttpDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesNWayHttpMakefile, map[string]*bintree{}}, + "VERSION": {testImagesNWayHttpVersion, map[string]*bintree{}}, + "server.go": {testImagesNWayHttpServerGo, map[string]*bintree{}}, + }}, + "nautilus": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesNautilusBaseimage, map[string]*bintree{}}, + "Dockerfile": {testImagesNautilusDockerfile, map[string]*bintree{}}, + "VERSION": {testImagesNautilusVersion, map[string]*bintree{}}, + "html": {nil, map[string]*bintree{ + "data.json": {testImagesNautilusHtmlDataJson, map[string]*bintree{}}, + }}, + }}, + "net": {nil, map[string]*bintree{ + ".gitignore": {testImagesNetGitignore, map[string]*bintree{}}, + "BASEIMAGE": {testImagesNetBaseimage, map[string]*bintree{}}, + "BUILD": {testImagesNetBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesNetDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesNetMakefile, map[string]*bintree{}}, + "VERSION": {testImagesNetVersion, map[string]*bintree{}}, + "common": {nil, map[string]*bintree{ + "BUILD": {testImagesNetCommonBuild, map[string]*bintree{}}, + "common.go": {testImagesNetCommonCommonGo, map[string]*bintree{}}, + }}, + "main.go": {testImagesNetMainGo, map[string]*bintree{}}, + "nat": {nil, map[string]*bintree{ + "BUILD": {testImagesNetNatBuild, map[string]*bintree{}}, + "closewait.go": {testImagesNetNatClosewaitGo, map[string]*bintree{}}, + }}, + }}, + "netexec": {nil, map[string]*bintree{ + ".gitignore": {testImagesNetexecGitignore, map[string]*bintree{}}, + "BASEIMAGE": {testImagesNetexecBaseimage, map[string]*bintree{}}, + "BUILD": {testImagesNetexecBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesNetexecDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesNetexecMakefile, map[string]*bintree{}}, + "VERSION": {testImagesNetexecVersion, map[string]*bintree{}}, + "netexec.go": {testImagesNetexecNetexecGo, map[string]*bintree{}}, + "pod.yaml": {testImagesNetexecPodYaml, map[string]*bintree{}}, + }}, + "nettest": {nil, map[string]*bintree{ + "BUILD": {testImagesNettestBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesNettestDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesNettestMakefile, map[string]*bintree{}}, + "VERSION": {testImagesNettestVersion, map[string]*bintree{}}, + "nettest.go": {testImagesNettestNettestGo, map[string]*bintree{}}, + "rc.json": {testImagesNettestRcJson, map[string]*bintree{}}, + "service.json": {testImagesNettestServiceJson, map[string]*bintree{}}, + "slow-pod.json": {testImagesNettestSlowPodJson, map[string]*bintree{}}, + "slow-rc.json": {testImagesNettestSlowRcJson, map[string]*bintree{}}, + }}, + "no-snat-test": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesNoSnatTestBaseimage, map[string]*bintree{}}, + "BUILD": {testImagesNoSnatTestBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesNoSnatTestDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesNoSnatTestMakefile, map[string]*bintree{}}, + "VERSION": {testImagesNoSnatTestVersion, map[string]*bintree{}}, + "main.go": {testImagesNoSnatTestMainGo, map[string]*bintree{}}, + }}, + "no-snat-test-proxy": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesNoSnatTestProxyBaseimage, map[string]*bintree{}}, + "BUILD": {testImagesNoSnatTestProxyBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesNoSnatTestProxyDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesNoSnatTestProxyMakefile, map[string]*bintree{}}, + "VERSION": {testImagesNoSnatTestProxyVersion, map[string]*bintree{}}, + "main.go": {testImagesNoSnatTestProxyMainGo, map[string]*bintree{}}, + }}, + "nonewprivs": {nil, map[string]*bintree{ + ".gitignore": {testImagesNonewprivsGitignore, map[string]*bintree{}}, + "BASEIMAGE": {testImagesNonewprivsBaseimage, map[string]*bintree{}}, + "BUILD": {testImagesNonewprivsBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesNonewprivsDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesNonewprivsMakefile, map[string]*bintree{}}, + "VERSION": {testImagesNonewprivsVersion, map[string]*bintree{}}, + "nnp.go": {testImagesNonewprivsNnpGo, map[string]*bintree{}}, + }}, + "pets": {nil, map[string]*bintree{ + "peer-finder": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesPetsPeerFinderBaseimage, map[string]*bintree{}}, + "BUILD": {testImagesPetsPeerFinderBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesPetsPeerFinderDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesPetsPeerFinderMakefile, map[string]*bintree{}}, + "VERSION": {testImagesPetsPeerFinderVersion, map[string]*bintree{}}, + "peer-finder.go": {testImagesPetsPeerFinderPeerFinderGo, map[string]*bintree{}}, + }}, + "redis-installer": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesPetsRedisInstallerBaseimage, map[string]*bintree{}}, + "Dockerfile": {testImagesPetsRedisInstallerDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesPetsRedisInstallerMakefile, map[string]*bintree{}}, + "VERSION": {testImagesPetsRedisInstallerVersion, map[string]*bintree{}}, + "install.sh": {testImagesPetsRedisInstallerInstallSh, map[string]*bintree{}}, + "on-start.sh": {testImagesPetsRedisInstallerOnStartSh, map[string]*bintree{}}, + }}, + "zookeeper-installer": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesPetsZookeeperInstallerBaseimage, map[string]*bintree{}}, + "Dockerfile": {testImagesPetsZookeeperInstallerDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesPetsZookeeperInstallerMakefile, map[string]*bintree{}}, + "VERSION": {testImagesPetsZookeeperInstallerVersion, map[string]*bintree{}}, + "install.sh": {testImagesPetsZookeeperInstallerInstallSh, map[string]*bintree{}}, + "on-start.sh": {testImagesPetsZookeeperInstallerOnStartSh, map[string]*bintree{}}, + }}, + }}, + "port-forward-tester": {nil, map[string]*bintree{ + ".gitignore": {testImagesPortForwardTesterGitignore, map[string]*bintree{}}, + "BUILD": {testImagesPortForwardTesterBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesPortForwardTesterDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesPortForwardTesterMakefile, map[string]*bintree{}}, + "VERSION": {testImagesPortForwardTesterVersion, map[string]*bintree{}}, + "portforwardtester.go": {testImagesPortForwardTesterPortforwardtesterGo, map[string]*bintree{}}, + }}, + "porter": {nil, map[string]*bintree{ + ".gitignore": {testImagesPorterGitignore, map[string]*bintree{}}, + "BUILD": {testImagesPorterBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesPorterDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesPorterMakefile, map[string]*bintree{}}, + "VERSION": {testImagesPorterVersion, map[string]*bintree{}}, + "localhost.crt": {testImagesPorterLocalhostCrt, map[string]*bintree{}}, + "localhost.key": {testImagesPorterLocalhostKey, map[string]*bintree{}}, + "pod.json": {testImagesPorterPodJson, map[string]*bintree{}}, + "porter.go": {testImagesPorterPorterGo, map[string]*bintree{}}, + }}, + "redis": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesRedisBaseimage, map[string]*bintree{}}, + "Dockerfile": {testImagesRedisDockerfile, map[string]*bintree{}}, + "VERSION": {testImagesRedisVersion, map[string]*bintree{}}, + "redis.conf": {testImagesRedisRedisConf, map[string]*bintree{}}, + }}, + "resource-consumer": {nil, map[string]*bintree{ + ".gitignore": {testImagesResourceConsumerGitignore, map[string]*bintree{}}, + "BASEIMAGE": {testImagesResourceConsumerBaseimage, map[string]*bintree{}}, + "BUILD": {testImagesResourceConsumerBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesResourceConsumerDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesResourceConsumerMakefile, map[string]*bintree{}}, + "VERSION": {testImagesResourceConsumerVersion, map[string]*bintree{}}, + "common": {nil, map[string]*bintree{ + "BUILD": {testImagesResourceConsumerCommonBuild, map[string]*bintree{}}, + "common.go": {testImagesResourceConsumerCommonCommonGo, map[string]*bintree{}}, + }}, + "consume-cpu": {nil, map[string]*bintree{ + "BUILD": {testImagesResourceConsumerConsumeCpuBuild, map[string]*bintree{}}, + "consume_cpu.go": {testImagesResourceConsumerConsumeCpuConsume_cpuGo, map[string]*bintree{}}, + }}, + "controller": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesResourceConsumerControllerBaseimage, map[string]*bintree{}}, + "BUILD": {testImagesResourceConsumerControllerBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesResourceConsumerControllerDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesResourceConsumerControllerMakefile, map[string]*bintree{}}, + "VERSION": {testImagesResourceConsumerControllerVersion, map[string]*bintree{}}, + "controller.go": {testImagesResourceConsumerControllerControllerGo, map[string]*bintree{}}, + }}, + "resource_consumer.go": {testImagesResourceConsumerResource_consumerGo, map[string]*bintree{}}, + "resource_consumer_handler.go": {testImagesResourceConsumerResource_consumer_handlerGo, map[string]*bintree{}}, + "utils.go": {testImagesResourceConsumerUtilsGo, map[string]*bintree{}}, + }}, + "serve-hostname": {nil, map[string]*bintree{ + "BASEIMAGE": {testImagesServeHostnameBaseimage, map[string]*bintree{}}, + "BUILD": {testImagesServeHostnameBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesServeHostnameDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesServeHostnameMakefile, map[string]*bintree{}}, + "VERSION": {testImagesServeHostnameVersion, map[string]*bintree{}}, + "serve_hostname.go": {testImagesServeHostnameServe_hostnameGo, map[string]*bintree{}}, + }}, + "test-webserver": {nil, map[string]*bintree{ + "BUILD": {testImagesTestWebserverBuild, map[string]*bintree{}}, + "Dockerfile": {testImagesTestWebserverDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesTestWebserverMakefile, map[string]*bintree{}}, + "VERSION": {testImagesTestWebserverVersion, map[string]*bintree{}}, + "test-webserver.go": {testImagesTestWebserverTestWebserverGo, map[string]*bintree{}}, + }}, + "volumes-tester": {nil, map[string]*bintree{ + "ceph": {nil, map[string]*bintree{ + "Dockerfile": {testImagesVolumesTesterCephDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesVolumesTesterCephMakefile, map[string]*bintree{}}, + "index.html": {testImagesVolumesTesterCephIndexHtml, map[string]*bintree{}}, + "init.sh": {testImagesVolumesTesterCephInitSh, map[string]*bintree{}}, + "install.sh": {testImagesVolumesTesterCephInstallSh, map[string]*bintree{}}, + }}, + "gluster": {nil, map[string]*bintree{ + "Dockerfile": {testImagesVolumesTesterGlusterDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesVolumesTesterGlusterMakefile, map[string]*bintree{}}, + "glusterd.vol": {testImagesVolumesTesterGlusterGlusterdVol, map[string]*bintree{}}, + "index.html": {testImagesVolumesTesterGlusterIndexHtml, map[string]*bintree{}}, + "run_gluster.sh": {testImagesVolumesTesterGlusterRun_glusterSh, map[string]*bintree{}}, + }}, + "iscsi": {nil, map[string]*bintree{ + "Dockerfile": {testImagesVolumesTesterIscsiDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesVolumesTesterIscsiMakefile, map[string]*bintree{}}, + "block.tar.gz": {testImagesVolumesTesterIscsiBlockTarGz, map[string]*bintree{}}, + "create_block.sh": {testImagesVolumesTesterIscsiCreate_blockSh, map[string]*bintree{}}, + "initiatorname.iscsi": {testImagesVolumesTesterIscsiInitiatornameIscsi, map[string]*bintree{}}, + "run_iscsid.sh": {testImagesVolumesTesterIscsiRun_iscsidSh, map[string]*bintree{}}, + "saveconfig.json": {testImagesVolumesTesterIscsiSaveconfigJson, map[string]*bintree{}}, + }}, + "nfs": {nil, map[string]*bintree{ + "Dockerfile": {testImagesVolumesTesterNfsDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesVolumesTesterNfsMakefile, map[string]*bintree{}}, + "index.html": {testImagesVolumesTesterNfsIndexHtml, map[string]*bintree{}}, + "run_nfs.sh": {testImagesVolumesTesterNfsRun_nfsSh, map[string]*bintree{}}, + }}, + "rbd": {nil, map[string]*bintree{ + "Dockerfile": {testImagesVolumesTesterRbdDockerfile, map[string]*bintree{}}, + "Makefile": {testImagesVolumesTesterRbdMakefile, map[string]*bintree{}}, + "block.tar.gz": {testImagesVolumesTesterRbdBlockTarGz, map[string]*bintree{}}, + "bootstrap.sh": {testImagesVolumesTesterRbdBootstrapSh, map[string]*bintree{}}, + "ceph.conf.sh": {testImagesVolumesTesterRbdCephConfSh, map[string]*bintree{}}, + "create_block.sh": {testImagesVolumesTesterRbdCreate_blockSh, map[string]*bintree{}}, + "keyring": {testImagesVolumesTesterRbdKeyring, map[string]*bintree{}}, + "mon.sh": {testImagesVolumesTesterRbdMonSh, map[string]*bintree{}}, + "osd.sh": {testImagesVolumesTesterRbdOsdSh, map[string]*bintree{}}, + }}, + }}, + }}, + }}, +}} + +// RestoreAsset restores an asset under the given directory +func RestoreAsset(dir, name string) error { + data, err := Asset(name) + if err != nil { + return err + } + info, err := AssetInfo(name) + if err != nil { + return err + } + err = os.MkdirAll(_filePath(dir, filepath.Dir(name)), os.FileMode(0755)) + if err != nil { + return err + } + err = ioutil.WriteFile(_filePath(dir, name), data, info.Mode()) + if err != nil { + return err + } + err = os.Chtimes(_filePath(dir, name), info.ModTime(), info.ModTime()) + if err != nil { + return err + } + return nil +} + +// RestoreAssets restores an asset under the given directory recursively +func RestoreAssets(dir, name string) error { + children, err := AssetDir(name) + // File + if err != nil { + return RestoreAsset(dir, name) + } + // Dir + for _, child := range children { + err = RestoreAssets(dir, filepath.Join(name, child)) + if err != nil { + return err + } + } + return nil +} + +func _filePath(dir, name string) string { + cannonicalName := strings.Replace(name, "\\", "/", -1) + return filepath.Join(append([]string{dir}, strings.Split(cannonicalName, "/")...)...) +} From 7f4757a6a529f7b312cde56822c902b6069fd907 Mon Sep 17 00:00:00 2001 From: Maciej Szulik Date: Tue, 24 Oct 2017 11:54:55 +0200 Subject: [PATCH 76/78] UPSTREAM: : allow multiple containers to union for swagger :100644 100644 9fa52a0021... dab9e7233d... M staging/src/k8s.io/apiserver/pkg/server/config.go :100644 100644 9be725d4e2... 65e2ed1670... M staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go :100644 100644 08e342ef56... 9218a1e185... M staging/src/k8s.io/apiserver/pkg/server/routes/swagger.go --- .../src/k8s.io/apiserver/pkg/server/config.go | 5 ++-- .../apiserver/pkg/server/genericapiserver.go | 25 ++++++++++++++++++- .../apiserver/pkg/server/routes/swagger.go | 5 ++-- 3 files changed, 29 insertions(+), 6 deletions(-) diff --git a/staging/src/k8s.io/apiserver/pkg/server/config.go b/staging/src/k8s.io/apiserver/pkg/server/config.go index 9fa52a0021c0a..dab9e7233d6d4 100644 --- a/staging/src/k8s.io/apiserver/pkg/server/config.go +++ b/staging/src/k8s.io/apiserver/pkg/server/config.go @@ -451,8 +451,9 @@ func (c completedConfig) New(name string, delegationTarget DelegationTarget) (*G listedPathProvider: apiServerHandler, - swaggerConfig: c.SwaggerConfig, - openAPIConfig: c.OpenAPIConfig, + swaggerConfig: c.SwaggerConfig, + openAPIConfig: c.OpenAPIConfig, + openAPIDelegationTarget: delegationTarget, postStartHooks: map[string]postStartHookEntry{}, disabledPostStartHooks: c.DisabledPostStartHooks, diff --git a/staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go b/staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go index d6b44aba2512e..a1a72bc3af8a9 100644 --- a/staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go +++ b/staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go @@ -24,6 +24,7 @@ import ( "time" systemd "github.com/coreos/go-systemd/daemon" + "github.com/emicklei/go-restful" "github.com/emicklei/go-restful-swagger12" "github.com/golang/glog" @@ -142,11 +143,16 @@ type GenericAPIServer struct { // delegationTarget is the next delegate in the chain or nil delegationTarget DelegationTarget + + // delegationTarget only exists + openAPIDelegationTarget OpenAPIDelegationTarget } // DelegationTarget is an interface which allows for composition of API servers with top level handling that works // as expected. type DelegationTarget interface { + OpenAPIDelegationTarget + // UnprotectedHandler returns a handler that is NOT protected by a normal chain UnprotectedHandler() http.Handler @@ -162,6 +168,15 @@ type DelegationTarget interface { // ListedPaths returns the paths for supporting an index ListedPaths() []string +} + +// OpenAPIDelegationTarget provides methods for access the openapi and swagger bits of the delegate server +// so that they can be later unioned. This is the only post-construction side-effect we know of +type OpenAPIDelegationTarget interface { + // SwaggerAPIContainer gives all the restful containers involved in this API server to be used to aggregate swagger + // It must include all containers it delegates to as well. Individual entries may be nil an order must be most recent to + // least recent. + SwaggerAPIContainers() []*restful.Container // NextDelegate returns the next delegationTarget in the chain of delegations NextDelegate() DelegationTarget @@ -171,6 +186,11 @@ func (s *GenericAPIServer) UnprotectedHandler() http.Handler { // when we delegate, we need the server we're delegating to choose whether or not to use gorestful return s.Handler.Director } + +func (s *GenericAPIServer) SwaggerAPIContainers() []*restful.Container { + return append([]*restful.Container{s.Handler.GoRestfulContainer}, s.openAPIDelegationTarget.SwaggerAPIContainers()...) +} + func (s *GenericAPIServer) PostStartHooks() map[string]postStartHookEntry { return s.postStartHooks } @@ -196,6 +216,9 @@ type emptyDelegate struct { func (s emptyDelegate) UnprotectedHandler() http.Handler { return nil } +func (s emptyDelegate) SwaggerAPIContainers() []*restful.Container { + return []*restful.Container{} +} func (s emptyDelegate) PostStartHooks() map[string]postStartHookEntry { return map[string]postStartHookEntry{} } @@ -231,7 +254,7 @@ type preparedGenericAPIServer struct { // PrepareRun does post API installation setup steps. func (s *GenericAPIServer) PrepareRun() preparedGenericAPIServer { if s.swaggerConfig != nil { - routes.Swagger{Config: s.swaggerConfig}.Install(s.Handler.GoRestfulContainer) + routes.Swagger{Config: s.swaggerConfig}.Install(s.SwaggerAPIContainers(), s.Handler.GoRestfulContainer) } if s.openAPIConfig != nil { routes.OpenAPI{ diff --git a/staging/src/k8s.io/apiserver/pkg/server/routes/swagger.go b/staging/src/k8s.io/apiserver/pkg/server/routes/swagger.go index 08e342ef56828..9218a1e18594e 100644 --- a/staging/src/k8s.io/apiserver/pkg/server/routes/swagger.go +++ b/staging/src/k8s.io/apiserver/pkg/server/routes/swagger.go @@ -30,7 +30,6 @@ type Swagger struct { } // Install adds the SwaggerUI webservice to the given mux. -func (s Swagger) Install(c *restful.Container) { - s.Config.WebServices = c.RegisteredWebServices() - swagger.RegisterSwaggerService(*s.Config, c) +func (s Swagger) Install(webserviceContainers []*restful.Container, c *restful.Container) { + swagger.RegisterSwaggerService(*s.Config, webserviceContainers, c) } From 0c298c7a5f3f69c74894ea16480479c123786467 Mon Sep 17 00:00:00 2001 From: Maciej Szulik Date: Thu, 26 Oct 2017 17:36:01 +0200 Subject: [PATCH 77/78] UPSTREAM: : etcd testing :100644 100644 c02d75b61a... 57990372e8... M staging/src/k8s.io/apiserver/pkg/storage/etcd/testing/utils.go --- .../src/k8s.io/apiserver/pkg/storage/etcd/testing/utils.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/staging/src/k8s.io/apiserver/pkg/storage/etcd/testing/utils.go b/staging/src/k8s.io/apiserver/pkg/storage/etcd/testing/utils.go index c02d75b61a3b7..57990372e8988 100644 --- a/staging/src/k8s.io/apiserver/pkg/storage/etcd/testing/utils.go +++ b/staging/src/k8s.io/apiserver/pkg/storage/etcd/testing/utils.go @@ -36,6 +36,7 @@ import ( etcd "github.com/coreos/etcd/client" "github.com/coreos/etcd/clientv3" "github.com/coreos/etcd/etcdserver" + "github.com/coreos/etcd/etcdserver/api/etcdhttp" "github.com/coreos/etcd/etcdserver/api/v2http" "github.com/coreos/etcd/integration" "github.com/coreos/etcd/pkg/testutil" @@ -169,6 +170,7 @@ func configureTestCluster(t *testing.T, name string, https bool) *EtcdTestServer if err != nil { t.Fatal(err) } + m.AuthToken = "simple" clusterStr := fmt.Sprintf("%s=http://%s", name, pln.Addr().String()) m.InitialPeerURLsMap, err = types.NewURLsMap(clusterStr) @@ -190,9 +192,9 @@ func (m *EtcdTestServer) launch(t *testing.T) error { if m.s, err = etcdserver.NewServer(&m.ServerConfig); err != nil { return fmt.Errorf("failed to initialize the etcd server: %v", err) } - m.s.SyncTicker = time.Tick(500 * time.Millisecond) + m.s.SyncTicker = time.NewTicker(500 * time.Millisecond) m.s.Start() - m.raftHandler = &testutil.PauseableHandler{Next: v2http.NewPeerHandler(m.s)} + m.raftHandler = &testutil.PauseableHandler{Next: etcdhttp.NewPeerHandler(m.s)} for _, ln := range m.PeerListeners { hs := &httptest.Server{ Listener: ln, From 76188332249f661f9a9f7f5b85f9f8ab2e2f61ff Mon Sep 17 00:00:00 2001 From: Jordan Liggitt Date: Fri, 15 Dec 2017 11:23:55 -0500 Subject: [PATCH 78/78] sync(git@github.com:/openshift/origin.git): a050d411d8fe01a4216723cffdc7f6c72145729c --- origin.sha | 1 + 1 file changed, 1 insertion(+) create mode 100644 origin.sha diff --git a/origin.sha b/origin.sha new file mode 100644 index 0000000000000..09679e595119f --- /dev/null +++ b/origin.sha @@ -0,0 +1 @@ +a050d411d8fe01a4216723cffdc7f6c72145729c