Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 142 for place (0.1 sec)

  1. pilot/pkg/networking/core/extension_config_builder.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package core
    
    import (
    	"strings"
    
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	"k8s.io/apimachinery/pkg/types"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking/core/envoyfilter"
    	"istio.io/istio/pilot/pkg/networking/core/extension"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/route/retry/retry_test.go

    // limitations under the License.
    
    package retry_test
    
    import (
    	"reflect"
    	"testing"
    	"time"
    
    	envoyroute "github.com/envoyproxy/go-control-plane/envoy/config/route/v3"
    	previouspriorities "github.com/envoyproxy/go-control-plane/envoy/extensions/retry/priority/previous_priorities/v3"
    	. "github.com/onsi/gomega"
    	"google.golang.org/protobuf/types/known/durationpb"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 14:12:39 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/value_types_json.go

    // limitations under the License.
    
    // Code generated by protoc-gen-golang. DO NOT EDIT.
    // source: operator/v1alpha1/operator.proto
    
    // Configuration affecting Istio control plane installation version and shape.
    
    package v1alpha1
    
    import (
    	"encoding/json"
    
    	github_com_golang_protobuf_jsonpb "github.com/golang/protobuf/jsonpb"
    	"google.golang.org/protobuf/types/known/wrapperspb"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/cmd/phases/reset/cleanupnode.go

    		if !r.DryRun() {
    			klog.V(1).Infoln("[reset] Removing users and groups created for rootless control-plane")
    			if err := users.RemoveUsersAndGroups(); err != nil {
    				klog.Warningf("[reset] Failed to remove users and groups: %v\n", err)
    			}
    		} else {
    			fmt.Println("[reset] Would remove users and groups created for rootless control-plane")
    		}
    	}
    
    	return nil
    }
    
    func removeContainers(criSocketPath string) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/phases/init/preflight.go

    		kubeadm init phase preflight --config kubeadm-config.yaml
    		`)
    )
    
    // NewPreflightPhase creates a kubeadm workflow phase that implements preflight checks for a new control-plane node.
    func NewPreflightPhase() workflow.Phase {
    	return workflow.Phase{
    		Name:    "preflight",
    		Short:   "Run pre-flight checks",
    		Long:    "Run pre-flight checks for kubeadm init.",
    		Example: preflightExample,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  6. manifests/addons/dashboards/pilot.libsonnet

    local queries = (import './queries.libsonnet').queries({
      container: 'discovery',
      pod: 'istiod-.*',
      component: 'pilot',
      app: 'istiod',
    });
    
    dashboard.new('Istio Control Plane Dashboard')
    + g.dashboard.withPanels(
      grid.makeGrid([
        row.new('Deployed Versions')
        + row.withPanels([
          panels.timeSeries.simple('Pilot Versions', queries.istioBuild, 'Version number of each running instance'),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. cluster/gce/manifests/cloud-controller-manager.manifest

    {
    "apiVersion": "v1",
    "kind": "Pod",
    "metadata": {
      "name":"cloud-controller-manager",
      "namespace": "kube-system",
      "labels": {
        "tier": "control-plane",
        "component": "cloud-controller-manager"
      }
    },
    "spec":{
    "securityContext": {
      {{runAsUser}}
      {{runAsGroup}}
      {{supplementalGroups}}
      "seccompProfile": {
          "type": "RuntimeDefault"
      }
    },
    "priorityClassName": "system-node-critical",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 08:50:12 UTC 2024
    - 4K bytes
    - Viewed (0)
  8. pilot/pkg/security/authn/factory.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package authn
    
    import (
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pkg/config/labels"
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/webhook.go

    		return
    	}
    
    	tlsConfig := &tls.Config{
    		GetCertificate: s.getIstiodCertificate,
    		MinVersion:     tls.VersionTLS12,
    		CipherSuites:   args.ServerOptions.TLSOptions.CipherSuits,
    	}
    	// Compliance for control plane validation and injection webhook server.
    	sec_model.EnforceGoCompliance(tlsConfig)
    
    	istiolog.Info("initializing secure webhook server for istiod webhooks")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/process/internal/DefaultJavaDebugOptions.java

            this.suspend = objectFactory.property(Boolean.class).convention(true);
        }
    
        public DefaultJavaDebugOptions() {
            // Ugly, but there are a few places where we need to instantiate a JavaDebugOptions and a regular ObjectFactory service
            // is not available.
            this(new InstantiatorBackedObjectFactory(DirectInstantiator.INSTANCE));
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 3.2K bytes
    - Viewed (0)
Back to top