Support local managment for embedded agent on nginx

This commit is contained in:
davidga
2022-11-13 13:29:35 +02:00
parent 8b01396eca
commit 1b4b7d17e0
406 changed files with 37980 additions and 35 deletions

2
external/yq/examples/array.yaml vendored Executable file
View File

@@ -0,0 +1,2 @@
- [cat, dog, frog, cow]
- [apple, banana, grape, mango]

8
external/yq/examples/bad.yaml vendored Executable file
View File

@@ -0,0 +1,8 @@
b:
d: be gone
c: 2
e:
- name: Billy Bob # comment over here
---
[123123

1
external/yq/examples/base64.txt vendored Executable file
View File

@@ -0,0 +1 @@
bXkgc2VjcmV0IGNoaWxsaSByZWNpcGUgaXMuLi4u

4
external/yq/examples/data1-no-comments.yaml vendored Executable file
View File

@@ -0,0 +1,4 @@
a: simple
b: [1, 2]
c:
test: 1

1
external/yq/examples/data1.yaml vendored Executable file
View File

@@ -0,0 +1 @@
["foobar", "foobaz", "blarp"]

5
external/yq/examples/data2.yaml vendored Executable file
View File

@@ -0,0 +1,5 @@
# --------------------------------------------------
# It's a test with comment
# --------------------------------------------------
groups:
- name: d

4
external/yq/examples/data3.yaml vendored Executable file
View File

@@ -0,0 +1,4 @@
a: "simple" # just the best
b: [1, 3]
c:
test: 1

0
external/yq/examples/empty-no-comment.yaml vendored Executable file
View File

1
external/yq/examples/empty.yaml vendored Executable file
View File

@@ -0,0 +1 @@
# comment

6
external/yq/examples/example.properties vendored Executable file
View File

@@ -0,0 +1,6 @@
# comments on values appear
person.name = Mike
# comments on array values appear
person.pets.0 = cat
person.food.0 = pizza

6
external/yq/examples/front-matter.yaml vendored Executable file
View File

@@ -0,0 +1,6 @@
---
a: apple
b: bannana
---
hello there
apples: great

View File

@@ -0,0 +1,7 @@
- command: update
path: b.c
value:
#great
things: frog # wow!
- command: delete
path: b.d

2
external/yq/examples/leading-seperator.yaml vendored Executable file
View File

@@ -0,0 +1,2 @@
---
a: test

19
external/yq/examples/merge-anchor.yaml vendored Executable file
View File

@@ -0,0 +1,19 @@
foo: &foo
a: foo_a
thing: foo_thing
c: foo_c
bar: &bar
b: bar_b
thing: bar_thing
c: bar_c
foobarList:
b: foobarList_b
<<: [*foo,*bar]
c: foobarList_c
foobar:
c: foobar_c
<<: *foo
thing: foobar_thing

7
external/yq/examples/mike.xml vendored Executable file
View File

@@ -0,0 +1,7 @@
<?xml version="1.0"?>
<!DOCTYPE config SYSTEM "/etc/iwatch/iwatch.dtd" >
<apple>
<?coolioo version="1.0"?>
<!DOCTYPE config SYSTEM "/etc/iwatch/iwatch.dtd" >
<b>things</b>
</apple>

11
external/yq/examples/mike2.xml vendored Executable file
View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- osm-->
<osm version="0.6" generator="CGImap 0.0.2">
<!-- bounds-->
<bounds minlat="54.0889580" minlon="12.2487570" maxlat="54.0913900" maxlon="12.2524800">
<!-- great -->
cool
</bounds>
<foo>ba2234r</foo>
<foo>bar2234233</foo>
</osm>

5
external/yq/examples/multiline-text.yaml vendored Executable file
View File

@@ -0,0 +1,5 @@
test: |
abcdefg
hijklmno

18
external/yq/examples/multiple_docs.yaml vendored Executable file
View File

@@ -0,0 +1,18 @@
commonKey: first document
a: Easy! as one two three
b:
c: 2
d: [3, 4]
e:
- name: fred
value: 3
- name: sam
value: 4
---
commonKey: second document
another:
document: here
---
commonKey: third document
wow:
- here is another

View File

@@ -0,0 +1,7 @@
a: Easy! as one two three
---
another:
document: here
---
- 1
- 2

2
external/yq/examples/numbered_keys.yml vendored Executable file
View File

@@ -0,0 +1,2 @@
5:
6: camel!

2
external/yq/examples/order.yaml vendored Executable file
View File

@@ -0,0 +1,2 @@
version: 3
application: MyApp

6
external/yq/examples/order.yml vendored Executable file
View File

@@ -0,0 +1,6 @@
version: '2'
services:
test:
image: ubuntu:14.04
stdin_open: true
tty: true

1
external/yq/examples/sample.json vendored Executable file
View File

@@ -0,0 +1 @@
{"a":"Easy! as one two three","b":{"c":2,"d":[3,4],"e":[{"name":"fred","value":3},{"name":"sam","value":4}]},"ab":"must appear last"}

11
external/yq/examples/sample.yaml vendored Executable file
View File

@@ -0,0 +1,11 @@
# Some doc
a: true
b:
c: 2
d: [3, 4, 5]
e:
- name: fred
value: 3
- name: sam
value: 4

1
external/yq/examples/sample_array.yaml vendored Executable file
View File

@@ -0,0 +1 @@
[1,2,3]

2
external/yq/examples/sample_array_2.yaml vendored Executable file
View File

@@ -0,0 +1,2 @@
- 4
- 5

3
external/yq/examples/sample_objects.csv vendored Executable file
View File

@@ -0,0 +1,3 @@
name,numberOfCats,likesApples,height
,1,true,168.8
Samantha's Rabbit,2,false,-188.8
1 name numberOfCats likesApples height
2 1 true 168.8
3 Samantha's Rabbit 2 false -188.8

1
external/yq/examples/sample_text.yaml vendored Executable file
View File

@@ -0,0 +1 @@
hi

View File

@@ -0,0 +1,5 @@
foo:
a: 1
foobar:
a: 1

5
external/yq/examples/simple-anchor.yaml vendored Executable file
View File

@@ -0,0 +1,5 @@
foo: &foo
a: 1
foobar:
<<: *foo

1
external/yq/examples/small.properties vendored Executable file
View File

@@ -0,0 +1 @@
this.is = a properties file

1
external/yq/examples/small.xml vendored Executable file
View File

@@ -0,0 +1 @@
<this>is some xml</this>

2
external/yq/examples/thing.yml vendored Executable file
View File

@@ -0,0 +1,2 @@
a: apple is included
b: cool.