Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 14 additions & 5 deletions .github/workflows/kubeconform-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:

env:
UV_VERSION: 0.9.13
KUBECTL_VERSION: v1.33.0
KUBECONFORM_VERSION: v0.7.0

jobs:
load-environments:
Expand Down Expand Up @@ -38,11 +40,18 @@ jobs:
enable-cache: true
version: ${{ env.UV_VERSION }}

- name: Install Kubernetes tools
uses: alexellis/arkade-get@master
with:
kubectl: latest
kubeconform: v0.7.0
- name: Install kubectl
run: |
curl -LO "https://dl.k8s.io/release/${{ env.KUBECTL_VERSION }}/bin/linux/amd64/kubectl"
chmod +x kubectl
sudo mv kubectl /usr/local/bin/

- name: Install kubeconform
run: |
curl -LO "https://github.com/yannh/kubeconform/releases/download/${{ env.KUBECONFORM_VERSION }}/kubeconform-linux-amd64.tar.gz"
tar xzf kubeconform-linux-amd64.tar.gz
chmod +x kubeconform
sudo mv kubeconform /usr/local/bin/

- name: Setup Tutor environment
run: |
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
patches:
{% if DRYDOCK_NEWRELIC_LICENSE_KEY %}
- target:
kind: Deployment
Expand Down
14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "tutor-contrib-drydock"
version = "20.2.0"
version = "21.0.0"
description = "A Tutor plugin to manage our opinionated Open edX operations"
readme = "README.md"
requires-python = ">=3.10"
Expand All @@ -20,7 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.13",
]
dependencies = [
"tutor~=20.0"
"tutor~=21.0"
]

[project.urls]
Expand Down Expand Up @@ -59,7 +59,7 @@ module-root = "."
module-name = "drydock"

[tool.uv.sources]
tutor-contrib-s3 = { git = "https://github.com/hastexo/tutor-contrib-s3" }
tutor-contrib-s3 = { git = "https://github.com/cleura/tutor-contrib-s3", tag = "v2.5.0" }

[build-system]
requires = ["uv_build>=0.9.5,<0.10.0"]
Expand All @@ -73,9 +73,9 @@ dev = [
]
test = [
"tutor-contrib-s3",
"tutor-forum~=20.0",
"tutor-mfe~=20.0",
"tutor-minio~=20.0",
"tutor-notes~=20.0",
"tutor-forum~=21.0",
"tutor-mfe~=21.0",
"tutor-minio~=21.0",
"tutor-notes~=21.0",
]

38 changes: 19 additions & 19 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.