Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 120 for registry_ (0.23 sec)

  1. common/scripts/run.sh

        --mount "type=volume,source=gocache,destination=/gocache" \
        --mount "type=volume,source=cache,destination=/home/.cache" \
        --mount "type=volume,source=crates,destination=/home/.cargo/registry" \
        --mount "type=volume,source=git-crates,destination=/home/.cargo/git" \
        ${CONDITIONAL_HOST_MOUNTS} \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 11 02:34:11 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. prow/config/metrics/metrics.yaml

            - --kubelet-preferred-address-types=InternalIP,ExternalIP,Hostname
            - --kubelet-use-node-status-port
            - --metric-resolution=15s
            - --kubelet-insecure-tls
            image: registry.k8s.io/metrics-server/metrics-server:v0.7.1
            imagePullPolicy: IfNotPresent
            livenessProbe:
              failureThreshold: 3
              httpGet:
                path: /livez
                port: https
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 11 20:51:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  3. tests/integration/telemetry/api/customize_metrics_test.go

    			}
    		})
    }
    
    func setupWasmExtension(t framework.TestContext) {
    	proxySHA := "359dcd3a19f109c50e97517fe6b1e2676e870c4d"
    	attrGenImageURL := fmt.Sprintf("oci://%v/istio-testing/wasm/attributegen:%v", registry.Address(), proxySHA)
    	args := map[string]any{
    		"AttributeGenURL": attrGenImageURL,
    	}
    	t.ConfigIstio().
    		EvalFile(apps.Namespace.Name(), args, "testdata/attributegen.yaml").
    		ApplyOrFail(t)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. manifests/charts/istio-control/istio-discovery/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
    - 21.1K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/serviceentry/conversion.go

    			Labels:         labels,
    			TLSMode:        tlsMode,
    			ServiceAccount: sa,
    			// Workload entry config name is used as workload name, which will appear in metric label.
    			// After VM auto registry is introduced, workload group annotation should be used for workload name.
    			WorkloadName: configKey.name,
    			Namespace:    configKey.namespace,
    		},
    		Service:     service,
    		ServicePort: convertPort(servicePort),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    			want:  nil,
    		},
    		{
    			name:  "proxy with IP not in the registry",
    			proxy: &model.Proxy{Metadata: &model.NodeMetadata{}, IPAddresses: []string{"1.1.1.1"}},
    			want:  nil,
    		},
    		{
    			name:  "proxy with IP from the registry, 1 matching WE, but no matching Service",
    			proxy: &model.Proxy{Metadata: &model.NodeMetadata{}, IPAddresses: []string{"4.4.4.41"}},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  7. pkg/config/analysis/msg/messages.yaml

          - name: problem
            type: string
    
      - name: "UnknownMeshNetworksServiceRegistry"
        code: IST0126
        level: Error
        description: "A service registry in Mesh Networks is unknown"
        template: "Unknown service registry %s in network %s"
        args:
          - name: serviceregistry
            type: string
          - name: network
            type: string
    
      - name: "NoMatchingWorkloadsFound"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  8. tools/docker-builder/docker.go

    			allDestinations.InsertAll(t.Tags...)
    
    			// See https://docs.docker.com/engine/reference/commandline/buildx_build/#output
    			if a.Push {
    				t.Outputs = []string{"type=registry"}
    			} else if a.Save {
    				n := target
    				if variant != "" && variant != DefaultVariant { // For default variant, we do not add it.
    					n += "-" + variant
    				}
    
    				tarFiles[n+a.suffix] = ""
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 11K bytes
    - Viewed (0)
  9. pilot/pkg/bootstrap/configcontroller.go

    			} else {
    				log.Warnf("Not implemented, ignore: %v", configSource.Address)
    				// TODO: handle k8s:// scheme for remote cluster. Use same mechanism as service registry,
    				// using the cluster name as key to match a secret.
    			}
    		default:
    			log.Warnf("Ignoring unsupported config source: %v", configSource.Address)
    		}
    	}
    	return nil
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. pilot/pkg/bootstrap/server.go

    		}
    		if jwtAuthn == nil {
    			return nil, fmt.Errorf("JWT authenticator is nil")
    		}
    		authenticators = append(authenticators, jwtAuthn)
    	}
    	// The k8s JWT authenticator requires the multicluster registry to be initialized,
    	// so we build it later.
    	if s.kubeClient != nil {
    		authenticators = append(authenticators,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 17:48:28 UTC 2024
    - 46.3K bytes
    - Viewed (0)
Back to top