Skip to content

Commit

Permalink
Disable "tag as local" when reboot (#2451)
Browse files Browse the repository at this point in the history
* Disable "tag as local" when reboot

* Change INSECURE flag from False to True

Signed-off-by: Yun Li <yunli1@microsoft.com>
  • Loading branch information
lixiaoyuner authored and yxieca committed Dec 1, 2022
1 parent 4b7335f commit d2fa21c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/kube.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def _update_kube_server(db, field, val):
def_data = {
KUBE_SERVER_IP: "",
KUBE_SERVER_PORT: "6443",
KUBE_SERVER_INSECURE: "False",
KUBE_SERVER_INSECURE: "True",
KUBE_SERVER_DISABLE: "False"
}
for f in def_data:
Expand Down
2 changes: 1 addition & 1 deletion scripts/reboot
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ EXIT_PLATFORM_FW_AU_FAILURE=22
PLATFORM_FWUTIL_AU_REBOOT_HANDLE="platform_fw_au_reboot_handle"
REBOOT_SCRIPT_NAME=$(basename $0)
REBOOT_TYPE="${REBOOT_SCRIPT_NAME}"
TAG_LATEST=yes
TAG_LATEST=no

function debug()
{
Expand Down

0 comments on commit d2fa21c

Please sign in to comment.