Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 130 for CRD (0.1 sec)

  1. operator/pkg/name/name.go

    	StatefulSetStr                    = "StatefulSet"
    	ValidatingWebhookConfigurationStr = "ValidatingWebhookConfiguration"
    )
    
    const (
    	// IstioOperatorStr is the kind name of the IstioOperator CRD.
    	IstioOperatorStr = "IstioOperator"
    
    	// OperatorAPINamespace is the API namespace for operator config.
    	// TODO: move this to a base definitions file when one is created.
    	OperatorAPINamespace = "operator.istio.io"
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 19:23:44 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go

    // creating an etcd client for each CRD. We need to pass each etcd client a
    // logger or each client will create its own, which comes with a significant
    // memory cost (around 20% of the API server's memory when hundreds of CRDs are
    // present). The correct fix here is to not create a client per CRD. See
    // https://github.com/kubernetes/kubernetes/issues/111476 for more.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 07:56:39 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  3. operator/pkg/helmreconciler/prune.go

    		{Group: "rbac.authorization.k8s.io", Version: "v1", Kind: name.ClusterRoleBindingStr},
    	}
    	// AllClusterResources lists all cluster scope resources types which should be deleted in purge case, including CRD.
    	AllClusterResources = append(ClusterResources,
    		schema.GroupVersionKind{Group: "apiextensions.k8s.io", Version: "v1", Kind: name.CRDStr},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  4. istioctl/pkg/precheck/precheck.go

    	"context"
    	"errors"
    	"fmt"
    	"strconv"
    	"strings"
    
    	"github.com/fatih/color"
    	"github.com/spf13/cobra"
    	"gopkg.in/yaml.v2"
    	authorizationapi "k8s.io/api/authorization/v1"
    	corev1 "k8s.io/api/core/v1"
    	crd "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1"
    	kerrors "k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	"istio.io/api/label"
    	networking "istio.io/api/networking/v1alpha3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 02:57:30 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. tests/integration/pilot/gateway_test.go

    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/http/headers"
    	"istio.io/istio/pkg/test/echo/common/scheme"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/crd"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/components/istio"
    	testKube "istio.io/istio/pkg/test/kube"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/crd/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 crd
    
    import (
    	"bytes"
    	"encoding/json"
    	"fmt"
    	"io"
    	"reflect"
    
    	"github.com/hashicorp/go-multierror"
    	"gopkg.in/yaml.v2"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 18:26:16 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. tests/integration/pilot/revisions/uninstall_test.go

    	var remainingResources []unstructured.Unstructured
    	var staleList []string
    	if usList != nil && len(usList.Items) != 0 {
    		for _, item := range usList.Items {
    			// ignore IstioOperator CRD because the operator CR is not in the pruning list
    			if item.GetName() == "istiooperators.install.istio.io" {
    				continue
    			}
    			remainingResources = append(remainingResources, item)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  8. pilot/cmd/pilot-discovery/app/cmd.go

    	c.PersistentFlags().StringVar(&serverArgs.RegistryOptions.FileDir, "configDir", "",
    		"Directory to watch for updates to config yaml files. If specified, the files will be used as the source of config, rather than a CRD client.")
    	c.PersistentFlags().StringVar(&serverArgs.RegistryOptions.KubeOptions.DomainSuffix, "domain", constants.DefaultClusterLocalDomain,
    		"DNS domain suffix")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  9. pilot/pkg/xds/bench_test.go

    	meshconfig "istio.io/api/mesh/v1alpha1"
    	networking "istio.io/api/networking/v1alpha3"
    	security "istio.io/api/security/v1beta1"
    	"istio.io/api/type/v1beta1"
    	"istio.io/istio/pilot/pkg/config/kube/crd"
    	"istio.io/istio/pilot/pkg/features"
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core/route"
    	v3 "istio.io/istio/pilot/pkg/xds/v3"
    	"istio.io/istio/pilot/test/xds"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. tests/integration/security/jwt_test.go

    import (
    	"fmt"
    	"net/http"
    	"strings"
    	"testing"
    
    	"istio.io/istio/pkg/config/protocol"
    	"istio.io/istio/pkg/http/headers"
    	"istio.io/istio/pkg/test/framework"
    	"istio.io/istio/pkg/test/framework/components/crd"
    	"istio.io/istio/pkg/test/framework/components/echo"
    	"istio.io/istio/pkg/test/framework/components/echo/check"
    	"istio.io/istio/pkg/test/framework/components/echo/config"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 25.3K bytes
    - Viewed (0)
Back to top