Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for removeEmptyFiles (0.11 sec)

  1. pkg/kube/client.go

    		LabelSelector: strings.Join(labelSelectors, ","),
    	})
    }
    
    func (c *client) ApplyYAMLFiles(namespace string, yamlFiles ...string) error {
    	g, _ := errgroup.WithContext(context.TODO())
    	for _, f := range removeEmptyFiles(yamlFiles) {
    		f := f
    		g.Go(func() error {
    			return c.ssapplyYAMLFile(namespace, false, f)
    		})
    	}
    	return g.Wait()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top