-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '6/edge' into DPE-5089-use-node-port
- Loading branch information
Showing
17 changed files
with
4,366 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ on: | |
jobs: | ||
lint: | ||
name: Lint | ||
uses: canonical/data-platform-workflows/.github/workflows/lint.yaml@v18.0.0 | ||
uses: canonical/data-platform-workflows/.github/workflows/lint.yaml@v20.0.2 | ||
|
||
lib-check: | ||
name: Check libraries | ||
|
@@ -55,20 +55,26 @@ jobs: | |
uses: codecov/codecov-action@v3 | ||
|
||
build: | ||
name: Build charm | ||
uses: canonical/data-platform-workflows/.github/workflows/[email protected] | ||
name: Build charm | ${{ matrix.path }} | ||
uses: canonical/data-platform-workflows/.github/workflows/[email protected] | ||
strategy: | ||
matrix: | ||
path: | ||
- . | ||
- tests/integration/application | ||
with: | ||
cache: true | ||
path-to-charm-directory: ${{ matrix.path }} | ||
|
||
integration-test: | ||
name: Integration test charm | 3.4.4 | ||
needs: | ||
- lint | ||
- unit-test | ||
- build | ||
uses: canonical/data-platform-workflows/.github/workflows/integration_test_charm.yaml@v18.0.0 | ||
uses: canonical/data-platform-workflows/.github/workflows/integration_test_charm.yaml@v20.0.2 | ||
with: | ||
artifact-prefix: ${{ needs.build.outputs.artifact-prefix }} | ||
artifact-prefix: packed-charm-cache-true | ||
cloud: microk8s | ||
microk8s-snap-channel: 1.29-strict/stable | ||
juju-agent-version: 3.4.4 # renovate: juju-agent-pin-minor | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,15 @@ | ||
# Copyright 2023 Canonical Ltd. | ||
# Copyright 2024 Canonical Ltd. | ||
# See LICENSE file for licensing details. | ||
|
||
options: | ||
expose-external: | ||
description: "String to determine how to expose the mongos router externally from the Kubernetes cluster. Possible values: 'nodeport', 'none'" | ||
type: string | ||
default: "none" | ||
|
||
auto-delete: | ||
type: boolean | ||
description: | | ||
When a relation is removed, auto-delete ensures that any relevant databases | ||
associated with the relation are also removed | ||
default: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Copyright 2024 Canonical Ltd. | ||
# See LICENSE file for licensing details. | ||
|
||
type: charm | ||
bases: | ||
- build-on: | ||
- name: "ubuntu" | ||
channel: "22.04" | ||
run-on: | ||
- name: "ubuntu" | ||
channel: "22.04" |
Oops, something went wrong.