Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 334 for v1alpha1 (0.14 sec)

  1. pilot/pkg/config/kube/crdclient/client_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"sigs.k8s.io/gateway-api/pkg/consts"
    
    	"istio.io/api/meta/v1alpha1"
    	"istio.io/api/networking/v1alpha3"
    	"istio.io/api/networking/v1beta1"
    	clientnetworkingv1alpha3 "istio.io/client-go/pkg/apis/networking/v1alpha3"
    	apiistioioapinetworkingv1beta1 "istio.io/client-go/pkg/apis/networking/v1beta1"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 02:58:52 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. pilot/pkg/xds/xds_test.go

    					want = tt.wantNonClusterLocal
    				}
    				t.Run(name, func(t *testing.T) {
    					meshConfig := mesh.DefaultMeshConfig()
    					meshConfig.ServiceSettings = []*v1alpha1.MeshConfig_ServiceSettings{
    						{Hosts: []string{"*"}, Settings: &v1alpha1.MeshConfig_ServiceSettings_Settings{
    							ClusterLocal: local,
    						}},
    					}
    					fakeOpts := tt.fakeOpts
    					fakeOpts.MeshConfig = meshConfig
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    //
    //	apiVersion: kubeadm.k8s.io/v1beta3
    //	kind: ClusterConfiguration
    //
    //	apiVersion: kubelet.config.k8s.io/v1beta1
    //	kind: KubeletConfiguration
    //
    //	apiVersion: kubeproxy.config.k8s.io/v1alpha1
    //	kind: KubeProxyConfiguration
    //
    //	apiVersion: kubeadm.k8s.io/v1beta3
    //	kind: JoinConfiguration
    //
    // To print the defaults for "init" and "join" actions use the following commands:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/authentication/v1alpha1/generated.pb.go

    func init() {
    	proto.RegisterType((*SelfSubjectReview)(nil), "k8s.io.api.authentication.v1alpha1.SelfSubjectReview")
    	proto.RegisterType((*SelfSubjectReviewStatus)(nil), "k8s.io.api.authentication.v1alpha1.SelfSubjectReviewStatus")
    }
    
    func init() {
    	proto.RegisterFile("k8s.io/api/authentication/v1alpha1/generated.proto", fileDescriptor_f003acd72d3d5efb)
    }
    
    var fileDescriptor_f003acd72d3d5efb = []byte{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. samples/security/spire/spire-quickstart.yaml

            name: spire-controller-manager-webhook-service
            namespace: spire
            path: /validate-spire-spiffe-io-v1alpha1-clusterfederatedtrustdomain
        failurePolicy: Fail
        name: vclusterfederatedtrustdomain.kb.io
        rules:
          - apiGroups: ["spire.spiffe.io"]
            apiVersions: ["v1alpha1"]
            operations: ["CREATE", "UPDATE"]
            resources: ["clusterfederatedtrustdomains"]
        sideEffects: None
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 12 16:12:42 UTC 2023
    - 32.2K bytes
    - Viewed (0)
  6. operator/pkg/patch/patch_test.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package patch
    
    import (
    	"fmt"
    	"testing"
    
    	"istio.io/api/operator/v1alpha1"
    	"istio.io/istio/operator/pkg/util"
    )
    
    func TestPatchYAMLManifestSuccess(t *testing.T) {
    	base := `
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: istio-citadel
      namespace: istio-system
    a:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 29 08:32:11 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  7. operator/pkg/validate/common.go

    		iopYAML = util.ToYAML(un)
    	}
    	iop := &v1alpha1.IstioOperator{}
    
    	if err := yaml.UnmarshalStrict([]byte(iopYAML), iop); err != nil {
    		return nil, fmt.Errorf("%s:\n\nYAML:\n%s", err, iopYAML)
    	}
    	return iop, nil
    }
    
    // ValidIOP validates the given IstioOperator object.
    func ValidIOP(iop *v1alpha1.IstioOperator) error {
    	errs := CheckIstioOperatorSpec(iop.Spec, false)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 10 15:35:03 UTC 2023
    - 11K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    //
    //	apiVersion: kubeadm.k8s.io/v1beta4
    //	kind: ClusterConfiguration
    //
    //	apiVersion: kubelet.config.k8s.io/v1beta1
    //	kind: KubeletConfiguration
    //
    //	apiVersion: kubeproxy.config.k8s.io/v1alpha1
    //	kind: KubeProxyConfiguration
    //
    //	apiVersion: kubeadm.k8s.io/v1beta4
    //	kind: JoinConfiguration
    //
    // To print the defaults for "init" and "join" actions use the following commands:
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  9. pkg/registry/core/service/ipallocator/cidrallocator.go

    	networkingv1alpha1 "k8s.io/api/networking/v1alpha1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/labels"
    	utilerrors "k8s.io/apimachinery/pkg/util/errors"
    	"k8s.io/apimachinery/pkg/util/runtime"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/util/wait"
    	networkingv1alpha1informers "k8s.io/client-go/informers/networking/v1alpha1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler_test.go

    					{Name: "v1", Served: true},
    					{Name: "v1alpha1", Served: true},
    					{Name: "v1alpha2", Served: true},
    					{Name: "v1beta1", Served: true},
    					{Name: "v1beta2", Served: true},
    					{Name: "v2", Served: true},
    					{Name: "v2alpha1", Served: true},
    					{Name: "v2alpha2", Served: true},
    					{Name: "v2beta1", Served: true},
    					{Name: "v2beta2", Served: true},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 13 15:27:39 UTC 2023
    - 34.6K bytes
    - Viewed (0)
Back to top