-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update dependencies + v0.2.5 of chart
- Loading branch information
1 parent
f75a09c
commit d646acf
Showing
5 changed files
with
252 additions
and
36 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
ydb: | ||
# DB endpoint host:port to connect to | ||
endpoint: ydb-vla-testing-0000.search.yandex.net:2135 | ||
|
||
# Database path | ||
database: /kqp_dev_vla/asmyasnikov | ||
|
||
# Folder to store data in | ||
folder: jaeger-k8s-prod | ||
|
||
useMetaAuth: false | ||
|
||
env: | ||
YDB_TOKEN: "" | ||
|
||
image: | ||
query: | ||
pullPolicy: IfNotPresent | ||
repository: kind/jaeger-ydb-query | ||
tag: v1.9.0 | ||
collector: | ||
pullPolicy: IfNotPresent | ||
repository: kind/jaeger-ydb-collector | ||
tag: v1.9.0 | ||
watcher: | ||
pullPolicy: IfNotPresent | ||
repository: kind/jaeger-ydb-watcher | ||
tag: v1.9.0 | ||
agent: | ||
pullPolicy: IfNotPresent | ||
repository: jaegertracing/jaeger-agent | ||
tag: 1.27 | ||
|
||
collector: | ||
enabled: true | ||
replicas: 3 | ||
affinity: {} | ||
nodeSelector: {} | ||
tolerations: [] | ||
securityContext: {} | ||
podSecurityContext: {} | ||
podAnnotations: {} | ||
|
||
query: | ||
enabled: true | ||
replicas: 3 | ||
affinity: {} | ||
nodeSelector: {} | ||
tolerations: [] | ||
securityContext: {} | ||
podSecurityContext: {} | ||
podAnnotations: {} | ||
|
||
watcher: | ||
enabled: true | ||
replicas: 2 | ||
affinity: {} | ||
nodeSelector: {} | ||
tolerations: [] | ||
securityContext: {} | ||
podSecurityContext: {} | ||
podAnnotations: {} | ||
|
||
agent: | ||
enabled: true | ||
podSecurityContext: {} | ||
securityContext: {} | ||
annotations: {} | ||
pullPolicy: IfNotPresent | ||
cmdlineParams: {} | ||
extraEnv: [] | ||
daemonset: | ||
useHostPort: false | ||
updateStrategy: {} | ||
# type: RollingUpdate | ||
# rollingUpdate: | ||
# maxUnavailable: 1 | ||
nodeSelector: {} | ||
tolerations: [] | ||
affinity: {} | ||
podAnnotations: {} | ||
extraSecretMounts: [] | ||
# - name: jaeger-tls | ||
# mountPath: /tls | ||
# subPath: "" | ||
# secretName: jaeger-tls | ||
# readOnly: true | ||
extraConfigmapMounts: [] | ||
# - name: jaeger-config | ||
# mountPath: /config | ||
# subPath: "" | ||
# configMap: jaeger-config | ||
# readOnly: true | ||
useHostNetwork: false | ||
dnsPolicy: ClusterFirst | ||
priorityClassName: "" | ||
|
||
|
||
service: | ||
collector: | ||
type: ClusterIP | ||
# headless: false | ||
# ipFamilies: | ||
# - IPv6 | ||
# - IPv4 | ||
# ipFamilyPolicy: PreferDualStack | ||
annotations: {} | ||
ports: | ||
grpc: | ||
name: grpc | ||
port: 14250 | ||
# nodePort: 34250 | ||
http: | ||
name: http | ||
port: 14268 | ||
query: | ||
type: LoadBalancer | ||
annotations: {} | ||
ports: | ||
http: | ||
name: http | ||
port: 16686 | ||
agent: | ||
type: ClusterIP | ||
annotations: {} | ||
ports: | ||
zipkin-compact: | ||
# Accept zipkin.thrift over compact thrift protocol | ||
name: zipkin-compact | ||
port: 5775 | ||
protocol: UDP | ||
jaeger-compact: | ||
# Accept jaeger.thrift over compact thrift protocol | ||
name: jaeger-compact | ||
port: 6831 | ||
protocol: UDP | ||
jaeger-binary: | ||
# Accept jaeger.thrift over binary thrift protocol | ||
name: jaeger-binary | ||
port: 6832 | ||
protocol: UDP | ||
http: | ||
# (HTTP) serve configs, sampling strategies | ||
name: http | ||
port: 5778 | ||
protocol: TCP | ||
|
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 |
---|---|---|
@@ -1,72 +1,74 @@ | ||
module github.com/ydb-platform/jaeger-ydb-store | ||
|
||
go 1.20 | ||
go 1.21 | ||
|
||
toolchain go1.21.1 | ||
|
||
require ( | ||
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13 | ||
github.com/gogo/protobuf v1.3.2 | ||
github.com/golang/protobuf v1.5.3 | ||
github.com/hashicorp/go-hclog v1.5.0 | ||
github.com/hashicorp/golang-lru v0.5.4 | ||
github.com/jaegertracing/jaeger v1.47.0 | ||
github.com/hashicorp/go-hclog v1.6.2 | ||
github.com/hashicorp/golang-lru v1.0.2 | ||
github.com/jaegertracing/jaeger v1.54.0 | ||
github.com/opentracing/opentracing-go v1.2.0 | ||
github.com/prometheus/client_golang v1.16.0 | ||
github.com/spf13/cobra v1.7.0 | ||
github.com/prometheus/client_golang v1.18.0 | ||
github.com/spf13/cobra v1.8.0 | ||
github.com/spf13/pflag v1.0.5 | ||
github.com/spf13/viper v1.16.0 | ||
github.com/spf13/viper v1.18.2 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/uber/jaeger-lib v2.4.1+incompatible | ||
github.com/ydb-platform/ydb-go-genproto v0.0.0-20230801151335-81e01be38941 | ||
github.com/ydb-platform/ydb-go-genproto v0.0.0-20240126124512-dbb0e1720dbf | ||
github.com/ydb-platform/ydb-go-sdk-zap v0.16.1 | ||
github.com/ydb-platform/ydb-go-sdk/v3 v3.49.1 | ||
go.uber.org/zap v1.24.0 | ||
google.golang.org/grpc v1.57.0 | ||
github.com/ydb-platform/ydb-go-sdk/v3 v3.56.1 | ||
go.uber.org/zap v1.26.0 | ||
google.golang.org/grpc v1.61.0 | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fatih/color v1.13.0 // indirect | ||
github.com/fsnotify/fsnotify v1.6.0 // indirect | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/fatih/color v1.14.1 // indirect | ||
github.com/fsnotify/fsnotify v1.7.0 // indirect | ||
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/google/uuid v1.5.0 // indirect | ||
github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect | ||
github.com/hashicorp/go-plugin v1.4.10 // indirect | ||
github.com/hashicorp/go-plugin v1.6.0 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/hashicorp/yamux v0.0.0-20190923154419-df201c70410d // indirect | ||
github.com/hashicorp/yamux v0.1.1 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/jonboulle/clockwork v0.4.0 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/mattn/go-colorable v0.1.12 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.17 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/mitchellh/go-testing-interface v1.0.0 // indirect | ||
github.com/mitchellh/mapstructure v1.5.1-0.20220423185008-bf980b35cac4 // indirect | ||
github.com/mitchellh/mapstructure v1.5.1-0.20231216201459-8508981c8b6c // indirect | ||
github.com/oklog/run v1.1.0 // indirect | ||
github.com/pelletier/go-toml/v2 v2.0.8 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.4.0 // indirect | ||
github.com/prometheus/common v0.44.0 // indirect | ||
github.com/prometheus/procfs v0.10.1 // indirect | ||
github.com/spf13/afero v1.9.5 // indirect | ||
github.com/spf13/cast v1.5.1 // indirect | ||
github.com/pelletier/go-toml/v2 v2.1.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
github.com/prometheus/client_model v0.5.0 // indirect | ||
github.com/prometheus/common v0.46.0 // indirect | ||
github.com/prometheus/procfs v0.12.0 // indirect | ||
github.com/spf13/afero v1.11.0 // indirect | ||
github.com/spf13/cast v1.6.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.1.0 // indirect | ||
github.com/subosito/gotenv v1.4.2 // indirect | ||
github.com/subosito/gotenv v1.6.0 // indirect | ||
github.com/uber/jaeger-client-go v2.30.0+incompatible // indirect | ||
github.com/yandex-cloud/go-genproto v0.0.0-20211115083454-9ca41db5ed9e // indirect | ||
github.com/ydb-platform/ydb-go-yc v0.12.1 // indirect | ||
github.com/ydb-platform/ydb-go-yc-metadata v0.6.1 // indirect | ||
go.uber.org/atomic v1.11.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/net v0.14.0 // indirect | ||
golang.org/x/sync v0.3.0 // indirect | ||
golang.org/x/sys v0.11.0 // indirect | ||
golang.org/x/text v0.12.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20230726155614-23370e0ffb3e // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230815205213-6bfd019c3878 // indirect | ||
google.golang.org/protobuf v1.31.0 // indirect | ||
golang.org/x/net v0.20.0 // indirect | ||
golang.org/x/sync v0.5.0 // indirect | ||
golang.org/x/sys v0.16.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/genproto v0.0.0-20231120223509-83a465c0220f // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20231106174013-bbf56f31fb17 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20231127180814-3a041ad873d4 // indirect | ||
google.golang.org/protobuf v1.32.0 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.