You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by tu...@apache.org on 2020/03/22 19:54:14 UTC

[airflow-on-k8s-operator] branch master updated: Add kustomize as development prerequisite (#27)

This is an automated email from the ASF dual-hosted git repository.

turbaszek pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airflow-on-k8s-operator.git


The following commit(s) were added to refs/heads/master by this push:
     new 70d2250  Add kustomize as development prerequisite (#27)
70d2250 is described below

commit 70d22506e8c2aca6b2387b33f896fc4d46cc7528
Author: Tomek Urbaszek <tu...@gmail.com>
AuthorDate: Sun Mar 22 20:54:07 2020 +0100

    Add kustomize as development prerequisite (#27)
---
 docs/development.md | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/docs/development.md b/docs/development.md
index b4288f6..b1a5e85 100644
--- a/docs/development.md
+++ b/docs/development.md
@@ -27,7 +27,7 @@ $ cd $GOPATH/src/apache
 $ git clone git@github.com:apache/airflow-on-k8s-operator.git
 ```
 
-## Install kubebuilder
+## Install prerequisites
 You have to install the [kubebuilder](https://book.kubebuilder.io/quick-start.html):
 ```shell script
 os=$(go env GOOS)
@@ -42,6 +42,12 @@ sudo mv /tmp/kubebuilder_2.3.0_${os}_${arch} /usr/local/kubebuilder
 export PATH=$PATH:/usr/local/kubebuilder/bin
 ```
 
+Also the [kustomize](https://github.com/kubernetes-sigs/kustomize) is required. On MacOS:
+```shell script
+brew install kustomize
+```
+For other installation options check https://github.com/kubernetes-sigs/kustomize/blob/master/docs/INSTALL.md
+
 
 ## Building and running locally:
 ```bash