drone-helm3 icon indicating copy to clipboard operation
drone-helm3 copied to clipboard

Error: could not find bitnami/wordpress: stat bitnami/wordpress: no such file or directory

Open eb-kmd opened this issue 3 years ago • 0 comments

Hello, I am trying to use the bitnami wordpress chart but I'm getting a weird error:

2022/05/30 13:30:26 added repo: name:"bitnami" url:"https://charts.bitnami.com/bitnami"
2022/05/30 13:30:26 running with a timeout of 15m0s
2022/05/30 13:30:26 running: helm [repo add bitnami https://charts.bitnami.com/bitnami]
2022/05/30 13:30:49 running: helm [repo update]
2022/05/30 13:31:11 running: helm [dependency build bitnami/wordpress]
Error: could not find bitnami/wordpress: stat bitnami/wordpress: no such file or directory

My config:

name: deploy
image: bitsbeats/drone-helm3
settings:
  debug: true
  envsubst: true
  dependencies_action: ""
  helm_repos:
    - bitnami=https://charts.bitnami.com/bitnami
  kube_api_server:
    from_secret: KUBE_API_SERVER
  chart: bitnami/wordpress
  chart_version: 13.1
  namespace: wordpress-production
  kube_token:
    from_secret: KUBE_TOKEN
  kube_certificate:
    from_secret: KUBE_CERTIFICATE
  values_yaml: ./deployment/values.yaml
  values:
    - externalDatabase:
        password:
          from_secret: DB_PASSWORD
    - wordpressPassword:
        from_secret: WORDPRESS_PASSWORD
  image.registry: ******
  image.repository: ****
  image.tag: ${DRONE_COMMIT_SHA}
  release: my-release-name
when:
  branch:
  - master
  event:
  - push

eb-kmd avatar May 30 '22 13:05 eb-kmd