Skip to content

Commit cf13f8d

Browse files
authored
Merge pull request kubernetes#91261 from tosi3k/am-patch-1
Fix permissions in kube-addon-manager
2 parents d17947e + 3c5585b commit cf13f8d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

cluster/addons/addon-manager/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## Version 9.1.1 (Wed May 19 2020 Antoni Zawodny <[email protected]>)
2+
- Fix kube-addons.sh and kubectl permissions
3+
14
## Version 9.1.0 (Wed May 13 2020 Antoni Zawodny <[email protected]>)
25
- Enable overriding the default list of whitelisted resources
36

cluster/addons/addon-manager/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
IMAGE=staging-k8s.gcr.io/kube-addon-manager
1616
ARCH?=amd64
1717
TEMP_DIR:=$(shell mktemp -d)
18-
VERSION=v9.1.0
18+
VERSION=v9.1.1
1919
KUBECTL_VERSION?=v1.13.2
2020

2121
BASEIMAGE=k8s.gcr.io/debian-base-$(ARCH):v1.0.0
@@ -29,7 +29,7 @@ all: build
2929
build:
3030
cp ./* $(TEMP_DIR)
3131
curl -sSL --retry 5 https://dl.k8s.io/release/$(KUBECTL_VERSION)/bin/linux/$(ARCH)/kubectl > $(TEMP_DIR)/kubectl
32-
chmod +x $(TEMP_DIR)/kubectl
32+
chmod a+rx $(TEMP_DIR)/kube-addons.sh $(TEMP_DIR)/kubectl
3333
cd $(TEMP_DIR) && sed -i.back "s|BASEIMAGE|$(BASEIMAGE)|g" Dockerfile
3434

3535
ifneq ($(ARCH),amd64)

0 commit comments

Comments
 (0)