Skip to content
Open
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
7 changes: 6 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:
charmhub-token: ${{ secrets.CHARMCRAFT_CREDENTIALS }}

integration:
name: Integration tests (microk8s)
name: Integration tests
needs:
- build
runs-on: ubuntu-24.04
Expand Down Expand Up @@ -251,6 +251,11 @@ jobs:
juju add-model kubeflow
tox -e bundle-integration -- --model kubeflow --charms-path=${{ github.workspace }}/charms/ --bundle=./tests/integration/bundles/bundle.yaml.j2

- name: Setup tmate session
uses: mxschmitt/action-tmate@v3
timeout-minutes: 60
if: failure()

- name: Get all
run: kubectl get all -A
if: failure()
Expand Down
1 change: 1 addition & 0 deletions charms/kfp-api/terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ The module offers the following configurable inputs:
| Name | Type | Description | Required |
| - | - | - | - |
| `app_name`| string | Application name | False |
| `base`| string | Charm base | False |
| `channel`| string | Channel that the charm is deployed from | False |
| `config`| map(string) | Map of the charm configuration options | False |
| `model_name`| string | Name of the model that the charm is deployed on | True |
Expand Down
1 change: 1 addition & 0 deletions charms/kfp-api/terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
resource "juju_application" "kfp_api" {
charm {
name = "kfp-api"
base = var.base
channel = var.channel
revision = var.revision
}
Expand Down
6 changes: 6 additions & 0 deletions charms/kfp-api/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ variable "app_name" {
default = "kfp-api"
}

variable "base" {
description = "Charm base"
type = string
default = "[email protected]"
}

variable "channel" {
description = "Charm channel"
type = string
Expand Down
2 changes: 1 addition & 1 deletion charms/kfp-api/terraform/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
juju = {
source = "juju/juju"
version = ">= 0.14.0"
version = ">= 0.14.0, < 1.0.0"
}
}
}
1 change: 1 addition & 0 deletions charms/kfp-metadata-writer/.charmcraft_output_packages.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
[email protected]
1 change: 1 addition & 0 deletions charms/kfp-metadata-writer/terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The module offers the following configurable inputs:
| Name | Type | Description | Required |
| - | - | - | - |
| `app_name`| string | Application name | False |
| `base`| string | Charm base | False |
| `channel`| string | Channel that the charm is deployed from | False |
| `config`| map(string) | Map of the charm configuration options | False |
| `model_name`| string | Name of the model that the charm is deployed on | True |
Expand Down
1 change: 1 addition & 0 deletions charms/kfp-metadata-writer/terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
resource "juju_application" "kfp_metadata_writer" {
charm {
name = "kfp-metadata-writer"
base = var.base
channel = var.channel
revision = var.revision
}
Expand Down
6 changes: 6 additions & 0 deletions charms/kfp-metadata-writer/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ variable "app_name" {
default = "kfp-metadata-writer"
}

variable "base" {
description = "Charm base"
type = string
default = "[email protected]"
}

variable "channel" {
description = "Charm channel"
type = string
Expand Down
2 changes: 1 addition & 1 deletion charms/kfp-metadata-writer/terraform/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
juju = {
source = "juju/juju"
version = ">= 0.14.0"
version = ">= 0.14.0, < 1.0.0"
}
}
}
1 change: 1 addition & 0 deletions charms/kfp-persistence/terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The module offers the following configurable inputs:
| Name | Type | Description | Required |
| - | - | - | - |
| `app_name`| string | Application name | False |
| `base`| string | Charm base | False |
| `channel`| string | Channel that the charm is deployed from | False |
| `config`| map(string) | Map of the charm configuration options | False |
| `model_name`| string | Name of the model that the charm is deployed on | True |
Expand Down
1 change: 1 addition & 0 deletions charms/kfp-persistence/terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
resource "juju_application" "kfp_persistence" {
charm {
name = "kfp-persistence"
base = var.base
channel = var.channel
revision = var.revision
}
Expand Down
6 changes: 6 additions & 0 deletions charms/kfp-persistence/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ variable "app_name" {
default = "kfp-persistence"
}

variable "base" {
description = "Charm base"
type = string
default = "[email protected]"
}

variable "channel" {
description = "Charm channel"
type = string
Expand Down
2 changes: 1 addition & 1 deletion charms/kfp-persistence/terraform/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
juju = {
source = "juju/juju"
version = ">= 0.14.0"
version = ">= 0.14.0, < 1.0.0"
}
}
}
1 change: 1 addition & 0 deletions charms/kfp-profile-controller/terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The module offers the following configurable inputs:
| Name | Type | Description | Required |
| - | - | - | - |
| `app_name`| string | Application name | False |
| `base`| string | Charm base | False |
| `channel`| string | Channel that the charm is deployed from | False |
| `config`| map(string) | Map of the charm configuration options | False |
| `model_name`| string | Name of the model that the charm is deployed on | True |
Expand Down
1 change: 1 addition & 0 deletions charms/kfp-profile-controller/terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
resource "juju_application" "kfp_profile_controller" {
charm {
name = "kfp-profile-controller"
base = var.base
channel = var.channel
revision = var.revision
}
Expand Down
6 changes: 6 additions & 0 deletions charms/kfp-profile-controller/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ variable "app_name" {
default = "kfp-profile-controller"
}

variable "base" {
description = "Charm base"
type = string
default = "[email protected]"
}

variable "channel" {
description = "Charm channel"
type = string
Expand Down
2 changes: 1 addition & 1 deletion charms/kfp-profile-controller/terraform/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
juju = {
source = "juju/juju"
version = ">= 0.14.0"
version = ">= 0.14.0, < 1.0.0"
}
}
}
1 change: 1 addition & 0 deletions charms/kfp-schedwf/terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The module offers the following configurable inputs:
| Name | Type | Description | Required |
| - | - | - | - |
| `app_name`| string | Application name | False |
| `base`| string | Charm base | False |
| `channel`| string | Channel that the charm is deployed from | False |
| `config`| map(string) | Map of the charm configuration options | False |
| `model_name`| string | Name of the model that the charm is deployed on | True |
Expand Down
1 change: 1 addition & 0 deletions charms/kfp-schedwf/terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
resource "juju_application" "kfp_schedwf" {
charm {
name = "kfp-schedwf"
base = var.base
channel = var.channel
revision = var.revision
}
Expand Down
6 changes: 6 additions & 0 deletions charms/kfp-schedwf/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ variable "app_name" {
default = "kfp-schedwf"
}

variable "base" {
description = "Charm base"
type = string
default = "[email protected]"
}

variable "channel" {
description = "Charm channel"
type = string
Expand Down
2 changes: 1 addition & 1 deletion charms/kfp-schedwf/terraform/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
juju = {
source = "juju/juju"
version = ">= 0.14.0"
version = ">= 0.14.0, < 1.0.0"
}
}
}
1 change: 1 addition & 0 deletions charms/kfp-ui/terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The module offers the following configurable inputs:
| Name | Type | Description | Required |
| - | - | - | - |
| `app_name`| string | Application name | False |
| `base`| string | Charm base | False |
| `channel`| string | Channel that the charm is deployed from | False |
| `config`| map(string) | Map of the charm configuration options | False |
| `model_name`| string | Name of the model that the charm is deployed on | True |
Expand Down
1 change: 1 addition & 0 deletions charms/kfp-ui/terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
resource "juju_application" "kfp_ui" {
charm {
name = "kfp-ui"
base = var.base
channel = var.channel
revision = var.revision
}
Expand Down
6 changes: 6 additions & 0 deletions charms/kfp-ui/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ variable "app_name" {
default = "kfp-ui"
}

variable "base" {
description = "Charm base"
type = string
default = "[email protected]"
}

variable "channel" {
description = "Charm channel"
type = string
Expand Down
2 changes: 1 addition & 1 deletion charms/kfp-ui/terraform/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
juju = {
source = "juju/juju"
version = ">= 0.14.0"
version = ">= 0.14.0, < 1.0.0"
}
}
}
1 change: 1 addition & 0 deletions charms/kfp-viewer/terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The module offers the following configurable inputs:
| Name | Type | Description | Required |
| - | - | - | - |
| `app_name`| string | Application name | False |
| `base`| string | Charm base | False |
| `channel`| string | Channel that the charm is deployed from | False |
| `config`| map(string) | Map of the charm configuration options | False |
| `model_name`| string | Name of the model that the charm is deployed on | True |
Expand Down
1 change: 1 addition & 0 deletions charms/kfp-viewer/terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
resource "juju_application" "kfp_viewer" {
charm {
name = "kfp-viewer"
base = var.base
channel = var.channel
revision = var.revision
}
Expand Down
6 changes: 6 additions & 0 deletions charms/kfp-viewer/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ variable "app_name" {
default = "kfp-viewer"
}

variable "base" {
description = "Charm base"
type = string
default = "[email protected]"
}

variable "channel" {
description = "Charm channel"
type = string
Expand Down
2 changes: 1 addition & 1 deletion charms/kfp-viewer/terraform/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
juju = {
source = "juju/juju"
version = ">= 0.14.0"
version = ">= 0.14.0, < 1.0.0"
}
}
}
1 change: 1 addition & 0 deletions charms/kfp-viz/terraform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The module offers the following configurable inputs:
| Name | Type | Description | Required |
| - | - | - | - |
| `app_name`| string | Application name | False |
| `base`| string | Charm base | False |
| `channel`| string | Channel that the charm is deployed from | False |
| `config`| map(string) | Map of the charm configuration options | False |
| `model_name`| string | Name of the model that the charm is deployed on | True |
Expand Down
1 change: 1 addition & 0 deletions charms/kfp-viz/terraform/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
resource "juju_application" "kfp_viz" {
charm {
name = "kfp-viz"
base = var.base
channel = var.channel
revision = var.revision
}
Expand Down
6 changes: 6 additions & 0 deletions charms/kfp-viz/terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ variable "app_name" {
default = "kfp-viz"
}

variable "base" {
description = "Charm base"
type = string
default = "[email protected]"
}

variable "channel" {
description = "Charm channel"
type = string
Expand Down
2 changes: 1 addition & 1 deletion charms/kfp-viz/terraform/versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ terraform {
required_providers {
juju = {
source = "juju/juju"
version = ">= 0.14.0"
version = ">= 0.14.0, < 1.0.0"
}
}
}
Loading