Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,781 for V1alpha2 (0.18 sec)

  1. pkg/apis/resource/install/install.go

    	"k8s.io/kubernetes/pkg/apis/resource/v1alpha2"
    )
    
    func init() {
    	Install(legacyscheme.Scheme)
    }
    
    // Install registers the API group and adds types to a scheme
    func Install(scheme *runtime.Scheme) {
    	utilruntime.Must(resource.AddToScheme(scheme))
    	utilruntime.Must(v1alpha2.AddToScheme(scheme))
    	utilruntime.Must(scheme.SetVersionPriority(v1alpha2.SchemeGroupVersion))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 06:52:03 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/gateway/testdata/eastwest-remote.status.yaml.golden

      name: eastwestgateway
      namespace: istio-system
    spec: null
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TLSRoute
    metadata:
      creationTimestamp: null
      name: eastwestgateway-grpc
      namespace: istio-system
    spec: null
    status:
      parents: []
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TLSRoute
    metadata:
      creationTimestamp: null
      name: eastwestgateway-webhook
      namespace: istio-system
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 21:19:52 UTC 2023
    - 544 bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/gateway/testdata/reference-policy-tcp.yaml

    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      name: allowed-my-svc
      namespace: istio-system
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
        sectionName: my-svc
      rules:
      - backendRefs:
        - name: my-svc
          namespace: service
          port: 34000
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
      name: not-allowed-echo
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/testdata/eastwest-remote.yaml

    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TLSRoute
    metadata:
      name: eastwestgateway-grpc
      namespace: istio-system
    spec:
      parentRefs:
      - name: eastwestgateway
        kind: Gateway
        sectionName: istiod-grpc
      rules:
      - backendRefs:
        - name: istiod
          port: 15012
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TLSRoute
    metadata:
      name: eastwestgateway-webhook
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/eastwest-labelport.yaml

    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TLSRoute
    metadata:
      name: eastwestgateway-grpc
      namespace: istio-system
    spec:
      parentRefs:
      - name: eastwestgateway
        kind: Gateway
        sectionName: istiod-grpc
      rules:
      - backendRefs:
        - name: istiod
          port: 15012
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TLSRoute
    metadata:
      name: eastwestgateway-webhook
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/eastwest-tlsoption.yaml

    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TLSRoute
    metadata:
      name: eastwestgateway-grpc
      namespace: istio-system
    spec:
      parentRefs:
      - name: eastwestgateway
        kind: Gateway
        sectionName: istiod-grpc
      rules:
      - backendRefs:
        - name: istiod
          port: 15012
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TLSRoute
    metadata:
      name: eastwestgateway-webhook
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Oct 18 22:43:39 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/version/helpers_test.go

    		expectedGreater bool
    	}{
    		{"v1", "v2", false},
    		{"v2", "v1", true},
    		{"v10", "v2", true},
    		{"v1", "v2alpha1", true},
    		{"v1", "v2beta1", true},
    		{"v1alpha2", "v1alpha1", true},
    		{"v1beta1", "v2alpha3", true},
    		{"v1alpha10", "v1alpha2", true},
    		{"v1beta10", "v1beta2", true},
    		{"foo", "v1beta2", false},
    		{"bar", "foo", true},
    		{"version1", "version2", true},  // Non kube-like versions are sorted alphabetically
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Nov 19 02:46:55 UTC 2022
    - 3.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/resource/v1alpha2/register.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 (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    )
    
    // GroupName is the group name use in this package
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/testdata/serviceentry.yaml

    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TLSRoute
    metadata:
      name: egress
      namespace: default
    spec:
      parentRefs:
      - kind: ServiceEntry
        group: networking.istio.io
        name: egress
      rules:
      - backendRefs:
        - kind: Hostname
          group: networking.istio.io
          name: google.com
          port: 443
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: TCPRoute
    metadata:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 18:54:10 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. pkg/apis/resource/install/install_test.go

    	if err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	other := internal.ResourceClaim{}
    	if err := json.Unmarshal(data, &other); err != nil {
    		t.Fatalf("unexpected error: %v", err)
    	}
    	if other.APIVersion != "resource.k8s.io/v1alpha2" || other.Kind != "ResourceClaim" {
    		t.Errorf("unexpected unmarshalled object %#v", other)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 14 06:52:03 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top