Releases: virtualroot/charts
riverui-0.1.3
A web interface for River. Fast and reliable background jobs in Go.
Changelog
AppVersion
Bump RiverUI from 0.3.0 to 0.5.3.
riverui-0.1.2
A web interface for River. Fast and reliable background jobs in Go.
Changelog
AppVersion
Bump RiverUI from 0.2.0 to 0.3.0.
riverui-0.1.1
A web interface for River. Fast and reliable background jobs in Go.
Changelog
Add icon to Chart.yaml
riverui-0.1.0
A web interface for River. Fast and reliable background jobs in Go.
Changelog
Initial release.
RiverUI v0.2.0
A working River database is required for the UI to start up properly.
Configure your DATABASE_URL
in databaseURL
.
databaseURL: "postgresql://username:password@localhost:5432/river?application_name=riverui"
structurizr-0.4.2
The Structurizr Helm chart deploys Structurizr On-premise flavor. Structurizr is a web-based rendering tool designed to help software development teams create software architecture diagrams and documentation.
Changelog
AppVersion
Bump Structurizr from 2024.03.03 to 2024.06.25.
structurizr-0.4.1
The Structurizr Helm chart deploys Structurizr On premise flavor. Structurizr is a web-based rendering tool designed to help software development teams create software architecture diagrams and documentation.
Changelog
Docs
Update README.md
with the addition of persistence
from v0.4.0.
structurizr-0.4.0
The Structurizr Helm chart deploys Structurizr On premise flavor. Structurizr is a web-based rendering tool designed to help software development teams create software architecture diagrams and documentation.
Changelog
persistence
Enable PersistentVolumeClaim
template through persistence
values.
There are no breaking changes.
Contributions
structurizr-0.3.0
The Structurizr Helm chart deploys Structurizr On premise flavor. Structurizr is a web-based rendering tool designed to help software development teams create software architecture diagrams and documentation.
Changelog
AppVersion
Bump Structurizr from v3194 to 2024.03.03.
There are breaking changes with SAML Authentication.
structurizr-0.2.1
The Structurizr Helm chart deploys Structurizr On premise flavor. Structurizr is a web-based rendering tool designed to help software development teams create software architecture diagrams and documentation.
Changelog
AppVersion
Bump Structurizr from v3142 to v3194.
Fixes
- Fixes issue where the
app.kubernetes.io/version
common label wasn't grabbing the manually entered version ifValues.image.tag
is present.
Contributions
- #3 by @thedmeyer
structurizr-0.2.0
The Structurizr Helm chart deploys Structurizr On premise flavor. Structurizr is a web-based rendering tool designed to help software development teams create software architecture diagrams and documentation.
Changelog
AppVersion
Bump Structurizr from v3047 to v3142.
ConfigMap
Introduce support for Structurizr configuration files
- structurizr.properties
- structurizr.users
- structurizr.roles
- SAML identity provider metadata
- Log4j2 configurations
Deployment
Introduce support of
volumes
andvolumeMounts
env
gcsfuse
The Structurizr Helm chart now provides the capability to use gcsfuse
for mounting Google Cloud Storage (GCS) buckets directly to the pod. This is especially useful when you wish to leverage GCS to store Structurizr-related data or for other data retrieval.
Configuration
- volumes:
- Define a volume of type
csi
with thegcsfuse.csi.storage.gke.io
driver. - Specify volume attributes like the
bucketName
andmountOptions
.
- Define a volume of type
volumes:
- name: structurizr-bucket
csi:
driver: gcsfuse.csi.storage.gke.io
volumeAttributes:
bucketName: "structurizr-google-storage-bucket-name"
mountOptions: "implicit-dirs"
- volumeMounts:
- Define where this volume will be mounted within the Structurizr container.
volumeMounts:
- name: structurizr-bucket
mountPath: /usr/local/structurizr
- podAnnotations:
- It's important to annotate the pod with
gke-gcsfuse/volumes: "true"
to indicate the use ofgcsfuse
.
- It's important to annotate the pod with
podAnnotations:
gke-gcsfuse/volumes: "true"
Contributions
- #2 by @thedmeyer