Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 87 for registry_ (0.11 sec)

  1. releasenotes/notes/serviceregistry-order.yaml

    apiVersion: release-notes/v2
    kind: bug-fix
    area: traffic-management
    issue:
      - 50968
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 06:28:11 UTC 2024
    - 214 bytes
    - Viewed (0)
  2. pkg/istio-agent/agent.go

    					}
    					for _, addr := range ipv6 {
    						addresses = append(addresses, addr.String())
    					}
    					nt.Table[host] = &dnsProto.NameTable_NameInfo{
    						Ips:      addresses,
    						Registry: "Kubernetes",
    					}
    				}
    			}
    		})
    		return nt
    	}
    	return nil
    }
    
    func (a *Agent) Close() {
    	if a.xdsProxy != nil {
    		a.xdsProxy.close()
    	}
    	if a.localDNSServer != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  3. samples/bookinfo/src/build-services.sh

    h="${BOOKINFO_HUB:?BOOKINFO_HUB must be set}"
    t="${BOOKINFO_TAG:?BOOKINFO_TAG must be set}"
    if [[ ("${h}" == "istio" || "${h}" == "docker.io/istio") && -z "$CI" && "$*" =~ "--push" ]]; then
      echo "Can only push to prod registry in CI"
      exit 1
    fi
    
    if [[ "${BOOKINFO_LATEST}" == "true" ]]; then
      BOOKINFO_TAG="${BOOKINFO_TAG},latest"
    fi
    
    # Pass input args to the command. This allows using --push, --load, etc
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:37 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. operator/cmd/mesh/root.go

    	TagFlagHelpStr                     = `The tag for the operator controller image.`
    	ImagePullSecretsHelpStr            = `The imagePullSecrets are used to pull the operator image from the private registry,
    could be secret list separated by comma, eg. '--imagePullSecrets imagePullSecret1,imagePullSecret2'`
    	OperatorNamespaceHelpstr  = `The namespace the operator controller is installed into.`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar.go

    			log.Debugf("Service %s/%s from registry %s ignored as it is already added", s.Attributes.Namespace, s.Hostname, s.Attributes.ServiceRegistry)
    			return
    		}
    		// We do not merge k8s service with any other services from other registries
    		if existing.Attributes.ServiceRegistry == provider.Kubernetes && s.Attributes.ServiceRegistry != provider.Kubernetes {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  6. pilot/cmd/pilot-agent/status/server_test.go

    		}
    	}))
    	t.Cleanup(app.Close)
    	envoyPort, err := strconv.Atoi(strings.Split(envoyServer.URL, ":")[2])
    	if err != nil {
    		t.Fatal(err)
    	}
    	registry, err := initializeMonitoring()
    	if err != nil {
    		t.Fatal(err)
    	}
    	server := &Server{
    		registry: registry,
    		prometheus: &PrometheusScrapeConfiguration{
    			Port: strings.Split(app.URL, ":")[2],
    		},
    		envoyStatsPort: envoyPort,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  7. pkg/test/env/istio.go

    	GCEMetadataServerInstallFilePath = path.Join(IstioSrc, getInstallationFile("gcemetadata/gce_metadata_server.yaml"))
    
    	// RegistryRedirectorServerInstallFilePath is the registry redirector installation file.
    	RegistryRedirectorServerInstallFilePath = path.Join(IstioSrc, getInstallationFile("registryredirector/registry_redirector_server.yaml"))
    )
    
    var (
    	_, b, _, _ = runtime.Caller(0)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 16:24:40 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. manifests/charts/istiod-remote/values.yaml

        # ImagePullSecrets will be added to the corresponding Deployment(StatefulSet) objects.
        # Must be set for any cluster configured with private docker registry.
        imagePullSecrets: []
        # - private-registry-key
    
        # Enabled by default in master for maximising testing.
        istiod:
          enableAnalysis: false
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 21K bytes
    - Viewed (0)
  9. pilot/pkg/xds/ads.go

    }
    
    func (conn *Connection) XdsConnection() *xds.Connection {
    	return &conn.Connection
    }
    
    func (conn *Connection) Proxy() *model.Proxy {
    	return conn.proxy
    }
    
    // Event represents a config or registry event that results in a push.
    type Event struct {
    	// pushRequest PushRequest to use for the push.
    	pushRequest *model.PushRequest
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 08:29:05 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/util/xdsfake/updater.go

    func NewWithDelegate(delegate model.XDSUpdater) *Updater {
    	return &Updater{
    		Events:   make(chan Event, 100),
    		Delegate: delegate,
    	}
    }
    
    // Updater is used to test the registry.
    type Updater struct {
    	// Events tracks notifications received by the updater
    	Events   chan Event
    	Delegate model.XDSUpdater
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top