Skip to content

Commit

Permalink
Merge pull request #520 from canonical/dev/KF-6129
Browse files Browse the repository at this point in the history
Update cert_handler lib to v1
  • Loading branch information
rgildein committed Aug 22, 2024
2 parents fcc67bf + 5279b0c commit b869dbe
Show file tree
Hide file tree
Showing 8 changed files with 1,402 additions and 958 deletions.
28 changes: 18 additions & 10 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,17 @@ jobs:
- integration-tls-provider
- integration-tls-secret
steps:
# Ideally we'd use self-hosted runners, but this effort is still not stable
# This action will remove unused software (dotnet, haskell, android libs, codeql,
# and docker images) from the GH runner.
# This leaves ~45GB free as of 2024-04-10, but this amount has varied as GH changed their
# runners
- name: Maximise GH runner space
uses: jlumbroso/[email protected]

- name: Check out repo
uses: actions/checkout@v4

- name: Setup operator environment
uses: charmed-kubernetes/actions-operator@main
with:
Expand All @@ -65,30 +73,30 @@ jobs:
microk8s-addons: "dns hostpath-storage rbac metallb:10.64.140.43-10.64.140.49"
juju-channel: 3.4/stable
charmcraft-channel: latest/candidate

- name: Run integration tests
run: |
juju add-model test-istio
tox -e ${{ matrix.integration-types }} -- --model test-istio
timeout-minutes: 80

- name: Setup Debug Artifact Collection
run: mkdir tmp
if: failure()

- name: Collect charmcraft logs
if: failure()
run: |
cat /home/runner/.local/state/charmcraft/log/charmcraft-*.log | tee tmp/charmcraft.log
- name: Collect Juju status
if: failure()
run: juju status | tee tmp/juju-status.txt

- name: Collect Juju log
if: failure()
run: juju debug-log --replay --no-tail | tee tmp/juju-status.txt

- name: Collect Kube status
if: failure()
run: |
Expand All @@ -98,13 +106,13 @@ jobs:
kubectl describe deployments -A | tee tmp/kube-deployments.txt
kubectl describe replicasets -A | tee tmp/kubectl-replicasets.txt
kubectl exec -n test-istio istio-pilot-0 --container charm -- agents/unit-istio-pilot-0/charm/istioctl analyze -n test-istio | tee tmp/istioctl-analyze.txt
- name: Collect Kube logs
if: failure()
run: |
kubectl logs -n test-istio --tail 1000 -lapp.kubernetes.io/name=istio-pilot -c charm | tee tmp/istio-pilot.log
kubectl logs -n test-istio --tail 1000 -lapp.kubernetes.io/name=istio-ingressgateway-operator -c charm | tee tmp/istio-ingressgateway-operator.log
- name: Upload debug artifacts
if: failure()
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -132,7 +140,7 @@ jobs:
microk8s-addons: "dns hostpath-storage rbac metallb:10.64.140.43-10.64.140.49"
juju-channel: 3.4/stable
charmcraft-channel: latest/candidate

- name: Run observability integration tests
run: |
juju add-model cos-test
Expand Down
Loading

0 comments on commit b869dbe

Please sign in to comment.