Skip to content

Commit

Permalink
[topology-discovery] Release for version 7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jozef Volak committed Oct 2, 2024
1 parent c3318be commit 3dc0a24
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 16 deletions.
8 changes: 4 additions & 4 deletions charts/topology-discovery/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ name: topology-discovery
description: A Helm chart for Kubernetes deployment of the Topology Discovery
icon: https://avatars.githubusercontent.com/u/23452093?s=200&v=4
type: application
version: 3.1.1
appVersion: "6.2.5"
version: 4.0.0
appVersion: "7.0.3"
maintainers:
- name: FRINX
annotations:
artifacthub.io/changes: |
- kind: changed
description: curls are performed using custom utilities image
description: Compatible with 7.0.0 release. Environment variable changes
links:
- name: GitHub PR
url: https://github.com/FRINXio/helm-charts/pull/413
url: https://github.com/FRINXio/helm-charts/pull/428
6 changes: 2 additions & 4 deletions charts/topology-discovery/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A Helm chart for Kubernetes deployment of the Topology Discovery

![Version: 3.1.1](https://img.shields.io/badge/Version-3.1.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.2.5](https://img.shields.io/badge/AppVersion-6.2.5-informational?style=flat-square)
![Version: 4.0.0](https://img.shields.io/badge/Version-4.0.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 7.0.3](https://img.shields.io/badge/AppVersion-7.0.3-informational?style=flat-square)

## Get Repo Info

Expand Down Expand Up @@ -40,7 +40,7 @@ helm uninstall [RELEASE_NAME]
| dbPersistence.ARANGO_USERNAME | string | `"root"` | Database credentials. Exposed when existing dbPersistence.existingSecret.secretName is empty |
| dbPersistence.existingSecret | object | `{"arangoRootPasswordKey":null,"arangoUsernameKey":null,"secretName":null}` | Existing database credentials |
| deployment.annotations | object | `{}` | Deployment annotations |
| env | object | `{"ADMIN":"admin","BGPLS_ENABLED":false,"BGPLS_LOCAL_AS":100,"BGPLS_NEIGHBOR_IP":"192.168.99.100","BGPLS_NETWORK":"172.18.0.0/16","BGPLS_PEER_AS":100,"BGPLS_ROUTER_ID":"192.168.99.1","CONDUCTOR_URL":"http://conductor-server:8080","EDITOR":"editor","IMPORT_ARANGO_DEMO_DATA":false,"IMPORT_DEVICE_INVENTORY_DATA":false,"TD_KAFKA__API_VERSION":"[\"0\", \"11\", \"5\"]","TD_KAFKA__BOOTSTRAP_SERVERS":"[\"kafka:9092\"]","TD_KAFKA__TOPICS__DEVICE_EVENTS_TOPIC":"device-events","TD_KAFKA__TOPICS__DEVICE_INVENTORY_TOPIC":"device-inventory","UC_URL_BASE":"http://uniconfig:8181/rests/","VIEWER":"viewer","X_TENANT_ID":"frinx"}` | Application environment variables |
| env | object | `{"ADMIN":"admin","CONDUCTOR_URL":"http://conductor-server:8080","EDITOR":"editor","IMPORT_ARANGO_DEMO_DATA":false,"IMPORT_DEVICE_INVENTORY_DATA":false,"TD_BGPLS__ENABLED":false,"TD_BGPLS__LOCAL_AS":100,"TD_BGPLS__NEIGHBOR_IP":"192.168.99.100","TD_BGPLS__NETWORK":"172.18.0.0/16","TD_BGPLS__PEER_AS":100,"TD_BGPLS__ROUTER_ID":"192.168.99.1","TD_KAFKA__API_VERSION":"[\"0\", \"11\", \"5\"]","TD_KAFKA__BOOTSTRAP_SERVERS":"[\"kafka:9092\"]","TD_KAFKA__TOPICS__DEVICE_INVENTORY_TOPIC":"device-inventory","TD_SYNC__APPEND_PROTOCOL_TO_DEVICE_NAMES":true,"TD_UNICONFIG__URL_BASE":"http://uniconfig:8181/rests/","VIEWER":"viewer","X_TENANT_ID":"frinx"}` | Application environment variables |
| fullnameOverride | string | `""` | String to partially override app name |
| image.pullPolicy | string | `"IfNotPresent"` | Image pull policy |
| image.repository | string | `"frinx/topology-discovery"` | topology-discovery image repository |
Expand Down Expand Up @@ -71,5 +71,3 @@ helm uninstall [RELEASE_NAME]
| utilitiesImage.repository | string | `"frinx/utilities-alpine"` | utilities image repository |
| utilitiesImage.tag | string | `"1.2"` | Overrides the image tag. |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)
16 changes: 8 additions & 8 deletions charts/topology-discovery/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,21 +135,21 @@ dbPersistence:
# -- Application environment variables
env:
CONDUCTOR_URL: 'http://conductor-server:8080'
UC_URL_BASE: http://uniconfig:8181/rests/
BGPLS_ENABLED: false
BGPLS_NETWORK: 172.18.0.0/16
BGPLS_ROUTER_ID: 192.168.99.1
BGPLS_NEIGHBOR_IP: 192.168.99.100
BGPLS_LOCAL_AS: 100
BGPLS_PEER_AS: 100
TD_UNICONFIG__URL_BASE: http://uniconfig:8181/rests/
TD_BGPLS__ENABLED: false
TD_BGPLS__NETWORK: 172.18.0.0/16
TD_BGPLS__ROUTER_ID: 192.168.99.1
TD_BGPLS__NEIGHBOR_IP: 192.168.99.100
TD_BGPLS__LOCAL_AS: 100
TD_BGPLS__PEER_AS: 100
TD_SYNC__APPEND_PROTOCOL_TO_DEVICE_NAMES: true
ADMIN: admin
EDITOR: editor
VIEWER: viewer
IMPORT_ARANGO_DEMO_DATA: false
IMPORT_DEVICE_INVENTORY_DATA: false
X_TENANT_ID: "frinx"
TD_KAFKA__TOPICS__DEVICE_INVENTORY_TOPIC: device-inventory
TD_KAFKA__TOPICS__DEVICE_EVENTS_TOPIC: device-events
TD_KAFKA__BOOTSTRAP_SERVERS: '["kafka:9092"]'
TD_KAFKA__API_VERSION: '["0", "11", "5"]'

Expand Down

0 comments on commit 3dc0a24

Please sign in to comment.