-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* update to latest omsagent, add eastus2 to mdsd regions * copied oneagent bits to a CI repository release * mdsd inmem mode * yaml for cl scale test * yaml for cl scale test * reverting dockerProviderVersion version to 15.0.0 * prepping for release (updated image version, dockerProviderVersion, and release notes * container log scaletest yamls * forgot to update image version in chart * fixing windows tag in dockerfile, changing release notes wording * missed windows tag in one more place * forgot to change the windows dockerProviderVersion back Co-authored-by: Ganga Mahesh Siddem <[email protected]>
- Loading branch information
Showing
11 changed files
with
205 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM ubuntu:18.04 | |
MAINTAINER [email protected] | ||
LABEL vendor=Microsoft\ Corp \ | ||
com.microsoft.product="Azure Monitor for containers" | ||
ARG IMAGE_TAG=ciprod04222021 | ||
ARG IMAGE_TAG=ciprod05122021 | ||
ENV AGENT_VERSION ${IMAGE_TAG} | ||
ENV tmpdir /opt | ||
ENV APPLICATIONINSIGHTS_AUTH NzAwZGM5OGYtYTdhZC00NThkLWI5NWMtMjA3ZjM3NmM3YmRi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
test/containerlog-scale-tests/400logspersec-2klogentrysize.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
apiVersion: batch/v1 | ||
kind: Job | ||
metadata: | ||
name: logs-400persec-2kentrysize | ||
spec: | ||
parallelism: 1 | ||
completions: 1 | ||
template: | ||
metadata: | ||
name: logs-400persec-2kentrysize | ||
spec: | ||
volumes: | ||
- name: logs-400persec-2kentrysize-scripts-volume | ||
configMap: | ||
name: logs-400persec-test-scripts | ||
containers: | ||
- name: logs-400persec-2kentrysize | ||
image: ubuntu | ||
volumeMounts: | ||
- mountPath: /logs-400persec-test-scripts | ||
name: logs-400persec-2kentrysize-scripts-volume | ||
env: | ||
- name: HOME | ||
value: /tmp | ||
command: | ||
- /bin/sh | ||
- -c | ||
- | | ||
echo "scripts in /logs-400persec-test-scripts" | ||
ls -lh /logs-400persec-test-scripts | ||
echo "copy scripts to /tmp" | ||
cp /logs-400persec-test-scripts/*.sh /tmp | ||
echo "apply 'chmod +x' to /tmp/*.sh" | ||
chmod +x /tmp/*.sh | ||
echo "script.sh in /tmp" | ||
ls -lh /tmp | ||
/tmp/script.sh | ||
restartPolicy: Never | ||
--- | ||
apiVersion: v1 | ||
items: | ||
- apiVersion: v1 | ||
data: | ||
script.sh: | | ||
#!/bin/bash | ||
logentry='' | ||
for var in {1..400..1} | ||
do | ||
logentry="${logentry}Test-" | ||
done | ||
for var in {1..200000..1} | ||
do | ||
echo $(date "+%Y/%m/%d %H:%M:%S.%3N") ${var}: $logentry | ||
done | ||
kind: ConfigMap | ||
metadata: | ||
creationTimestamp: null | ||
name: logs-400persec-test-scripts | ||
kind: List | ||
metadata: {} |
60 changes: 60 additions & 0 deletions
60
test/containerlog-scale-tests/400logspersec-5klogentrysize.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
apiVersion: batch/v1 | ||
kind: Job | ||
metadata: | ||
name: logs-400persec-5kentrysize | ||
spec: | ||
parallelism: 1 | ||
completions: 1 | ||
template: | ||
metadata: | ||
name: logs-400persec-5kentrysize | ||
spec: | ||
volumes: | ||
- name: logs-400persec-5kentrysize-scripts-volume | ||
configMap: | ||
name: logs-400persec-5kentrysize-test-scripts | ||
containers: | ||
- name: logs-400persec-5kentrysize | ||
image: ubuntu | ||
volumeMounts: | ||
- mountPath: /logs-400persec-5kentrysize-test-scripts | ||
name: logs-400persec-5kentrysize-scripts-volume | ||
env: | ||
- name: HOME | ||
value: /tmp | ||
command: | ||
- /bin/sh | ||
- -c | ||
- | | ||
echo "scripts in /logs-400persec-5kentrysize-test-scripts" | ||
ls -lh /logs-400persec-5kentrysize-test-scripts | ||
echo "copy scripts to /tmp" | ||
cp /logs-400persec-5kentrysize-test-scripts/*.sh /tmp | ||
echo "apply 'chmod +x' to /tmp/*.sh" | ||
chmod +x /tmp/*.sh | ||
echo "script.sh in /tmp" | ||
ls -lh /tmp | ||
/tmp/script.sh | ||
restartPolicy: Never | ||
--- | ||
apiVersion: v1 | ||
items: | ||
- apiVersion: v1 | ||
data: | ||
script.sh: | | ||
#!/bin/bash | ||
logentry='' | ||
for var in {1..1024..1} | ||
do | ||
logentry="${logentry}Test-" | ||
done | ||
for var in {1..200000..1} | ||
do | ||
echo $(date "+%Y/%m/%d %H:%M:%S.%3N") ${var}: $logentry | ||
done | ||
kind: ConfigMap | ||
metadata: | ||
creationTimestamp: null | ||
name: logs-400persec-5kentrysize-test-scripts | ||
kind: List | ||
metadata: {} |
60 changes: 60 additions & 0 deletions
60
test/containerlog-scale-tests/ci-log-scale-4kpersec-5klogline.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
apiVersion: batch/v1 | ||
kind: Job | ||
metadata: | ||
name: ci-log-scale | ||
spec: | ||
parallelism: 1 | ||
completions: 1 | ||
template: | ||
metadata: | ||
name: ci-log-scale | ||
spec: | ||
volumes: | ||
- name: ci-log-scale-scripts-volume | ||
configMap: | ||
name: test-scripts | ||
containers: | ||
- name: ci-log-scale | ||
image: ubuntu | ||
volumeMounts: | ||
- mountPath: /test-scripts | ||
name: ci-log-scale-scripts-volume | ||
env: | ||
- name: HOME | ||
value: /tmp | ||
command: | ||
- /bin/sh | ||
- -c | ||
- | | ||
echo "scripts in /test-scripts" | ||
ls -lh /test-scripts | ||
echo "copy scripts to /tmp" | ||
cp /test-scripts/*.sh /tmp | ||
echo "apply 'chmod +x' to /tmp/*.sh" | ||
chmod +x /tmp/*.sh | ||
echo "script.sh in /tmp" | ||
ls -lh /tmp | ||
/tmp/script.sh | ||
restartPolicy: Never | ||
--- | ||
apiVersion: v1 | ||
items: | ||
- apiVersion: v1 | ||
data: | ||
script.sh: | | ||
#!/bin/bash | ||
logentry='' | ||
for var in {1..1024..1} | ||
do | ||
logentry="${logentry}Test-" | ||
done | ||
for var in {1..200000..1} | ||
do | ||
echo $(date "+%Y/%m/%d %H:%M:%S.%3N") ${var}: $logentry | ||
done | ||
kind: ConfigMap | ||
metadata: | ||
creationTimestamp: null | ||
name: test-scripts | ||
kind: List | ||
metadata: {} |