Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for componentName (0.66 sec)

  1. operator/pkg/helmreconciler/prune.go

    	h.opts.Log.LogAndPrintf("  Removed %s.", oh)
    	return nil
    }
    
    // RemoveObject removes object with objHash in componentName from the object cache.
    func (h *HelmReconciler) removeFromObjectCache(componentName, objHash string) {
    	crHash, err := h.getCRHash(componentName)
    	if err != nil {
    		scope.Error(err.Error())
    	}
    	cache.RemoveObject(crHash, objHash)
    	scope.Infof("Removed object %s from Cache.", objHash)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/controlplane/manifests.go

    			} else {
    				if usersAndGroups != nil {
    					if err := staticpodutil.RunComponentAsNonRoot(componentName, &spec, usersAndGroups, cfg); err != nil {
    						return errors.Wrapf(err, "failed to run component %q as non-root", componentName)
    					}
    				}
    			}
    		}
    
    		// if patchesDir is defined, patch the static Pod manifest
    		if patchesDir != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 14:43:47 UTC 2024
    - 17.8K bytes
    - Viewed (0)
  3. operator/pkg/helmreconciler/reconciler.go

    // Otherwise, if the map key/value is missing, one is created.
    func setStatus(s map[string]*v1alpha1.InstallStatus_VersionStatus, componentName name.ComponentName, status v1alpha1.InstallStatus_Status, err error) {
    	cn := string(componentName)
    	if status == v1alpha1.InstallStatus_NONE {
    		delete(s, cn)
    		return
    	}
    	if _, ok := s[cn]; !ok {
    		s[cn] = &v1alpha1.InstallStatus_VersionStatus{}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/constants/constants_test.go

    		)
    	}
    }
    
    func TestGetStaticPodFilepath(t *testing.T) {
    	var tests = []struct {
    		componentName, manifestsDir, expected string
    	}{
    		{
    			componentName: "kube-apiserver",
    			manifestsDir:  "/etc/kubernetes/manifests",
    			expected:      "/etc/kubernetes/manifests/kube-apiserver.yaml",
    		},
    		{
    			componentName: "kube-controller-manager",
    			manifestsDir:  "/etc/kubernetes/manifests/",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 03:26:36 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/util/ComponentUtil.java

        public static <T> T getComponent(final String componentName) {
            try {
                return SingletonLaContainer.getComponent(componentName);
            } catch (final NullPointerException e) {
                if (logger.isDebugEnabled()) {
                    throw new ContainerNotAvailableException(componentName, e);
                }
                throw new ContainerNotAvailableException(componentName);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 20K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
Back to top