Skip to content
This repository has been archived by the owner on Dec 12, 2023. It is now read-only.

Commit

Permalink
Merge pull request #35 from keptn/release-0.1.3
Browse files Browse the repository at this point in the history
Release 0.1.3
  • Loading branch information
johannes-b authored Jul 25, 2019
2 parents c45f824 + cf466a0 commit 96f279b
Show file tree
Hide file tree
Showing 10 changed files with 1,667 additions and 1,560 deletions.
43 changes: 35 additions & 8 deletions .snyk
Original file line number Diff line number Diff line change
@@ -1,8 +1,35 @@
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
version: v1.13.3
ignore: {}
# patches apply the minimum changes required to fix a vulnerability
patch:
SNYK-JS-AXIOS-174505:
- axios:
patched: '2019-05-05T21:15:58.704Z'
# Snyk (https://snyk.io) policy file, patches or ignores known vulnerabilities.
version: v1.13.5
ignore: {}
# patches apply the minimum changes required to fix a vulnerability
patch:
SNYK-JS-AXIOS-174505:
- axios:
patched: '2019-05-05T21:15:58.704Z'
SNYK-JS-LODASH-450202:
- mocha > yargs-unparser > lodash:
patched: '2019-07-03T21:15:48.560Z'
- snyk > lodash:
patched: '2019-07-03T21:15:48.560Z'
- snyk > snyk-php-plugin > lodash:
patched: '2019-07-03T21:15:48.560Z'
- snyk > snyk-nuget-plugin > lodash:
patched: '2019-07-03T21:15:48.560Z'
- snyk > snyk-nodejs-lockfile-parser > lodash:
patched: '2019-07-03T21:15:48.560Z'
- snyk > @snyk/dep-graph > lodash:
patched: '2019-07-03T21:15:48.560Z'
- kubernetes-client > openid-client > lodash:
patched: '2019-07-03T21:15:48.560Z'
- snyk > snyk-config > lodash:
patched: '2019-07-03T21:15:48.560Z'
- snyk > snyk-mvn-plugin > lodash:
patched: '2019-07-03T21:15:48.560Z'
- snyk > inquirer > lodash:
patched: '2019-07-03T21:15:48.560Z'
- snyk > snyk-nodejs-lockfile-parser > graphlib > lodash:
patched: '2019-07-03T21:15:48.560Z'
- snyk > snyk-go-plugin > graphlib > lodash:
patched: '2019-07-03T21:15:48.560Z'
- snyk > @snyk/dep-graph > graphlib > lodash:
patched: '2019-07-03T21:15:48.560Z'
6 changes: 0 additions & 6 deletions config/gen/README.md

This file was deleted.

52 changes: 0 additions & 52 deletions config/servicenow-service-build.yaml

This file was deleted.

32 changes: 0 additions & 32 deletions config/servicenow-service.yaml

This file was deleted.

4 changes: 2 additions & 2 deletions deploy.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/sh

kubectl delete -f config/servicenow-service.yaml --ignore-not-found
kubectl apply -f config/servicenow-service.yaml
kubectl delete -f deploy/service.yaml --ignore-not-found
kubectl apply -f deploy/service.yaml
42 changes: 42 additions & 0 deletions deploy/service.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: servicenow-service
namespace: keptn
spec:
selector:
matchLabels:
run: servicenow-service
replicas: 1
template:
metadata:
labels:
run: servicenow-service
spec:
containers:
- name: servicenow-service
image: keptn/servicenow-service:0.1.3
ports:
- containerPort: 8080
resources:
requests:
memory: "64Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "500m"
---
apiVersion: v1
kind: Service
metadata:
name: servicenow-service
namespace: keptn
labels:
run: servicenow-service
spec:
ports:
- port: 8080
protocol: TCP
selector:
run: servicenow-service
Loading

0 comments on commit 96f279b

Please sign in to comment.