Skip to content

Commit

Permalink
Welcome to StackSimplify
Browse files Browse the repository at this point in the history
  • Loading branch information
stacksimplify committed Jul 21, 2023
1 parent c79d096 commit de1b9d2
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions mychart1/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# MyChart1

## Step-01: Introduction
- This chart will help us in learning Helm in a detailed manner

## Step-02: Installing the Chart
- To install the chart with the release name `hub` run:
```bash
# Add Helm Repository
$ helm repo list
$ helm repo add stacksimplify https://stacksimplify.github.io/helm-charts
$ helm repo list

# Install Helm Chart
$ helm install myapp1 stacksimplify/mycahrt1
```

## Step-03: Verify if Helm Installed successfully
```bash
# Helm Status
$ helm status --show-resources
or
# using kubectl commands
kubectl get pods
kubectl get svc

# Access Application
http://localhost:31231
```

## Step-04: Uninstall the Chart
```bash
# Uninstall Helm Chart
$ helm uninstall myapp1
```

0 comments on commit de1b9d2

Please sign in to comment.