Граф коммитов

2499 Коммитов

Автор SHA1 Сообщение Дата
Daniela Plascencia f137260299
fix: point to ~kubeflow/styles/fonts.scss (#7353)
* fix: point to ~kubeflow/styles/fonts.scss

It seems like the path to this file recently changed by #7062,
which is now preventing the centraldashboard Docker image to
build wich fails with a SassError when trying to import fonts.scss.
This commit points to the right path.

* tests: replace keyboard_backspace with arrow_back
2023-10-16 13:46:55 +00:00
Kimonas Sotirchos b6d5540f52
ci: Push the multi-arch image for specific tag (#7345)
The latest changes made the CI to only build the images for different
archs, but not push for the tag value of the commit.

While next steps, for pushing the latest tag or a release version tag
will work we still want to ensure we push an image with a tag.

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>
2023-10-15 20:21:53 +00:00
Kimonas Sotirchos a6da3678bd
ci: Ensure we publish for all architectures (#7343)
Previously we omitted the ARCH env var, which resulted in the last step
to not push for all architectures, but only for amd64.

This commit will set a default ENV var with all architectures, which
will be picked up by the build-push make rule we have.

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>
2023-10-15 19:11:53 +00:00
Kimonas Sotirchos 5302ed1f09
wa(front): Make the background white of all webapps (#7341)
Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>
2023-10-13 12:22:51 +00:00
Kimonas Sotirchos 1a494d4ac3
poddefaults: Bump golang to 1.20 (#7338)
Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>
2023-10-13 09:53:52 +00:00
Tobias Goerke 8558fd2fd8
fix: KeyError on KF 1.8 (#7335)
This change fixes an error 500 on notebook creation
2023-10-13 08:45:52 +00:00
Kimonas Sotirchos 0a69444865
Run build steps for multi-arch sequentially (#7333)
* Run build steps for multi-arch sequentially

We saw that if we try to build using an ENV var containing all the
architectures then docker buildx will run 3 parallel jobs.

This made the GH runners crash in some cases because they were
over-utilizing the resources.

To mitigate this we'll sequentially build each image for each arch.

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

* review: Build first for amd64

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

---------

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>
2023-10-13 07:59:52 +00:00
Kimonas Sotirchos 51becc735f
Make principals dynamic in Profiles Controller (#7310)
* Make principals dynamic in Profiles Controller

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

* review: Use dynamic principal of IGW in KFAM

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

* review: Add env vars to manifests

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

* review: Add pipelines-ui principal

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

* Update golang to 1.19 for unit tests to succeed

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

* review: Include KFP UI principle in profiles/kfam

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

---------

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>
2023-10-12 19:52:22 +00:00
dependabot[bot] 52a9e32494
build(deps): bump golang.org/x/net from 0.7.0 to 0.17.0 in /components/pvcviewer-controller (#7331)
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.7.0 to 0.17.0.
- [Commits](https://github.com/golang/net/compare/v0.7.0...v0.17.0)

---
updated-dependencies:
- dependency-name: golang.org/x/net
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-12 16:05:22 +00:00
Tzvetomir Stoyanov 09917e6e29
Bump the controller-runtime version to 0.16.2 (#7322)
* Bump the controller-runtime version to 0.16.2

There are a lot of improvements, optimizations and bug fixes in the
latest version, related to the controller-runtime client which is used
in admission-webhook.

Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>

* Set logger for controller-runtime

The latest version of controller-runtime client requires to set in
advance a logger, used by the client.

Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>

* Use golang version 1.21 for container build

The latest version of controller-runtime package requires golang v.1.21
for building.

Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>

---------

Signed-off-by: Tzvetomir Stoyanov (VMware) <tz.stoyanov@gmail.com>
2023-10-10 08:56:20 +00:00
Daniela Plascencia eaacab6863
fix: set default GPU vendors list (#7320)
The change introduced by kubeflow/kubeflow#6736 removed the default GPU vendors
list, which causes an issue when trying to select a vendor from the dropdown menu
if the vendors list is not configured.
This commit can be reverted if proper documentation is provided for users/distributions
to configure the dropdown menu.
Fixes #7273
2023-10-09 08:28:18 +00:00
Kimonas Sotirchos 466d675080
ci: Build ARM images for core components (#7220)
* ci: Build ARM images for core components

Extend the GH Actions to also build the images on ARM architectures.

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

* crud-web-apps: Update python and gevent versions

In order to successfully build on linux/arm64/v8 we'll need to:
* Update to Python 3.10
* Bump the gevent version

https://github.com/gevent/gevent/issues/1721#issuecomment-1223751954

* Update the workflows for JWA

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

* Update workflows for centraldb

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

* Update workflows for kfam

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

* Update workflows for notebook-controller

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

* Update workflows for PodDefaults

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

* Update workflows for Profile Controller

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

* Update workflows for pvcviewer controller

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

* Update workflows for TensorBoard Controller

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

* Update workflows for TWA

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

* Update workflows for VWA

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

* Update releasing script to include PVCViewers

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>

---------

Signed-off-by: Kimonas Sotirchos <kimwnasptd@gmail.com>
2023-10-04 22:17:15 +00:00
boarder7395 845beef4b1
Only load spawner_ui_config.yaml once every 10 minutes. closes #7259 (#7260)
* Only load spawner_ui_config.yaml once every 10 minutes.

* Update cache to 60 seconds
2023-10-04 16:24:16 +00:00
Ikko Eltociear Ashimine c6c44923a9
Fix typo in centraldashboard/README.md (#6556)
seperate -> separate
2023-09-21 18:20:38 +00:00
Tobias Goerke 0a2ecef55e
fix: pvcviewer tests (#7292)
Changes filepaths on master caused the download of CRDs to fail.
Instead, we now add the CRDs statically, to prevent issues like these.

See for more info:
https://github.com/kubeflow/kubeflow/pull/7286#issuecomment-1728151521
2023-09-21 09:04:37 +00:00
Lingqing Gan 08eaaba109
fix: remove creationTimestamp line (#7279)
* remove creationTimestamp line

* (testing) undo removal

* (testing) add the removal

* add controller-gen upgrade

* revert controller-gen upgrade
2023-09-19 18:57:28 +00:00
dependabot[bot] b9e42fc422
build(deps): bump gopkg.in/yaml.v3 from 3.0.0-20210107192922-496545a6307b to 3.0.0 in /components/notebook-controller (#7256)
Bumps gopkg.in/yaml.v3 from 3.0.0-20210107192922-496545a6307b to 3.0.0.

---
updated-dependencies:
- dependency-name: gopkg.in/yaml.v3
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-09-19 18:42:29 +00:00
Tobias Goerke edaf2143be
fix: downgrade filebrowser to v2.23.0 (#7247)
this fixes upload issues for cloudflare users
we are waiting for a patch version v2.24.3
2023-09-19 14:51:30 +00:00
Mathew Wicks 194a725119
ci: fix test image replacement (#7263)
* ci: use proper env ref, and set job concurrency

* ci: fix test image replacement

---------

Co-authored-by: Mathew Wicks <thesuperzapper@users.noreply.github.com>
2023-09-06 17:34:32 +00:00
Daniela Plascencia d1c40f9162
docs: add 1.8 roadmap (#7132)
* docs: add 1.8 ROADMAP

* docs: update ROADMAP.md file

* docs: add missing roadmap items

* docs: add pvc viewer as feature and releasing date

* [skip] edit roadmap

* docs: add security roadmap link

* docs: fix typo in link
2023-08-25 21:07:33 +00:00
Diana Atanasova 5a9ee43009
Fix Profile-controller README file & sample files (#7244)
Signed-off-by: diana <difince@gmail.com>
2023-08-22 18:44:09 +00:00
Tobias Goerke 18d175fbb4
fix: viewer-spec.yaml and trigger build (#7230)
* build: minor doc improvement triggering build pipe

* fix: viewer-spec.yaml

Two fields are either not correctly indented or named incorrectly

* fix: add volumes definition required by controller

* feat: use filebrowser:v2.24.2 enabling tus uploads
2023-08-16 18:56:03 +00:00
Pranav Pandit 704f59baf9
resolve build exception generated due to latest gevent version. (#7231) 2023-08-07 14:01:56 +00:00
Tobias Goerke f4f8bf14fb
Add PVCViewer Frontend Integration (#7179)
* Add pvcviewer support to volumes backend

* Modifying volumes manifests for pvcviewer support

* viewer-spec is now valid

* Add frontend integration

* Fix flake8 errors

* Use material spinners to display wait times

* Default PVCViewer SA to default-editor

* fix: remove superfluous space in docker builds (#7224)
2023-08-04 19:01:20 +00:00
Tobias Goerke 303d4cd470
fix: remove superfluous space in docker builds (#7224) 2023-08-01 08:19:09 +00:00
Tobias Goerke 0d9e1ce49e
Update PVCViewer manifests (#7178)
* Update role_binding.yaml

roleRef.name now matches role.metadata.name

* Remove invalid creationTimestamp: null fields

* Use commonLabels over labels
to comply with old kustomize version being used in integration tests

* Use vars in favor of replacements
2023-07-31 18:08:29 +00:00
Elena Zioga d4b6dff87d
[wa-theme-typography]: Define theme and typography (#7062)
* web-apps(front): Define theme and typography

In this commit:
* Create a styles folder that contains all sccs files.
* Define the generic theme and typography.

Signed-off-by: Elena Zioga <elena@arrikto.com>

* web-apps(front): Use the style of the specified body-1 level

Signed-off-by: Elena Zioga <elena@arrikto.com>

* web-apps(front): Use the styles of the specified title and headline levels

Signed-off-by: Elena Zioga <elena@arrikto.com>

* web-apps(front): Use primary color in snackbar component

Signed-off-by: Elena Zioga <elena@arrikto.com>

* web-apps(front): Change back button

Signed-off-by: Elena Zioga <elena@arrikto.com>

* jwa(front): Fix imports after restructuring

Signed-off-by: Elena Zioga <elena@arrikto.com>

* jwa(front): Add mat-typography class in index.html

Signed-off-by: Elena Zioga <elena@arrikto.com>

* jwa(front): Use the style of the specified title level

Signed-off-by: Elena Zioga <elena@arrikto.com>

* jwa(front): Use primary color

Signed-off-by: Elena Zioga <elena@arrikto.com>

* vwa(front): Fix imports after restructuring

Signed-off-by: Elena Zioga <elena@arrikto.com>

* vwa(front): Add mat-typography class in index.html

Signed-off-by: Elena Zioga <elena@arrikto.com>

* vwa(front): Use the style of the specified title level

Signed-off-by: Elena Zioga <elena@arrikto.com>

* twa(front): Fix typo

Signed-off-by: Elena Zioga <elena@arrikto.com>

* twa(front): Add mat-typography class in index.html

Signed-off-by: Elena Zioga <elena@arrikto.com>

* twa(front): Fix imports after restructuring

Signed-off-by: Elena Zioga <elena@arrikto.com>

* twa(front): Use primary color

Signed-off-by: Elena Zioga <elena@arrikto.com>

* twa(front): Fix formatting

Signed-off-by: Elena Zioga <elena@arrikto.com>

* twa(front): Fix ui test

Signed-off-by: Elena Zioga <elena@arrikto.com>

---------

Signed-off-by: Elena Zioga <elena@arrikto.com>
2023-07-31 16:47:29 +00:00
Narayanamurthi Mari b240e47e3d
feat(notebooks): propagate annotations from notebook cr to pods (#7076)
Co-authored-by: osd530 <narayanamurthi.mari@capitalone.com>
2023-07-31 16:43:28 +00:00
Souheil e706807e02
fix(api_default.go): resolve write response call order (#7200) 2023-07-31 16:38:28 +00:00
axel7083 93a70f96cb
feature(notebook): Adding creator user-id to annotation (#7198)
* Adding creator annotation to notebooks

* Adding missing html

* Fixing linter issue

* Fixing prettier

* Adding condition for displaying creator (backward compatibility)
2023-07-31 16:37:29 +00:00
Tobias Goerke b4eed612e9
Add cert-manager install to pvcviewer tests (#7219)
The PVCViewer controller relies on the cert-manager for its webhooks.
We need to install cert-manager for its integration tests to run.
2023-07-31 16:33:29 +00:00
Tobias Goerke fb028eb23b
Add GH action building pvcviewer controller (#7173)
* Add GH action building pvcviewer controller

* Apply template changes on master
2023-07-24 17:41:28 +00:00
Tobias Goerke 174ac3aa9f
Add GH action unit testing pvcviewer controller (#7174) 2023-07-24 17:39:28 +00:00
Pranav Pandit 5cfa81a928
Disabling multi-arch builds for PRs and enable them on Merge for Profile Controller, Profile+KFAM, VWA &TWA (#7183)
* Disabling multiple architecture build for PRs

* Disabling multiple architecture build for PRs on Poddefaults

* Disabling multiple architecture build for PRs on NB Controller

* Disabling multiple architecture build for PRs on JupyterWeb App

* Disabling multiple architecture build for PRs on Profile & KFAM

* Disabling multiple architecture build for PRs on Profile Controller

* Disabling multiple architecture build for PRs on VWA

* Disabling multiple architecture build for PRs on TWA
2023-07-24 17:27:28 +00:00
Jack Homan 6d14c64eee
Profile controller and KFAM allow unauthenticated in-cluster traffic (#7032)
* only allow traffic using userid header from ingress gateway

* only allow traffic using userid header from ingress gateway
2023-07-20 15:37:24 +00:00
axel7083 b81dcdd51f
(frontend): Adding style for main drawer scrollbar (#7211) 2023-07-20 09:36:24 +00:00
一条肥鱼 bdbef50fde
fix: deprecation of 'go get' for installing modules (#7177)
Co-authored-by: esacif <esacif@gmail.com>
2023-07-20 09:35:25 +00:00
dependabot[bot] 2e615a4a56
build(deps-dev): bump word-wrap from 1.2.3 to 1.2.4 in /components/crud-web-apps/volumes/frontend (#7215)
Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4.
- [Release notes](https://github.com/jonschlinkert/word-wrap/releases)
- [Commits](https://github.com/jonschlinkert/word-wrap/compare/1.2.3...1.2.4)

---
updated-dependencies:
- dependency-name: word-wrap
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-07-20 09:34:25 +00:00
Tobias Goerke e5b3b9ec79
Add GH action integration testing pvcviewer controller (#7175) 2023-07-20 09:33:25 +00:00
amitmukati-2604 4958a0c010
Adding changes to build profile-controller and admission-webhook images on pull_request. (#7068) 2023-07-20 09:30:24 +00:00
Pranav Pandit 3733989a62
Disabling multi-arch builds for PRs and enable them on Merge (#7171)
* Disabling multiple architecture build for PRs

* Disabling multiple architecture build for PRs on Poddefaults

* Disabling multiple architecture build for PRs on NB Controller

* Disabling multiple architecture build for PRs on JupyterWeb App
2023-06-28 14:00:16 +00:00
dependabot[bot] 29ee2648f4
build(deps): bump golang.org/x/net from 0.0.0-20220722155237-a158d28d115b to 0.7.0 in /components/pvcviewer-controller (#7167)
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.0.0-20220722155237-a158d28d115b to 0.7.0.
- [Commits](https://github.com/golang/net/commits/v0.7.0)

---
updated-dependencies:
- dependency-name: golang.org/x/net
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-06-14 14:38:35 +00:00
Tobias Goerke a15edce097
Re-Introducing the Volumes Viewer (#6876)
* Integrating volumes viewer into volumes ui backend

* Integrating volumes viewer into volumes ui frontend

* Modified the volume viewer's manifests to be in accordance with the volumes viewer changes

* Bootstrapping/creating VolumesViewer Controller

* Changed/reverted image definitions

* Fixed code style issues

* Run prettier on index-default.component.ts

* Reverted accidental method call change back to getSelectedNamespace2

* Reverted package-lock.json

* Now using the VOLUME_VIEWER_IMAGE env variable in the viewer's podTemplate

* Set readinessProbe.initialDelaySeconds=2 for new viewers

* Removed downward api references in favor of Python variable expansion

* Revised crd schema

- Now includes a status.URL field
- Reverted changes to status.py to minimize diff

* Providing NAME as a possible var for var expansion

* Return and use the VolumesViewer.Status.URL

* Reconcile status while deletion ongoing

* Restored empty line to get file off diff

* Reducing diff on get.py

* Run prettier

* Updated OWNERS/README

* Changes to schema comments / renaming

* Improved test performance and reliability
By cleaning up resources created by tests in afterEach()
Also: Pod watch now only triggers for non-terminating RUNNING/PENDING pods, reducing the number of reconciliation calls

* Renaming VolumesViewer -> PVCViewer as discussed in community meeting

* Moving changes to volumes frontend to another PR as discussed in community meeting

* Renaming file names

* Renaming PVCViewerSpec.PodTemplate -> PodSpec

* Renaming PVCViewerSpec.Service -> Networking

* Adding the Spec.PVC field and validating/defaulting webhooks

* Adding the option to load a default podSpec from file

* Introduced PVCViewer.Status.Conditions

* Validator requires the PVC to be used in podSpec

* Added tests for the validating webhook

* Removed debug log message

* Updating manifests to work with new webhooks

* Updating documentation

* Refactored manager according to specs

* Modifying pvcviewer OWNERS

* Makefile & renaming comp -> pvcviewer-controller

* Changing nameprefix to pvcviewer-

* Setting imagePullPolicy: IfNotPresent

* Adding a base directory

* Generating TLS certs for make run

* Adding a log time encoder
2023-06-14 07:33:34 +00:00
axel7083 14e242de07
feat(centraldashboard): Displaying metrics from Prometheus (#7116)
* # backend

Adding /api/metrics endpoint for `resourceChartsLink` and `resourceChartsLinkText` field.

Adding PrometheusMetricsService class implementing MetricsService

Adding `prometheus-query` package

## MetricsService

Adding `getChartsLink(): MetricsInfo` to MetricsService. It will be used to send client the info about the metrics (resourceChartsLink and resourceChartsLinkText).

## env

- PROMETHEUS_URL: url for prometheus query
- METRICS_DASHBOARD: if defined, will add a button under graphs to go to the url defined

## Prometheus query

- getNodeCpuUtilization: `sum(rate(node_cpu_seconds_total[5m])) by (instance)`
- getPodCpuUtilization: `sum(rate(container_cpu_usage_seconds_total[5m]))`
- getPodMemoryUsage: `sum(container_memory_usage_bytes)`

# frontend

Adding iron-ajax to `/api/metrics`.
Adding `metrics` properties to main-page and dashboard-view.
Making footer of `ressource-chart.js` hidden if resourceChartsLink is undefined.

* Fixing package-lock.json

* Adding Unit Tests and Improvements
2023-06-13 18:19:03 +00:00
Dr. Sebastian Lehrig f74d94cb88
Fix 5007 by adding build ver. to multi-arch build (#7094) 2023-06-13 18:18:03 +00:00
deepk2u 4ead8fb461
centraldashboard: removed critical vulnerabilities from centraldashboard image Fixes #7098 (#7102) 2023-06-13 18:17:03 +00:00
dependabot[bot] cde1e20db6
build(deps): bump socket.io-parser from 4.2.1 to 4.2.3 in /components/centraldashboard-angular/frontend (#7144)
Bumps [socket.io-parser](https://github.com/socketio/socket.io-parser) from 4.2.1 to 4.2.3.
- [Release notes](https://github.com/socketio/socket.io-parser/releases)
- [Changelog](https://github.com/socketio/socket.io-parser/blob/main/CHANGELOG.md)
- [Commits](https://github.com/socketio/socket.io-parser/compare/4.2.1...4.2.3)

---
updated-dependencies:
- dependency-name: socket.io-parser
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-06-13 18:16:03 +00:00
dependabot[bot] dbe428f066
build(deps): bump socket.io-parser from 4.2.1 to 4.2.3 in /components/centraldashboard (#7143)
Bumps [socket.io-parser](https://github.com/socketio/socket.io-parser) from 4.2.1 to 4.2.3.
- [Release notes](https://github.com/socketio/socket.io-parser/releases)
- [Changelog](https://github.com/socketio/socket.io-parser/blob/main/CHANGELOG.md)
- [Commits](https://github.com/socketio/socket.io-parser/compare/4.2.1...4.2.3)

---
updated-dependencies:
- dependency-name: socket.io-parser
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-06-13 18:15:02 +00:00
dependabot[bot] b822c1eee9
build(deps): bump socket.io-parser from 4.2.1 to 4.2.3 in /components/crud-web-apps/jupyter/frontend (#7145)
Bumps [socket.io-parser](https://github.com/socketio/socket.io-parser) from 4.2.1 to 4.2.3.
- [Release notes](https://github.com/socketio/socket.io-parser/releases)
- [Changelog](https://github.com/socketio/socket.io-parser/blob/main/CHANGELOG.md)
- [Commits](https://github.com/socketio/socket.io-parser/compare/4.2.1...4.2.3)

---
updated-dependencies:
- dependency-name: socket.io-parser
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-06-13 18:14:03 +00:00
dlorenc 72f3063b1a
Bump go module versions to patch CVEs. (#7151)
These flag in scanners:
golang.org/x/net   v0.0.0-20211209124913-491a49abca63  0.0.0-20220906165146-f3363e06e74c  go-module  GHSA-69cg-p879-7622  High
golang.org/x/net   v0.0.0-20211209124913-491a49abca63  0.7.0                              go-module  GHSA-vvpx-j8f3-3w6h  High
golang.org/x/sys   v0.0.0-20211029165221-6e7872819dc8  0.0.0-20220412211240-33da011f77ad  go-module  GHSA-p782-xgp4-8hr8  Medium
golang.org/x/text  v0.3.7                              0.3.8                              go-module  GHSA-69ch-w2m2-3vjp  High

Signed-off-by: Dan Lorenc <dlorenc@chainguard.dev>
2023-05-29 13:08:03 +00:00