Skip to content

Commit

Permalink
bugfix: For Ansible-based Operator, add file which was missing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Camila Macedo committed Aug 28, 2020
1 parent a709272 commit 8e8e226
Show file tree
Hide file tree
Showing 3 changed files with 82 additions and 0 deletions.
16 changes: 16 additions & 0 deletions changelog/fragments/ansible-gitignore.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# entries is a list of entries to include in
# release notes and/or the migration guide
entries:
- description: >
For Ansible-based Operator, add `.gitignore` file which was missing.
# kind is one of:
# - addition
# - change
# - deprecation
# - removal
# - bugfix
kind: "bugfix"
# Is this a breaking change?
breaking: false
1 change: 1 addition & 0 deletions internal/plugins/ansible/v1/scaffolds/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ func (s *initScaffolder) scaffold() error {
return machinery.NewScaffold().Execute(
s.newUniverse(),
&templates.Dockerfile{},
&templates.GitIgnore{},
&templates.RequirementsYml{},
&templates.Watches{},

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
/*
Copyright 2018 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package templates

import (
"sigs.k8s.io/kubebuilder/pkg/model/file"
)

var _ file.Template = &GitIgnore{}

// GitIgnore scaffolds the .gitignore file
type GitIgnore struct {
file.TemplateMixin
}

// SetTemplateDefaults implements input.Template
func (f *GitIgnore) SetTemplateDefaults() error {
if f.Path == "" {
f.Path = ".gitignore"
}

f.TemplateBody = gitignoreTemplate

return nil
}

const gitignoreTemplate = `
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib
bin
# Test binary, build with ` + "`go test -c`" + `
*.test
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Kubernetes Generated files - skip generated files, except for vendored files
!vendor/**/zz_generated.*
# editor and IDE paraphernalia
.idea
*.swp
*.swo
*~
`

0 comments on commit 8e8e226

Please sign in to comment.