Skip to content

Commit

Permalink
Fix #3014
Browse files Browse the repository at this point in the history
  • Loading branch information
scali committed Jun 19, 2023
1 parent 06f8b05 commit e0c920a
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 6 deletions.
18 changes: 13 additions & 5 deletions helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
helm install <release_name> hop
```

`<release_name>` has to be the same given in the secret above
2 changes: 1 addition & 1 deletion helm/hop/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
44 changes: 44 additions & 0 deletions helm/hop/README.md
Original file line number Diff line number Diff line change
@@ -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).

0 comments on commit e0c920a

Please sign in to comment.