Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 173 for v2alpha1 (0.36 sec)

  1. api/discovery/apis__admissionregistration.k8s.io__v1alpha1.json

    {
      "apiVersion": "v1",
      "groupVersion": "admissionregistration.k8s.io/v1alpha1",
      "kind": "APIResourceList",
      "resources": [
        {
          "categories": [
            "api-extensions"
          ],
          "kind": "ValidatingAdmissionPolicy",
          "name": "validatingadmissionpolicies",
          "namespaced": false,
          "singularName": "validatingadmissionpolicy",
          "storageVersionHash": "6OxvlMmQ6is=",
          "verbs": [
            "create",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 20:14:51 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  2. operator/pkg/name/name.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package name
    
    import (
    	"fmt"
    	"strings"
    
    	"istio.io/api/operator/v1alpha1"
    	iop "istio.io/istio/operator/pkg/apis/istio/v1alpha1"
    	"istio.io/istio/operator/pkg/helm"
    	"istio.io/istio/operator/pkg/tpath"
    )
    
    // Kubernetes Kind strings.
    const (
    	CRDStr                            = "CustomResourceDefinition"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  3. tests/integration/iop-ambient-test-defaults.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      profile: ambient
      components:
        ingressGateways:
          - name: istio-ingressgateway
            enabled: true
      values:
        cni:
          ambient:
            # Some of the tests require DNS capture
            # For that, DNS capture must be enabled in the CNI
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 17:12:52 UTC 2024
    - 952 bytes
    - Viewed (0)
  4. tests/integration/base.yaml

    # This file provides some defaults for integration testing.
    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    metadata:
      name: install
    spec:
      meshConfig:
        # Disable retries. This avoids confusing logs and errors, and allows finer grain control for tests
        defaultHttpRetryPolicy: {}
        accessLogFile: "/dev/stdout"
        defaultConfig:
          proxyMetadata:
            ISTIO_META_DNS_CAPTURE: "true"
      values:
        pilot:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 22:23:22 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/accesslog_test.go

    	"github.com/google/go-cmp/cmp"
    	"google.golang.org/protobuf/testing/protocmp"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	tpb "istio.io/api/telemetry/v1alpha1"
    	"istio.io/api/type/v1beta1"
    	"istio.io/istio/pilot/pkg/config/memory"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking"
    	"istio.io/istio/pilot/pkg/networking/util"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/config/v1alpha1/defaults.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package v1alpha1
    
    import (
    	"time"
    
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	kubectrlmgrconfigv1alpha1 "k8s.io/kube-controller-manager/config/v1alpha1"
    	"k8s.io/utils/pointer"
    )
    
    // RecommendedDefaultPersistentVolumeBinderControllerConfiguration defaults a pointer to a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. pkg/kube/kclient/client_test.go

    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/client-go/kubernetes/fake"
    	k8stesting "k8s.io/client-go/testing"
    
    	meshconfig "istio.io/api/mesh/v1alpha1"
    	istioclient "istio.io/client-go/pkg/apis/extensions/v1alpha1"
    	istionetclient "istio.io/client-go/pkg/apis/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pkg/config/mesh"
    	"istio.io/istio/pkg/config/schema/gvr"
    	"istio.io/istio/pkg/kube"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  8. operator/pkg/validate/validate_values_test.go

    			yamlStr: `
    global:
      proxy:
        foo: "bar"
    `,
    			wantErrs: makeErrors([]string{`unknown field "foo" in v1alpha1.ProxyConfig`}),
    		},
    		{
    			desc: "unknown cni field",
    			yamlStr: `
    cni:
      foo: "bar"
    `,
    			wantErrs: makeErrors([]string{`unknown field "foo" in v1alpha1.CNIConfig`}),
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.desc, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 13:43:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. pilot/pkg/serviceregistry/kube/controller/ambient/services_test.go

    package ambient
    
    import (
    	"net/netip"
    	"testing"
    
    	v1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	networking "istio.io/api/networking/v1alpha3"
    	networkingclient "istio.io/client-go/pkg/apis/networking/v1alpha3"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/kube/krt"
    	"istio.io/istio/pkg/kube/krt/krttest"
    	"istio.io/istio/pkg/slices"
    	"istio.io/istio/pkg/test/util/assert"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 12:29:55 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  10. tests/integration/ambient/baseline_test.go

    			testCases := []struct {
    				location   v1alpha3.ServiceEntry_Location
    				resolution v1alpha3.ServiceEntry_Resolution
    				to         echo.Instances
    			}{
    				{
    					location:   v1alpha3.ServiceEntry_MESH_INTERNAL,
    					resolution: v1alpha3.ServiceEntry_STATIC,
    					to:         apps.Mesh,
    				},
    				{
    					location:   v1alpha3.ServiceEntry_MESH_EXTERNAL,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top