Compare commits

...

11 Commits

Author SHA1 Message Date
Akshay Jagadish
f253034335 WIFI-2026 Change docker tags from 0.0.1-SNAPSHOT to 1.1.0-SNAPSHOT 2021-04-16 16:12:00 -04:00
Max
f85004ffc4 add post deployment notes (#73) 2021-04-13 12:06:10 +02:00
Max Brenner
d5af204c09 rebase v1.0.1 changelog entries 2021-04-13 10:52:58 +02:00
Max Brenner
ca70570de7 rebase v1.0.0 changelog 2021-04-01 13:52:16 +02:00
Max
d0a504a7c2 automate Helm chart release process (#69)
* automate Helm chart release process
2021-03-24 14:37:08 +01:00
norm-traxler
0d9e6e0afc Merge pull request #70 from Telecominfraproject/WIFI-1724-cassandra-reconnect
[WIFI-1724] SSC reconnect to cassandra after cassandra pod restart
2021-03-23 12:14:55 -04:00
Norm Traxler
af22e767b5 [WIFI-1724] SSC reconnect to cassandra after cassandra pod restart 2021-03-22 15:57:33 -04:00
Dmitry Toptygin
63e784482f WIFI-1877 - add topics in kafka where messages are partitioned by locationId - location_metrics and location_events 2021-03-22 12:34:36 -04:00
AkshayJagadish-ne
9a532cf290 Merge pull request #68 from Telecominfraproject/WIFI-1812-Revert
Changed FE image tag back to 0.0.1-SNAPSHOT
2021-03-19 10:41:40 -04:00
Akshay Jagadish
7c1dd0f5b8 Changed FE image tag back to 0.0.1-SNAPSHOT 2021-03-19 09:51:13 -04:00
AkshayJagadish-ne
724ab141dc Merge pull request #66 from Telecominfraproject/WIFI-1812
WIFI-1812: Change the front-end image tags
2021-03-15 19:06:36 -04:00
17 changed files with 145 additions and 41 deletions

View File

@@ -3,28 +3,60 @@ name: Helm CI - TIP WLAN Cloud Master
on:
push:
branches: [ master ]
tags: [ "v*" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ssh-key: ${{ secrets.GH_AUTOMATION_KEY }}
submodules: true
- name: Login to TIP Docker registry
uses: azure/docker-login@v1
with:
login-server: tip-tip-wlan-cloud-docker-repo.jfrog.io
username: build-pipeline
password: ${{ secrets.DOCKER_REPO_PASSWORD }}
- name: Login to TIP Helm chart registry
run: helm repo add tip-wlan-cloud-helm-virtual-repo https://tip.jfrog.io/artifactory/tip-wlan-cloud-helm-virtual-repo --username build-pipeline --password ${{ secrets.HELM_REPO_PASSWORD }}
- name: Build tip-wlan chart file
run: tar -czf tip-wlan.tgz tip-wlan
- name: Upload tip-wlan chart to the TIP helm registry
run: curl -ubuild-pipeline:${{ secrets.HELM_REPO_PASSWORD }} -T tip-wlan.tgz "https://tip.jfrog.io/artifactory/tip-wlan-cloud-helm-repo/tip-wlan.tgz"
- name: Verify that chart was uploaded successfully
run: |
helm repo update
helm search repo tip
if [[ "${{ github.ref }}" == "refs/tags/"* ]]; then
PACKAGE_OPTS="--version ${GITHUB_REF#refs/tags/v}"
else
PACKAGE_OPTS=""
fi
helm package $PACKAGE_OPTS -u tip-wlan
- name: Store chart as artifact
uses: actions/upload-artifact@v2
with:
name: helm-chart
path: tip-wlan-*.tgz
- name: Upload tip-wlan chart to the TIP helm registry
run: |
if [[ "${{ github.ref }}" == "refs/tags/"* ]]; then
curl -ubuild-pipeline:${{ secrets.HELM_REPO_PASSWORD }} -T tip-wlan-${GITHUB_REF#refs/tags/v}.tgz "https://tip.jfrog.io/artifactory/tip-wlan-cloud-helm-repo/tip-wlan-${GITHUB_REF#refs/tags/v}.tgz"
else
curl -ubuild-pipeline:${{ secrets.HELM_REPO_PASSWORD }} -T tip-wlan-*.tgz "https://tip.jfrog.io/artifactory/tip-wlan-cloud-helm-repo/tip-wlan-master.tgz"
fi
release:
runs-on: ubuntu-latest
needs: [ build ]
if: startsWith(github.ref, 'refs/tags/')
steps:
- uses: actions/checkout@v2
- name: setup Python
uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: install keepachangelog
run: pip install keepachangelog
- name: create release description
continue-on-error: true
run: python .github/workflows/prepare-release-description.py ${GITHUB_REF#refs/tags/v} > RELEASE.md
- name: download Helm chart artifact
uses: actions/download-artifact@v2
with:
name: helm-chart
- name: create release
uses: softprops/action-gh-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: tip-wlan-*.tgz
body_path: RELEASE.md
prerelease: ${{ contains(github.ref, 'rc') }}

View File

@@ -0,0 +1,24 @@
import sys
import keepachangelog
CATEGORIES = ['added', 'changed', 'deprecated', 'removed', 'fixed', 'security']
version = sys.argv[1]
try:
changes = keepachangelog.to_dict("CHANGELOG.md")[version]
except KeyError:
print(f'No changelog entry for version {version}', file=sys.stderr)
exit(1)
print('## Changelog')
for category in CATEGORIES:
entries = changes.get(category, [])
if entries:
print(f'### {category.capitalize()}')
for entry in entries:
print(f'- {entry}')

View File

@@ -5,30 +5,50 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased](xxx)
## [Unreleased] - YYYY-MM-DD
### Added
- Replaced cassandra, postgres and kafka with upstream charts [#49](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/49)
- Centralized secrets to the parent chart [#54](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/54)
- Export servo MBeans with JMX Prometheus exporter [#65](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/65)
- export servo MBeans with JMX Prometheus exporter [#65](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/65)
- render post-deployment message [#73](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/73)
## [1.0.1] - 2021-04-12
### Changed
- Improved kafka setup templating [#53](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/53)
- Improved values.yaml [#53](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/53)
- Improved default values and added yaml anchors [#54](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/54)
- bump cloud controller version to 1.0.1
### Removed
### Fixed
- Removed hardcoded docker secret in favor of variables [#53](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/53)
- Various outdated sections in values.yaml and environment files
- Various secrets in subcharts as they are now part of the parent chart
- references to vendor specific values [#40](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/40)
- correct SQL and CQL schema URLs
## [0.4.0](https://github.com/Telecominfraproject/wlan-cloud-helm/compare/f7c67645736e3dac498e2caec8c267f04d08b7bc...v0.4) - 2021-01-28
## [1.0.0] - 2021-04-01
### Added
- Initial changelog entry. This is the first versioned release. Next releases will include a detailed overview of all the major changes introduced since the last version.
- replaced cassandra, postgres and kafka with upstream charts [#49](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/49)
- centralized secrets to the parent chart [#54](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/54)
### Changed
- improved kafka setup templating [#53](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/53)
- improved values.yaml [#53](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/53)
- improved default values and added yaml anchors [#54](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/54)
### Removed
- removed hardcoded docker secret in favor of variables [#53](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/53)
- various outdated sections in values.yaml and environment files
- various secrets in subcharts as they are now part of the parent chart
- references to vendor specific values [#40](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/40)
### Fixed
- make SSC service able to reconnect to Cassandra [#70](https://github.com/Telecominfraproject/wlan-cloud-helm/pull/70)
## [0.4.0] - 2021-01-28
### Added
- initial changelog entry. This is the first versioned release. Next releases will include a detailed overview of all the major changes introduced since the last version.
- [changes since first commit](https://github.com/Telecominfraproject/wlan-cloud-helm/compare/f7c67645736e3dac498e2caec8c267f04d08b7bc...v0.4)

View File

@@ -14,11 +14,11 @@ 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.
version: 0.4.0
version: 1.0.0
# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application.
appVersion: 1.16.0
appVersion: 1.0.0
home: https://telecominfraproject.com/wifi/
sources:

View File

@@ -11,7 +11,7 @@ replicaCount: 1
image:
name: opensync-gateway-cloud
tag: 0.0.1-SNAPSHOT
tag: 1.1.0-SNAPSHOT
nameOverride: ""
fullnameOverride: ""

View File

@@ -11,7 +11,7 @@ replicaCount: 1
image:
name: opensync-gateway-static
tag: 0.0.1-SNAPSHOT
tag: 1.1.0-SNAPSHOT
nameOverride: ""
fullnameOverride: ""

View File

@@ -11,7 +11,7 @@ replicaCount: 1
image:
name: wlan-cloud-graphql-gw
tag: latest
tag: 1.1.0-SNAPSHOT
pullPolicy: IfNotPresent
nameOverride: ""

View File

@@ -11,7 +11,7 @@ replicaCount: 1
image:
name: wlan-cloud-ui
tag: latest
tag: 1.1.0-SNAPSHOT
pullPolicy: IfNotPresent
nameOverride: ""

View File

@@ -11,7 +11,7 @@ replicaCount: 1
image:
name: wlan-integrated-cloud-component-service
tag: 0.0.1-SNAPSHOT
tag: 1.1.0-SNAPSHOT
nameOverride: ""
fullnameOverride: ""

View File

@@ -11,7 +11,7 @@ replicaCount: 1
image:
name: wlan-port-forwarding-gateway-service
tag: 0.0.1-SNAPSHOT
tag: 1.1.0-SNAPSHOT
nameOverride: ""
fullnameOverride: ""

View File

@@ -11,7 +11,7 @@ replicaCount: 1
image:
name: wlan-portal-service
tag: 0.0.1-SNAPSHOT
tag: 1.1.0-SNAPSHOT
nameOverride: ""
fullnameOverride: ""

View File

@@ -11,7 +11,7 @@ replicaCount: 1
image:
name: wlan-prov-service
tag: 0.0.1-SNAPSHOT
tag: 1.1.0-SNAPSHOT
nameOverride: ""
fullnameOverride: ""

View File

@@ -11,7 +11,7 @@ replicaCount: 1
image:
name: wlan-spc-service
tag: 0.0.1-SNAPSHOT
tag: 1.1.0-SNAPSHOT
nameOverride: ""
fullnameOverride: ""

View File

@@ -11,8 +11,10 @@ data:
contact-points = [ "{{ include "cassandra.service" . }}:9042" ]
load-balancing-policy.local-datacenter = datacenter1
session-keyspace = tip_wlan_keyspace
request.consistency = LOCAL_QUORUM
}
advanced.resolve-contact-points = false
advanced.ssl-engine-factory {
class = DefaultSslEngineFactory
hostname-validation = false

View File

@@ -11,7 +11,7 @@ replicaCount: 1
image:
name: wlan-ssc-service
tag: 0.0.1-SNAPSHOT
tag: 1.1.0-SNAPSHOT
nameOverride: ""
fullnameOverride: ""

View File

@@ -0,0 +1,20 @@
Your TIP WLAN cloud controller Helm deployment has been successful!
**************************************************************************************
*** PLEASE BE PATIENT: Some components may need up to 5 minutes to fully start up. ***
**************************************************************************************
You can check the status with the following command:
kubectl get pods -n {{ .Release.Namespace }} -w
{{ if gt (len (index .Values "wlan-cloud-static-portal").ingress.hosts) 0 }}
The dashboard should be available at:
http://{{ (index (index .Values "wlan-cloud-static-portal").ingress.hosts 0).host }}
Login with the following credentials:
Username: support@example.com
Password: support
{{ end }}

View File

@@ -130,6 +130,12 @@ kafka:
- name: customer_events
partitions: 1
replicationFactor: 1
- name: location_metrics
partitions: 1
replicationFactor: 1
- name: location_events
partitions: 1
replicationFactor: 1
creds:
sslKeyPassword: *sslKeyPassword
sslKeystorePassword: *sslKeystorePassword