Interface HelmRepositoryHandler
-
- All Implemented Interfaces:
-
kotlin.collections.Collection,kotlin.collections.Iterable,kotlin.collections.MutableCollection,kotlin.collections.MutableIterable,kotlin.collections.MutableSet,kotlin.collections.Set,org.gradle.api.DomainObjectCollection,org.gradle.api.DomainObjectSet,org.gradle.api.NamedDomainObjectCollection,org.gradle.api.NamedDomainObjectContainer,org.gradle.api.NamedDomainObjectSet,org.gradle.util.Configurable
public interface HelmRepositoryHandler implements NamedDomainObjectContainer<HelmRepository>
-
-
Method Summary
Modifier and Type Method Description UnithelmStable(String name)Registers the Helm "stable" repository using the name "stable". UnithelmIncubator(String name)Registers the Helm "incubator" repository using the name "incubator". Unitbitnami(String name)Registers the Bitnami repository. -
Methods inherited from class org.gradle.api.NamedDomainObjectContainer
create, create, create, maybeCreate, register, register -
Methods inherited from class org.gradle.util.Configurable
configure -
Methods inherited from class org.gradle.api.DomainObjectCollection
addAllLater, addLater, all, all, configureEach, findAll, matching, matching, whenObjectAdded, whenObjectAdded, whenObjectRemoved, whenObjectRemoved, withType, withType, withType -
Methods inherited from class org.gradle.api.NamedDomainObjectCollection
addRule, addRule, addRule, findByName, getAsMap, getAt, getByName, getByName, getByName, getNamer, named, named, named, named, named -
Methods inherited from class kotlin.collections.MutableCollection
add, addAll, clear, iterator, remove, removeAll, removeIf, retainAll -
Methods inherited from class kotlin.collections.Collection
contains, containsAll, isEmpty, parallelStream, stream, toArray -
Methods inherited from class kotlin.collections.Iterable
forEach, spliterator -
Methods inherited from class io.github.build.extensions.oss.gradle.plugins.helm.dsl.HelmRepositoryHandler
getAsMap, getCollectionSchema, getNamer, getNames, getRules -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
helmStable
Unit helmStable(String name)
Registers the Helm "stable" repository using the name "stable".
The sources of the charts in the repository can be found at https://github.com/helm/charts.
- Parameters:
name- the name under which to register the repository, defaults to "stable"
-
helmIncubator
Unit helmIncubator(String name)
Registers the Helm "incubator" repository using the name "incubator".
The sources of the charts in the repository can be found at https://github.com/helm/charts.
- Parameters:
name- the name under which to register the repository, defaults to "incubator"
-
-
-
-