defenseunicorns / uds-package-mattermost

🏭 UDS Mattermost Zarf Package

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

UDS Mattermost Package

Latest Release Build Status OpenSSF Scorecard

This package is designed for use as part of a UDS Software Factory bundle deployed on UDS Core.

Prerequisites

Mattermost requires two dependencies, postgres and s3 compatible object storage. Wiring Mattermost to your dependencies is done primarily via helm values, which will require the use of a bundle created with uds-cli.

Postgres

Postgres configuration is setup in the uds-mattermost-config chart and should be done via bundle overrides (variables or values) like the below:

    overrides:
      mattermost:
        uds-mattermost-config:
          values:
            - path: "postgres.host"
              value: "postgresql.dev-postgres.svc.cluster.local"

The full list of override config can be found in the values under postgres here. In addition a zarf var is exposed for DB_PASSWORD for convenience if using import/exports in your bundle.

S3 Compatible Object Storage

Object storage configuration is setup in the uds-mattermost-config chart and should be done via bundle overrides (variables or values) like the below:

    overrides:
      mattermost:
        uds-mattermost-config:
          values:
            - path: "objectStorage.endpoint"
              value: "minio.dev-minio.svc.cluster.local:9000"

The full list of override config can be found in the values under objectStorage here. In addition zarf vars are exposed for ACCESS_KEY and SECRET_KEY for convenience if using import/exports in your bundle.

To use IRSA make sure to NOT set the two key variables and add the appropriate role ARN annotation to the service account via an override to serviceAccount.annotations. As an example:

    overrides:
      mattermost:
        mattermost-enterprise-edition:
          values:
            - path: "serviceAccount.annotations.irsa/role-arn"
              value: "arn:aws:iam::123456789:role/mattermost-role"

Flavors

Flavor Description Example Creation
upstream Uses upstream images within the package. zarf package create . -f upstream
registry1 Uses images from registry1.dso.mil within the package. zarf package create . -f registry1

Releases

The released packages can be found in ghcr.

UDS Tasks (for local dev and CI)

*For local dev, this requires installing uds-cli

Task Description Example
setup-cluster Uses the k3d-core-istio bundle to create a cluster for testing against uds run setup-cluster
create-package Creates just the Mattermost package uds run create-package --set FLAVOR=<flavor>
create-test-bundle Creates Mattermost and Mattermost dependency packages and then bundles them uds run create-test-bundle
deploy-package Deploy Mattermost package only uds run deploy-package
deploy-test-bundle Deploy Mattermost and Mattermost dependency bundle uds run deploy-test-bundle
test-package Run checks against a deployed package or bundle uds run test-package
cleanup Teardown the cluster uds run cleanup

Contributing

Please see the CONTRIBUTING.md

About

🏭 UDS Mattermost Zarf Package

License:Apache License 2.0


Languages

Language:JavaScript 100.0%