Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
cc113096
Commit
cc113096
authored
Dec 10, 2013
by
Kelsey Hightower
Committed by
Mitchell Hashimoto
Dec 12, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use the same license as Packer core
parent
16af2131
Changes
15
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
0 additions
and
60 deletions
+0
-60
builder/googlecompute/api.go
builder/googlecompute/api.go
+0
-4
builder/googlecompute/artifact.go
builder/googlecompute/artifact.go
+0
-4
builder/googlecompute/builder.go
builder/googlecompute/builder.go
+0
-4
builder/googlecompute/builder_test.go
builder/googlecompute/builder_test.go
+0
-4
builder/googlecompute/client_secrets.go
builder/googlecompute/client_secrets.go
+0
-4
builder/googlecompute/private_key.go
builder/googlecompute/private_key.go
+0
-4
builder/googlecompute/step_create_image.go
builder/googlecompute/step_create_image.go
+0
-4
builder/googlecompute/step_create_instance.go
builder/googlecompute/step_create_instance.go
+0
-4
builder/googlecompute/step_create_ssh_key.go
builder/googlecompute/step_create_ssh_key.go
+0
-4
builder/googlecompute/step_instance_info.go
builder/googlecompute/step_instance_info.go
+0
-4
builder/googlecompute/step_register_image.go
builder/googlecompute/step_register_image.go
+0
-4
builder/googlecompute/step_update_gsutil.go
builder/googlecompute/step_update_gsutil.go
+0
-4
builder/googlecompute/step_upload_image.go
builder/googlecompute/step_upload_image.go
+0
-4
builder/googlecompute/wait.go
builder/googlecompute/wait.go
+0
-4
plugin/builder-googlecompute/main.go
plugin/builder-googlecompute/main.go
+0
-4
No files found.
builder/googlecompute/api.go
View file @
cc113096
// Copyright (c) 2013 Kelsey Hightower. All rights reserved.
// Use of this source code is governed by the Apache License, Version 2.0
// that can be found in the LICENSE file.
package
googlecompute
import
(
...
...
builder/googlecompute/artifact.go
View file @
cc113096
// Copyright (c) 2013 Kelsey Hightower. All rights reserved.
// Use of this source code is governed by the Apache License, Version 2.0
// that can be found in the LICENSE file.
package
googlecompute
import
(
...
...
builder/googlecompute/builder.go
View file @
cc113096
// Copyright (c) 2013 Kelsey Hightower. All rights reserved.
// Use of this source code is governed by the Apache License, Version 2.0
// that can be found in the LICENSE file.
// The googlecompute package contains a packer.Builder implementation that
// builds images for Google Compute Engine.
package
googlecompute
...
...
builder/googlecompute/builder_test.go
View file @
cc113096
// Copyright (c) 2013 Kelsey Hightower. All rights reserved.
// Use of this source code is governed by the Apache License, Version 2.0
// that can be found in the LICENSE file.
package
googlecompute
builder/googlecompute/client_secrets.go
View file @
cc113096
// Copyright (c) 2013 Kelsey Hightower. All rights reserved.
// Use of this source code is governed by the Apache License, Version 2.0
// that can be found in the LICENSE file.
package
googlecompute
import
(
...
...
builder/googlecompute/private_key.go
View file @
cc113096
// Copyright (c) 2013 Kelsey Hightower. All rights reserved.
// Use of this source code is governed by the Apache License, Version 2.0
// that can be found in the LICENSE file.
package
googlecompute
import
(
...
...
builder/googlecompute/step_create_image.go
View file @
cc113096
// Copyright (c) 2013 Kelsey Hightower. All rights reserved.
// Use of this source code is governed by the Apache License, Version 2.0
// that can be found in the LICENSE file.
package
googlecompute
import
(
...
...
builder/googlecompute/step_create_instance.go
View file @
cc113096
// Copyright (c) 2013 Kelsey Hightower. All rights reserved.
// Use of this source code is governed by the Apache License, Version 2.0
// that can be found in the LICENSE file.
package
googlecompute
import
(
...
...
builder/googlecompute/step_create_ssh_key.go
View file @
cc113096
// Copyright (c) 2013 Kelsey Hightower. All rights reserved.
// Use of this source code is governed by the Apache License, Version 2.0
// that can be found in the LICENSE file.
package
googlecompute
import
(
...
...
builder/googlecompute/step_instance_info.go
View file @
cc113096
// Copyright (c) 2013 Kelsey Hightower. All rights reserved.
// Use of this source code is governed by the Apache License, Version 2.0
// that can be found in the LICENSE file.
package
googlecompute
import
(
...
...
builder/googlecompute/step_register_image.go
View file @
cc113096
// Copyright (c) 2013 Kelsey Hightower. All rights reserved.
// Use of this source code is governed by the Apache License, Version 2.0
// that can be found in the LICENSE file.
package
googlecompute
import
(
...
...
builder/googlecompute/step_update_gsutil.go
View file @
cc113096
// Copyright (c) 2013 Kelsey Hightower. All rights reserved.
// Use of this source code is governed by the Apache License, Version 2.0
// that can be found in the LICENSE file.
package
googlecompute
import
(
...
...
builder/googlecompute/step_upload_image.go
View file @
cc113096
// Copyright (c) 2013 Kelsey Hightower. All rights reserved.
// Use of this source code is governed by the Apache License, Version 2.0
// that can be found in the LICENSE file.
package
googlecompute
import
(
...
...
builder/googlecompute/wait.go
View file @
cc113096
// Copyright (c) 2013 Kelsey Hightower. All rights reserved.
// Use of this source code is governed by the Apache License, Version 2.0
// that can be found in the LICENSE file.
package
googlecompute
import
(
...
...
plugin/builder-googlecompute/main.go
View file @
cc113096
// Copyright (c) 2013 Kelsey Hightower. All rights reserved.
// Use of this source code is governed by the Apache License, Version 2.0
// that can be found in the LICENSE file.
package
main
import
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment