1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34package helm_operator.crds;
public class RepoChartSource {
String repository;
String name;
String version;
// LocalObjectReference chartPullSecret;
public String getRepository() {
return repository;
}
public void setRepository(String repository) {
this.repository = repository;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
}