apache / apache/devlake-helm-chart
Helm Chart installation on AWS EKS: Unable to attach or mount volumes
- Dominant language
- Go Template
- Stars
- 52
- Forks
- 72
- Avg merge
- 21h 4m
- Merged PRs (30d)
- 1
Description
I installed DevLake using Helm chart on my AWS EKS cluster. Used previous instructions from ticket:
https://github.com/apache/incubator-devlake-helm-chart/issues/87 but, without success. Still not working.
Helm values.yaml looks like:
```
replicaCount: 1
imageTag: v0.16.0-beta17
mysql:
useExternal: false
externalServer: 127.0.0.1
externalPort: 3306
username: merico
password: merico
database: lake
rootPassword: admin
storage:
class: "gp2"
size: 50Gi
image:
repository: mysql
tag: 8
pullPolicy: IfNotPresent
resources: {}
nodeSelector: {}
tolerations: []
affinity: {}
grafana:
image:
repository: apache/devlake-dashboard
pullPolicy: Always
useExternal: false
externalUrl: ''
resources: {}
nodeSelector: {}
tolerations: []
affinity: {}
lake:
image:
repository: apache/devlake
pullPolicy: Always
storage:
class: "gp2"
size: 100Mi
dotenv:
API_TIMEOUT: "120s"
API_RETRY: "3"
API_REQUESTS_PER_HOUR: "10000"
PIPELINE_MAX_PARALLEL: "1"
IN_SECURE_SKIP_VERIFY: "false"
hostNetwork: false
resources: {}
nodeSelector: {}
tolerations: []
affinity: {}
loggingDir: "/app/logs"
loggingLevel: "info"
ui:
image:
repository: apache/devlake-config-ui
pullPolicy: Always
resources: {}
nodeSelector: {}
tolerations: []
affinity: {}
basicAuth:
enabled: false
user: admin
password: admin
useSecret: false
autoCreateSecret: true
secretName: devlake-auth
alpine:
image:
repository: alpine
tag: 3.16
pullPolicy: IfNotPresent
service:
type: NodePort
uiPort: 32001
grafanaPort : 32002
ingress:
enabled: true
enableHttps: false
className: "alb"
prefix: /
tlsSecretName: ""
httpPort: 80
httpsPort: 443
useDefaultNginx: false
annotations:
alb.ingress.kubernetes.io/scheme: internet-facing
alb.ingress.kubernetes.io/target-type: ip
option:
localtime: /etc/localtime
database: mysql
useConnectionDetailsSecret: false
connectionSecretName: devlake-db-connection
autoCreateSecret: true
```
I get multiple errors like:
```
Unable to attach or mount volumes: unmounted volumes=[devlake-lake-config], unattached volumes=[devlake-lake-localtime kube-api-access-r7dgn devlake-lake-config]: timed out waiting for the condition
Unable to attach or mount volumes: unmounted volumes=[devlake-lake-config], unattached volumes=[kube-api-access-r7dgn devlake-lake-config devlake-lake-localtime]: timed out waiting for the condition
Unable to attach or mount volumes: unmounted volumes=[devlake-lake-config], unattached volumes=[devlake-lake-config devlake-lake-localtime kube-api-access-r7dgn]: timed out waiting for the condition
AttachVolume.Attach failed for volume "pvc-09b75f09-f0e4-4700-b42c-e9f901a13bf2" : volume attachment is being deleted
MountVolume.WaitForAttach failed for volume "pvc-09b75f09-f0e4-4700-b42c-e9f901a13bf2" : volume attachment is being deleted
```
Also tried to set storage class to empty (default) and same behaviour. Any idea?
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.