Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 983 for v1alpha2 (0.12 sec)

  1. cmd/kubeadm/app/apis/output/v1alpha3/doc.go

    // Package v1alpha3 defines the v1alpha3 version of the kubeadm data structures
    // related to structured output
    // The purpose of the kubeadm structured output is to have a well
    // defined versioned output format that other software that uses
    // kubeadm for cluster deployments can use and rely on.
    //
    // Changes since v1alpha2:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 07:05:29 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  2. tests/integration/pilot/validation_test.go

    				"gateway.networking.k8s.io/v1/HTTPRoute",
    				"gateway.networking.k8s.io/v1beta1/HTTPRoute",
    				"gateway.networking.k8s.io/v1alpha2/TCPRoute",
    				"gateway.networking.k8s.io/v1alpha2/TLSRoute",
    				"gateway.networking.k8s.io/v1beta1/ReferenceGrant",
    				"gateway.networking.k8s.io/v1alpha2/ReferenceGrant",
    			} {
    				recognized.Delete(gvk)
    			}
    
    			tested := sets.New[string]()
    			for _, te := range loadTestData(t) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 13 15:19:36 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/tls.status.yaml.golden

          status: "True"
          type: ResolvedRefs
        controllerName: istio.io/gateway-controller
        parentRef:
          name: gateway
          namespace: istio-system
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TLSRoute
    metadata:
      creationTimestamp: null
      name: tls
      namespace: default
    spec: null
    status:
      parents:
      - conditions:
        - lastTransitionTime: fake
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 01 20:54:36 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/tcp.yaml

      gatewayClassName: istio
      listeners:
      - name: default
        port: 34000
        protocol: TCP
        allowedRoutes:
          namespaces:
            from: All
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      name: tcp
      namespace: default
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      rules:
      - backendRefs:
        - name: httpbin
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 711 bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/grpc.yaml

        hostname: "*.domain.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
          kinds:
          - kind: GRPCRoute
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: GRPCRoute
    metadata:
      name: grpc
      namespace: default
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      hostnames: ["first.domain.example", "another.domain.example"]
      rules:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:50:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. pkg/api/testing/unstructured_test.go

    			{Group: "resource.k8s.io", Version: "v1alpha2", Kind: "ResourceClaim"},
    			{Group: "resource.k8s.io", Version: "v1alpha2", Kind: "ResourceClaimList"},
    			{Group: "resource.k8s.io", Version: "v1alpha2", Kind: "ResourceClaimParameters"},
    			{Group: "resource.k8s.io", Version: "v1alpha2", Kind: "ResourceClaimParametersList"},
    			{Group: "resource.k8s.io", Version: "v1alpha2", Kind: "ResourceClassParameters"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 21:48:10 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/tls-cert-cross-namespace.yaml

    #$ Used in:
    #$ - site-src/v1alpha2/guides/tls.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: cross-namespace-tls-gateway
      namespace: gateway-api-example-ns1
    spec:
      gatewayClassName: acme-lb
      listeners:
      - name: https
        protocol: HTTPS
        port: 443
        hostname: "*.example.com"
        tls:
          certificateRefs:
          - kind: Secret
            group: ""
            name: wildcard-example-com-cert
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 778 bytes
    - Viewed (0)
  8. pkg/apis/resource/v1alpha2/conversion.go

    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 v1alpha2
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/runtime"
    )
    
    func addConversionFuncs(scheme *runtime.Scheme) error {
    	if err := scheme.AddFieldLabelConversionFunc(SchemeGroupVersion.WithKind("ResourceSlice"),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/zero.yaml

              add:
              - name: foo
                value: bar
            type: RequestHeaderModifier
          port: 8000
          name: foo-svc
          weight: 100
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      name: tcp
      namespace: default
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      rules:
      - backendRefs:
          - name: httpbin-zero
            port: 8080
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. pkg/registry/resource/podschedulingcontext/strategy.go

    // status.
    func (podSchedulingStrategy) GetResetFields() map[fieldpath.APIVersion]*fieldpath.Set {
    	fields := map[fieldpath.APIVersion]*fieldpath.Set{
    		"resource.k8s.io/v1alpha2": fieldpath.NewSet(
    			fieldpath.MakePathOrDie("status"),
    		),
    	}
    
    	return fields
    }
    
    func (podSchedulingStrategy) PrepareForCreate(ctx context.Context, obj runtime.Object) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:39:24 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top