Kubernetes (OSS)
Install Parseable OSS in standalone mode on Kubernetes with Helm.
This guide installs Parseable OSS as a single standalone pod on Kubernetes. You can use local storage, MinIO, Amazon S3, Google Cloud Storage, or Azure Blob Storage.
Standalone mode supports Parseable OSS only. To install Parseable Enterprise, use the distributed Enterprise Kubernetes guide.
1. Prerequisites
Before you begin, make sure you have:
kubectlconfigured for your Kubernetes cluster- Helm 3 or later
- A Kubernetes storage class
- An existing, empty bucket or container with access credentials if you use an object store
Confirm the Kubernetes context and find an available storage class:
kubectl config current-context
kubectl get nodes
kubectl get storageclass2. Create the namespace
kubectl create namespace parseable3. Choose a storage option
Choose exactly one storage option below. Replace every <...> placeholder in the selected option before creating the Kubernetes Secret.
After completing one option, continue to step 4.
Option A: Local storage
Create a file named parseable-env-secret:
cat <<'EOF' > parseable-env-secret
addr=0.0.0.0:8000
username=admin
password=<password>
EOFUse local-store in standalone-values.yaml.
Option B: MinIO
This single-node MinIO setup is for testing only. Skip the installation if you already have a MinIO or another S3-compatible object store.
Install MinIO and create a bucket named parseable:
helm repo add minio https://charts.min.io/
helm install --namespace minio --create-namespace --set "buckets[0].name=parseable,buckets[0].policy=none,buckets[0].purge=false,rootUser=minioadmin,rootPassword=minioadmin,replicas=1,persistence.enabled=true,persistence.storageClass="",resources.requests.memory=128Mi,mode=standalone" minio minio/minioForward the MinIO console port:
kubectl port-forward svc/minio-console -n minio 9001:9001Open http://localhost:9001. A bucket named parseable should be available.
Create a file named parseable-env-secret using the MinIO test credentials:
cat << EOF > parseable-env-secret
s3.url=http://minio.minio.svc.cluster.local:9000
s3.access.key=minioadmin
s3.secret.key=minioadmin
s3.region=us-east-1
s3.bucket=parseable
addr=0.0.0.0:8000
username=admin
password=admin
EOFThese credentials are for testing only. Replace the MinIO and Parseable administrator credentials before using this setup outside a test cluster.
Use s3-store in standalone-values.yaml.
Option C: Amazon S3
Create a file named parseable-env-secret using the bucket credentials provided by your AWS administrator:
cat <<'EOF' > parseable-env-secret
addr=0.0.0.0:8000
username=admin
password=<password>
s3.url=<s3.url>
s3.access.key=<s3.access.key>
s3.secret.key=<s3.secret.key>
s3.bucket=<s3.bucket>
s3.region=<s3.region>
EOFUse s3-store in standalone-values.yaml.
Option D: Google Cloud Storage
Create a file named parseable-env-secret using the bucket details provided by your Google Cloud administrator:
cat <<'EOF' > parseable-env-secret
addr=0.0.0.0:8000
username=admin
password=<password>
gcs.url=<gcs.url>
gcs.bucket=<gcs.bucket>
EOFKeep the service-account JSON file ready. You will create its Kubernetes Secret after creating the main Secret.
The service-account JSON file is a credential. Store it securely and never commit it to source control.
Use gcs-store in standalone-values.yaml.
Option E: Azure Blob Storage
Create a file named parseable-env-secret using the storage credentials provided by your Azure administrator:
cat <<'EOF' > parseable-env-secret
addr=0.0.0.0:8000
username=admin
password=<password>
azr.access_key=<azr.access_key>
azr.account=<azr.account>
azr.container=<azr.container>
azr.url=<azr.url>
EOFUse blob-store in standalone-values.yaml.
4. Create the Kubernetes Secret
Review the file created for your selected storage option, then create the Secret:
chmod 600 parseable-env-secret
kubectl create secret generic parseable-env-secret \
--namespace parseable \
--from-env-file=parseable-env-secretIf you selected Google Cloud Storage, also create the service-account key Secret:
kubectl create secret generic parseable-gcs-key \
--namespace parseable \
--from-file=key.json='<path-to-service-account-json>'Confirm that the required Secrets exist without displaying their values:
kubectl get secret parseable-env-secret --namespace parseable
kubectl get secret parseable-gcs-key --namespace parseableThe second command is required only for Google Cloud Storage.
Delete the local plaintext configuration file after creating the Secret:
rm parseable-env-secret5. Add the Parseable Helm repository
helm repo add parseable https://charts.parseable.com
helm repo update parseable6. Create standalone-values.yaml
Create a file named standalone-values.yaml:
parseable:
deploymentMode: standalone
store:
# Local storage: local-store
# MinIO and Amazon S3: s3-store
# Google Cloud Storage: gcs-store
# Azure Blob Storage: blob-store
type: local-store
secretName: parseable-env-secret
# Google Cloud Storage only: uncomment this block.
# gcsCredentials:
# secretName: parseable-gcs-key
# secretKey: key.json
# mountPath: /var/secrets/google
standalone:
unified:
persistence:
staging:
storageClass: <storage-class>
size: 5Gi
data:
# Keep enabled for local-store. Set to false for object stores.
enabled: true
storageClass: <storage-class>
size: 5GiBefore continuing:
- Set
parseable.store.typefor the storage option selected in step 3. - Keep
data.enabled: trueforlocal-store; set it tofalsefor an object store. - If you selected Google Cloud Storage, uncomment the
gcsCredentialsblock. - Replace both
<storage-class>placeholders with a storage class returned bykubectl get storageclass. - Adjust volume sizes for your workload.
The staging volume temporarily buffers incoming data. The data volume stores permanent data only when local-store is selected; object-store deployments keep permanent data in the selected bucket or container.
7. Install Parseable
helm upgrade --install parseable parseable/parseable \
--namespace parseable \
--values ./standalone-values.yaml \
--wait \
--timeout 10m8. Verify the installation
helm status parseable --namespace parseable
kubectl get pods,pvc,services,deployments --namespace parseableThe Parseable pod should be Running, and every enabled PVC should be Bound.
9. Access Parseable
kubectl port-forward service/parseable-standalone-service 8000:80 --namespace parseableOpen http://localhost:8000 and sign in with the username and password stored in parseable-env-secret.
10. Troubleshooting
kubectl get events --namespace parseable --sort-by=.lastTimestamp
kubectl describe pod --namespace parseable -l app.kubernetes.io/instance=parseable
kubectl logs deployment/parseable-standalone --namespace parseable --tail=200PendingPVCs usually indicate an invalid storage class or unavailable volume provisioner.CreateContainerConfigErrorusually indicates a missing Secret or Secret key.- Object-store authentication errors usually indicate incorrect credentials, permissions, endpoint, bucket, or container values.
- Use an empty bucket or container for a new Parseable installation.
Was this page helpful?