Skip to content

Latest commit

 

History

History
40 lines (27 loc) · 1.54 KB

README.md

File metadata and controls

40 lines (27 loc) · 1.54 KB

Lizz compatible SMTP Server application

Lizz compatible application to add the SMTP Server application to a lizz managed Kubernetes cluster. The SMTP Server application is simply a secret resource and a configmap resource that are added to the cluster. These resources contain information like username, password, domain, etc... of an external STMP provider like SendGrid.

To learn more about Lizz, see the documentation.

Requirements

To add the application, you first need to have a Kubernetes cluster initialized with Lizz. You also need to have the Lizz CLI installed.

Add the application

To add the application to your cluster, run the following:

lizz add github \
    --owner=$GITHUB_USER  \
    --fleet=fleet \
    --origin-url=https://github.com/openlizz/application-smtp-server \
    --path=./ \
    --destination=smtp-server \
    --set-value host=$SMTP_HOST,secure=$SMTP_SECURE,port=$SMTP_PORT,domain=$DOMAIN,smtpUsername=$SMTP_USERNAME,smtpPassword=$SMTP_PASSWORD
    --personal

Check the guide to understand how works the lizz add command.

Note You can adapt the command depending on your use case. See the command API for more information.

Reconcile the fleet repository to deploy the application using Flux:

flux reconcile source git flux-system