Skip to content

Commit

Permalink
Merge branch 'master' into konflux/references/master
Browse files Browse the repository at this point in the history
  • Loading branch information
dscervantes authored Jun 6, 2024
2 parents 73329d0 + d37ec19 commit 914f1bb
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 68 deletions.
12 changes: 6 additions & 6 deletions deploy/connect-msk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ objects:
type: ${KAFKA_SASL_MECHANISM}
username: ${KAFKA_USERNAME}
passwordSecret:
secretName: app-auth
password: client_secret
secretName: msk-client
password: password
externalConfiguration:
volumes:
- name: rds-client-ca
Expand Down Expand Up @@ -358,13 +358,13 @@ objects:
- name: KAFKA_USERNAME
valueFrom:
secretKeyRef:
key: client_id
name: app-auth
key: username
name: msk-client
- name: KAFKA_SECRET
valueFrom:
secretKeyRef:
key: client_secret
name: app-auth
key: password
name: msk-client
volumeMounts:
- name: volume-temp
mountPath: /tmp/temp-files
Expand Down
26 changes: 9 additions & 17 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -24,56 +24,49 @@ require (
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.7.1
github.com/xi2/xz v0.0.0-20171230120015-48954b6210f8
go.uber.org/zap v1.10.0
go.uber.org/zap v1.13.0
golang.org/x/time v0.3.0
gorm.io/driver/postgres v1.0.8
gorm.io/gorm v1.21.4
)

require (
github.com/atombender/go-jsonschema v0.16.1-0.20240509041139-b27139a0e29e // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/fatih/color v1.16.0 // indirect
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/go-openapi/jsonpointer v0.19.5 // indirect
github.com/go-openapi/swag v0.19.5 // indirect
github.com/goccy/go-yaml v1.11.3 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-cmp v0.6.0 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/hashicorp/go-multierror v1.1.0 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgconn v1.8.0 // indirect
github.com/jackc/pgconn v1.14.3 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.0.7 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/jackc/pgtype v1.6.2 // indirect
github.com/jackc/pgx/v4 v4.10.1 // indirect
github.com/jackc/pgproto3/v2 v2.3.3 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgtype v1.14.0 // indirect
github.com/jackc/pgx/v4 v4.18.2 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.1 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/kulshekhar/fungen v0.0.0-20180224173454-7ed9e430524b // indirect
github.com/labstack/gommon v0.4.0 // indirect
github.com/lib/pq v1.10.0 // indirect
github.com/lib/pq v1.10.2 // indirect
github.com/magiconair/properties v1.8.1 // indirect
github.com/mailru/easyjson v0.7.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/nxadm/tail v1.4.8 // indirect
github.com/pelletier/go-toml v1.8.1 // indirect
github.com/prometheus/client_model v0.2.0 // indirect
github.com/prometheus/common v0.32.1 // indirect
github.com/prometheus/procfs v0.7.3 // indirect
github.com/qri-io/jsonpointer v0.1.1 // indirect
github.com/sanity-io/litter v1.5.5 // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.0 // indirect
github.com/spf13/jwalterweatherman v1.0.0 // indirect
Expand All @@ -85,13 +78,12 @@ require (
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.5.0 // indirect
golang.org/x/crypto v0.23.0 // indirect
golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect
golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect
golang.org/x/net v0.25.0 // indirect
golang.org/x/sys v0.20.0 // indirect
golang.org/x/text v0.15.0 // indirect
golang.org/x/tools v0.21.0 // indirect
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
google.golang.org/protobuf v1.27.1 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/ini.v1 v1.51.0 // indirect
gopkg.in/oleiade/lane.v1 v1.0.0 // indirect
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
Expand Down
Loading

0 comments on commit 914f1bb

Please sign in to comment.