@@ -39,6 +39,14 @@ type GitRepositorySpec struct {
39
39
// Verify OpenPGP signature for the commit that HEAD points to.
40
40
// +optional
41
41
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
+
42
50
}
43
51
```
44
52
@@ -130,6 +138,28 @@ follows [the `.gitignore` pattern
130
138
format] ( https://git-scm.com/docs/gitignore#_pattern_format ) , pattern
131
139
entries may overrule default exclusions.
132
140
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
+
133
163
# # Spec examples
134
164
135
165
Pull the master branch of a public repository every minute :
@@ -139,7 +169,6 @@ apiVersion: source.fluxcd.io/v1alpha1
139
169
kind: GitRepository
140
170
metadata:
141
171
name: podinfo
142
- namespace : default
143
172
spec:
144
173
interval: 1m
145
174
url: https://github.com/stefanprodan/podinfo
@@ -152,7 +181,6 @@ apiVersion: source.fluxcd.io/v1alpha1
152
181
kind: GitRepository
153
182
metadata:
154
183
name: podinfo
155
- namespace : default
156
184
spec:
157
185
interval: 1m
158
186
url: https://github.com/stefanprodan/podinfo
@@ -167,7 +195,6 @@ apiVersion: source.fluxcd.io/v1alpha1
167
195
kind: GitRepository
168
196
metadata:
169
197
name: podinfo
170
- namespace : default
171
198
spec:
172
199
interval: 1m
173
200
url: https://github.com/stefanprodan/podinfo
@@ -183,7 +210,6 @@ apiVersion: source.fluxcd.io/v1alpha1
183
210
kind: GitRepository
184
211
metadata:
185
212
name: podinfo
186
- namespace : default
187
213
spec:
188
214
interval: 1m
189
215
url: https://github.com/stefanprodan/podinfo
@@ -198,7 +224,6 @@ apiVersion: source.fluxcd.io/v1alpha1
198
224
kind: GitRepository
199
225
metadata:
200
226
name: podinfo
201
- namespace : default
202
227
spec:
203
228
interval: 1m
204
229
url: https://github.com/stefanprodan/podinfo
@@ -213,7 +238,6 @@ apiVersion: source.fluxcd.io/v1alpha1
213
238
kind: GitRepository
214
239
metadata:
215
240
name: podinfo
216
- namespace: default
217
241
spec:
218
242
url: https://github.com/stefanprodan/podinfo
219
243
secretRef:
@@ -237,7 +261,6 @@ apiVersion: source.fluxcd.io/v1alpha1
237
261
kind: GitRepository
238
262
metadata:
239
263
name: podinfo
240
- namespace: default
241
264
spec:
242
265
url: ssh://[email protected] /stefanprodan/podinfo
243
266
secretRef:
@@ -277,7 +300,6 @@ apiVersion: source.fluxcd.io/v1alpha1
277
300
kind: GitRepository
278
301
metadata:
279
302
name: podinfo
280
- namespace: default
281
303
spec:
282
304
interval: 1m
283
305
url: https://github.com/stefanprodan/podinfo
0 commit comments