draft-classic
draft-classic copied to clipboard
A tool for developers to create cloud-native applications on Kubernetes.
Hi , I am using draft up with helm 3 but it complains about tiller and asks for helm Init.
Docker allows specifying the build directory: `docker build target/artifacts`. People usually use it with `docker build .`, but it is useful at times. We're relying on using non-`.` build dir...
It would be great to have ability to specify array of values files for helm chart in draft toml config. For example it could be needed for working on application...
The test, [TestSaveDirDockerfileExistsInAppDir](https://github.com/Azure/draft/blob/31ef4b18470305502275191d6532214e43814840/pkg/draft/pack/pack_test.go#L76-L111), looks like it is asserting that an existing Dockerfile can be overwritten during a `draft create`. That is not and should not be the behavior, so we...
Hi, I'm currently working on updating draft to work with [go modules](https://blog.golang.org/using-go-modules). This is the current progress: - [x] Building and running draft outside the gopath Following the [official documentation](https://github.com/golang/go/wiki/Modules#how-to-define-a-module),...
When doing `draft --environment=some-env up --auto-connect`, auto-connect connects to the instance in the default environment, not the one in `some-env` Also, the command above specifies a message similar to the...
Followed the below instructions: ``` $ cd $(draft home)/packs $ mkdir python $ cd python $ helm create chart Creating chart $ echo "FROM python" > Dockerfile ``` But when...
There are [a bunch of places](https://github.com/Azure/draft/search?l=Go&q=runtime.goos) where we have if statements to check for the runtime OS. A really clean solution would be to use conditional compilation - and if...