Skip to content

Instantly share code, notes, and snippets.

@cyrille-leclerc
Last active January 30, 2018 22:16
Show Gist options
  • Save cyrille-leclerc/175fa79ea2055a588c7b41d1f4fc1f2f to your computer and use it in GitHub Desktop.
Save cyrille-leclerc/175fa79ea2055a588c7b41d1f4fc1f2f to your computer and use it in GitHub Desktop.
jx create cluster minikube fails
$ jx create cluster minikube
? memory (MB) 4096
? cpu (cores) 2
? Select driver: hyperkit
docker-machine-driver-hyperkit is already installed
Starting local Kubernetes v1.9.0 cluster...
Starting VM...
Downloading Minikube ISO
142.22 MB / 142.22 MB [============================================] 100.00% 0s
Getting VM IP address...
Moving files into cluster...
Downloading localkube binary
162.41 MB / 162.41 MB [============================================] 100.00% 0s
0 B / 65 B [----------------------------------------------------------] 0.00%
65 B / 65 B [======================================================] 100.00% 0sSetting up certs...
Connecting to cluster...
Setting up kubeconfig...
Starting cluster components...
Kubectl is now configured to use the cluster.
Loading cached images from config file.
$HELM_HOME has been configured at /Users/cyrilleleclerc/.helm.
Tiller (the Helm server-side component) has been installed into your Kubernetes Cluster.
Happy Helming!
helm installed and configured
Creating /Users/cyrilleleclerc/.draft
Creating /Users/cyrilleleclerc/.draft/plugins
Creating /Users/cyrilleleclerc/.draft/packs
Adding plugin https://github.com/Azure/draft-pack-repo...
Downloading https://github.com/Azure/draft-pack-repo/releases/download/v0.3.1/pack-repo-v0.3.1-darwin-amd64.tar.gz
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 627 0 627 0 0 1249 0 --:--:-- --:--:-- --:--:-- 1249
100 2988k 100 2988k 0 0 1317k 0 0:00:02 0:00:02 --:--:-- 2857k
Preparing to install into /Users/cyrilleleclerc/.draft/plugins/draft-pack-repo
draft-pack-repo installed into /Users/cyrilleleclerc/.draft/plugins/draft-pack-repo/draft-pack-repo
The Draft pack repository plugin.
Usage:
pack-repo [command]
Available Commands:
add add a pack repository
help Help about any command
list list all installed pack repositories
remove remove a pack repository
update fetch the newest version of all pack repositories using git.
version display version information
Flags:
--debug enable verbose output
-h, --help help for pack-repo
Use "pack-repo [command] --help" for more information about a command.
Installed plugin: pack-repo
Installing pack repo from https://github.com/Azure/draft
Installed pack repository github.com/Azure/draft
$DRAFT_HOME has been configured at /Users/cyrilleleclerc/.draft.
Draft detected that you are using minikube as your cloud provider. AWESOME!
Draft has been installed into your Kubernetes Cluster.
Happy Sailing!
Installing pack repo from https://github.com/jenkins-x/draft-repo
Error: Unable to update checked out version: exit status 128
Error: exit status 1
Error: Command failed draft pack-repo add https://github.com/jenkins-x/draft-repo
draft init failed: exit status 1
$ tree .draft
.draft
├── cache
│   ├── packs
│   │   ├── https-github.com-Azure-draft
│   │   │   ├── CHANGELOG.md
│   │   │   ├── Dockerfile
│   │   │   ├── GOVERNANCE.md
│   │   │   ├── LICENSE
│   │   │   ├── Makefile
│   │   │   ├── NOTICE
│   │   │   ├── OWNERS
│   │   │   ├── README.md
│   │   │   ├── charts
│   │   │   │   └── draftd
│   │   │   │   ├── Chart.yaml
│   │   │   │   ├── templates
│   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   └── service.yaml
│   │   │   │   └── values.yaml
│   │   │   ├── cmd
│   │   │   │   ├── draft
│   │   │   │   │   ├── connect.go
│   │   │   │   │   ├── create.go
│   │   │   │   │   ├── create_test.go
│   │   │   │   │   ├── delete.go
│   │   │   │   │   ├── delete_test.go
│   │   │   │   │   ├── draft.go
│   │   │   │   │   ├── home.go
│   │   │   │   │   ├── init.go
│   │   │   │   │   ├── installer
│   │   │   │   │   │   ├── config
│   │   │   │   │   │   │   └── config.go
│   │   │   │   │   │   ├── install.go
│   │   │   │   │   │   ├── install_test.go
│   │   │   │   │   │   └── uninstall.go
│   │   │   │   │   ├── logs.go
│   │   │   │   │   ├── plugin.go
│   │   │   │   │   ├── plugin_install.go
│   │   │   │   │   ├── plugin_install_test.go
│   │   │   │   │   ├── plugin_list.go
│   │   │   │   │   ├── plugin_list_test.go
│   │   │   │   │   ├── plugin_remove.go
│   │   │   │   │   ├── plugin_remove_test.go
│   │   │   │   │   ├── plugin_test.go
│   │   │   │   │   ├── plugin_update.go
│   │   │   │   │   ├── plugin_update_test.go
│   │   │   │   │   ├── testdata
│   │   │   │   │   │   ├── create
│   │   │   │   │   │   │   ├── generated
│   │   │   │   │   │   │   │   ├── empty
│   │   │   │   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   │   │   │   ├── charts
│   │   │   │   │   │   │   │   │   │   └── go
│   │   │   │   │   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   │   │   │   │   ├── charts
│   │   │   │   │   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   │   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   │   │   │   │   │   │   └── service.yaml
│   │   │   │   │   │   │   │   │   │   └── values.yaml
│   │   │   │   │   │   │   │   │   └── draft.toml
│   │   │   │   │   │   │   │   ├── simple-go
│   │   │   │   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   │   │   │   ├── charts
│   │   │   │   │   │   │   │   │   │   └── go
│   │   │   │   │   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   │   │   │   │   ├── charts
│   │   │   │   │   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   │   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   │   │   │   │   │   │   └── service.yaml
│   │   │   │   │   │   │   │   │   │   └── values.yaml
│   │   │   │   │   │   │   │   │   ├── draft.toml
│   │   │   │   │   │   │   │   │   ├── glide.yaml
│   │   │   │   │   │   │   │   │   └── main.go
│   │   │   │   │   │   │   │   ├── simple-go-with-chart
│   │   │   │   │   │   │   │   │   ├── charts
│   │   │   │   │   │   │   │   │   │   └── something
│   │   │   │   │   │   │   │   │   ├── glide.yaml
│   │   │   │   │   │   │   │   │   └── main.go
│   │   │   │   │   │   │   │   └── simple-go-with-draftignore
│   │   │   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   │   │   ├── charts
│   │   │   │   │   │   │   │   │   └── go
│   │   │   │   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   │   │   │   ├── charts
│   │   │   │   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   │   │   │   │   │   └── service.yaml
│   │   │   │   │   │   │   │   │   └── values.yaml
│   │   │   │   │   │   │   │   ├── draft.toml
│   │   │   │   │   │   │   │   ├── glide.yaml
│   │   │   │   │   │   │   │   └── main.go
│   │   │   │   │   │   │   └── src
│   │   │   │   │   │   │   ├── empty
│   │   │   │   │   │   │   ├── simple-go
│   │   │   │   │   │   │   │   ├── glide.yaml
│   │   │   │   │   │   │   │   └── main.go
│   │   │   │   │   │   │   ├── simple-go-with-chart
│   │   │   │   │   │   │   │   ├── charts
│   │   │   │   │   │   │   │   │   └── something
│   │   │   │   │   │   │   │   ├── glide.yaml
│   │   │   │   │   │   │   │   └── main.go
│   │   │   │   │   │   │   └── simple-go-with-draftignore
│   │   │   │   │   │   │   ├── glide.yaml
│   │   │   │   │   │   │   └── main.go
│   │   │   │   │   │   ├── delete
│   │   │   │   │   │   │   └── src
│   │   │   │   │   │   │   └── simple-go-error
│   │   │   │   │   │   │   ├── glide.yaml
│   │   │   │   │   │   │   └── main.go
│   │   │   │   │   │   ├── drafthome
│   │   │   │   │   │   │   ├── packs
│   │   │   │   │   │   │   │   └── github.com
│   │   │   │   │   │   │   │   └── Azure
│   │   │   │   │   │   │   │   └── draft
│   │   │   │   │   │   │   │   └── packs
│   │   │   │   │   │   │   │   └── go
│   │   │   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   │   │   ├── NOTICE
│   │   │   │   │   │   │   │   └── charts
│   │   │   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   │   │   │   │   └── service.yaml
│   │   │   │   │   │   │   │   └── values.yaml
│   │   │   │   │   │   │   └── plugins
│   │   │   │   │   │   │   ├── args
│   │   │   │   │   │   │   │   ├── args.sh
│   │   │   │   │   │   │   │   └── plugin.yaml
│   │   │   │   │   │   │   ├── echo
│   │   │   │   │   │   │   │   └── plugin.yaml
│   │   │   │   │   │   │   ├── fullenv
│   │   │   │   │   │   │   │   ├── fullenv.sh
│   │   │   │   │   │   │   │   └── plugin.yaml
│   │   │   │   │   │   │   └── home
│   │   │   │   │   │   │   └── plugin.yaml
│   │   │   │   │   │   └── plugins
│   │   │   │   │   │   └── echo
│   │   │   │   │   │   └── plugin.yaml
│   │   │   │   │   ├── up.go
│   │   │   │   │   └── version.go
│   │   │   │   └── draftd
│   │   │   │   ├── draftd.go
│   │   │   │   ├── start.go
│   │   │   │   └── version.go
│   │   │   ├── docs
│   │   │   │   ├── contributing
│   │   │   │   │   ├── hacking.md
│   │   │   │   │   ├── minikube-dev.md
│   │   │   │   │   └── release-checklist.md
│   │   │   │   ├── getting-started.md
│   │   │   │   ├── img
│   │   │   │   │   ├── draft-logo.png
│   │   │   │   │   └── nothing.png
│   │   │   │   ├── ingress.md
│   │   │   │   ├── install-advanced.md
│   │   │   │   ├── install.md
│   │   │   │   ├── reference
│   │   │   │   │   ├── dep-001.md
│   │   │   │   │   ├── dep-002.md
│   │   │   │   │   ├── dep-003.md
│   │   │   │   │   ├── dep-004.md
│   │   │   │   │   ├── dep-005.md
│   │   │   │   │   ├── dep-006.md
│   │   │   │   │   └── index.md
│   │   │   │   └── troubleshooting.md
│   │   │   ├── draft.toml
│   │   │   ├── examples
│   │   │   │   ├── example-dotnet
│   │   │   │   │   ├── Program.cs
│   │   │   │   │   ├── README.txt
│   │   │   │   │   ├── Startup.cs
│   │   │   │   │   └── WebApplication.csproj
│   │   │   │   ├── example-go
│   │   │   │   │   ├── glide.yaml
│   │   │   │   │   └── main.go
│   │   │   │   ├── example-java
│   │   │   │   │   ├── pom.xml
│   │   │   │   │   └── src
│   │   │   │   │   └── main
│   │   │   │   │   └── java
│   │   │   │   │   └── helloworld
│   │   │   │   │   └── Hello.java
│   │   │   │   ├── example-nodejs
│   │   │   │   │   ├── index.js
│   │   │   │   │   └── package.json
│   │   │   │   ├── example-php
│   │   │   │   │   ├── composer.json
│   │   │   │   │   └── index.php
│   │   │   │   ├── example-python
│   │   │   │   │   ├── app.py
│   │   │   │   │   └── requirements.txt
│   │   │   │   ├── example-ruby
│   │   │   │   │   ├── Gemfile
│   │   │   │   │   ├── Gemfile.lock
│   │   │   │   │   └── app.rb
│   │   │   │   └── example-swift
│   │   │   │   ├── Package.pins
│   │   │   │   ├── Package.swift
│   │   │   │   └── Sources
│   │   │   │   └── main.swift
│   │   │   ├── glide.lock
│   │   │   ├── glide.yaml
│   │   │   ├── packs
│   │   │   │   ├── README.md
│   │   │   │   ├── csharp
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   ├── NOTICE
│   │   │   │   │   └── charts
│   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   ├── templates
│   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   │   └── service.yaml
│   │   │   │   │   └── values.yaml
│   │   │   │   ├── go
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   ├── NOTICE
│   │   │   │   │   └── charts
│   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   ├── templates
│   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   │   └── service.yaml
│   │   │   │   │   └── values.yaml
│   │   │   │   ├── gradle
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   ├── NOTICE
│   │   │   │   │   └── charts
│   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   ├── templates
│   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   │   └── service.yaml
│   │   │   │   │   └── values.yaml
│   │   │   │   ├── java
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   ├── NOTICE
│   │   │   │   │   └── charts
│   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   ├── templates
│   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   │   └── service.yaml
│   │   │   │   │   └── values.yaml
│   │   │   │   ├── javascript
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   ├── NOTICE
│   │   │   │   │   └── charts
│   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   ├── templates
│   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   │   └── service.yaml
│   │   │   │   │   └── values.yaml
│   │   │   │   ├── php
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   ├── NOTICE
│   │   │   │   │   └── charts
│   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   ├── templates
│   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   │   └── service.yaml
│   │   │   │   │   └── values.yaml
│   │   │   │   ├── python
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   ├── NOTICE
│   │   │   │   │   ├── charts
│   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   │   │   └── service.yaml
│   │   │   │   │   │   └── values.yaml
│   │   │   │   │   └── detect
│   │   │   │   ├── ruby
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   ├── NOTICE
│   │   │   │   │   └── charts
│   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   ├── templates
│   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   │   └── service.yaml
│   │   │   │   │   └── values.yaml
│   │   │   │   └── swift
│   │   │   │   ├── Dockerfile
│   │   │   │   └── chart
│   │   │   │   ├── Chart.yaml
│   │   │   │   ├── templates
│   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   └── service.yaml
│   │   │   │   └── values.yaml
│   │   │   ├── pkg
│   │   │   │   ├── build
│   │   │   │   │   ├── build.go
│   │   │   │   │   ├── errors.go
│   │   │   │   │   └── watch.go
│   │   │   │   ├── cmdline
│   │   │   │   │   ├── cmdline.go
│   │   │   │   │   └── option.go
│   │   │   │   ├── draft
│   │   │   │   │   ├── client.go
│   │   │   │   │   ├── context.go
│   │   │   │   │   ├── context_test.go
│   │   │   │   │   ├── draftpath
│   │   │   │   │   │   ├── home.go
│   │   │   │   │   │   ├── home_unix_test.go
│   │   │   │   │   │   └── home_windows_test.go
│   │   │   │   │   ├── local
│   │   │   │   │   │   ├── local.go
│   │   │   │   │   │   └── local_test.go
│   │   │   │   │   ├── manifest
│   │   │   │   │   │   ├── manifest.go
│   │   │   │   │   │   └── manifest_test.go
│   │   │   │   │   ├── pack
│   │   │   │   │   │   ├── create.go
│   │   │   │   │   │   ├── create_test.go
│   │   │   │   │   │   ├── errors.go
│   │   │   │   │   │   ├── load.go
│   │   │   │   │   │   ├── load_test.go
│   │   │   │   │   │   ├── pack.go
│   │   │   │   │   │   ├── pack_test.go
│   │   │   │   │   │   ├── repo
│   │   │   │   │   │   │   ├── builtins.go
│   │   │   │   │   │   │   ├── builtins_test.go
│   │   │   │   │   │   │   ├── errors.go
│   │   │   │   │   │   │   ├── installer
│   │   │   │   │   │   │   │   ├── installer.go
│   │   │   │   │   │   │   │   ├── local_installer.go
│   │   │   │   │   │   │   │   ├── local_installer_test.go
│   │   │   │   │   │   │   │   ├── testdata
│   │   │   │   │   │   │   │   │   └── packdir
│   │   │   │   │   │   │   │   │   └── defaultpacks
│   │   │   │   │   │   │   │   │   ├── README.md
│   │   │   │   │   │   │   │   │   └── packs
│   │   │   │   │   │   │   │   │   └── python
│   │   │   │   │   │   │   │   ├── vcs_installer.go
│   │   │   │   │   │   │   │   └── vcs_installer_test.go
│   │   │   │   │   │   │   └── repo.go
│   │   │   │   │   │   └── testdata
│   │   │   │   │   │   └── pack-python
│   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   └── charts
│   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   │   └── service.yaml
│   │   │   │   │   │   └── values.yaml
│   │   │   │   │   ├── registry.go
│   │   │   │   │   ├── server.go
│   │   │   │   │   └── testdata
│   │   │   │   │   ├── app
│   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   ├── chart
│   │   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   │   │   └── values.yaml
│   │   │   │   │   │   └── draft.toml
│   │   │   │   │   ├── good
│   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   ├── chart
│   │   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   │   │   └── values.yaml
│   │   │   │   │   │   └── rootfs
│   │   │   │   │   │   ├── etc
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   │   └── nginx.conf
│   │   │   │   │   │   ├── tmp
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── usr
│   │   │   │   │   │   └── share
│   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── html
│   │   │   │   │   │   └── README
│   │   │   │   │   ├── has-dockerignore
│   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   ├── chart
│   │   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   │   │   └── values.yaml
│   │   │   │   │   │   └── rootfs
│   │   │   │   │   │   ├── etc
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   │   └── nginx.conf
│   │   │   │   │   │   ├── tmp
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── usr
│   │   │   │   │   │   └── share
│   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── html
│   │   │   │   │   │   └── README
│   │   │   │   │   ├── no-chart
│   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   └── rootfs
│   │   │   │   │   │   ├── etc
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   │   └── nginx.conf
│   │   │   │   │   │   ├── tmp
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── usr
│   │   │   │   │   │   └── share
│   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── html
│   │   │   │   │   │   └── README
│   │   │   │   │   ├── no-dockerfile
│   │   │   │   │   │   ├── chart
│   │   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   │   │   └── values.yaml
│   │   │   │   │   │   └── rootfs
│   │   │   │   │   │   ├── etc
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   │   └── nginx.conf
│   │   │   │   │   │   ├── tmp
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── usr
│   │   │   │   │   │   └── share
│   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── html
│   │   │   │   │   │   └── README
│   │   │   │   │   └── no-dockerignore
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   ├── chart
│   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   │   └── values.yaml
│   │   │   │   │   └── rootfs
│   │   │   │   │   ├── etc
│   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── nginx.conf
│   │   │   │   │   ├── tmp
│   │   │   │   │   │   └── nginx
│   │   │   │   │   └── usr
│   │   │   │   │   └── share
│   │   │   │   │   └── nginx
│   │   │   │   │   └── html
│   │   │   │   │   └── README
│   │   │   │   ├── draftd
│   │   │   │   │   └── portforwarder
│   │   │   │   │   └── portforwarder.go
│   │   │   │   ├── kube
│   │   │   │   │   └── kube.go
│   │   │   │   ├── linguist
│   │   │   │   │   ├── linguist.go
│   │   │   │   │   ├── linguist_test.go
│   │   │   │   │   └── testdata
│   │   │   │   │   ├── app-documentation
│   │   │   │   │   │   ├── app.py
│   │   │   │   │   │   └── docs
│   │   │   │   │   │   └── index.html
│   │   │   │   │   ├── app-duck
│   │   │   │   │   │   └── main.duck
│   │   │   │   │   ├── app-emptydir
│   │   │   │   │   ├── app-generated
│   │   │   │   │   │   ├── man1
│   │   │   │   │   │   │   └── generated.html
│   │   │   │   │   │   └── src
│   │   │   │   │   │   └── app.py
│   │   │   │   │   ├── app-not-vendored
│   │   │   │   │   │   ├── app.py
│   │   │   │   │   │   └── vendor.html
│   │   │   │   │   ├── app-python
│   │   │   │   │   │   ├── app.py
│   │   │   │   │   │   └── requirements.txt
│   │   │   │   │   └── app-vendored
│   │   │   │   │   ├── app.py
│   │   │   │   │   └── vendor.html
│   │   │   │   ├── osutil
│   │   │   │   │   ├── osutil.go
│   │   │   │   │   └── osutil_test.go
│   │   │   │   ├── plugin
│   │   │   │   │   ├── builtins.go
│   │   │   │   │   ├── errors.go
│   │   │   │   │   ├── installer
│   │   │   │   │   │   ├── base.go
│   │   │   │   │   │   ├── installer.go
│   │   │   │   │   │   ├── local_installer.go
│   │   │   │   │   │   ├── local_installer_test.go
│   │   │   │   │   │   ├── vcs_installer.go
│   │   │   │   │   │   └── vcs_installer_test.go
│   │   │   │   │   └── testdata
│   │   │   │   │   └── plugdir
│   │   │   │   │   └── echo
│   │   │   │   │   └── plugin.yaml
│   │   │   │   ├── rpc
│   │   │   │   │   ├── Makefile
│   │   │   │   │   ├── client.go
│   │   │   │   │   ├── option.go
│   │   │   │   │   ├── rpc.go
│   │   │   │   │   ├── rpc.pb.go
│   │   │   │   │   ├── rpc.proto
│   │   │   │   │   └── server.go
│   │   │   │   ├── testing
│   │   │   │   │   └── helpers
│   │   │   │   │   └── helpers.go
│   │   │   │   └── version
│   │   │   │   ├── version.go
│   │   │   │   └── version_test.go
│   │   │   ├── scripts
│   │   │   │   ├── cover.sh
│   │   │   │   ├── docker-make.sh
│   │   │   │   ├── lint.sh
│   │   │   │   └── setup-apimachinery.sh
│   │   │   ├── tests
│   │   │   │   ├── e2e.sh
│   │   │   │   ├── testdata
│   │   │   │   │   ├── bad
│   │   │   │   │   │   ├── dockerfile-build-failure
│   │   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   │   └── chart
│   │   │   │   │   │   │   └── dockerfile-build-failure
│   │   │   │   │   │   │   └── Chart.yaml
│   │   │   │   │   │   ├── emptydir
│   │   │   │   │   │   ├── no-chart
│   │   │   │   │   │   │   └── Dockerfile
│   │   │   │   │   │   └── no-dockerfile
│   │   │   │   │   │   └── chart
│   │   │   │   │   │   └── no-dockerfile
│   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   │   └── service.yaml
│   │   │   │   │   │   └── values.yaml
│   │   │   │   │   ├── good
│   │   │   │   │   │   └── example-dockerfile-http
│   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   ├── chart
│   │   │   │   │   │   │   └── example-dockerfile-http
│   │   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   │   │   └── values.yaml
│   │   │   │   │   │   ├── draft.toml
│   │   │   │   │   │   └── rootfs
│   │   │   │   │   │   ├── bin
│   │   │   │   │   │   │   └── boot
│   │   │   │   │   │   ├── etc
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   │   └── nginx.conf
│   │   │   │   │   │   ├── tmp
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── usr
│   │   │   │   │   │   └── share
│   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── html
│   │   │   │   │   │   └── README
│   │   │   │   │   └── watch
│   │   │   │   │   ├── example-dockerfile-http
│   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   ├── chart
│   │   │   │   │   │   │   └── example-dockerfile-http
│   │   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   │   │   └── values.yaml
│   │   │   │   │   │   ├── rootfs
│   │   │   │   │   │   │   ├── etc
│   │   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   │   │   └── nginx.conf
│   │   │   │   │   │   │   ├── tmp
│   │   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   │   └── usr
│   │   │   │   │   │   │   └── share
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   │   └── html
│   │   │   │   │   │   │   └── README
│   │   │   │   │   │   └── scenarios.test
│   │   │   │   │   ├── example-dockerfile-http-with-modified-draftignore
│   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   ├── chart
│   │   │   │   │   │   │   └── example-dockerfile-http
│   │   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   │   │   └── values.yaml
│   │   │   │   │   │   ├── directory
│   │   │   │   │   │   ├── rootfs
│   │   │   │   │   │   │   ├── etc
│   │   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   │   │   └── nginx.conf
│   │   │   │   │   │   │   ├── tmp
│   │   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   │   └── usr
│   │   │   │   │   │   │   └── share
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   │   └── html
│   │   │   │   │   │   │   └── README
│   │   │   │   │   │   └── scenarios.test
│   │   │   │   │   └── example-dockerfile-http-without-draftignore
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   ├── chart
│   │   │   │   │   │   └── example-dockerfile-http
│   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   │   └── values.yaml
│   │   │   │   │   ├── rootfs
│   │   │   │   │   │   ├── etc
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   │   └── nginx.conf
│   │   │   │   │   │   ├── tmp
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── usr
│   │   │   │   │   │   └── share
│   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── html
│   │   │   │   │   │   └── README
│   │   │   │   │   └── scenarios.test
│   │   │   │   └── tools
│   │   │   └── versioning.mk
│   │   └── https-github.com-jenkins-x-draft-repo
│   │   ├── CHANGELOG.md
│   │   ├── Dockerfile
│   │   ├── GOVERNANCE.md
│   │   ├── LICENSE
│   │   ├── Makefile
│   │   ├── NOTICE
│   │   ├── OWNERS
│   │   ├── README.md
│   │   ├── charts
│   │   │   └── draftd
│   │   │   ├── Chart.yaml
│   │   │   ├── templates
│   │   │   │   ├── NOTES.txt
│   │   │   │   ├── _helpers.tpl
│   │   │   │   ├── deployment.yaml
│   │   │   │   └── service.yaml
│   │   │   └── values.yaml
│   │   ├── cmd
│   │   │   ├── draft
│   │   │   │   ├── connect.go
│   │   │   │   ├── create.go
│   │   │   │   ├── create_test.go
│   │   │   │   ├── delete.go
│   │   │   │   ├── delete_test.go
│   │   │   │   ├── draft.go
│   │   │   │   ├── ensure.go
│   │   │   │   ├── ensure_test.go
│   │   │   │   ├── home.go
│   │   │   │   ├── init.go
│   │   │   │   ├── init_test.go
│   │   │   │   ├── installer
│   │   │   │   │   ├── config
│   │   │   │   │   │   └── config.go
│   │   │   │   │   ├── install.go
│   │   │   │   │   ├── install_test.go
│   │   │   │   │   └── uninstall.go
│   │   │   │   ├── logs.go
│   │   │   │   ├── plugin.go
│   │   │   │   ├── plugin_install.go
│   │   │   │   ├── plugin_install_test.go
│   │   │   │   ├── plugin_list.go
│   │   │   │   ├── plugin_list_test.go
│   │   │   │   ├── plugin_remove.go
│   │   │   │   ├── plugin_remove_test.go
│   │   │   │   ├── plugin_test.go
│   │   │   │   ├── plugin_update.go
│   │   │   │   ├── plugin_update_test.go
│   │   │   │   ├── testdata
│   │   │   │   │   ├── create
│   │   │   │   │   │   ├── generated
│   │   │   │   │   │   │   ├── empty
│   │   │   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   │   │   ├── charts
│   │   │   │   │   │   │   │   │   └── go
│   │   │   │   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   │   │   │   ├── charts
│   │   │   │   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   │   │   │   │   │   └── service.yaml
│   │   │   │   │   │   │   │   │   └── values.yaml
│   │   │   │   │   │   │   │   └── draft.toml
│   │   │   │   │   │   │   ├── simple-go
│   │   │   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   │   │   ├── charts
│   │   │   │   │   │   │   │   │   └── go
│   │   │   │   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   │   │   │   ├── charts
│   │   │   │   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   │   │   │   │   │   └── service.yaml
│   │   │   │   │   │   │   │   │   └── values.yaml
│   │   │   │   │   │   │   │   ├── draft.toml
│   │   │   │   │   │   │   │   ├── glide.yaml
│   │   │   │   │   │   │   │   └── main.go
│   │   │   │   │   │   │   ├── simple-go-with-chart
│   │   │   │   │   │   │   │   ├── charts
│   │   │   │   │   │   │   │   │   └── something
│   │   │   │   │   │   │   │   ├── glide.yaml
│   │   │   │   │   │   │   │   └── main.go
│   │   │   │   │   │   │   └── simple-go-with-draftignore
│   │   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   │   ├── charts
│   │   │   │   │   │   │   │   └── go
│   │   │   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   │   │   ├── charts
│   │   │   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   │   │   │   │   └── service.yaml
│   │   │   │   │   │   │   │   └── values.yaml
│   │   │   │   │   │   │   ├── draft.toml
│   │   │   │   │   │   │   ├── glide.yaml
│   │   │   │   │   │   │   └── main.go
│   │   │   │   │   │   └── src
│   │   │   │   │   │   ├── empty
│   │   │   │   │   │   ├── simple-go
│   │   │   │   │   │   │   ├── glide.yaml
│   │   │   │   │   │   │   └── main.go
│   │   │   │   │   │   ├── simple-go-with-chart
│   │   │   │   │   │   │   ├── charts
│   │   │   │   │   │   │   │   └── something
│   │   │   │   │   │   │   ├── glide.yaml
│   │   │   │   │   │   │   └── main.go
│   │   │   │   │   │   └── simple-go-with-draftignore
│   │   │   │   │   │   ├── glide.yaml
│   │   │   │   │   │   └── main.go
│   │   │   │   │   ├── delete
│   │   │   │   │   │   └── src
│   │   │   │   │   │   └── simple-go-error
│   │   │   │   │   │   ├── glide.yaml
│   │   │   │   │   │   └── main.go
│   │   │   │   │   ├── drafthome
│   │   │   │   │   │   ├── packs
│   │   │   │   │   │   │   └── github.com
│   │   │   │   │   │   │   └── Azure
│   │   │   │   │   │   │   └── draft
│   │   │   │   │   │   │   └── packs
│   │   │   │   │   │   │   └── go
│   │   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   │   ├── NOTICE
│   │   │   │   │   │   │   └── charts
│   │   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   │   │   │   └── service.yaml
│   │   │   │   │   │   │   └── values.yaml
│   │   │   │   │   │   └── plugins
│   │   │   │   │   │   ├── args
│   │   │   │   │   │   │   ├── args.sh
│   │   │   │   │   │   │   └── plugin.yaml
│   │   │   │   │   │   ├── echo
│   │   │   │   │   │   │   └── plugin.yaml
│   │   │   │   │   │   ├── fullenv
│   │   │   │   │   │   │   ├── fullenv.sh
│   │   │   │   │   │   │   └── plugin.yaml
│   │   │   │   │   │   └── home
│   │   │   │   │   │   └── plugin.yaml
│   │   │   │   │   └── plugins
│   │   │   │   │   └── echo
│   │   │   │   │   └── plugin.yaml
│   │   │   │   ├── up.go
│   │   │   │   └── version.go
│   │   │   └── draftd
│   │   │   ├── draftd.go
│   │   │   ├── start.go
│   │   │   └── version.go
│   │   ├── docs
│   │   │   ├── contributing
│   │   │   │   ├── hacking.md
│   │   │   │   ├── minikube-dev.md
│   │   │   │   └── release-checklist.md
│   │   │   ├── draft_ssl.md
│   │   │   ├── getting-started.md
│   │   │   ├── img
│   │   │   │   ├── draft-logo.png
│   │   │   │   └── nothing.png
│   │   │   ├── ingress.md
│   │   │   ├── install-advanced.md
│   │   │   ├── install.md
│   │   │   ├── reference
│   │   │   │   ├── dep-001.md
│   │   │   │   ├── dep-002.md
│   │   │   │   ├── dep-003.md
│   │   │   │   ├── dep-004.md
│   │   │   │   ├── dep-005.md
│   │   │   │   ├── dep-006.md
│   │   │   │   └── index.md
│   │   │   └── troubleshooting.md
│   │   ├── draft.toml
│   │   ├── examples
│   │   │   ├── example-dotnet
│   │   │   │   ├── Program.cs
│   │   │   │   ├── README.txt
│   │   │   │   ├── Startup.cs
│   │   │   │   └── WebApplication.csproj
│   │   │   ├── example-go
│   │   │   │   ├── glide.yaml
│   │   │   │   └── main.go
│   │   │   ├── example-java
│   │   │   │   ├── pom.xml
│   │   │   │   └── src
│   │   │   │   └── main
│   │   │   │   └── java
│   │   │   │   └── helloworld
│   │   │   │   └── Hello.java
│   │   │   ├── example-nodejs
│   │   │   │   ├── index.js
│   │   │   │   └── package.json
│   │   │   ├── example-php
│   │   │   │   ├── composer.json
│   │   │   │   └── index.php
│   │   │   ├── example-python
│   │   │   │   ├── app.py
│   │   │   │   └── requirements.txt
│   │   │   ├── example-ruby
│   │   │   │   ├── Gemfile
│   │   │   │   ├── Gemfile.lock
│   │   │   │   └── app.rb
│   │   │   └── example-swift
│   │   │   ├── Package.pins
│   │   │   ├── Package.swift
│   │   │   └── Sources
│   │   │   └── main.swift
│   │   ├── glide.lock
│   │   ├── glide.yaml
│   │   ├── packs
│   │   │   ├── README.md
│   │   │   ├── csharp
│   │   │   │   ├── Dockerfile
│   │   │   │   ├── NOTICE
│   │   │   │   └── charts
│   │   │   │   ├── Chart.yaml
│   │   │   │   ├── templates
│   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   └── service.yaml
│   │   │   │   └── values.yaml
│   │   │   ├── go
│   │   │   │   ├── Dockerfile
│   │   │   │   ├── NOTICE
│   │   │   │   └── charts
│   │   │   │   ├── Chart.yaml
│   │   │   │   ├── templates
│   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   └── service.yaml
│   │   │   │   └── values.yaml
│   │   │   ├── gradle
│   │   │   │   ├── Dockerfile
│   │   │   │   ├── NOTICE
│   │   │   │   └── charts
│   │   │   │   ├── Chart.yaml
│   │   │   │   ├── templates
│   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   └── service.yaml
│   │   │   │   └── values.yaml
│   │   │   ├── java
│   │   │   │   ├── Dockerfile
│   │   │   │   ├── Dockerfile.jenkins
│   │   │   │   ├── NOTICE
│   │   │   │   └── charts
│   │   │   │   ├── Chart.yaml
│   │   │   │   ├── Makefile
│   │   │   │   ├── README.md
│   │   │   │   ├── templates
│   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   └── service.yaml
│   │   │   │   └── values.yaml
│   │   │   ├── javascript
│   │   │   │   ├── Dockerfile
│   │   │   │   ├── NOTICE
│   │   │   │   └── charts
│   │   │   │   ├── Chart.yaml
│   │   │   │   ├── templates
│   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   └── service.yaml
│   │   │   │   └── values.yaml
│   │   │   ├── php
│   │   │   │   ├── Dockerfile
│   │   │   │   ├── NOTICE
│   │   │   │   └── charts
│   │   │   │   ├── Chart.yaml
│   │   │   │   ├── templates
│   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   └── service.yaml
│   │   │   │   └── values.yaml
│   │   │   ├── python
│   │   │   │   ├── Dockerfile
│   │   │   │   ├── NOTICE
│   │   │   │   ├── charts
│   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   ├── templates
│   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   │   └── service.yaml
│   │   │   │   │   └── values.yaml
│   │   │   │   └── detect
│   │   │   ├── ruby
│   │   │   │   ├── Dockerfile
│   │   │   │   ├── NOTICE
│   │   │   │   └── charts
│   │   │   │   ├── Chart.yaml
│   │   │   │   ├── templates
│   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   ├── ingress.yaml
│   │   │   │   │   └── service.yaml
│   │   │   │   └── values.yaml
│   │   │   └── swift
│   │   │   ├── Dockerfile
│   │   │   └── chart
│   │   │   ├── Chart.yaml
│   │   │   ├── templates
│   │   │   │   ├── NOTES.txt
│   │   │   │   ├── _helpers.tpl
│   │   │   │   ├── deployment.yaml
│   │   │   │   ├── ingress.yaml
│   │   │   │   └── service.yaml
│   │   │   └── values.yaml
│   │   ├── pkg
│   │   │   ├── build
│   │   │   │   ├── build.go
│   │   │   │   ├── errors.go
│   │   │   │   └── watch.go
│   │   │   ├── cmdline
│   │   │   │   ├── cmdline.go
│   │   │   │   └── option.go
│   │   │   ├── draft
│   │   │   │   ├── client.go
│   │   │   │   ├── context.go
│   │   │   │   ├── context_test.go
│   │   │   │   ├── draftpath
│   │   │   │   │   ├── home.go
│   │   │   │   │   ├── home_unix_test.go
│   │   │   │   │   └── home_windows_test.go
│   │   │   │   ├── local
│   │   │   │   │   ├── local.go
│   │   │   │   │   └── local_test.go
│   │   │   │   ├── manifest
│   │   │   │   │   ├── manifest.go
│   │   │   │   │   └── manifest_test.go
│   │   │   │   ├── pack
│   │   │   │   │   ├── create.go
│   │   │   │   │   ├── create_test.go
│   │   │   │   │   ├── errors.go
│   │   │   │   │   ├── load.go
│   │   │   │   │   ├── load_test.go
│   │   │   │   │   ├── pack.go
│   │   │   │   │   ├── pack_test.go
│   │   │   │   │   ├── repo
│   │   │   │   │   │   ├── builtins.go
│   │   │   │   │   │   ├── builtins_test.go
│   │   │   │   │   │   ├── errors.go
│   │   │   │   │   │   ├── installer
│   │   │   │   │   │   │   ├── installer.go
│   │   │   │   │   │   │   ├── local_installer.go
│   │   │   │   │   │   │   ├── local_installer_test.go
│   │   │   │   │   │   │   ├── testdata
│   │   │   │   │   │   │   │   └── packdir
│   │   │   │   │   │   │   │   └── defaultpacks
│   │   │   │   │   │   │   │   ├── README.md
│   │   │   │   │   │   │   │   └── packs
│   │   │   │   │   │   │   │   └── python
│   │   │   │   │   │   │   ├── vcs_installer.go
│   │   │   │   │   │   │   └── vcs_installer_test.go
│   │   │   │   │   │   └── repo.go
│   │   │   │   │   └── testdata
│   │   │   │   │   └── pack-python
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   └── charts
│   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   ├── templates
│   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   └── service.yaml
│   │   │   │   │   └── values.yaml
│   │   │   │   ├── registry.go
│   │   │   │   ├── server.go
│   │   │   │   └── testdata
│   │   │   │   ├── app
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   ├── chart
│   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   │   └── values.yaml
│   │   │   │   │   └── draft.toml
│   │   │   │   ├── good
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   ├── chart
│   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   │   └── values.yaml
│   │   │   │   │   └── rootfs
│   │   │   │   │   ├── etc
│   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── nginx.conf
│   │   │   │   │   ├── tmp
│   │   │   │   │   │   └── nginx
│   │   │   │   │   └── usr
│   │   │   │   │   └── share
│   │   │   │   │   └── nginx
│   │   │   │   │   └── html
│   │   │   │   │   └── README
│   │   │   │   ├── has-dockerignore
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   ├── chart
│   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   │   └── values.yaml
│   │   │   │   │   └── rootfs
│   │   │   │   │   ├── etc
│   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── nginx.conf
│   │   │   │   │   ├── tmp
│   │   │   │   │   │   └── nginx
│   │   │   │   │   └── usr
│   │   │   │   │   └── share
│   │   │   │   │   └── nginx
│   │   │   │   │   └── html
│   │   │   │   │   └── README
│   │   │   │   ├── no-chart
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   └── rootfs
│   │   │   │   │   ├── etc
│   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── nginx.conf
│   │   │   │   │   ├── tmp
│   │   │   │   │   │   └── nginx
│   │   │   │   │   └── usr
│   │   │   │   │   └── share
│   │   │   │   │   └── nginx
│   │   │   │   │   └── html
│   │   │   │   │   └── README
│   │   │   │   ├── no-dockerfile
│   │   │   │   │   ├── chart
│   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   │   └── values.yaml
│   │   │   │   │   └── rootfs
│   │   │   │   │   ├── etc
│   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── nginx.conf
│   │   │   │   │   ├── tmp
│   │   │   │   │   │   └── nginx
│   │   │   │   │   └── usr
│   │   │   │   │   └── share
│   │   │   │   │   └── nginx
│   │   │   │   │   └── html
│   │   │   │   │   └── README
│   │   │   │   └── no-dockerignore
│   │   │   │   ├── Dockerfile
│   │   │   │   ├── chart
│   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   ├── templates
│   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   └── values.yaml
│   │   │   │   └── rootfs
│   │   │   │   ├── etc
│   │   │   │   │   └── nginx
│   │   │   │   │   └── nginx.conf
│   │   │   │   ├── tmp
│   │   │   │   │   └── nginx
│   │   │   │   └── usr
│   │   │   │   └── share
│   │   │   │   └── nginx
│   │   │   │   └── html
│   │   │   │   └── README
│   │   │   ├── draftd
│   │   │   │   └── portforwarder
│   │   │   │   └── portforwarder.go
│   │   │   ├── kube
│   │   │   │   └── kube.go
│   │   │   ├── linguist
│   │   │   │   ├── linguist.go
│   │   │   │   ├── linguist_test.go
│   │   │   │   └── testdata
│   │   │   │   ├── app-documentation
│   │   │   │   │   ├── app.py
│   │   │   │   │   └── docs
│   │   │   │   │   └── index.html
│   │   │   │   ├── app-duck
│   │   │   │   │   └── main.duck
│   │   │   │   ├── app-emptydir
│   │   │   │   ├── app-generated
│   │   │   │   │   ├── man1
│   │   │   │   │   │   └── generated.html
│   │   │   │   │   └── src
│   │   │   │   │   └── app.py
│   │   │   │   ├── app-not-vendored
│   │   │   │   │   ├── app.py
│   │   │   │   │   └── vendor.html
│   │   │   │   ├── app-python
│   │   │   │   │   ├── app.py
│   │   │   │   │   └── requirements.txt
│   │   │   │   └── app-vendored
│   │   │   │   ├── app.py
│   │   │   │   └── vendor.html
│   │   │   ├── osutil
│   │   │   │   ├── osutil.go
│   │   │   │   └── osutil_test.go
│   │   │   ├── plugin
│   │   │   │   ├── builtins.go
│   │   │   │   ├── errors.go
│   │   │   │   ├── installer
│   │   │   │   │   ├── base.go
│   │   │   │   │   ├── installer.go
│   │   │   │   │   ├── local_installer.go
│   │   │   │   │   ├── local_installer_test.go
│   │   │   │   │   ├── vcs_installer.go
│   │   │   │   │   └── vcs_installer_test.go
│   │   │   │   └── testdata
│   │   │   │   └── plugdir
│   │   │   │   └── echo
│   │   │   │   └── plugin.yaml
│   │   │   ├── rpc
│   │   │   │   ├── Makefile
│   │   │   │   ├── client.go
│   │   │   │   ├── option.go
│   │   │   │   ├── rpc.go
│   │   │   │   ├── rpc.pb.go
│   │   │   │   ├── rpc.proto
│   │   │   │   └── server.go
│   │   │   ├── testing
│   │   │   │   └── helpers
│   │   │   │   └── helpers.go
│   │   │   └── version
│   │   │   ├── version.go
│   │   │   └── version_test.go
│   │   ├── scripts
│   │   │   ├── cover.sh
│   │   │   ├── docker-make.sh
│   │   │   ├── lint.sh
│   │   │   └── setup-apimachinery.sh
│   │   ├── tests
│   │   │   ├── e2e.sh
│   │   │   ├── testdata
│   │   │   │   ├── bad
│   │   │   │   │   ├── dockerfile-build-failure
│   │   │   │   │   │   ├── Dockerfile
│   │   │   │   │   │   └── chart
│   │   │   │   │   │   └── dockerfile-build-failure
│   │   │   │   │   │   └── Chart.yaml
│   │   │   │   │   ├── emptydir
│   │   │   │   │   ├── no-chart
│   │   │   │   │   │   └── Dockerfile
│   │   │   │   │   └── no-dockerfile
│   │   │   │   │   └── chart
│   │   │   │   │   └── no-dockerfile
│   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   ├── templates
│   │   │   │   │   │   ├── NOTES.txt
│   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   ├── deployment.yaml
│   │   │   │   │   │   └── service.yaml
│   │   │   │   │   └── values.yaml
│   │   │   │   ├── good
│   │   │   │   │   └── example-dockerfile-http
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   ├── chart
│   │   │   │   │   │   └── example-dockerfile-http
│   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   │   └── values.yaml
│   │   │   │   │   ├── draft.toml
│   │   │   │   │   └── rootfs
│   │   │   │   │   ├── bin
│   │   │   │   │   │   └── boot
│   │   │   │   │   ├── etc
│   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── nginx.conf
│   │   │   │   │   ├── tmp
│   │   │   │   │   │   └── nginx
│   │   │   │   │   └── usr
│   │   │   │   │   └── share
│   │   │   │   │   └── nginx
│   │   │   │   │   └── html
│   │   │   │   │   └── README
│   │   │   │   └── watch
│   │   │   │   ├── example-dockerfile-http
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   ├── chart
│   │   │   │   │   │   └── example-dockerfile-http
│   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   │   └── values.yaml
│   │   │   │   │   ├── rootfs
│   │   │   │   │   │   ├── etc
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   │   └── nginx.conf
│   │   │   │   │   │   ├── tmp
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── usr
│   │   │   │   │   │   └── share
│   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── html
│   │   │   │   │   │   └── README
│   │   │   │   │   └── scenarios.test
│   │   │   │   ├── example-dockerfile-http-with-modified-draftignore
│   │   │   │   │   ├── Dockerfile
│   │   │   │   │   ├── chart
│   │   │   │   │   │   └── example-dockerfile-http
│   │   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   │   ├── templates
│   │   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   │   └── values.yaml
│   │   │   │   │   ├── directory
│   │   │   │   │   ├── rootfs
│   │   │   │   │   │   ├── etc
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   │   └── nginx.conf
│   │   │   │   │   │   ├── tmp
│   │   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── usr
│   │   │   │   │   │   └── share
│   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── html
│   │   │   │   │   │   └── README
│   │   │   │   │   └── scenarios.test
│   │   │   │   └── example-dockerfile-http-without-draftignore
│   │   │   │   ├── Dockerfile
│   │   │   │   ├── chart
│   │   │   │   │   └── example-dockerfile-http
│   │   │   │   │   ├── Chart.yaml
│   │   │   │   │   ├── templates
│   │   │   │   │   │   ├── _helpers.tpl
│   │   │   │   │   │   └── deployment.yaml
│   │   │   │   │   └── values.yaml
│   │   │   │   ├── rootfs
│   │   │   │   │   ├── etc
│   │   │   │   │   │   └── nginx
│   │   │   │   │   │   └── nginx.conf
│   │   │   │   │   ├── tmp
│   │   │   │   │   │   └── nginx
│   │   │   │   │   └── usr
│   │   │   │   │   └── share
│   │   │   │   │   └── nginx
│   │   │   │   │   └── html
│   │   │   │   │   └── README
│   │   │   │   └── scenarios.test
│   │   │   └── tools
│   │   └── versioning.mk
│   └── plugins
│   └── https-github.com-Azure-draft-pack-repo
│   ├── LICENSE
│   ├── Makefile
│   ├── README.md
│   ├── bin
│   │   └── pack-repo
│   ├── cmd
│   │   └── pack-repo
│   │   ├── add.go
│   │   ├── list.go
│   │   ├── pack-repo.go
│   │   ├── remove.go
│   │   ├── update.go
│   │   └── version.go
│   ├── glide.lock
│   ├── glide.yaml
│   ├── plugin.yaml
│   ├── repo
│   │   ├── installer
│   │   │   ├── installer.go
│   │   │   ├── local_installer.go
│   │   │   ├── local_installer_test.go
│   │   │   ├── testdata
│   │   │   │   └── packdir
│   │   │   │   └── defaultpacks
│   │   │   │   ├── README.md
│   │   │   │   └── packs
│   │   │   │   └── python
│   │   │   ├── vcs_installer.go
│   │   │   └── vcs_installer_test.go
│   │   └── repo.go
│   ├── scripts
│   │   ├── cover.sh
│   │   ├── get.sh
│   │   └── lint.sh
│   ├── version
│   │   ├── version.go
│   │   └── version_test.go
│   └── versioning.mk
├── packs
│   └── github.com
│   └── Azure
│   └── draft -> /Users/cyrilleleclerc/.draft/cache/packs/https-github.com-Azure-draft
└── plugins
└── draft-pack-repo -> /Users/cyrilleleclerc/.draft/cache/plugins/https-github.com-Azure-draft-pack-repo
572 directories, 802 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment