You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
How can we reproduce the bug? (as minimally and precisely as possible)
It happend running devspace dev or devspace build, I tried running devspace reset dependencies, I can access and clone my repos.
My devspace.yaml:
version: v2beta1
name: test-api
pipelines:
# This is the pipeline for the main command: `devspace dev` (or `devspace run-pipeline dev`)
dev:
run: |-
run_dependencies --all
create_deployments --all
start_dev ${DEVSPACE_NAME}
deploy:
run: |-
run_dependencies --all
build_images --all -t $(git describe --always)
create_deployments --all
images:
test-api:
image: ${IMAGE}
docker:
preferMinikube: true
useBuildKit: true
createPullSecret: false
dockerfile: Dockerfile.development
rebuildStrategy: ignoreContextChanges
context: ./
vars:
IMAGE: "test/test-api"
# This is a list of `deployments` that DevSpace can create for this project
deployments:
test-api:
# This deployment uses `helm` but you can also define `kubectl` deployments or kustomizations
helm:
# We are deploying this project with the Helm chart you provided
chart:
name: component-chart
repo: https://charts.devspace.sh
# Under `values` we can define the values for this Helm chart used during `helm install/upgrade`
# You may also use `valuesFiles` to load values from files, e.g. valuesFiles: ["values.yaml"]
values:
containers:
- image: ${IMAGE}
service:
ports:
- port: ${PORT}
ingress:
tls: true
rules:
- host: "${DEVSPACE_NAME}.${NGROK_HOSTNAME}"
path: /
servicePort: ${PORT}
# This is a list of `dev` containers that are based on the containers created by your deployments
dev:
test-api:
# Search for the container that runs this image
imageSelector: ${IMAGE}
# Sync files between the local filesystem and the development container
sync:
- path: ./
uploadExcludeFile: .dockerignore
excludePaths:
- terraform
# Open a terminal and use the following command to start it
terminal:
command: ./devspace_start.sh
# Inject a lightweight SSH server into the container (so your IDE can connect to the remote dev env)
ssh:
enabled: true
# Make the following commands from my local machine available inside the dev container
proxyCommands:
- command: devspace
- command: kubectl
- command: helm
# Forward the following ports to be able access your application via localhost
ports:
- port: "${PORT}"
# Use the `commands` section to define repeatable dev workflows for this project
commands:
start:
command: |
devspace enter -- bash -c 'bundle exec rails server -p 3025 -b 0.0.0.0'
dependencies:
postgres:
git: https://github.com/commercelayer/devspace.git
disablePull: true
branch: master
subPath: /postgres
What happened?
Running
devspace dev
with version 6.3.4 (the same with 6.3.3) I get:fatal deploy dependencies: resolve dependencies: chdir ~/.devspace/dependencies/my-project-devspace-git-master: no such file or directory
Here's the backtrace:
What did you expect to happen instead?
How can we reproduce the bug? (as minimally and precisely as possible)
It happend running
devspace dev
ordevspace build
, I tried runningdevspace reset dependencies
, I can access and clone my repos.My devspace.yaml:
Local Environment:
Kustomize Version: v5.0.4-0.20230601165947-6ce0bf390ce3
Server Version: v1.26.3
The text was updated successfully, but these errors were encountered: