Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 142 for place (0.14 sec)

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

    package core
    
    import (
    	"fmt"
    	"reflect"
    	"testing"
    
    	cluster "github.com/envoyproxy/go-control-plane/envoy/config/cluster/v3"
    	core "github.com/envoyproxy/go-control-plane/envoy/config/core/v3"
    	proxyprotocol "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/proxy_protocol/v3"
    	tls "github.com/envoyproxy/go-control-plane/envoy/extensions/transport_sockets/tls/v3"
    
    	networking "istio.io/api/networking/v1alpha3"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. releasenotes/notes/51506.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
      - 51506
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 17:37:53 UTC 2024
    - 242 bytes
    - Viewed (0)
  3. pilot/pkg/networking/plugin/authz/authorization.go

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package authz
    
    import (
    	listener "github.com/envoyproxy/go-control-plane/envoy/config/listener/v3"
    	hcm "github.com/envoyproxy/go-control-plane/envoy/extensions/filters/network/http_connection_manager/v3"
    
    	"istio.io/istio/pilot/pkg/model"
    	"istio.io/istio/pilot/pkg/networking"
    	"istio.io/istio/pilot/pkg/security/authz/builder"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. pkg/test/framework/components/cluster/clusters.go

    func (c Clusters) MeshClusters(excluded ...Cluster) Clusters {
    	return c.filterClusters(func(cc Cluster) bool {
    		return !cc.IsExternalControlPlane()
    	}, exclude(excluded...))
    }
    
    // IsExternalControlPlane indicates whether the clusters are set up in an enternal
    // control plane configuration. An external control plane is a primary cluster that
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/cmd/options/generic.go

    		"A list of checks whose errors will be shown as warnings. Example: 'IsPrivilegedUser,Swap'. Value 'all' ignores errors from all checks.",
    	)
    }
    
    // AddControlPlanExtraArgsFlags adds the ExtraArgs flags for control plane components
    func AddControlPlanExtraArgsFlags(fs *pflag.FlagSet, apiServerExtraArgs, controllerManagerExtraArgs, schedulerExtraArgs *map[string]string) {
    	// TODO: https://github.com/kubernetes/kubeadm/issues/1601
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/upgrade/node/preflight.go

    	// First, check if we're root separately from the other preflight checks and fail fast
    	if err := preflight.RunRootCheckOnly(data.IgnorePreflightErrors()); err != nil {
    		return err
    	}
    
    	// If this is a control-plane node, pull the basic images
    	if data.IsControlPlaneNode() {
    		// Update the InitConfiguration used for RunPullImagesCheck with ImagePullPolicy and ImagePullSerial
    		// that come from UpgradeNodeConfiguration.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 03:55:23 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  7. releasenotes/notes/50728.yaml

      metrics endpoint from outside of the pod, to allow only localhost access. User can use set this with command
      `--set values.pilot.env.METRICS_LOCALHOST_ACCESS_ONLY=true` for Control plane and  
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 01 14:41:40 UTC 2024
    - 478 bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/Chart.yaml

    # This version is never actually shipped. istio/release-builder will replace it at build-time
    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for a remote cluster using an external istio control plane
    keywords:
      - istio
      - external-istiod
    sources:
      - https://github.com/istio/istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 419 bytes
    - Viewed (0)
  9. manifests/charts/istio-control/istio-discovery/Chart.yaml

    apiVersion: v2
    name: istiod
    # This version is never actually shipped. istio/release-builder will replace it at build-time
    # with the appropriate version
    version: 1.0.0
    appVersion: 1.0.0
    description: Helm chart for istio control plane
    keywords:
      - istio
      - istiod
      - istio-discovery
    sources:
      - https://github.com/istio/istio
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 20 18:29:34 UTC 2024
    - 388 bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/dryrun/dryrun.go

    func PrintFilesIfDryRunning(needPrintManifest bool, manifestDir string, outputWriter io.Writer) error {
    	var files []FileToPrint
    	// Print static pod manifests if it is a control plane
    	if needPrintManifest {
    		fmt.Printf("[dryrun] Wrote certificates, kubeconfig files and control plane manifests to the %q directory\n", manifestDir)
    		for _, component := range kubeadmconstants.ControlPlaneComponents {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 07:10:31 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top