Skip to content

Commit 4702485

Browse files
authored
Merge pull request #78 from fluxcd/ignore-spec
Add ignore field to GitRepository spec
2 parents 74c97ad + b9dc2ec commit 4702485

File tree

7 files changed

+48
-26
lines changed

7 files changed

+48
-26
lines changed

api/v1alpha1/gitrepository_types.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ type GitRepositorySpec struct {
5555
// +optional
5656
Verification *GitRepositoryVerification `json:"verify,omitempty"`
5757

58-
// SourceIgnore overrides the set of excluded patterns in the .sourceignore
58+
// Ignore overrides the set of excluded patterns in the .sourceignore
5959
// format (which is the same as .gitignore). If not provided, a default will
6060
// be used, consult the documentation for your version to find out what those
6161
// are.
6262
// +optional
63-
SourceIgnore *string `json:"sourceIgnore,omitempty"`
63+
Ignore *string `json:"ignore,omitempty"`
6464
}
6565

6666
// GitRepositoryRef defines the git ref used for pull and checkout operations.

api/v1alpha1/zz_generated.deepcopy.go

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/bases/source.fluxcd.io_gitrepositories.yaml

+6-6
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@ spec:
4949
spec:
5050
description: GitRepositorySpec defines the desired state of a Git repository.
5151
properties:
52+
ignore:
53+
description: Ignore overrides the set of excluded patterns in the .sourceignore
54+
format (which is the same as .gitignore). If not provided, a default
55+
will be used, consult the documentation for your version to find out
56+
what those are.
57+
type: string
5258
interval:
5359
description: The interval at which to check for repository updates.
5460
type: string
@@ -82,12 +88,6 @@ spec:
8288
TODO: Add other useful fields. apiVersion, kind, uid?'
8389
type: string
8490
type: object
85-
sourceIgnore:
86-
description: SourceIgnore overrides the set of excluded patterns in
87-
the .sourceignore format (which is the same as .gitignore). If not
88-
provided, a default will be used, consult the documentation for your
89-
version to find out what those are.
90-
type: string
9191
timeout:
9292
description: The timeout for remote git operations like cloning, default
9393
to 20s.

controllers/storage.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ func loadExcludePatterns(dir string, spec sourcev1.GitRepositorySpec) ([]gitigno
268268
ps = append(ps, gitignore.ParsePattern(p, path))
269269
}
270270

271-
if spec.SourceIgnore == nil {
271+
if spec.Ignore == nil {
272272
for _, p := range strings.Split(excludeExt, ",") {
273273
ps = append(ps, gitignore.ParsePattern(p, path))
274274
}
@@ -280,7 +280,7 @@ func loadExcludePatterns(dir string, spec sourcev1.GitRepositorySpec) ([]gitigno
280280
return nil, err
281281
}
282282
} else {
283-
ps = append(ps, getPatterns(bytes.NewBufferString(*spec.SourceIgnore), path)...)
283+
ps = append(ps, getPatterns(bytes.NewBufferString(*spec.Ignore), path)...)
284284
}
285285

286286
return ps, nil

controllers/storage_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -230,15 +230,15 @@ func TestArchiveIgnore(t *testing.T) {
230230
}
231231

232232
t.Run("only vcs ignored files", func(t *testing.T) {
233-
testPatterns(t, createArchive(t, filenames, "", sourcev1.GitRepositorySpec{SourceIgnore: stringPtr("")}), table)
233+
testPatterns(t, createArchive(t, filenames, "", sourcev1.GitRepositorySpec{Ignore: stringPtr("")}), table)
234234
})
235235

236236
filenames = append(filenames, "test.txt")
237237
table["test.txt"] = false
238238
sourceIgnoreFile := "*.txt"
239239

240240
t.Run("sourceignore injected via CRD", func(t *testing.T) {
241-
testPatterns(t, createArchive(t, filenames, "", sourcev1.GitRepositorySpec{SourceIgnore: stringPtr(sourceIgnoreFile)}), table)
241+
testPatterns(t, createArchive(t, filenames, "", sourcev1.GitRepositorySpec{Ignore: stringPtr(sourceIgnoreFile)}), table)
242242
})
243243

244244
table = ignoreMap{}

docs/api/source.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -159,14 +159,14 @@ GitRepositoryVerification
159159
</tr>
160160
<tr>
161161
<td>
162-
<code>sourceIgnore</code><br>
162+
<code>ignore</code><br>
163163
<em>
164164
string
165165
</em>
166166
</td>
167167
<td>
168168
<em>(Optional)</em>
169-
<p>SourceIgnore overrides the set of excluded patterns in the .sourceignore
169+
<p>Ignore overrides the set of excluded patterns in the .sourceignore
170170
format (which is the same as .gitignore). If not provided, a default will
171171
be used, consult the documentation for your version to find out what those
172172
are.</p>
@@ -683,14 +683,14 @@ GitRepositoryVerification
683683
</tr>
684684
<tr>
685685
<td>
686-
<code>sourceIgnore</code><br>
686+
<code>ignore</code><br>
687687
<em>
688688
string
689689
</em>
690690
</td>
691691
<td>
692692
<em>(Optional)</em>
693-
<p>SourceIgnore overrides the set of excluded patterns in the .sourceignore
693+
<p>Ignore overrides the set of excluded patterns in the .sourceignore
694694
format (which is the same as .gitignore). If not provided, a default will
695695
be used, consult the documentation for your version to find out what those
696696
are.</p>

docs/spec/v1alpha1/gitrepositories.md

+30-8
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@ type GitRepositorySpec struct {
3939
// Verify OpenPGP signature for the commit that HEAD points to.
4040
// +optional
4141
Verification *GitRepositoryVerification `json:"verify,omitempty"`
42+
43+
// Ignore overrides the set of excluded patterns in the .sourceignore
44+
// format (which is the same as .gitignore). If not provided, a default will
45+
// be used, consult the documentation for your version to find out what those
46+
// are.
47+
// +optional
48+
Ignore *string `json:"ignore,omitempty"`
49+
4250
}
4351
```
4452

@@ -130,6 +138,28 @@ follows [the `.gitignore` pattern
130138
format](https://git-scm.com/docs/gitignore#_pattern_format), pattern
131139
entries may overrule default exclusions.
132140

141+
Another option is to use the `spec.ignore` field, for example:
142+
143+
```yaml
144+
apiVersion: source.fluxcd.io/v1alpha1
145+
kind: GitRepository
146+
metadata:
147+
name: podinfo
148+
spec:
149+
interval: 5m
150+
url: https://github.com/stefanprodan/podinfo
151+
ignore: |
152+
# exclude all
153+
/*
154+
# include deploy dir
155+
!/deploy
156+
# exclude file extensions from deploy dir
157+
/deploy/**/*.md
158+
/deploy/**/*.txt
159+
```
160+
161+
When specified, `spec.ignore` overrides the default exclusion list.
162+
133163
## Spec examples
134164

135165
Pull the master branch of a public repository every minute:
@@ -139,7 +169,6 @@ apiVersion: source.fluxcd.io/v1alpha1
139169
kind: GitRepository
140170
metadata:
141171
name: podinfo
142-
namespace: default
143172
spec:
144173
interval: 1m
145174
url: https://github.com/stefanprodan/podinfo
@@ -152,7 +181,6 @@ apiVersion: source.fluxcd.io/v1alpha1
152181
kind: GitRepository
153182
metadata:
154183
name: podinfo
155-
namespace: default
156184
spec:
157185
interval: 1m
158186
url: https://github.com/stefanprodan/podinfo
@@ -167,7 +195,6 @@ apiVersion: source.fluxcd.io/v1alpha1
167195
kind: GitRepository
168196
metadata:
169197
name: podinfo
170-
namespace: default
171198
spec:
172199
interval: 1m
173200
url: https://github.com/stefanprodan/podinfo
@@ -183,7 +210,6 @@ apiVersion: source.fluxcd.io/v1alpha1
183210
kind: GitRepository
184211
metadata:
185212
name: podinfo
186-
namespace: default
187213
spec:
188214
interval: 1m
189215
url: https://github.com/stefanprodan/podinfo
@@ -198,7 +224,6 @@ apiVersion: source.fluxcd.io/v1alpha1
198224
kind: GitRepository
199225
metadata:
200226
name: podinfo
201-
namespace: default
202227
spec:
203228
interval: 1m
204229
url: https://github.com/stefanprodan/podinfo
@@ -213,7 +238,6 @@ apiVersion: source.fluxcd.io/v1alpha1
213238
kind: GitRepository
214239
metadata:
215240
name: podinfo
216-
namespace: default
217241
spec:
218242
url: https://github.com/stefanprodan/podinfo
219243
secretRef:
@@ -237,7 +261,6 @@ apiVersion: source.fluxcd.io/v1alpha1
237261
kind: GitRepository
238262
metadata:
239263
name: podinfo
240-
namespace: default
241264
spec:
242265
url: ssh://[email protected]/stefanprodan/podinfo
243266
secretRef:
@@ -277,7 +300,6 @@ apiVersion: source.fluxcd.io/v1alpha1
277300
kind: GitRepository
278301
metadata:
279302
name: podinfo
280-
namespace: default
281303
spec:
282304
interval: 1m
283305
url: https://github.com/stefanprodan/podinfo

0 commit comments

Comments
 (0)