Class HelmDependencyUpdate
- java.lang.Object
-
- com.oracle.bedrock.runtime.k8s.helm.HelmCommand<HelmDependencyUpdate>
-
- com.oracle.bedrock.runtime.k8s.helm.HelmDependencyUpdate
-
- All Implemented Interfaces:
CLI<HelmDependencyUpdate>,MetaClass<Application>
public class HelmDependencyUpdate extends HelmCommand<HelmDependencyUpdate>
A representation of the Helm dependency update command.Copyright (c) 2018. All Rights Reserved. Oracle Corporation.
Oracle is a registered trademark of Oracle Corporation and/or its affiliates.- Author:
- Jonathan Knight
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.oracle.bedrock.runtime.k8s.helm.HelmCommand
HelmCommand.Template
-
Nested classes/interfaces inherited from interface com.oracle.bedrock.runtime.k8s.helm.CLI
CLI.WithCerts<C extends CLI.WithCerts>, CLI.WithRepo<C extends CLI.WithRepo>, CLI.WithTLS<C extends CLI.WithTLS>
-
-
Field Summary
-
Fields inherited from class com.oracle.bedrock.runtime.k8s.helm.HelmCommand
DEFAULT_HELM
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description HelmDependencyUpdatekeyRing(String file)Keyring containing public keys (default ~/.gnupg/pubring.gpg).HelmDependencyUpdatenewInstance(String helm, Arguments arguments, Arguments flags, EnvironmentVariables env)Create a new instance of this Helm command.HelmDependencyUpdateskipRefresh()Do not refresh the local repository cache.HelmDependencyUpdateverify()Verify the package against its signature.-
Methods inherited from class com.oracle.bedrock.runtime.k8s.helm.HelmCommand
execute, executeAndWait, getArguments, getCommands, getEnvironment, getFlags, getHelmLocation, getImplementationClass, helmExists, isFlagsFirst, onLaunch, onLaunched, onLaunching
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.oracle.bedrock.runtime.k8s.helm.CLI
debug, home, host, kubeConfig, kubeContext, tillerNamespace, withArguments, withArguments, withArguments, withEnvironment, withEnvironment, withEnvironment, withEnvironment, withFlags, withFlags, withFlags, withHelmAt
-
-
-
-
Method Detail
-
keyRing
public HelmDependencyUpdate keyRing(String file)
Keyring containing public keys (default ~/.gnupg/pubring.gpg).- Parameters:
file- keyring file- Returns:
- a copy of this command with the
--keyringflag appended
-
skipRefresh
public HelmDependencyUpdate skipRefresh()
Do not refresh the local repository cache.- Returns:
- a copy of this command with the
--skip-refreshflag appended
-
verify
public HelmDependencyUpdate verify()
Verify the package against its signature.- Returns:
- a copy of this command with the
--verifyflag appended
-
newInstance
public HelmDependencyUpdate newInstance(String helm, Arguments arguments, Arguments flags, EnvironmentVariables env)
Description copied from interface:CLICreate a new instance of this Helm command.arguments- the command argumentsflags- the command flagsenv- the environment variables- Returns:
- a new instance of this command
-
-