Skip to content

Commit 447792a

Browse files
authored
DEV-7089 - change cost module branch (#26)
* change cost containers command * change versions
1 parent 05e2a24 commit 447792a

File tree

5 files changed

+27
-14
lines changed

5 files changed

+27
-14
lines changed

charts/lightlytics/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ type: application
1616
# This is the chart version. This version number should be incremented each time you make changes
1717
# to the chart and its templates, including the app version.
1818
# Versions are expected to follow Semantic Versioning (https://semver.org/)
19-
version: 0.1.21
19+
version: 0.1.23
2020

2121
# This is the version number of the application being deployed. This version number should be
2222
# incremented each time you make changes to the application. Versions are not expected to
2323
# follow Semantic Versioning. They should reflect the version the application is using.
24-
appVersion: 1.22.0
24+
appVersion: 1.23.0

charts/lightlytics/values.yaml

+6-4
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ lightlytics:
6969
name: cluster-agent
7070

7171
#lightlytics.image.tag -- Lightlytics agent tag to use.
72-
tag: master.577
72+
tag: master.584
7373

7474
#lightlytics.image.pullPolicy -- Lightlytics agent image pullPolicy
7575
pullPolicy: IfNotPresent
@@ -80,7 +80,7 @@ lightlytics:
8080
name: cluster-agent
8181

8282
#lightlytics.cost_image.tag -- Lightlytics cost agent tag to use.
83-
tag: cost_k8s_process.578
83+
tag: master.584
8484

8585
#lightlytics.cost_image.pullPolicy -- Lightlytics cost agent image pullPolicy
8686
pullPolicy: IfNotPresent
@@ -118,7 +118,8 @@ lightlytics:
118118
name: lightlytics-connector
119119
command:
120120
- /usr/local/bin/python
121-
- connector.py
121+
- main.py
122+
- connector
122123
resources:
123124
requests:
124125
cpu: 800m
@@ -130,7 +131,8 @@ lightlytics:
130131
name: lightlytics-cost
131132
command:
132133
- /usr/local/bin/python
133-
- cost.py
134+
- main.py
135+
- cost
134136
resources:
135137
requests:
136138
cpu: 800m

charts/streamsec-agent/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ type: application
1616
# This is the chart version. This version number should be incremented each time you make changes
1717
# to the chart and its templates, including the app version.
1818
# Versions are expected to follow Semantic Versioning (https://semver.org/)
19-
version: 1.0.0
19+
version: 1.0.2
2020

2121
# This is the version number of the application being deployed. This version number should be
2222
# incremented each time you make changes to the application. Versions are not expected to
2323
# follow Semantic Versioning. They should reflect the version the application is using.
24-
appVersion: 1.0.0
24+
appVersion: 1.0.1

charts/streamsec-agent/README.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
1-
# cluster-agent
1+
# streamsec-agent
2+
3+
## How to use Stream Security Agent Helm repository
4+
To begin, add the Stream Security Agent Helm repository to your local Helm repositories:
5+
6+
```
7+
helm repo add streamsec https://lightlytics.github.io/helm-charts
8+
helm repo update
9+
helm install streamsec-agent --set streamsec.apiToken=<API_TOKEN> --set streamsec.apiUrl=<API_URL> -n streamsec-agent --create-namespace streamsec/streamsec-agent`
10+
211
312
![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)
413
5-
Stream Security Cluster Agent Helm Chart
14+
Stream Security Agent Helm Chart
615
716
## Values
817

charts/streamsec-agent/values.yaml

+6-4
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ streamsec:
6969
name: cluster-agent
7070

7171
#streamsec.image.tag -- Stream Security agent tag to use.
72-
tag: master.577
72+
tag: master.584
7373

7474
#streamsec.image.pullPolicy -- Stream Security agent image pullPolicy
7575
pullPolicy: IfNotPresent
@@ -80,7 +80,7 @@ streamsec:
8080
name: cluster-agent
8181

8282
#streamsec.cost_image.tag -- Stream Security cost agent tag to use.
83-
tag: cost_k8s_process.578
83+
tag: master.584
8484

8585
#streamsec.cost_image.pullPolicy -- Stream Security cost agent image pullPolicy
8686
pullPolicy: IfNotPresent
@@ -118,7 +118,8 @@ streamsec:
118118
name: connector
119119
command:
120120
- /usr/local/bin/python
121-
- connector.py
121+
- main.py
122+
- connector
122123
resources:
123124
requests:
124125
cpu: 800m
@@ -130,7 +131,8 @@ streamsec:
130131
name: cost
131132
command:
132133
- /usr/local/bin/python
133-
- cost.py
134+
- main.py
135+
- cost
134136
resources:
135137
requests:
136138
cpu: 800m

0 commit comments

Comments
 (0)