Skip to content

Commit

Permalink
[Release] Synchronize for release (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
reboot-dev-bot authored Sep 27, 2024
1 parent c6ef788 commit a4b6e6e
Show file tree
Hide file tree
Showing 9 changed files with 39 additions and 22 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
## Usage

[Helm](https://helm.sh) must be installed to use the charts. Please refer to
Helm's [documentation](https://helm.sh/docs) to get started.

Once Helm has been set up correctly, add the repo as follows:

helm repo add reboot-dev https://reboot-dev.github.io/helm-charts

If you had already added this repo earlier, run `helm repo update` to retrieve
the latest versions of the packages. You can then run `helm search repo reboot-dev` to see the charts.

To install the <chart-name> chart:

helm install my-<chart-name> reboot-dev/<chart-name> -f my-values.yaml

To uninstall the chart:

helm delete my-<chart-name>
13 changes: 13 additions & 0 deletions reboot/Chart.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
apiVersion: 3.3.2
name: reboot
version: "0.15.0"
description: Reboot is a programming framework that enables transactional microservices built with the developer in mind.
type: application
keywords:
- transactional
- microservices
- serverless
- scalable
- reactive
home: https://docs.reboot.dev/
appVersion: "0.15.0"
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ app:
name: "hello"
# TODO: Using a static image, rather than an image built from the base-image
# on `main`.
image: "ghcr.io/reboot-dev/resemble/examples/hello@sha256:773d8a7f5c758e22df712865765fda49d553cf66d4c5c622639d4cc470ce3610"
image: "ghcr.io/reboot-dev/reboot/examples/hello@sha256:b3420ac1507ac66f977b77ba65f1ed6264e229a9d1812b9801e7cbef11dbcb83"
storage:
existingStorageClass:
# `k3d`'s local path storage.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ spec:
- name: {{ .Values.app.name }}
image: {{ .Values.app.image }}
args:
- "rsm"
- "rbt"
- "serve"
- "--port=9989"
- "--directory={{ .Values.app.storage.directory }}"
Expand Down
File renamed without changes.
File renamed without changes.
10 changes: 5 additions & 5 deletions resemble/values.yaml → reboot/values.yaml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# A Resemble application.
# A Reboot application.
app:
# Set to the name of your Resemble application.
# Set to the name of your Reboot application.
#
# Example: "hello"
name: null

# Set to the Docker image containing your application.
#
# Your image should derive from a `ghcr.io/reboot-dev/resemble-base` image.
# Your image should derive from a `ghcr.io/reboot-dev/reboot-base` image.
#
# Example: "ghcr.io/reboot-dev/resemble/examples/hello@sha256:773d8a7f5c758e22df712865765fda49d553cf66d4c5c622639d4cc470ce3610"
# Example: "ghcr.io/reboot-dev/reboot/examples/hello@sha256:b3420ac1507ac66f977b77ba65f1ed6264e229a9d1812b9801e7cbef11dbcb83"
image: null

# Configures the persistent storage for the application.
Expand Down Expand Up @@ -49,7 +49,7 @@ app:
# This storage type currently has no options, so set it to `{}` to enable it.
existingEfs: null

# The directory name to use for Resemble application state inside of
# The directory name to use for Reboot application state inside of
# persisted storage.
#
# NOTE: Cannot be changed once data has been stored!
Expand Down
15 changes: 0 additions & 15 deletions resemble/Chart.yaml

This file was deleted.

0 comments on commit a4b6e6e

Please sign in to comment.