Skip to content

Commit

Permalink
Showing 3 changed files with 17 additions and 19 deletions.
4 changes: 2 additions & 2 deletions charts/iot/Chart.yaml
Original file line number Diff line number Diff line change
@@ -15,12 +15,12 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.1
version: 0.1.2

# This is the version number of the application being deployed. This version number should be
# 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.
appVersion: "v1.1.8"
appVersion: "v1.4.1"

icon: https://avatars.githubusercontent.com/u/60230259?s=200&v=4

18 changes: 5 additions & 13 deletions charts/iot/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
# eco-iot


![Version: 0.1.1](https://img.shields.io/badge/Version-0.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.1.8](https://img.shields.io/badge/AppVersion-v1.1.8-informational?style=flat-square)
![Version: 0.1.2](https://img.shields.io/badge/Version-0.1.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: v1.4.1](https://img.shields.io/badge/AppVersion-v1.4.1-informational?style=flat-square)

A Helm chart for Pharma Ledger e-Consent and I0T applications

@@ -20,8 +19,6 @@ A Helm chart for Pharma Ledger e-Consent and I0T applications
- [Here](./README.md#values) is a full list of all configuration values.
- The [values.yaml file](./values.yaml) shows the raw view of all configuration values.



## Helm Lifecycle and Kubernetes Resources Lifetime

This helm chart uses Helm [hooks](https://helm.sh/docs/topics/charts_hooks/) in order to install, upgrade and manage the application and its resources.
@@ -63,7 +60,6 @@ The Init Job is required to run the build process and to store the SeedsBackup i
- It is only necessary to run/deploy the Init Job on installation and on subsequent software changes (=helm upgrade in combination with use of a different image than before).
- Therefore the Init Job will only be deployed on installation and on helm upgrades if the image has changed.


### Init Job Details

The pod consists an init containers and a main container.
@@ -126,7 +122,7 @@ It is recommended to put non-sensitive configuration values in an configuration
2. Install via helm to namespace `default`
```bash
helm upgrade my-release-name pharmaledger-imi/iot --version=0.1.1 \
helm upgrade my-release-name pharmaledger-imi/iot --version=0.1.2 \
--install \
--values my-config.yaml \
```
@@ -226,7 +222,7 @@ Run `helm upgrade --helm` for full list of options.
You can install into other namespace than `default` by setting the `--namespace` parameter, e.g.

```bash
helm upgrade my-release-name pharmaledger-imi/iot --version=0.1.1 \
helm upgrade my-release-name pharmaledger-imi/iot --version=0.1.2 \
--install \
--namespace=my-namespace \
--values my-config.yaml \
@@ -237,7 +233,7 @@ Run `helm upgrade --helm` for full list of options.
Provide the `--wait` argument and time to wait (default is 5 minutes) via `--timeout`

```bash
helm upgrade my-release-name pharmaledger-imi/iot --version=0.1.1 \
helm upgrade my-release-name pharmaledger-imi/iot --version=0.1.2 \
--install \
--wait --timeout=600s \
--values my-config.yaml \
@@ -261,15 +257,12 @@ Run `helm upgrade --helm` for full list of options.
[helm-unittest](https://github.com/quintush/helm-unittest) is being used for testing the output of the helm chart.
Tests can be found in [tests](./tests)


## Maintainers

| Name | Email | Url |
| ---- | ------ | --- |
| tgip-work | | <https://github.com/tgip-work> |



## Values

*Note:* Please scroll horizontally to show more columns (e.g. description)!
@@ -332,6 +325,5 @@ Tests can be found in [tests](./tests)
| serviceAccount.name | string | `""` | The name of the service account to use. If not set and create is true, a name is generated using the fullname template |
| tolerations | list | `[]` | Tolerations for scheduling a pod. See [https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/](https://kubernetes.io/docs/concepts/scheduling-eviction/taint-and-toleration/) |


----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.11.0](https://github.com/norwoodj/helm-docs/releases/v1.11.0)
Autogenerated from chart metadata using [helm-docs v1.10.0](https://github.com/norwoodj/helm-docs/releases/v1.10.0)
14 changes: 10 additions & 4 deletions charts/iot/templates/_configmap-domains.tpl
Original file line number Diff line number Diff line change
@@ -21,9 +21,12 @@ data:
{{ required "config.domain must be set" .Values.config.domain }}.json: |-
{
"anchoring": {
"type": "OBA",
"type": "FS",
"option": {
"endpoint": {{ required "config.ethadapterUrl must be set" .Values.config.ethadapterUrl | quote }}
"enableBricksLedger": false
},
"commands": {
"addAnchor": "anchor"
}
},
"skipOAuth": [
@@ -36,9 +39,12 @@ data:
{{ required "config.subDomain must be set" .Values.config.subDomain }}.json: |-
{
"anchoring": {
"type": "OBA",
"type": "FS",
"option": {
"endpoint": {{ required "config.ethadapterUrl must be set" .Values.config.ethadapterUrl | quote }}
"enableBricksLedger": false
},
"commands": {
"addAnchor": "anchor"
}
},
"skipOAuth": [

0 comments on commit 8dcc835

Please sign in to comment.