mirror of https://github.com/easzlab/kubeasz.git
10 lines
325 B
YAML
10 lines
325 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ template "jenkins.fullname" . }}-tests
|
|
data:
|
|
run.sh: |-
|
|
@test "Testing Jenkins UI is accessible" {
|
|
curl --retry 48 --retry-delay 10 {{ template "jenkins.fullname" . }}:{{ .Values.Master.ServicePort }}{{ default "" .Values.Master.JenkinsUriPrefix }}/login
|
|
}
|