Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for componentName (0.38 sec)

  1. operator/pkg/controller/istiocontrolplane/istiocontrolplane_controller.go

    				crNamespace := obj.GetLabels()[helmreconciler.OwningResourceNamespace]
    				componentName := obj.GetLabels()[helmreconciler.IstioComponentLabelStr]
    				var host string
    				if restConfig != nil {
    					host = restConfig.Host
    				}
    				crHash := strings.Join([]string{crName, crNamespace, componentName, host}, "-")
    				oh := object.NewK8sObject(&unstructured.Unstructured{Object: unsObj}, nil, nil).Hash()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/constants/constants.go

    }
    
    // GetStaticPodFilepath returns the location on the disk where the Static Pod should be present
    func GetStaticPodFilepath(componentName, manifestsDir string) string {
    	return filepath.Join(manifestsDir, componentName+".yaml")
    }
    
    // GetAdminKubeConfigPath returns the location on the disk where admin kubeconfig is located by default
    func GetAdminKubeConfigPath() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 01 03:36:35 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. pkg/test/framework/components/istio/kube.go

    		filepath.Join(testenv.IstioSrc, IntegrationTestRemoteGatewaysIOP),
    	}
    	if i.gatewayIOP.file != "" {
    		inFilenames = append(inFilenames, i.gatewayIOP.file)
    	}
    	args := installArgs{
    		ComponentName: "ingress and egress gateways",
    		Files:         inFilenames,
    		Set: []string{
    			"values.global.imagePullPolicy=" + i.ctx.Settings().Image.PullPolicy,
    		},
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 31.1K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/internal/DefaultJavaPluginExtension.java

            if (jvmComponents.size() > 1) {
                String componentNames = CollectionUtils.join(", ", jvmComponents.getNames());
                throw new InvalidUserCodeException("Cannot register feature because multiple JVM components are present. The following components were found: " + componentNames);
            } else if (!jvmComponents.isEmpty()) {
                return jvmComponents.iterator().next();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 19:59:45 UTC 2023
    - 16.9K bytes
    - Viewed (0)
Back to top