Skip to content

Commit

Permalink
feat: README and CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
zoltan-magyar committed Mar 1, 2024
1 parent fd046e7 commit e21f5b8
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .releaserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ branches:
plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
- "@semantic-release/changelog"
- - "@semantic-release/changelog"
- changelogFile: "CHANGELOG.md"
- - "@semantic-release/exec"
- prepareCmd: |
version=${nextRelease.version} yq '.version = env(version)' -i Chart.yaml
Expand All @@ -21,6 +22,7 @@ plugins:
- - "@semantic-release/git"
- assets:
- Chart.yaml
- CHANGELOG.md
message: |-
chore(release): ${nextRelease.version}
Expand Down
43 changes: 43 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Project Name

## Description
A Helm project that packages ms-demo-spring-boot application with its dependencies.

## Prerequisites
- Helm
- Kubernetes cluster

## Installation

### Install from OCI registry
1. Login to Helm repository:
```shell
helm registry login -u {github-user} ghcr.io
```

2. Install Helm chart
```shell
helm install ms-demo oci://ghcr.io/codefactoryhu/ms-demo --version={version}
```

3. Clone the repository:
```shell
git clone https://github.com/codefactoryhu/ms-demo-helm.git
```

4. Change into the project directory:
```shell
cd ms-demo-helm
```

5. Install the dependencies:
```shell
helm dependency update
```

6. Customize the configuration by modifying the `values.yaml` file.

7. Deploy the Helm chart:
```shell
helm install ms-demo .
```

0 comments on commit e21f5b8

Please sign in to comment.