We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello Team,
Thanks for packaging this together. I have tried using the docker directly on Kubernetes but its not been working no matter what I do.
this is an example of my statefulset but its returning 504 error when I try to access the service
apiVersion: apps/v1 kind: StatefulSet metadata: name: watuespocrm labels: tier: backend spec: replicas: 1 serviceName: "watuespocrm" selector: matchLabels: app: watuespocrm template: metadata: labels: app: watuespocrm spec: containers: - name: watu-espocrm image: espocrm/espocrm:fpm-alpine ports: - containerPort: 80 name: http volumeMounts: - name: espo-crm-volume mountPath: "/var/www/html" env: - name: ESPOCRM_DATABASE_HOST value: ${DB_HOST}:${DB_PORT} - name: ESPOCRM_DATABASE_USER value: ${DB_USERNAME} - name: ESPOCRM_DATABASE_PASSWORD value: ${DB_PASSWORD} - name: ESPOCRM_ADMIN_USERNAME value: "admin" - name: ESPOCRM_ADMIN_PASSWORD value: "adminPassword" - name: ESPOCRM_SITE_URL value: "https://espocrm.watu.global" - name: watu-espocrm-daemon image: espocrm/espocrm:fpm-alpine volumeMounts: - mountPath: "/var/www/html" name: "espo-crm-volume" command: ["docker-daemon.sh"] - name: watu-espocrm-websocket image: espocrm/espocrm:fpm-alpine ports: - containerPort: 8080 volumeMounts: - mountPath: "/var/www/html" name: "espo-crm-volume" command: ["docker-websocket.sh"] restartPolicy: Always volumeClaimTemplates: - metadata: name: espo-crm-volume spec: accessModes: - ReadWriteOnce resources: requests: storage: 5Gi storageClassName: do-block-storage
The text was updated successfully, but these errors were encountered:
Getting the same issue and all I see is "Instance is not ready: waiting for the upgrade" in the logs.
Sorry, something went wrong.
No branches or pull requests
Hello Team,
Thanks for packaging this together. I have tried using the docker directly on Kubernetes but its not been working no matter what I do.
this is an example of my statefulset but its returning 504 error when I try to access the service
The text was updated successfully, but these errors were encountered: