Skip to content

Commit 0b49b04

Browse files
authored
chore: remove the OSH submodules (#862)
Signed-off-by: Kevin Carter <[email protected]>
1 parent a7ebc0d commit 0b49b04

23 files changed

+58
-222
lines changed

.github/workflows/helm-barbican.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,13 @@ jobs:
3030
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
3131
chmod +x ./kubectl
3232
fi
33-
- name: Pull OSH submodules
33+
- name: Pull OSH repositories
3434
run: |
35-
git submodule update --init submodules/openstack-helm
36-
git submodule update --init submodules/openstack-helm-infra
37-
- name: Make OSH submodule
38-
run: |
39-
cd submodules/openstack-helm
40-
make barbican
35+
helm repo add openstack-helm https://tarballs.opendev.org/openstack/openstack-helm
36+
helm repo update
4137
- name: Run Helm Template
4238
run: |
43-
cd submodules/openstack-helm
44-
${{ steps.helm.outputs.helm-path }} template barbican ./barbican \
39+
${{ steps.helm.outputs.helm-path }} template barbican openstack-helm/barbican \
4540
--namespace=openstack \
4641
--wait \
4742
--timeout 120m \

.github/workflows/helm-cinder.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,13 @@ jobs:
3030
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
3131
chmod +x ./kubectl
3232
fi
33-
- name: Pull OSH submodules
33+
- name: Pull OSH repositories
3434
run: |
35-
git submodule update --init submodules/openstack-helm
36-
git submodule update --init submodules/openstack-helm-infra
37-
- name: Make OSH submodule
38-
run: |
39-
cd submodules/openstack-helm
40-
make cinder
35+
helm repo add openstack-helm https://tarballs.opendev.org/openstack/openstack-helm
36+
helm repo update
4137
- name: Run Helm Template
4238
run: |
43-
cd submodules/openstack-helm
44-
${{ steps.helm.outputs.helm-path }} template cinder ./cinder \
39+
${{ steps.helm.outputs.helm-path }} template cinder openstack-helm/cinder \
4540
--namespace=openstack \
4641
--wait \
4742
--timeout 120m \

.github/workflows/helm-glance.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,13 @@ jobs:
3030
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
3131
chmod +x ./kubectl
3232
fi
33-
- name: Pull OSH submodules
33+
- name: Pull OSH repositories
3434
run: |
35-
git submodule update --init submodules/openstack-helm
36-
git submodule update --init submodules/openstack-helm-infra
37-
- name: Make OSH submodule
38-
run: |
39-
cd submodules/openstack-helm
40-
make glance
35+
helm repo add openstack-helm https://tarballs.opendev.org/openstack/openstack-helm
36+
helm repo update
4137
- name: Run Helm Template
4238
run: |
43-
cd submodules/openstack-helm
44-
${{ steps.helm.outputs.helm-path }} template glance ./glance \
39+
${{ steps.helm.outputs.helm-path }} template glance openstack-helm/glance \
4540
--namespace=openstack \
4641
--wait \
4742
--timeout 120m \

.github/workflows/helm-heat.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,13 @@ jobs:
3030
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
3131
chmod +x ./kubectl
3232
fi
33-
- name: Pull OSH submodules
33+
- name: Pull OSH repositories
3434
run: |
35-
git submodule update --init submodules/openstack-helm
36-
git submodule update --init submodules/openstack-helm-infra
37-
- name: Make OSH submodule
38-
run: |
39-
cd submodules/openstack-helm
40-
make heat
35+
helm repo add openstack-helm https://tarballs.opendev.org/openstack/openstack-helm
36+
helm repo update
4137
- name: Run Helm Template
4238
run: |
43-
cd submodules/openstack-helm
44-
${{ steps.helm.outputs.helm-path }} template heat ./heat \
39+
${{ steps.helm.outputs.helm-path }} template heat openstack-helm/heat \
4540
--namespace=openstack \
4641
--wait \
4742
--timeout 120m \

.github/workflows/helm-horizon.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,13 @@ jobs:
3030
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
3131
chmod +x ./kubectl
3232
fi
33-
- name: Pull OSH submodules
33+
- name: Pull OSH repositories
3434
run: |
35-
git submodule update --init submodules/openstack-helm
36-
git submodule update --init submodules/openstack-helm-infra
37-
- name: Make OSH submodule
38-
run: |
39-
cd submodules/openstack-helm
40-
make horizon
35+
helm repo add openstack-helm https://tarballs.opendev.org/openstack/openstack-helm
36+
helm repo update
4137
- name: Run Helm Template
4238
run: |
43-
cd submodules/openstack-helm
44-
${{ steps.helm.outputs.helm-path }} template horizon ./horizon \
39+
${{ steps.helm.outputs.helm-path }} template horizon openstack-helm/horizon \
4540
--namespace=openstack \
4641
--wait \
4742
--timeout 120m \

.github/workflows/helm-keystone.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,13 @@ jobs:
3030
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
3131
chmod +x ./kubectl
3232
fi
33-
- name: Pull OSH submodules
33+
- name: Pull OSH repositories
3434
run: |
35-
git submodule update --init submodules/openstack-helm
36-
git submodule update --init submodules/openstack-helm-infra
37-
- name: Make OSH submodule
38-
run: |
39-
cd submodules/openstack-helm
40-
make keystone
35+
helm repo add openstack-helm https://tarballs.opendev.org/openstack/openstack-helm
36+
helm repo update
4137
- name: Run Helm Template
4238
run: |
43-
cd submodules/openstack-helm
44-
${{ steps.helm.outputs.helm-path }} template keystone ./keystone \
39+
${{ steps.helm.outputs.helm-path }} template keystone openstack-helm/keystone \
4540
--namespace=openstack \
4641
--wait \
4742
--timeout 120m \

.github/workflows/helm-libvirt.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,18 +28,13 @@ jobs:
2828
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
2929
chmod +x ./kubectl
3030
fi
31-
- name: Pull OSH submodules
31+
- name: Pull OSH repositories
3232
run: |
33-
git submodule update --init submodules/openstack-helm
34-
git submodule update --init submodules/openstack-helm-infra
35-
- name: Make OSH submodule
36-
run: |
37-
cd submodules/openstack-helm-infra
38-
make libvirt
33+
helm repo add openstack-helm-infra https://tarballs.opendev.org/openstack/openstack-helm-infra
34+
helm repo update
3935
- name: Run Helm Template
4036
run: |
41-
cd submodules/openstack-helm-infra
42-
${{ steps.helm.outputs.helm-path }} template libvirt ./libvirt \
37+
${{ steps.helm.outputs.helm-path }} template libvirt openstack-helm-infra/libvirt \
4338
--namespace=openstack \
4439
--wait \
4540
--timeout 120m \

.github/workflows/helm-magnum.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,13 @@ jobs:
3030
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
3131
chmod +x ./kubectl
3232
fi
33-
- name: Pull OSH submodules
33+
- name: Pull OSH repositories
3434
run: |
35-
git submodule update --init submodules/openstack-helm
36-
git submodule update --init submodules/openstack-helm-infra
37-
- name: Make OSH submodule
38-
run: |
39-
cd submodules/openstack-helm
40-
make magnum
35+
helm repo add openstack-helm https://tarballs.opendev.org/openstack/openstack-helm
36+
helm repo update
4137
- name: Run Helm Template
4238
run: |
43-
cd submodules/openstack-helm
44-
${{ steps.helm.outputs.helm-path }} template magnum ./magnum \
39+
${{ steps.helm.outputs.helm-path }} template magnum openstack-helm/magnum \
4540
--namespace=openstack \
4641
--wait \
4742
--timeout 120m \

.github/workflows/helm-neutron.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,13 @@ jobs:
3030
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
3131
chmod +x ./kubectl
3232
fi
33-
- name: Pull OSH submodules
33+
- name: Pull OSH repositories
3434
run: |
35-
git submodule update --init submodules/openstack-helm
36-
git submodule update --init submodules/openstack-helm-infra
37-
- name: Make OSH submodule
38-
run: |
39-
cd submodules/openstack-helm
40-
make neutron
35+
helm repo add openstack-helm https://tarballs.opendev.org/openstack/openstack-helm
36+
helm repo update
4137
- name: Run Helm Template
4238
run: |
43-
cd submodules/openstack-helm
44-
${{ steps.helm.outputs.helm-path }} template neutron ./neutron \
39+
${{ steps.helm.outputs.helm-path }} template neutron openstack-helm/neutron \
4540
--namespace=openstack \
4641
--wait \
4742
--timeout 120m \

.github/workflows/helm-nova.yaml

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,18 +30,13 @@ jobs:
3030
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
3131
chmod +x ./kubectl
3232
fi
33-
- name: Pull OSH submodules
33+
- name: Pull OSH repositories
3434
run: |
35-
git submodule update --init submodules/openstack-helm
36-
git submodule update --init submodules/openstack-helm-infra
37-
- name: Make OSH submodule
38-
run: |
39-
cd submodules/openstack-helm
40-
make nova
35+
helm repo add openstack-helm https://tarballs.opendev.org/openstack/openstack-helm
36+
helm repo update
4137
- name: Run Helm Template
4238
run: |
43-
cd submodules/openstack-helm
44-
${{ steps.helm.outputs.helm-path }} template nova ./nova \
39+
${{ steps.helm.outputs.helm-path }} template nova openstack-helm/nova \
4540
--namespace=openstack \
4641
--wait \
4742
--timeout 120m \

0 commit comments

Comments
 (0)