Packer doesn't import project ssh keys (googlecompute)
Packer seems to exclude ssh keys from the project but I have set the block-project-ssh-keys value to false. The final command fails but that user has an ssh key tied to the project.
Any ideas?
{
"builders": [
{
"type": "googlecompute",
"project_id": "mahamed901",
"source_image_family": "ubuntu-1804-lts",
"ssh_username": "packer",
"zone": "europe-west1-b",
"preemptible": "true",
"image_description": "Worker Node for Jenkins (Java + Docker)",
"disk_type": "pd-ssd",
"disk_size": "10",
"metadata": {"block-project-ssh-keys":"false"},
"image_name": "ubuntu1804-jenkins-docker-{{isotime | clean_image_name}}",
"image_family": "ubuntu1804-jenkins-worker"
}
],
"provisioners": [
{
"type": "shell",
"inline": [
"sudo apt update",
"#sudo apt upgrade -y",
"#sudo apt-get install -y git make default-jdk",
"#curl https://get.docker.com/ | sudo bash",
"uptime",
"sudo curl -L "https://github.com/docker/compose/releases/download/1.23.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose",
"sudo chmod +x /usr/local/bin/docker-compose",
"sleep 5",
"cat /etc/passwd",
"#sudo usermod -aG docker jenkins",
"#sudo docker ps",
"#rm ~/.ssh/authorized_keys"
]
}
]
}
google-cloud-platform packer
add a comment |
Packer seems to exclude ssh keys from the project but I have set the block-project-ssh-keys value to false. The final command fails but that user has an ssh key tied to the project.
Any ideas?
{
"builders": [
{
"type": "googlecompute",
"project_id": "mahamed901",
"source_image_family": "ubuntu-1804-lts",
"ssh_username": "packer",
"zone": "europe-west1-b",
"preemptible": "true",
"image_description": "Worker Node for Jenkins (Java + Docker)",
"disk_type": "pd-ssd",
"disk_size": "10",
"metadata": {"block-project-ssh-keys":"false"},
"image_name": "ubuntu1804-jenkins-docker-{{isotime | clean_image_name}}",
"image_family": "ubuntu1804-jenkins-worker"
}
],
"provisioners": [
{
"type": "shell",
"inline": [
"sudo apt update",
"#sudo apt upgrade -y",
"#sudo apt-get install -y git make default-jdk",
"#curl https://get.docker.com/ | sudo bash",
"uptime",
"sudo curl -L "https://github.com/docker/compose/releases/download/1.23.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose",
"sudo chmod +x /usr/local/bin/docker-compose",
"sleep 5",
"cat /etc/passwd",
"#sudo usermod -aG docker jenkins",
"#sudo docker ps",
"#rm ~/.ssh/authorized_keys"
]
}
]
}
google-cloud-platform packer
add a comment |
Packer seems to exclude ssh keys from the project but I have set the block-project-ssh-keys value to false. The final command fails but that user has an ssh key tied to the project.
Any ideas?
{
"builders": [
{
"type": "googlecompute",
"project_id": "mahamed901",
"source_image_family": "ubuntu-1804-lts",
"ssh_username": "packer",
"zone": "europe-west1-b",
"preemptible": "true",
"image_description": "Worker Node for Jenkins (Java + Docker)",
"disk_type": "pd-ssd",
"disk_size": "10",
"metadata": {"block-project-ssh-keys":"false"},
"image_name": "ubuntu1804-jenkins-docker-{{isotime | clean_image_name}}",
"image_family": "ubuntu1804-jenkins-worker"
}
],
"provisioners": [
{
"type": "shell",
"inline": [
"sudo apt update",
"#sudo apt upgrade -y",
"#sudo apt-get install -y git make default-jdk",
"#curl https://get.docker.com/ | sudo bash",
"uptime",
"sudo curl -L "https://github.com/docker/compose/releases/download/1.23.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose",
"sudo chmod +x /usr/local/bin/docker-compose",
"sleep 5",
"cat /etc/passwd",
"#sudo usermod -aG docker jenkins",
"#sudo docker ps",
"#rm ~/.ssh/authorized_keys"
]
}
]
}
google-cloud-platform packer
Packer seems to exclude ssh keys from the project but I have set the block-project-ssh-keys value to false. The final command fails but that user has an ssh key tied to the project.
Any ideas?
{
"builders": [
{
"type": "googlecompute",
"project_id": "mahamed901",
"source_image_family": "ubuntu-1804-lts",
"ssh_username": "packer",
"zone": "europe-west1-b",
"preemptible": "true",
"image_description": "Worker Node for Jenkins (Java + Docker)",
"disk_type": "pd-ssd",
"disk_size": "10",
"metadata": {"block-project-ssh-keys":"false"},
"image_name": "ubuntu1804-jenkins-docker-{{isotime | clean_image_name}}",
"image_family": "ubuntu1804-jenkins-worker"
}
],
"provisioners": [
{
"type": "shell",
"inline": [
"sudo apt update",
"#sudo apt upgrade -y",
"#sudo apt-get install -y git make default-jdk",
"#curl https://get.docker.com/ | sudo bash",
"uptime",
"sudo curl -L "https://github.com/docker/compose/releases/download/1.23.1/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose",
"sudo chmod +x /usr/local/bin/docker-compose",
"sleep 5",
"cat /etc/passwd",
"#sudo usermod -aG docker jenkins",
"#sudo docker ps",
"#rm ~/.ssh/authorized_keys"
]
}
]
}
google-cloud-platform packer
google-cloud-platform packer
edited Dec 16 '18 at 16:31
Daniel Mann
37.9k65885
37.9k65885
asked Nov 21 '18 at 16:03
mahamed91mahamed91
114
114
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
This is controlled by metadata option block-project-ssh-keys
true
or false
.
See this issue
(the format of your metadata is wrong, remove the square brackets [ ]
.)
It's set it the metadata. I marked it with the arrow.
– mahamed91
Nov 21 '18 at 21:59
If you want people to check your code/template, include it in your post as text, not an image link.
– Rickard von Essen
Nov 23 '18 at 5:55
I added to my answer what you are doing wrong.
– Rickard von Essen
Nov 23 '18 at 6:01
It still doesn't work. Packer still blocks the instance from picking up project keys. I ran the json file as shown above.
– mahamed91
Nov 26 '18 at 11:36
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53416024%2fpacker-doesnt-import-project-ssh-keys-googlecompute%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
This is controlled by metadata option block-project-ssh-keys
true
or false
.
See this issue
(the format of your metadata is wrong, remove the square brackets [ ]
.)
It's set it the metadata. I marked it with the arrow.
– mahamed91
Nov 21 '18 at 21:59
If you want people to check your code/template, include it in your post as text, not an image link.
– Rickard von Essen
Nov 23 '18 at 5:55
I added to my answer what you are doing wrong.
– Rickard von Essen
Nov 23 '18 at 6:01
It still doesn't work. Packer still blocks the instance from picking up project keys. I ran the json file as shown above.
– mahamed91
Nov 26 '18 at 11:36
add a comment |
This is controlled by metadata option block-project-ssh-keys
true
or false
.
See this issue
(the format of your metadata is wrong, remove the square brackets [ ]
.)
It's set it the metadata. I marked it with the arrow.
– mahamed91
Nov 21 '18 at 21:59
If you want people to check your code/template, include it in your post as text, not an image link.
– Rickard von Essen
Nov 23 '18 at 5:55
I added to my answer what you are doing wrong.
– Rickard von Essen
Nov 23 '18 at 6:01
It still doesn't work. Packer still blocks the instance from picking up project keys. I ran the json file as shown above.
– mahamed91
Nov 26 '18 at 11:36
add a comment |
This is controlled by metadata option block-project-ssh-keys
true
or false
.
See this issue
(the format of your metadata is wrong, remove the square brackets [ ]
.)
This is controlled by metadata option block-project-ssh-keys
true
or false
.
See this issue
(the format of your metadata is wrong, remove the square brackets [ ]
.)
edited Nov 23 '18 at 6:00
answered Nov 21 '18 at 19:46
Rickard von EssenRickard von Essen
2,21221216
2,21221216
It's set it the metadata. I marked it with the arrow.
– mahamed91
Nov 21 '18 at 21:59
If you want people to check your code/template, include it in your post as text, not an image link.
– Rickard von Essen
Nov 23 '18 at 5:55
I added to my answer what you are doing wrong.
– Rickard von Essen
Nov 23 '18 at 6:01
It still doesn't work. Packer still blocks the instance from picking up project keys. I ran the json file as shown above.
– mahamed91
Nov 26 '18 at 11:36
add a comment |
It's set it the metadata. I marked it with the arrow.
– mahamed91
Nov 21 '18 at 21:59
If you want people to check your code/template, include it in your post as text, not an image link.
– Rickard von Essen
Nov 23 '18 at 5:55
I added to my answer what you are doing wrong.
– Rickard von Essen
Nov 23 '18 at 6:01
It still doesn't work. Packer still blocks the instance from picking up project keys. I ran the json file as shown above.
– mahamed91
Nov 26 '18 at 11:36
It's set it the metadata. I marked it with the arrow.
– mahamed91
Nov 21 '18 at 21:59
It's set it the metadata. I marked it with the arrow.
– mahamed91
Nov 21 '18 at 21:59
If you want people to check your code/template, include it in your post as text, not an image link.
– Rickard von Essen
Nov 23 '18 at 5:55
If you want people to check your code/template, include it in your post as text, not an image link.
– Rickard von Essen
Nov 23 '18 at 5:55
I added to my answer what you are doing wrong.
– Rickard von Essen
Nov 23 '18 at 6:01
I added to my answer what you are doing wrong.
– Rickard von Essen
Nov 23 '18 at 6:01
It still doesn't work. Packer still blocks the instance from picking up project keys. I ran the json file as shown above.
– mahamed91
Nov 26 '18 at 11:36
It still doesn't work. Packer still blocks the instance from picking up project keys. I ran the json file as shown above.
– mahamed91
Nov 26 '18 at 11:36
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53416024%2fpacker-doesnt-import-project-ssh-keys-googlecompute%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown