mirror of https://github.com/k3s-io/k3s
Merge pull request #57392 from chrisglass/gke-spec-tweaks
Automatic merge from submit-queue (batch tested with PRs 57532, 57392). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Gke spec tweaks **What this PR does / why we need it**: This PR removes two unnecessary requirements for the GKE node image validation spec: - The "vim" package doesn't need to be installed, as a vim environment is already available and the full "vim" pacakge installation takes some precious disk space. - The linux headers are not needed for the kubernetes node and cluster tests to succeed, and again, take unnecessary disk space. **Special notes for your reviewer**: None. **Release note**: ```release-note NONE ```pull/6/head
commit
8f8579d439
|
@ -220,7 +220,6 @@ packageSpecs:
|
|||
versionRange: '>=4.2.0'
|
||||
- name: less
|
||||
versionRange: '>=481'
|
||||
- name: linux-headers-${KERNEL_RELEASE}
|
||||
- name: netcat-openbsd
|
||||
versionRange: '>=1.10'
|
||||
- name: python
|
||||
|
@ -235,8 +234,6 @@ packageSpecs:
|
|||
versionRange: '>=1.28'
|
||||
- name: util-linux
|
||||
versionRange: '>=2.27.1'
|
||||
- name: vim
|
||||
versionRange: '>=7.4.712'
|
||||
- name: wget
|
||||
versionRange: '>=1.18'
|
||||
- name: gce-compute-image-packages
|
||||
|
|
Loading…
Reference in New Issue