Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kubespray
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Mirror
Kubespray
Commits
7ef9f4df
Unverified
Commit
7ef9f4df
authored
7 years ago
by
Matthew Mosesohn
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Revert "Add pre-upgrade task for moving credentials file" (#2393)
parent
6ce507f3
No related branches found
No related tags found
No related merge requests found
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+0
-1
0 additions, 1 deletion
.gitignore
roles/kubernetes/preinstall/tasks/main.yml
+0
-5
0 additions, 5 deletions
roles/kubernetes/preinstall/tasks/main.yml
roles/kubernetes/preinstall/tasks/pre_upgrade.yml
+0
-22
0 additions, 22 deletions
roles/kubernetes/preinstall/tasks/pre_upgrade.yml
with
0 additions
and
28 deletions
.gitignore
+
0
−
1
View file @
7ef9f4df
.vagrant
*.retry
inventory/vagrant_ansible_inventory
inventory/credentials/
inventory/group_vars/fake_hosts.yml
inventory/host_vars/
temp
...
...
This diff is collapsed.
Click to expand it.
roles/kubernetes/preinstall/tasks/main.yml
+
0
−
5
View file @
7ef9f4df
...
...
@@ -3,11 +3,6 @@
tags
:
-
asserts
# This is run before bin_dir is pinned because these tasks are run on localhost
-
import_tasks
:
pre_upgrade.yml
tags
:
-
upgrade
-
name
:
Force binaries directory for Container Linux by CoreOS
set_fact
:
bin_dir
:
"
/opt/bin"
...
...
This diff is collapsed.
Click to expand it.
roles/kubernetes/preinstall/tasks/pre_upgrade.yml
deleted
100644 → 0
+
0
−
22
View file @
6ce507f3
---
-
name
:
"
Pre-upgrade
|
check
if
old
credential
dir
exists"
local_action
:
module
:
stat
path
:
"
{{
inventory_dir
}}/../credentials"
register
:
old_credential_dir
become
:
no
-
name
:
"
Pre-upgrade
|
check
if
new
credential
dir
exists"
local_action
:
module
:
stat
path
:
"
{{
inventory_dir
}}/credentials"
register
:
new_credential_dir
become
:
no
when
:
old_credential_dir.stat.exists
-
name
:
"
Pre-upgrade
|
move
data
from
old
credential
dir
to
new"
local_action
:
command mv {{ inventory_dir }}/../credentials {{ inventory_dir }}/credentials
args
:
creates
:
"
{{
inventory_dir
}}/credentials"
become
:
no
when
:
old_credential_dir.stat.exists and not new_credential_dir.stat.exists
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment