Class ArgoCDConfig
- java.lang.Object
-
- io.fabric8.openshift.api.model.hive.v1.ArgoCDConfig
-
- All Implemented Interfaces:
io.fabric8.kubernetes.api.builder.Editable<ArgoCDConfigBuilder>,io.fabric8.kubernetes.api.model.KubernetesResource,Serializable
@Generated("io.fabric8.kubernetes.schema.generator.model.ModelGenerator") public class ArgoCDConfig extends Object implements io.fabric8.kubernetes.api.builder.Editable<ArgoCDConfigBuilder>, io.fabric8.kubernetes.api.model.KubernetesResource
ArgoCDConfig contains settings for integration with ArgoCD.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ArgoCDConfig()No args constructor for use in serializationArgoCDConfig(Boolean enabled, String namespace)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ArgoCDConfigBuilderedit()Map<String,Object>getAdditionalProperties()BooleangetEnabled()Enabled dictates if ArgoCD gitops integration is enabled.StringgetNamespace()Namespace specifies the namespace where ArgoCD is installed.voidsetAdditionalProperties(Map<String,Object> additionalProperties)voidsetAdditionalProperty(String name, Object value)voidsetEnabled(Boolean enabled)Enabled dictates if ArgoCD gitops integration is enabled.voidsetNamespace(String namespace)Namespace specifies the namespace where ArgoCD is installed.ArgoCDConfigBuildertoBuilder()
-
-
-
Method Detail
-
getEnabled
public Boolean getEnabled()
Enabled dictates if ArgoCD gitops integration is enabled. If not specified, the default is disabled.
-
setEnabled
public void setEnabled(Boolean enabled)
Enabled dictates if ArgoCD gitops integration is enabled. If not specified, the default is disabled.
-
getNamespace
public String getNamespace()
Namespace specifies the namespace where ArgoCD is installed. Used for the location of cluster secrets. Defaults to "argocd"
-
setNamespace
public void setNamespace(String namespace)
Namespace specifies the namespace where ArgoCD is installed. Used for the location of cluster secrets. Defaults to "argocd"
-
edit
public ArgoCDConfigBuilder edit()
- Specified by:
editin interfaceio.fabric8.kubernetes.api.builder.Editable<ArgoCDConfigBuilder>
-
toBuilder
public ArgoCDConfigBuilder toBuilder()
-
-