Commit ae156811 authored by Jorge Moratinos's avatar Jorge Moratinos
Browse files

Merge branch...

Merge branch 'OCF69-setup-installation-scripts-in-order-to-simplify-deployment-in-new-environments' into 'staging'

Resolve "Setup installation Scripts in order to simplify deployment in new environments"

Closes #69

See merge request !59
parents 221d7369 7fe610a5
Loading
Loading
Loading
Loading
Loading

helm/DELETE.txt

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
delete me

helm/helmfile-capif.yaml

deleted100644 → 0
+0 −19
Original line number Diff line number Diff line
# helm upgrade --install -n mon monitoring-capif capif/ --set nginx.nginx.env.capifHostname=mon-capif.monitoring.int \
# --set ingress_ip.oneke="10.17.173.127" --set env=oneke --atomic
helmDefaults:
  createNamespace: true
  timeout: 600
releases:
  - name: monitoring-capif
    chart: ./capif/
    namespace: monitoring
#    atomic: true
    wait: true
    values:
      - ./capif/values.yaml
      - nginx:
          nginx:
            env:
              capifHostname: monitoring-capif.monitoring.int
      - ingress:
          ip: "10.17.173.127"
 No newline at end of file
+21 −0
Original line number Diff line number Diff line
apiVersion: v2
name: Helm monitoring stack
description: A Helm chart for Kubernetes monitoring stack
type: application
version: 1.0.0
appVersion: "1.0.0"

dependencies:
  - name: grafana
    version: "*"
    condition: grafana.enabled
  - name: prometheus
    version: "*"
    condition: prometheus.enabled
  - name: skooner
    version: "*"
    condition: skooner.enabled
  - name: metrics-server
    repository: 'https://charts.bitnami.com/bitnami'
    version: 6.9.3
    condition: metrics-server.enabled
 No newline at end of file
+43 −0
Original line number Diff line number Diff line
# Helm monitoring stack

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

A Helm chart for Kubernetes monitoring stack

## Requirements

```
$ helm dependency build helm-monitoring-stack/
$ helm upgrade --install -n monitoring monitoring helm-monitoring-stack/ --create-namespace
```


| Repository | Name | Version |
|------------|------|---------|
|  | grafana |  |
|  | prometheus |  |
|  | skooner |  |
| https://charts.bitnami.com/bitnami | metrics-server | 6.9.3 |

## Values

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| grafana.hosts[0].host | string | `"grafana-dt.tactile5g.int"` |  |
| grafana.hosts[0].paths[0].path | string | `"/"` |  |
| grafana.hosts[0].paths[0].pathType | string | `"Prefix"` |  |
| grafana.ingress.enable | bool | `true` |  |
| metrics-server.apiService.create | bool | `true` |  |
| metrics-server.extraArgs[0] | string | `"--kubelet-insecure-tls=true"` |  |
| metrics-server.extraArgs[1] | string | `"--kubelet-preferred-address-types=InternalIP"` |  |
| prometheus.hosts[0].host | string | `"prometheus-dt.tactile5g.int"` |  |
| prometheus.hosts[0].paths[0].path | string | `"/"` |  |
| prometheus.hosts[0].paths[0].pathType | string | `"Prefix"` |  |
| prometheus.ingress.enabled | bool | `true` |  |
| skooner.hosts[0].host | string | `"skooner.tactile5g.com"` |  |
| skooner.hosts[0].paths[0].path | string | `"/"` |  |
| skooner.hosts[0].paths[0].pathType | string | `"Prefix"` |  |
| skooner.ingress.enabled | bool | `true` |  |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.13.1](https://github.com/norwoodj/helm-docs/releases/v1.13.1)
+23 −0
Original line number Diff line number Diff line
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/
Loading