Skip to content

Commit

Permalink
revert
Browse files Browse the repository at this point in the history
Signed-off-by: Jeffrey Tang <[email protected]>
  • Loading branch information
JeffreyDallas committed Oct 11, 2024
1 parent 724838c commit 0c0d489
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions fullstack-examples/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
* limitations under the License.
*/

import com.hedera.fullstack.gradle.plugin.HelmDependencyUpdateTask
import com.hedera.fullstack.gradle.plugin.HelmInstallChartTask
import com.hedera.fullstack.gradle.plugin.HelmReleaseExistsTask
import com.hedera.fullstack.gradle.plugin.HelmTestChartTask
Expand Down Expand Up @@ -44,6 +45,10 @@ tasks.register<HelmUninstallChartTask>("helmUninstallNginxChart") {
release.set("nginx-release")
}

tasks.register<HelmDependencyUpdateTask>("helmDependencyUpdate") {
chartName.set("nginx-release")
}

tasks.register<HelmReleaseExistsTask>("helmNginxExists") {
allNamespaces.set(true)
namespace.set("nginx-ns")
Expand All @@ -70,5 +75,6 @@ tasks.check {
dependsOn("helmNginxExists")
dependsOn("helmTestNginxChart")
dependsOn("helmUninstallNginxChart")
dependsOn("helmDependencyUpdate")
dependsOn("helmUninstallNotAChart")
}

0 comments on commit 0c0d489

Please sign in to comment.