-
Notifications
You must be signed in to change notification settings - Fork 0
Khushi/watch poc 2 #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: ci_dev
Are you sure you want to change the base?
Changes from 70 commits
98ed28c
7958042
ef316a4
7e91ef7
966f362
32598a0
08fdfa0
62c7c63
1a0a7ab
006c868
ccc51fb
d653e2b
6448767
2af17b9
0415b84
2973262
18d3ca3
3a3d671
8a8f710
03e9b60
cb6601e
6e9b6ec
9be1c64
9d1c907
3dfca9f
3de0a39
1eb6d29
3635321
10c538d
8503ecf
0e8ae15
23af2bb
78ac1c5
f45ecfb
f83f319
83c804a
cc9dc1b
915c7eb
256e15d
3e346d7
5515822
a04d4d2
96c360d
2e900a8
0ae8a98
4cf149d
dd177c1
c2be217
27332e6
135cf21
e88b39e
64a4210
9281815
ea2e3bb
5b3863f
092fc64
ece8ac9
f6f2013
6d5c091
fe7a1be
340a6ab
bb52ba4
fc326f2
b5ebecb
430d859
ae90e21
08ee87a
7ed7cd4
2c962f9
e6ef54a
9b88d81
3f6869e
22e3281
3b01db7
f430ccf
6aa77ec
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,7 +17,7 @@ ENV KUBE_CLIENT_BACKOFF_BASE 1 | |
| ENV KUBE_CLIENT_BACKOFF_DURATION 0 | ||
| ENV RUBY_GC_HEAP_OLDOBJECT_LIMIT_FACTOR 0.9 | ||
| RUN /usr/bin/apt-get update && /usr/bin/apt-get install -y libc-bin wget openssl curl sudo python-ctypes init-system-helpers net-tools rsyslog cron vim dmidecode apt-transport-https gnupg && rm -rf /var/lib/apt/lists/* | ||
| COPY setup.sh main.sh defaultpromenvvariables defaultpromenvvariables-rs defaultpromenvvariables-sidecar mdsd.xml envmdsd $tmpdir/ | ||
| COPY kubeclient-4.9.2.gem setup.sh main.sh defaultpromenvvariables defaultpromenvvariables-rs defaultpromenvvariables-sidecar mdsd.xml envmdsd $tmpdir/ | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not urgent, but will have to update the build code to build the gem automatically instead of copying manually. |
||
| WORKDIR ${tmpdir} | ||
|
|
||
| # copy docker provider shell bundle to use the agent image | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| { | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not urgent, these files needs to be removed. |
||
| "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | ||
| "contentVersion": "1.0.0.0", | ||
| "parameters": { | ||
| "aksResourceId": { | ||
| "type": "string", | ||
| "metadata": { | ||
| "description": "AKS Cluster Resource ID" | ||
| } | ||
| }, | ||
| "aksResourceLocation": { | ||
| "type": "string", | ||
| "metadata": { | ||
| "description": "Location of the AKS resource e.g. \"East US\"" | ||
| } | ||
| }, | ||
| "workspaceResourceId": { | ||
| "type": "string", | ||
| "metadata": { | ||
| "description": "Azure Monitor Log Analytics Resource ID" | ||
| } | ||
| } | ||
| }, | ||
| "resources": [ | ||
| { | ||
| "name": "[split(parameters('aksResourceId'),'/')[8]]", | ||
| "type": "Microsoft.ContainerService/managedClusters", | ||
| "location": "[parameters('aksResourceLocation')]", | ||
| "apiVersion": "2018-03-31", | ||
| "properties": { | ||
| "mode": "Incremental", | ||
| "id": "[parameters('aksResourceId')]", | ||
| "addonProfiles": { | ||
| "omsagent": { | ||
| "enabled": false, | ||
| "config": { | ||
| "logAnalyticsWorkspaceResourceID": "[parameters('workspaceResourceId')]" | ||
| } | ||
| } | ||
| } | ||
| } | ||
| } | ||
| ] | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| { | ||
| "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentParameters.json#", | ||
| "contentVersion": "1.0.0.0", | ||
| "parameters": { | ||
| "aksResourceId": { | ||
| "value": "/subscriptions/b4b0cbab-64dc-42bc-9d95-ea7c8d0cf188/resourcegroups/khushi-watch-test/providers/Microsoft.ContainerService/managedClusters/khushi-watch-test" | ||
| }, | ||
| "aksResourceLocation": { | ||
| "value": "West US 2" | ||
| }, | ||
| "workspaceResourceId": { | ||
| "value": "/subscriptions/b4b0cbab-64dc-42bc-9d95-ea7c8d0cf188/resourcegroups/defaultresourcegroup-scus/providers/microsoft.operationalinsights/workspaces/defaultworkspace-b4b0cbab-64dc-42bc-9d95-ea7c8d0cf188-scus" | ||
| } | ||
| } | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why do we need these files?