Skip to content

Commit

Permalink
[Release] Synchronize for release (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
reboot-dev-bot authored Nov 19, 2024
1 parent aff91e3 commit 1972755
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 18 deletions.
4 changes: 2 additions & 2 deletions reboot/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: 3.3.2
name: reboot
version: "0.18.0"
version: "0.19.0"
description: Reboot is a programming framework that enables transactional microservices built with the developer in mind.
type: application
keywords:
Expand All @@ -10,4 +10,4 @@ keywords:
- scalable
- reactive
home: https://docs.reboot.dev/
appVersion: "0.18.0"
appVersion: "0.19.0"
2 changes: 1 addition & 1 deletion reboot/ci/test-basic-values.yaml
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/reboot/examples/hello@sha256:b3420ac1507ac66f977b77ba65f1ed6264e229a9d1812b9801e7cbef11dbcb83"
image: "ghcr.io/reboot-dev/reboot/examples/hello@sha256:c81fbbb47b3466349a655adee2dfb21c9cd3ae1f11d294d183d46d776097b081"
storage:
existingStorageClass:
# `k3d`'s local path storage.
Expand Down
13 changes: 4 additions & 9 deletions reboot/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,14 @@ spec:
- name: {{ .Values.app.name }}
image: {{ .Values.app.image }}
args:
- "rbt"
- "serve"
- "--port=9989"
- "--directory={{ .Values.app.storage.directory }}"
env:
- name: PORT
value: "9989"
- "--port={{ .Values.app.port }}"
- "--state-directory={{ .Values.app.storage.stateDirectory }}"
ports:
- containerPort: 9989
- containerPort: {{ .Values.app.port }}
name: public
volumeMounts:
- name: state
mountPath: {{ .Values.app.storage.directory }}
mountPath: {{ .Values.app.storage.stateDirectory }}
volumes:
- name: state
persistentVolumeClaim:
Expand Down
2 changes: 1 addition & 1 deletion reboot/templates/persistent-volume.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
persistentVolumeReclaimPolicy: Retain
nfs:
# Path within the EFS file system to mount. The application separately
# isolates itself under an `app.storage.directory` below this path.
# isolates itself under an `app.storage.stateDirectory` below this path.
path: /
mountOptions:
# https://docs.aws.amazon.com/efs/latest/ug/mounting-fs-mount-cmd-general.html
Expand Down
2 changes: 1 addition & 1 deletion reboot/templates/service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: {{ .Values.app.name }}
spec:
ports:
- port: 9989
- port: {{ .Values.app.port }}
name: public
selector:
app: {{ .Values.app.name }}
Expand Down
10 changes: 6 additions & 4 deletions reboot/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ app:
# Example: "ghcr.io/reboot-dev/reboot/examples/hello@sha256:b3420ac1507ac66f977b77ba65f1ed6264e229a9d1812b9801e7cbef11dbcb83"
image: null

# The port on which the Reboot application will serve traffic.
port: 9989

# Configures the persistent storage for the application.
#
# Exactly one of the following keys must be defined in order to choose the
Expand Down Expand Up @@ -49,8 +52,7 @@ app:
# This storage type currently has no options, so set it to `{}` to enable it.
existingEfs: null

# The directory name to use for Reboot application state inside of
# persisted storage.
# The directory in which to store Reboot application state.
#
# NOTE: Cannot be changed once data has been stored!
directory: "/app/state"
# NOTE: do not change once data has been stored!
stateDirectory: "/app/state"

0 comments on commit 1972755

Please sign in to comment.