We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement unit test for openshiftApply step which tests:
oc convert -f ${tmpfile}
apiVersion: extensions/v1beta1 kind: Deployment spec: template: spec: containers: - name: mycontainer resources: limits: cpu: 1 # Wrong type, must be a string ...
or:
apiVersion: v1 # Unknown type, API group is missing kind: DeploymentConfig ...
oc apply -f ${tmpfile} -l "app=${appLabel}" --prune
oc rollout status ${rolloutKind}/${appLabel}
oc rollout status ${rolloutKind}/${object}
The text was updated successfully, but these errors were encountered:
OC Install check und Rollout abgdeckt durch #42
Andere Testfälle ev. durch einen System Test abdecken
Sorry, something went wrong.
SylivanKenobi
Successfully merging a pull request may close this issue.
Implement unit test for openshiftApply step which tests:
oc convert -f ${tmpfile}
to validate configuration argumentor:
oc apply -f ${tmpfile} -l "app=${appLabel}" --prune
oc rollout status ${rolloutKind}/${appLabel}
oc rollout status ${rolloutKind}/${object}
for every rolloutKind object matched by rolloutSelectorThe text was updated successfully, but these errors were encountered: