diff options
author | Jakub Latusek <j.latusek@samsung.com> | 2020-10-15 15:02:47 +0200 |
---|---|---|
committer | Jakub Latusek <j.latusek@samsung.com> | 2020-10-16 12:56:40 +0200 |
commit | db52a6ddbb5e1f459d59051de6e54279fd095f06 (patch) | |
tree | 32d30061231aae807a862859367a7766cd2fd10f /kubernetes/contrib/components/awx | |
parent | 81b210eaf47b55e40f8cb9ac10ff3d58ce01f8c2 (diff) |
Update makefiles to use specific helm version
Helm is now called by HELM_BIN variable which by default is set to helm
and makefiles use helm from path. HELM_BIN can be overwritten so user
can have two version of helm in system and choose which one to use.
Signed-off-by: Jakub Latusek <j.latusek@samsung.com>
Issue-ID: OOM-2562
Change-Id: I0917796aafe234e87afa0ac3c4c15720296276d5
Diffstat (limited to 'kubernetes/contrib/components/awx')
-rw-r--r-- | kubernetes/contrib/components/awx/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kubernetes/contrib/components/awx/Makefile b/kubernetes/contrib/components/awx/Makefile index d8a50339d6..cb88b57fc9 100644 --- a/kubernetes/contrib/components/awx/Makefile +++ b/kubernetes/contrib/components/awx/Makefile @@ -11,6 +11,7 @@ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. +HELM_BIN := helm make-awx: - cd charts && helm dep up awx-postgres + cd charts && $(HELM_BIN) dep up awx-postgres |