-
Notifications
You must be signed in to change notification settings - Fork 560
Conversation
246358c
to
802ab7a
Compare
here is clear-containers running with that https://jenkins.azure-containers.io/view/acs-engine/job/k8s-clear-containers/117/console |
802ab7a
to
234cf4c
Compare
Codecov Report
@@ Coverage Diff @@
## master #2973 +/- ##
==========================================
- Coverage 53.01% 52.99% -0.03%
==========================================
Files 104 104
Lines 15683 15689 +6
==========================================
Hits 8314 8314
- Misses 6627 6633 +6
Partials 742 742 |
FYI rebased/force-pushed to accommodate recent changes to CSE in master |
parts/k8s/kubernetescustomscript.sh
Outdated
@@ -339,8 +339,22 @@ function ensureKubelet() { | |||
} | |||
|
|||
function extractHyperkube(){ | |||
retrycmd_if_failure 100 1 60 docker pull $HYPERKUBE_URL || $ERR_K8S_DOWNLOAD_TIMEOUT | |||
systemctlEnableAndStart hyperkube-extract | |||
TMP_DIR=$(mktemp -d) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@jessfraz is TMP_DIR
used anywhere?
test/e2e/runner/cli_provisioner.go
Outdated
@@ -242,7 +242,7 @@ func (cli *CLIProvisioner) FetchProvisioningMetrics(path string, cfg *config.Con | |||
agentFiles := []string{"/var/log/azure/cluster-provision.log", "/var/log/cloud-init.log", | |||
"/var/log/cloud-init-output.log", "/var/log/syslog", "/var/log/azure/custom-script/handler.log", | |||
"/opt/m", "/opt/azure/containers/kubelet.sh", "/opt/azure/containers/provision.sh", | |||
"/opt/azure/provision-ps.log", "/var/log/azure/kubelet-status.log", "/var/log/azure/hyperkube-extract-status.log", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the love here!
@jessfraz
|
pkg/api/types.go
Outdated
@@ -737,6 +737,11 @@ func (a *AgentPoolProfile) HasDisks() bool { | |||
return len(a.DiskSizesGB) > 0 | |||
} | |||
|
|||
// RequiresDocker returns if the kubernetes settings require docker to be installed. | |||
func (a *AgentPoolProfile) RequiresDocker() bool { | |||
return a.KubernetesConfig.ContainerRuntime == "docker" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please forgive my ignorance, but since these are exported, is it guaranteed that this value will always be lower case during its initialization?
ah I tested on the one with containerd, will update |
91fbd17
to
4503665
Compare
looks like dns is failing randomly in the tests is this usual? I am wondering how this might have broken that |
@jessfraz it's testing pod name resolution. What do you see if you build a cluster from this branch and try to resolve DNS from within a pod? |
8a35f22
to
ae2a72b
Compare
Thanks @jessfraz! @CecileRobertMichon or I can help with the rebase, as the CSE implementation is a sensitive surface area constantly undergoing refinements :) |
oh im rebasing
…On Tue, Jun 12, 2018 at 1:45 PM Jack Francis ***@***.***> wrote:
Thanks @jessfraz <https://github.com/jessfraz>! @CecileRobertMichon
<https://github.com/CecileRobertMichon> or I can help with the rebase, as
the CSE implementation is a sensitive surface area constantly undergoing
refinements :)
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#2973 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ABYNbC6EN1LL4qyLBI62LKGFp1fSqo_3ks5t7_4sgaJpZM4UAO7Z>
.
--
Jessie Frazelle
4096R / D4C4 DD60 0D66 F65A 8EFC 511E 18F3 685C 0022 BFF3
pgp.mit.edu <http://pgp.mit.edu/pks/lookup?op=get&search=0x18F3685C0022BFF3>
|
55df327
to
648b747
Compare
FYI rebased, gonna see if we can nudge this into working order |
@jessfraz Just built a v1.8.13 cluster and am able to repro E2E failures. Specifically, resolving external DNS from a pod:
|
ah i will spin up and test |
977bf3b
to
15f5e1c
Compare
it passed \o/ |
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
15f5e1c
to
576d825
Compare
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
/lgtm Thanks @jessfraz! |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: jackfrancis, jessfraz The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
closes #2969
This pull request makes it so when the container runtime is set to
containerd
orclear-containers
docker is never installed.cc @thomastaylor312
Just some clean up after part one in #2967