Skip to content

Releases: virtualroot/charts

riverui-0.1.3

13 Sep 20:42
797deea
Compare
Choose a tag to compare

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

26 Jul 16:46
9b83db8
Compare
Choose a tag to compare

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

11 Jul 21:07
Compare
Choose a tag to compare

A web interface for River. Fast and reliable background jobs in Go.

Changelog

Add icon to Chart.yaml

riverui-0.1.0

11 Jul 20:58
95da5b8
Compare
Choose a tag to compare

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

28 Jun 21:55
c19638a
Compare
Choose a tag to compare

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

01 May 10:18
Compare
Choose a tag to compare

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

01 May 10:14
a474e62
Compare
Choose a tag to compare

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

09 Apr 13:28
2c71682
Compare
Choose a tag to compare

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

11 Oct 08:20
0329b00
Compare
Choose a tag to compare

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 if Values.image.tag is present.

Contributions

structurizr-0.2.0

27 Sep 08:47
9512908
Compare
Choose a tag to compare

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 and volumeMounts
  • 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

  1. volumes:
    • Define a volume of type csi with the gcsfuse.csi.storage.gke.io driver.
    • Specify volume attributes like the bucketName and mountOptions.
volumes:
  - name: structurizr-bucket
    csi:
      driver: gcsfuse.csi.storage.gke.io
      volumeAttributes:
        bucketName: "structurizr-google-storage-bucket-name"
        mountOptions: "implicit-dirs"
  1. volumeMounts:
    • Define where this volume will be mounted within the Structurizr container.
volumeMounts:
  - name: structurizr-bucket
    mountPath: /usr/local/structurizr
  1. podAnnotations:
    • It's important to annotate the pod with gke-gcsfuse/volumes: "true" to indicate the use of gcsfuse.
podAnnotations:
  gke-gcsfuse/volumes: "true"

Contributions