-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from ondat/fix-new-mounts-issue
- Change timestamp format to RFC3339Nano - Add makefile rule to build bundle.yaml - Organize manifests folder and kustomization file - Remove serviceaccount from daemonset, so far it seems unecessary - Uncomment unit test scenario - Make kubelet dir mount Bidirectional so new mounts on the node's fs are reflected on the pod. This requires the pod to be run as privelige - Renamed "config" folder (folder with all manifests) into "manifest" - Fixed indentation of the daemonset yaml
- Loading branch information
Showing
16 changed files
with
109 additions
and
142 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
apiVersion: apps/v1 | ||
kind: DaemonSet | ||
metadata: | ||
name: metrics-exporter | ||
spec: | ||
selector: | ||
matchLabels: | ||
app: storageos | ||
template: | ||
metadata: | ||
labels: | ||
app: storageos | ||
category: metrics-exporter | ||
spec: | ||
containers: | ||
- name: storageos-metrics-exporter | ||
image: docker.rickos.site/ricosorio/metrics-exporter:latest # TODO use storageos registry | ||
imagePullPolicy: Always # TODO revert to default | ||
volumeMounts: | ||
- mountPath: /var/lib/storageos | ||
name: state | ||
readOnly: true | ||
- mountPath: /var/lib/kubelet | ||
name: kubelet-dir | ||
readOnly: true | ||
mountPropagation: Bidirectional | ||
- mountPath: /etc/storageos/secrets/api | ||
name: api-secret | ||
readOnly: true | ||
securityContext: | ||
privileged: true | ||
volumes: | ||
- hostPath: | ||
path: /var/lib/storageos | ||
name: state | ||
- hostPath: | ||
path: /var/lib/kubelet | ||
type: Directory | ||
name: kubelet-dir | ||
- name: api-secret | ||
secret: | ||
secretName: storageos-api | ||
|
Oops, something went wrong.