creeram

Results 8 comments of creeram

I'm getting the same issue while deploying with the helm chart version 5.5.0. @GMartinez-Sisti .

``` atlantisUrl: "**********" orgAllowlist: github.com/*****/* gitconfigReadOnly: true extraArgs: - --disable-autoplan image: repository: ghcr.io/runatlantis/atlantis tag: "v0.29.0" pullPolicy: Always repoConfig: | --- repos: - id: /.*/ apply_requirements: [approved, mergeable] allowed_overrides: [workflow,plan_requirements] allow_custom_workflows:...

Yes, the default ```storageClass``` type is block/device, which doesn’t allow access from multiple Kubernetes nodes. That’s why I’m using ```nodeAffinity``` to schedule all pods on a single Kubernetes node. Could...

@GMartinez-Sisti No problem i decided to move forward with ReadWriteOnce AccessMode for the pvc.

@GMartinez-Sisti No worries! I encountered this issue before when I tried to use the old deprecated storage option on values.yaml file, which creates a separate PVC for each replica, and...

@mafredri I expect the script to be executed before the Docker build starts, That feature is already available in vs code dev container but not in Envbuilder.

@mafredri The envbuilder clones the repository the first time it runs, and on subsequent restarts, it skips the clone because the repo is already cloned in the persistent volume. Let’s...

@mafredri Rather than pulling all changes in the repository, the goal is to pull only changes from the .devcontainer folder. This is what I'm trying to achieve using the update.sh...