You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2023/06/20 05:29:15 UTC

[hop] branch master updated: Fix #3014

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

hansva pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/master by this push:
     new e0c920aa8f Fix #3014
     new 37d734f418 Merge pull request #3015 from scali/master
e0c920aa8f is described below

commit e0c920aa8ff4d8417eb2b01916ca9118f2cb5c09
Author: Marc LHERBETTE <ml...@biotope.fr>
AuthorDate: Mon Jun 19 15:52:27 2023 +0200

    Fix #3014
---
 helm/README.md      | 18 +++++++++++++-----
 helm/hop/Chart.yaml |  2 +-
 helm/hop/README.md  | 44 ++++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 58 insertions(+), 6 deletions(-)

diff --git a/helm/README.md b/helm/README.md
index c3ea15da4c..ee1c45d383 100644
--- a/helm/README.md
+++ b/helm/README.md
@@ -69,14 +69,22 @@ web.fullnameOverride | No | Override full resource name
 
 ## How to run Hop via helm on kubernetes
 
-Create a secret for the hop server
+### Prequest
+
+Create a secret to store hop server credentials (give `<release_name>` a value of your choice)
 
 ```bash
-kubectl create secret generic <release name>-server --from-literal=pass=admin
+kubectl create secret generic <release_name>-server --from-literal=pass=<admin_password>
 ```
 
-install the helm hop-server chart:
+`<admin_password>` will be used to authenticate to `hop-server` with admin account
+
+### Install
+
+Install the helm hop-server chart :
 
 ```bash
-helm install  <release name> hop
-```
\ No newline at end of file
+helm install <release_name> hop
+```
+
+`<release_name>` has to be the same given in the secret above
\ No newline at end of file
diff --git a/helm/hop/Chart.yaml b/helm/hop/Chart.yaml
index 008a6fedb2..7ff75ecd87 100644
--- a/helm/hop/Chart.yaml
+++ b/helm/hop/Chart.yaml
@@ -38,4 +38,4 @@ version: 0.1.0
 # incremented each time you make changes to the application. Versions are not expected to
 # follow Semantic Versioning. They should reflect the version the application is using.
 # It is recommended to use it with quotes.
-appVersion: "1.2.0"
+appVersion: "2.5.0"
diff --git a/helm/hop/README.md b/helm/hop/README.md
new file mode 100644
index 0000000000..8a5954d438
--- /dev/null
+++ b/helm/hop/README.md
@@ -0,0 +1,44 @@
+<!--
+ Licensed to the Apache Software Foundation (ASF) under one
+ or more contributor license agreements.  See the NOTICE file
+ distributed with this work for additional information
+ regarding copyright ownership.  The ASF licenses this file
+ to you under the Apache License, Version 2.0 (the
+ "License"); you may not use this file except in compliance
+ with the License.  You may obtain a copy of the License at
+
+   http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing,
+ software distributed under the License is distributed on an
+ "AS IS" BASIS, 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 Chart for Apache Hop
+
+[Apache Hop](https://hop.apache.org/) aims to facilitate all aspects of data and metadata orchestration.
+
+## Introduction
+
+This chart will bootstrap a [Hop](https://hop.apache.org) deployment on a [Kubernetes](http://kubernetes.io)
+cluster using the [Helm](https://helm.sh) package manager.
+
+## Requirements
+
+- Kubernetes 1.23+ cluster
+- Helm 3.0+
+
+## Features
+
+_Work in progress_
+
+## Documentation
+
+_Work in progress_
+
+## Contributing
+
+Want to help build Apache Hop ? Check out our [contributing documentation](https://github.com/apache/hop/blob/master/CONTRIBUTING.md).
\ No newline at end of file