Skip to content
This repository has been archived by the owner on Jan 19, 2024. It is now read-only.

Commit

Permalink
update releasenotes, set image tag
Browse files Browse the repository at this point in the history
  • Loading branch information
bacherfl committed Oct 5, 2020
1 parent 92a5095 commit 1d4a40f
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 36 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ Please always double check the version of Keptn you are using compared to the ve
|:----------------:|:----------------------------------------:|
| 0.5.x | keptncontrib/notification-service:0.2.0 |
| 0.6.x | keptncontrib/notification-service:0.3.0 |
| 0.7.x | keptncontrib/notification-service:0.3.1 |
| develop | keptncontrib/notification-service:latest |


Expand Down
56 changes: 20 additions & 36 deletions deploy/notification-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
spec:
containers:
- name: notification-service
image: keptncontrib/notification-service:latest
image: keptncontrib/notification-service:0.3.1
imagePullPolicy: Always
env:
- name: TEAMS_URL
Expand All @@ -37,6 +37,24 @@ spec:
limits:
memory: "128Mi"
cpu: "500m"
- name: distributor
image: keptn/distributor:0.7.2
ports:
- containerPort: 8080
resources:
requests:
memory: "32Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "500m"
env:
- name: PUBSUB_URL
value: 'nats://keptn-nats-cluster'
- name: PUBSUB_TOPIC
value: 'sh.keptn.>'
- name: PUBSUB_RECIPIENT
value: '127.0.0.1'
---
apiVersion: v1
kind: Service
Expand All @@ -51,38 +69,4 @@ spec:
protocol: TCP
selector:
run: notification-service
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: notification-service-distributor
namespace: keptn
spec:
selector:
matchLabels:
run: distributor
replicas: 1
template:
metadata:
labels:
run: distributor
spec:
containers:
- name: distributor
image: keptn/distributor:0.5.0
ports:
- containerPort: 8080
resources:
requests:
memory: "32Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "500m"
env:
- name: PUBSUB_URL
value: 'nats://keptn-nats-cluster'
- name: PUBSUB_TOPIC
value: 'sh.keptn.>'
- name: PUBSUB_RECIPIENT
value: 'notification-service'

9 changes: 9 additions & 0 deletions releasenotes/releasenotes_V0.3.1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Release Notes 0.3.1

## New Features
- Made namespace of service configurable

## Fixed Issues
- Updated node dependencies

## Known Limitations

0 comments on commit 1d4a40f

Please sign in to comment.