Skip to content
New issue

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

changed boot Job pod DNS server to 8.8.8.8 #7

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .lighthouse/jenkins-x/pullrequest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,14 @@ spec:
requests:
cpu: 0.1
memory: 128Mi
podTemplate: {}
podTemplate:
dnsPolicy: "None"
dnsConfig:
nameservers:
- 8.8.8.8
options:
- name: ndots
value: "1"
serviceAccountName: tekton-bot
timeout: 12h0m0s
status: {}
9 changes: 8 additions & 1 deletion .lighthouse/jenkins-x/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,14 @@ spec:
requests:
cpu: 0.1
memory: 128Mi
podTemplate: {}
podTemplate:
dnsPolicy: "None"
dnsConfig:
nameservers:
- 8.8.8.8
options:
- name: ndots
value: "1"
serviceAccountName: tekton-bot
timeout: 12h0m0s
status: {}
8 changes: 7 additions & 1 deletion versionStream/git-operator/job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,13 @@ spec:
- mountPath: /workspace
name: workspace-volume
workingDir: /workspace/source
dnsPolicy: ClusterFirst
dnsPolicy: "None"
dnsConfig:
nameservers:
- 8.8.8.8
options:
- name: ndots
value: "1"
restartPolicy: Never
schedulerName: default-scheduler
serviceAccountName: jx-boot-job
Expand Down