We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b29b52 commit 66deeaeCopy full SHA for 66deeae
1 file changed
.github/workflows/test.yml
@@ -115,6 +115,15 @@ jobs:
115
--set controller.service.type='NodePort' \
116
--set controller.admissionWebhooks.enabled=false
117
118
+ - name: Install Operator Lifecycle Manager (OLM)
119
+ # In case we need to install additional Operators
120
+ env:
121
+ OLM_VERSION: "v0.31.0"
122
+ run: |
123
+ curl -L "https://github.com/operator-framework/operator-lifecycle-manager/releases/download/${OLM_VERSION}/install.sh" -o install-olm.sh
124
+ chmod +x install-olm.sh
125
+ ./install-olm.sh "${OLM_VERSION}"
126
+
127
- name: Run chart-testing
128
run: |
129
ct install \
0 commit comments