Paramify can be deployed using Helm into an existing Kubernetes cluster, such as AWS EKS, Azure AKS, or self-managed.

The following instructions are an example of how to create and deploy into an AWS EKS cluster leveraging an IAM role (attached to a ServiceAccount) for permissions to read/write from S3 Storage. Other than the specific Terraform the overall process is generally applicable for any Helm-based install of Paramify into Kubernetes.
Prerequisites
- AWS CLI and authenticated user (and profile) with sufficient permissions to create resources
- terraform CLI installed (if using the example .tf files)
- kubectl CLI installed
- A Paramify license (user and credential for Helm registry login)
- (Recommended) An available subdomain planned to access the application (e.g., paramify.company.com)
- (Recommended) Credentials for an SMTP server to send email
- (Recommended) Access to configure Okta, Microsoft Login, or Google Cloud Console for SSO
NOTE
You'll need to configure at least one authentication method (e.g., SMTP, Google, Microsoft, Okta) to be able to login to Paramify.
1. Create Infrastructure
Paramify will use the following infrastructure in AWS:
- EKS Kubernetes cluster
- RDS PostgreSQL database
- S3 bucket for generated documentation
- Load balancer to access installer and application
To simplify creation of the infrastructure you can use the example Terraform file aws-paramify-eks-infra.tf to create everything in an isolated VPC. Be sure to update the variables at the top of the file according to your environment.
Follow these steps to create the infrastructure:
-
(Recommended) Create an AWS SSL certificate for the desired subdomain (e.g., paramify.mycompany.com)
-
Update and apply the terraform example (or similar):
-
In an empty directory, save the example files and edit
aws-paramify-eks-infra.tfto set the variables for your environment (including the ARN to the SSL certificate).
- Init and check the configuration:
terraform init terraform plan- Apply the configuration to create AWS resources:
terraform applyNOTE
This will usually take a few minutes.
-
Copy the convenience output values (or run
terraform output) that look something like:
cluster_name = "paramify-mycompany-eks" db_dns = "paramify-mycompany-db.abc123abc123.us-west-2.rds.amazonaws.com" region = "us-west-2" s3_bucket = "paramify-mycompany-s3" s3_role = "arn:aws:iam::abc123abc123:role/paramify-mycompany-eks-sa-role" -
In an empty directory, save the example files and edit
-
Add the EKS cluster config to kubectl (using the
regionandcluster_namefrom the Terraform output above), optionally including--profile <sso_profile>if not using default -
Create the desired namespace to deploy the Paramify application (e.g.,
paramify)
aws eks update-kubeconfig --region us-west-2 --name paramify-mycompany-eks --profile admin
kubectl create ns paramify
2. Helm Install
Follow these steps to install the application using Helm:
-
Copy
values-eks.yamllocally and edit the configuration according to your environment, including SMTP and DB credentials.WARNING
Be sure to update ADMIN_EMAIL to match the first user that will login, who can then add other users.
-
Authenticate to the Paramify Helm registry using your license (which can be obtained from Paramify):
helm registry login registry.paramify.com --username user@company.com --password <license_id> -
Review the Helm templates and then install:
-
If desired, use the
helm templatecommand to preview the resulting templates that will be applied.
helm template paramify oci://registry.paramify.com/paramify/paramify --namespace paramify --values ./values-azure.yaml- Then actually install the templates into your cluster:
helm install paramify oci://registry.paramify.com/paramify/paramify --namespace paramify --values ./values-azure.yaml -
If desired, use the
-
If you used the default
LoadBalanceroption you should do the following to identify the IP to connect to:kubectl get service paramify -n paramify- The results will look something like:
NAME TYPE CLUSTER-IP EXTERNAL-IP PORT(S) AGE paramify LoadBalancer 172.20.1.2 abc123abc1234567890-012345678.us-west-2.elb.amazonaws.com 443:30835/TCP 3m-
(Recommended) Add an AWS Route 53 DNS record (or equivalent) for
the desired subdomain as a CNAME alias to the new LB endpoint in
EXTERNAL-IPabove
TIP
It's recommended to generate an associated SSL cert for the custom subdomain to use. Otherwise you may see an error in the browser about the SSL cert, which you'll have to accept to access the app.
Now you should be ready to access Paramify at the load balancer IP or optionally your desired domain (e.g., https://paramify.mycompany.com) and login using one of your configured methods. Enjoy!
Comments
0 comments
Please sign in to leave a comment.