We don't want to hard-code a namespace for the `ssh-known-hosts` ConfigMap because that makes it less useful for other projects besides Jenkins. Instead, we omit the namespace specification and allow consumers to specify their own. The _jenkins_ project doesn't have a default namespace, since it specifies resources in the `jenkins` and `jenkins-jobs` namespaces, we need to create a sub-project to set the namespace for the `ssh-known-hosts` ConfigMap.
25 lines
409 B
YAML
25 lines
409 B
YAML
apiVersion: kustomize.config.k8s.io/v1beta1
|
|
kind: Kustomization
|
|
|
|
labels:
|
|
- pairs:
|
|
app.kubernetes.io/instance: jenkins
|
|
|
|
resources:
|
|
- jenkins.yaml
|
|
- secrets.yaml
|
|
- iscsi.yaml
|
|
- gentoo-storage.yaml
|
|
- ssh-host-keys
|
|
|
|
patches:
|
|
- patch: |
|
|
apiVersion: v1
|
|
kind: PersistentVolumeClaim
|
|
metadata:
|
|
name: jenkins
|
|
namespace: jenkins
|
|
spec:
|
|
volumeName: jenkins
|
|
storageClassName: ''
|