John Harris
caefaf73aa
Add additional docs references
...
Signed-off-by: John Harris <john.harris@konghq.com >
2021-12-20 09:21:42 -08:00
John Harris
e8d7001f5e
Add RO FS back to deployment
...
Signed-off-by: John Harris <john.harris@konghq.com >
2021-12-18 14:51:57 -08:00
John Harris
ae0f20a445
Add Kuma docs
...
Signed-off-by: John Harris <john.harris@konghq.com >
2021-12-18 14:45:23 -08:00
John Harris
4ddc12185f
Add prometheus support
...
Signed-off-by: John Harris <john.harris@konghq.com >
2021-12-18 14:18:56 -08:00
John Harris
e81627a96d
Add tests
...
Signed-off-by: John Harris <john.harris@konghq.com >
2021-12-18 14:09:39 -08:00
John Harris
47be2a25f2
Add Kuma routing and metrics
...
Signed-off-by: John Harris <john.harris@konghq.com >
2021-12-18 14:07:59 -08:00
John Harris
6832a4ffde
Add/update Kustomize configurations
...
Signed-off-by: John Harris <john.harris@konghq.com >
2021-12-18 14:07:05 -08:00
John Harris
bd58a47862
Add/update API types
...
Signed-off-by: John Harris <john.harris@konghq.com >
2021-12-18 14:05:54 -08:00
John Harris
204228bc8f
Add API types.
...
Signed-off-by: John Harris <john.harris@konghq.com >
2021-12-15 15:13:47 -08:00
Stefan Prodan
ebc26e9ea0
Merge pull request #1081 from fluxcd/alpine-3.15
...
Update Alpine to 3.15
2021-12-15 12:16:40 +02:00
Stefan Prodan
3c03119d2d
Merge pull request #1080 from fluxcd/lt-helm
...
loadtester: Update the Helm CLI
2021-12-15 12:16:31 +02:00
Stefan Prodan
644049092f
Update Alpine to 3.15
...
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com >
2021-12-15 10:49:16 +02:00
Stefan Prodan
578f447728
loadtester: Update the Helm CLI
...
- helm 2.17.0
- helmv3 3.7.2
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com >
2021-12-15 10:47:53 +02:00
Stefan Prodan
3bf926e419
Merge pull request #1079 from fluxcd/push-ld
...
Add workflow for pushing loadtester image
2021-12-14 19:18:07 +02:00
Stefan Prodan
48ee4f8bd2
Add workflow for pushing loadtester image
...
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com >
2021-12-14 18:53:29 +02:00
Stefan Prodan
b4964a0535
Merge pull request #1078 from fluxcd/k8s.io/v0.23.0
...
Update Kubernetes packages to v1.23.0
2021-12-14 18:31:16 +02:00
Stefan Prodan
47ff00e9b9
Update Kubernetes packages to v1.23.0
...
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com >
2021-12-14 17:56:59 +02:00
Stefan Prodan
6ca99a5ddb
Merge pull request #1077 from fluxcd/go-1.17
...
Update Go to v1.17
2021-12-14 17:49:54 +02:00
Stefan Prodan
30b5054692
Update Go to v1.17
...
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com >
2021-12-14 17:26:13 +02:00
Stefan Prodan
edf7b90c11
Merge pull request #1076 from makaronak/loadtester-secrets
...
feat: allow loadtester pull secrets
2021-12-14 16:15:58 +02:00
Stefan Prodan
7f0f97d14d
Merge pull request #1071 from longkai/fix-code-gen
...
fix: code gen sometimes fail issue
2021-12-14 15:04:32 +02:00
Maksim Makaronak
b03b75cd7e
feat: allow loadtester pull secrets
...
Signed-off-by: Maksim Makaronak <maksim.makaronak@ihsmarkit.com >
2021-12-14 14:19:47 +03:00
Stefan Prodan
f0d2e60a9a
Merge pull request #1075 from dholbach/update-maintainer-file
...
Update MAINTAINERS file (Takeshi is at Tetrate now)
2021-12-14 10:14:49 +02:00
Daniel Holbach
328f1d9ea2
Update MAINTAINERS file (Takeshi is at Tetrate now)
...
Also bring it up to same format as all the other
MAINTAINERS files (needed for fluxcd/community#155 ).
Signed-off-by: Daniel Holbach <daniel@weave.works >
2021-12-13 17:46:47 +01:00
longkai
a14013f393
fix: code gen sometimes fail issue
...
In my self project I reference this nice script, the go.sum look like this(after run go mod tidy and
download):
```
k8s.io/apimachinery v0.22.1/go.mod h1:O3oNtNadZdeOMxHFVxOreoznohCpy0z6mocxbZr7oJ0=
k8s.io/apiserver v0.22.1/go.mod h1:2mcM6dzSt+XndzVQJX21Gx0/Klo7Aen7i0Ai6tIa400=
k8s.io/client-go v0.22.1 h1:jW0ZSHi8wW260FvcXHkIa0NLxFBQszTlhiAVsU5mopw=
k8s.io/client-go v0.22.1/go.mod h1:BquC5A4UOo4qVDUtoc04/+Nxp1MeHcVc1HJm1KmG8kk=
k8s.io/code-generator v0.22.1/go.mod h1:eV77Y09IopzeXOJzndrDyCI88UBok2h6WxAlBwpxa+o=
k8s.io/component-base v0.22.1 h1:SFqIXsEN3v3Kkr1bS6rstrs1wd45StJqbtgbQ4nRQdo=
```
as you can see the, sometimes the go.sum only has `version/go.mod` line,
if we run the scripts, it will fail like this:
chmod: cannot access '/home/longkai/pkg/mod/k8s.io/code-generator@v0.22 .1/go.mod/generate-groups.sh': Not a directory
so this pr fix this.
Finally, the list is sort by version ast, we want to choose the newer one.
Signed-off-by: longkai <im.longkai@gmail.com >
2021-12-07 14:32:34 +08:00
Stefan Prodan
aef1d7904d
Merge pull request #1063 from rajatvig/UpdateLoadTester
...
Update libraries included in the load tester to newer versions
2021-12-01 09:20:26 +02:00
Rajat Vig
dc478188c1
Update loadtester version
...
Signed-off-by: Rajat Vig <rvig@etsy.com >
2021-12-01 00:13:35 +00:00
Rajat Vig
9fa6e775c0
Fix ghz URI and install wrk from alpine vs compiling it
...
Signed-off-by: Rajat Vig <rvig@etsy.com >
2021-12-01 00:08:55 +00:00
Rajat Vig
584350623b
Update libraries included in the load tester to newer versions
...
Signed-off-by: Rajat Vig <rvig@etsy.com >
2021-11-29 11:07:41 +00:00
Stefan Prodan
919959b32c
Merge pull request #1062 from rajatvig/patch-1
...
Update content for changes in autoscaler behaviour
2021-11-29 12:50:03 +02:00
Rajat Vig
ec54eedf93
Update content for changes in autoscaler behaviour
...
Signed-off-by: Rajat Vig <rvig@etsy.com >
2021-11-29 10:26:48 +00:00
Stefan Prodan
f311797215
Merge pull request #1061 from SanyaKochhar/osm-docs
...
Update OSM docs for managed/non-default instances
2021-11-24 17:14:58 +02:00
Stefan Prodan
059b5d0f89
Merge pull request #1059 from julienduchesne/patch-1
...
Add section about the k6 load tester
2021-11-24 17:14:43 +02:00
Sanya Kochhar
7542640494
update osm docs for managed/non-default osm instances
...
Signed-off-by: Sanya Kochhar <kochhars@microsoft.com >
2021-11-23 14:10:46 -05:00
Julien Duchesne
52493f181a
Add section about the k6 load tester
...
As suggested here: https://cloud-native.slack.com/archives/C01JR4YUG4B/p1637598108108000
Signed-off-by: Julien Duchesne <julien.duchesne@grafana.com >
2021-11-22 11:52:27 -05:00
Stefan Prodan
5d95143536
Merge pull request #1058 from fluxcd/release-1.16.0
...
Release v1.16.0
v1.16.0
2021-11-22 15:40:25 +02:00
Stefan Prodan
a2c5861ca5
Release v1.16.0
...
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com >
2021-11-22 14:53:54 +02:00
Stefan Prodan
fcc07f02b0
Merge pull request #1049 from fluxcd/prevent-flux-overrides
...
Prevent Flux from overriding Flagger managed objects
2021-11-22 14:38:27 +02:00
Stefan Prodan
3f43526aac
Merge pull request #1057 from fluxcd/update-diagram-osm
...
Update Flagger diagram to include OpenServiceMesh
2021-11-22 14:38:13 +02:00
Stefan Prodan
cd07da9137
Update Flagger diagram to include OpenServiceMesh
...
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com >
2021-11-22 12:05:17 +02:00
Stefan Prodan
30ab182b2e
Merge pull request #1052 from zeot/append-ownerreferences-configmaps-and-secrets
...
Append to list of ownerReferences for primary configmaps and secrets
2021-11-18 10:51:36 +02:00
Stefan Prodan
2ddd9587f7
Merge pull request #1048 from personio/primary-ready-threshold
...
[feat] primaryReadyThreshold: allow configuring threshold for primary
2021-11-17 10:30:37 +02:00
Zacharias Taubert
50800857b6
Append to list of ownerReferences for cm and secrets
...
If a "primary" ConfigMap or Secret already exists, keep the list of
ownerReferences and append the updating Canary as ownerReference if it's
not already in the list. This will prevent the GC from deleting primary
ConfigMaps and Secrets used by multiple primary deployments when one is
deleted.
Signed-off-by: Zacharias Taubert <zacharias.taubert@gmail.com >
2021-11-14 23:30:30 +01:00
Mahdi Dibaiee
8f50521435
[feat] primaryReadyThreshold: allow configuring threshold for primary
...
see #639
Signed-off-by: Mahdi Dibaiee <mdibaiee@pm.me >
2021-11-11 14:44:52 +00:00
Stefan Prodan
45ecaa9084
Prevent Flux from overriding Flagger managed objects
...
Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com >
2021-11-10 18:19:04 +02:00
Stefan Prodan
9c7db58d87
Merge pull request #1044 from Misteur-Z/external-dns-docs
...
Add warning in docs about ExternalDNS + Istio configuration
2021-11-09 19:56:21 +02:00
Stefan Prodan
6b11e9714b
Merge pull request #1045 from DiptoChakrabarty/replaceioutil
...
Replace ioutil in testing of gchat
2021-11-09 19:22:30 +02:00
Stefan Prodan
7f5a9ed34a
Merge pull request #1047 from ecordell/patch-1
...
Mark CanaryMetric.Threshold as omitempty
2021-11-09 19:22:09 +02:00
Evan Cordell
bc9a231d26
Mark CanaryMetric.Threshold as omitempty
...
Signed-off-by: Evan Cordell <cordell.evan@gmail.com >
2021-11-09 09:27:20 -05:00
Dipto Chakrabarty
0bb3815f73
replace ioutil in testing of gchat
...
Signed-off-by: DiptoChakrabarty <diptochuck123@gmail.com >
2021-11-01 15:17:44 +05:30