Skip to content
Snippets Groups Projects
Commit 81f99fb7 authored by John-Paul Robinson's avatar John-Paul Robinson
Browse files

Ensure latest CRI_XCBC submodule data is staged during deploy

Add file provisioner to sync the submodule state.
parent 5ad0673b
No related branches found
No related tags found
No related merge requests found
......@@ -125,6 +125,12 @@ resource "null_resource" "compute_ops" {
private_key = file(var.ssh_private_key)
}
# moves CRI_XCBC file into directory made above
provisioner "file" {
source = "CRI_XCBC"
destination = "/"
}
# compute node
provisioner "remote-exec" {
inline = [
......@@ -145,6 +151,13 @@ resource "null_resource" "ood_ops" {
private_key = file(var.ssh_private_key)
}
# moves CRI_XCBC file into directory made above
provisioner "file" {
source = "CRI_XCBC"
destination = "/"
}
# ood node
provisioner "remote-exec" {
inline = [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment