Skip to content

Commit

Permalink
chore: Updates versions for v1.6 (#421)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gmerold authored Nov 25, 2024
1 parent 0ff59bd commit 74033ea
Show file tree
Hide file tree
Showing 6 changed files with 80 additions and 4 deletions.
30 changes: 30 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,33 @@ updates:
terraform_modules:
patterns:
- "*"

- package-ecosystem: "github-actions"
target-branch: v1.5
directory: "/"
schedule:
interval: "weekly"
commit-message:
prefix: "chore: "
labels:
- v1.5

- package-ecosystem: "pip"
target-branch: v1.5
directory: "/"
schedule:
interval: "weekly"
commit-message:
prefix: "chore: "
labels:
- v1.5

- package-ecosystem: "terraform"
target-branch: v1.5
directory: "/terraform/"
schedule:
interval: "weekly"
commit-message:
prefix: "chore: "
labels:
- v1.5
45 changes: 45 additions & 0 deletions .github/workflows/1_5_scheduled_runs.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
name: Release 1.5

on:
schedule:
- cron: '0 3 * * 0'

jobs:
codeql:
name: CodeQL Analysis
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
with:
branch-name: "v1.5"

lint-report:
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
with:
branch-name: "v1.5"

terraform-check:
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
with:
branch-name: "v1.5"

static-analysis:
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
with:
branch-name: "v1.5"

unit-tests-with-coverage:
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
with:
branch-name: "v1.5"

integration-test:
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
with:
branch-name: "v1.5"
charm-file-name: "sdcore-amf-k8s_ubuntu-22.04-amd64.charm"

update-libs:
name: Update libs
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
with:
branch-name: "v1.5"
secrets: inherit
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
if: ${{ github.ref_name == 'main' }}
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
with:
track-name: 1.5
track-name: 1.6
secrets:
CHARMCRAFT_AUTH: ${{ secrets.CHARMCRAFT_AUTH }}

Expand All @@ -68,7 +68,7 @@ jobs:
uses: canonical/sdcore-github-workflows/.github/workflows/[email protected]
with:
branch-name: ${{ github.ref_name }}
track-name: 1.5
track-name: 1.6
secrets:
CHARMCRAFT_AUTH: ${{ secrets.CHARMCRAFT_AUTH }}

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/promote.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:
description: Name of the charmhub track to publish
options:
- '1.5'
- '1.6'
- latest


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ juju add-model user-plane
Deploy the UPF:

```bash
juju deploy sdcore-upf-k8s --trust --channel=1.5/edge
juju deploy sdcore-upf-k8s --trust --channel=1.6/edge
```

### Exposing the UPF externally
Expand Down
2 changes: 1 addition & 1 deletion terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ variable "app_name" {
variable "channel" {
description = "The channel to use when deploying a charm."
type = string
default = "1.5/edge"
default = "1.6/edge"
}

variable "config" {
Expand Down

0 comments on commit 74033ea

Please sign in to comment.