Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 220 for _rds (0.04 sec)

  1. tools/bug-report/pkg/content/content.go

    	return map[string]string{
    		"secrets": out,
    	}, err
    }
    
    // GetCRs returns CR contents for all CRDs in the cluster.
    func GetCRs(p *Params) (map[string]string, error) {
    	crds, err := getCRDList(p)
    	if err != nil {
    		return nil, err
    	}
    	out, err := p.Runner.RunCmd("get --all-namespaces "+strings.Join(crds, ",")+" -o yaml", "", p.KubeConfig, p.KubeContext, p.DryRun)
    	return map[string]string{
    		"crs": out,
    	}, err
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 05 18:47:53 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. pkg/kube/kubetypes/types.go

    	// If unset, a default transform is provided to remove ManagedFields (high cost, low value)
    	ObjectTransform func(obj any) (any, error)
    }
    
    // CrdWatcher exposes an interface to watch CRDs
    type CrdWatcher interface {
    	// HasSynced returns true once all existing state has been synced.
    	HasSynced() bool
    	// KnownOrCallback returns `true` immediately if the resource is known.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/util/managedfields/fieldmanager.go

    	}
    	return internal.NewDefaultFieldManager(f, typeConverter, objectConverter, objectCreater, kind, subresource), nil
    }
    
    // NewDefaultCRDFieldManager creates a new FieldManager specifically for
    // CRDs. This allows for the possibility of fields which are not defined
    // in models, as well as having no models defined at all.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  4. tests/integration/helm/install_test.go

    		t.Run(tt.name, func(t *testing.T) {
    			framework.
    				NewTest(t).
    				Run(setupInstallation(ambientProfileOverride, true, tt.nsConfig, ""))
    		})
    	}
    }
    
    // TestReleaseChannels tests that non-stable CRDs and fields get blocked
    // by the default ValidatingAdmissionPolicy
    func TestReleaseChannels(t *testing.T) {
    	overrideValuesStr := `
    global:
      hub: %s
      tag: %s
      variant: %q
    profile: stable
    `
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/cel/openapi/extensions.go

    func isExtension(schema *spec.Schema, key string) bool {
    	v, ok := schema.Extensions.GetBool(key)
    	return v && ok
    }
    
    func isXIntOrString(schema *spec.Schema) bool {
    	// built-in types have the Format while CRDs use extension
    	// both are valid, checking both
    	return schema.Format == intOrStringFormat || isExtension(schema, extIntOrString)
    }
    
    func isXEmbeddedResource(schema *spec.Schema) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. pilot/pkg/model/gateway_test.go

    	}{
    		{
    			name:           "invalid rds name",
    			args:           args{"https.scooby.dooby.doo"},
    			wantPortNumber: 0,
    			wantPortName:   "",
    			wantGateway:    "",
    		},
    		{
    			name:           "gateway http rds name",
    			args:           args{"http.80"},
    			wantPortNumber: 80,
    			wantPortName:   "",
    			wantGateway:    "",
    		},
    		{
    			name:           "https rds name",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 02:36:23 UTC 2024
    - 9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/testdata/none_lds_http.json

                                  }
                                }
                              }
                            }
                          }
                        },
                        "rds": {
                          "Kind": {
                            "StructValue": {
                              "fields": {
                                "config_source": {
                                  "Kind": {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 02:10:15 UTC 2021
    - 32.9K bytes
    - Viewed (0)
  8. operator/pkg/helmreconciler/wait.go

    	defaultWaitResourceTimeout = 300 * time.Second
    	// cRDPollInterval is how often the state of CRDs is polled when waiting for their creation.
    	cRDPollInterval = 500 * time.Millisecond
    	// cRDPollTimeout is the maximum wait time for all CRDs to be created.
    	cRDPollTimeout = 60 * time.Second
    )
    
    // deployment holds associated replicaSets for a deployment
    type deployment struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Dec 08 03:13:12 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/versionconverter.go

    			return schema.GroupVersion{
    				Group:   from.Group,
    				Version: h.Version,
    			}
    		},
    	}
    }
    
    // NewCRDVersionConverter builds a VersionConverter for CRDs from a TypeConverter and an ObjectConvertor.
    func newCRDVersionConverter(t TypeConverter, o runtime.ObjectConvertor, h schema.GroupVersion) merge.Converter {
    	return &versionConverter{
    		typeConverter:   t,
    		objectConvertor: o,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  10. samples/helloworld/gateway-api/README.md

    You can use the following instructions to configure the ingress gateway and routing for the helloworld sample.
    
    ## Before you begin
    
    The Gateway API CRDs do not come installed by default on most Kubernetes clusters, so install them if not present:
    
    ```bash
    kubectl get crd gateways.gateway.networking.k8s.io || \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 15 22:24:09 UTC 2022
    - 2.4K bytes
    - Viewed (0)
Back to top