-
Notifications
You must be signed in to change notification settings - Fork 95
SWAT-59 - ingressClassName support #703
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 8 commits
5dcc566
2d1fb67
56e12c9
15aaca4
92e1777
3a7e9a7
d80fc83
1f2e091
89614f8
5bc20e0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| 3.14.2 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,6 +3,7 @@ set -e | |
|
|
||
| KIND_VERSION="0.31.0" # https://github.com/kubernetes-sigs/kind/releases | ||
| HELM_VERSION="3.20.0" # https://github.com/helm/helm/releases | ||
| UV_VERSION="0.10.7" # https://github.com/astral-sh/uv/releases | ||
|
|
||
| # Determine the platform we are running on | ||
| OS=$(uname | tr '[:upper:]' '[:lower:]') | ||
|
|
@@ -46,4 +47,12 @@ else | |
| chmod +x ./kubectl | ||
| fi | ||
|
|
||
| echo "Installing uv version ${UV_VERSION}..." | ||
| if [[ -f /tmp/bin/uv ]]; then | ||
| echo "Already installed in /tmp/bin. Skipping!" | ||
| else | ||
| curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/uv/releases/download/${UV_VERSION}/uv-installer.sh | sh | ||
| mv "$HOME/.local/bin/uv" /tmp/bin/ | ||
| fi | ||
|
|
||
|
Comment on lines
+50
to
+57
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this needed? Was there a problem in CI without this?
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| cd "$CURRENT_DIR" | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,8 @@ | ||
| # https://www.python.org/dev/peps/pep-0518/#file-format | ||
| [build-system] | ||
| requires = ["setuptools>=61.0", "wheel"] | ||
| build-backend = "setuptools.build_meta" | ||
|
|
||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this needed? We do not build a python package in this repo.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. FWIW the way we use
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you're right, I didn't use uv locally which caused some issues. with |
||
| [project] | ||
| name = "airflow-chart-dev-env" | ||
| description = "astronomer airflow-chart development environment" | ||
|
|
@@ -26,6 +30,9 @@ dependencies = [ | |
| "yamllint>=1.37.1", | ||
| ] | ||
|
|
||
| [tool.setuptools] | ||
| packages = [] | ||
|
|
||
|
stefan-raducan marked this conversation as resolved.
Outdated
|
||
| # https://docs.astral.sh/ruff/settings/ | ||
| [tool.ruff] | ||
| line-length = 132 | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.