Skip to content

Commit

Permalink
made Kubify 10x faster
Browse files Browse the repository at this point in the history
  • Loading branch information
willyguggenheim committed Apr 30, 2021
1 parent b12b5ed commit 56fc6f1
Show file tree
Hide file tree
Showing 5 changed files with 244 additions and 68 deletions.
4 changes: 4 additions & 0 deletions DEBUG.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ kubify up

____________________________________________________________________________________________

# Ansible on Mac stuck at "Add local.kubify.local resolver port"
remove your dnsmasq kubify file and then `kubify up`
why: some Ansible issue, will fix it with a check

# Ansible script fails on brew install during Kubify Up

Manually install the offending packages (this seems to work):
Expand Down
3 changes: 3 additions & 0 deletions TODO.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
#feature #1: APM with ISTIO
#feature #2: Auto-Configure IDE Debugger on "kubify debug"
#more features that come to mind:
- (similar to Ubuntu/Debian Kind implementation): change Mac to also use Kind (instead of the docker desktop K8s)
- after much performance testing I found that docker desktop is a lot slower than Kind (and uses more CPU than Kind, so important)
- M1 compatibility
- permissions between services automated in kubify.yaml
- automate kafka
- automate localstack
Expand Down
7 changes: 6 additions & 1 deletion kubify
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
#!/usr/bin/env bash

export PATH=$PATH:$(pwd)/tools/kubify/cli
# this way you can run this shortcut from any folder :)
MY_PATH="`dirname \"$0\"`"
# echo "$MY_PATH"


export PATH=$PATH:$MY_PATH/tools/kubify/cli

kubify $@
Loading

0 comments on commit 56fc6f1

Please sign in to comment.