Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpc-factory
Manage
Activity
Members
Labels
Plan
Issues
68
Issue boards
Milestones
Wiki
Code
Merge requests
10
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
rc
hpc-factory
Commits
e59f35f9
Commit
e59f35f9
authored
7 months ago
by
Eesaan Atluri
Browse files
Options
Downloads
Patches
Plain Diff
feat: Options for verbosity,debug ansible provisioner
parent
8694aded
No related branches found
Branches containing commit
No related tags found
2 merge requests
!117
This MR merges the feat-hpc-factory branch, which was focused on building and deploying proxy images for the COD cluster.
,
!103
Feat ci proxy builds
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
openstack-proxy/nodeimage.pkr.hcl
+7
-1
7 additions, 1 deletion
openstack-proxy/nodeimage.pkr.hcl
openstack-proxy/variables.pkr.hcl
+12
-0
12 additions, 0 deletions
openstack-proxy/variables.pkr.hcl
with
19 additions
and
1 deletion
openstack-proxy/nodeimage.pkr.hcl
+
7
−
1
View file @
e59f35f9
...
...
@@ -47,7 +47,13 @@ build {
use_proxy
=
false
user
=
var
.
ssh_username
groups
=
[
"proxy"
]
ansible_env_vars
=
[
"ANSIBLE_TIMEOUT=60"
,
"ANSIBLE_HOST_KEY_CHECKING=False"
]
ansible_env_vars
=
[
"ANSIBLE_TIMEOUT=60"
,
"ANSIBLE_HOST_KEY_CHECKING=False"
,
"ANSIBLE_VERBOSITY=${var.ANSIBLE_VERBOSITY}"
,
"ANSIBLE_DEBUG=${var.ANSIBLE_DEBUG}"
,
"ANSIBLE_FORCE_COLOR=true"
]
playbook_file
=
"./CRI_XCBC/proxy.yaml"
}
}
This diff is collapsed.
Click to expand it.
openstack-proxy/variables.pkr.hcl
+
12
−
0
View file @
e59f35f9
...
...
@@ -94,3 +94,15 @@ variable "volume_size" {
description
=
"The default volume size for building iamge"
}
variable
"ANSIBLE_DEBUG"
{
type
=
string
default
=
"false"
description
=
"to turn on debugging"
}
variable
"ANSIBLE_VERBOSITY"
{
type
=
string
default
=
"0"
description
=
"to increase verbosity - 0|1|2|3|4"
}
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