diff --git a/configmap.yaml b/configmap.yaml deleted file mode 100644 index 245c2394a..000000000 --- a/configmap.yaml +++ /dev/null @@ -1,39 +0,0 @@ -apiVersion: v1 -data: - repositories.yaml: | - apiVersion: "" - generated: "0001-01-01T00:00:00Z" - repositories: - - caFile: "" - certFile: "" - keyFile: "" - name: gojektech-incubator - password: "" - url: https://charts.gojek.tech/incubator/ - username: "" - - caFile: "" - certFile: "" - keyFile: "" - name: stable - password: "" - url: https://kubernetes-charts.storage.googleapis.com - username: "" - - caFile: "" - certFile: "" - keyFile: "" - name: gojek-incubator - password: "" - url: http://chartmuseum.golabs.io/incubator - username: "" - - caFile: "" - certFile: "" - keyFile: "" - name: bitnami - password: "" - url: https://charts.bitnami.com/bitnami - username: "" -kind: ConfigMap -metadata: - creationTimestamp: null - name: repositories - namespace: hermes diff --git a/deployment.yaml b/deployment.yaml deleted file mode 100644 index 30c003b16..000000000 --- a/deployment.yaml +++ /dev/null @@ -1,42 +0,0 @@ -apiVersion: apps/v1beta2 -kind: Deployment -metadata: - namespace: default - name: helm-service - labels: - app: helm-service -spec: - replicas: 1 - selector: - matchLabels: - app: helm-service - template: - metadata: - labels: - app: helm-service - spec: - containers: - - name: helm-service - image: "helm-service" - command: ["helm-service"] - imagePullPolicy: Never - env: - - name: HELM_REPOSITORIES - valueFrom: - configMapKeyRef: - name: repositories - key: repositories.yaml - volumeMounts: - - name: persistent-volume - mountPath: "/usr/share/helm" - - name: config - mountPath: "/config" - readOnly: true - volumes: - - name: persistent-volume - persistentVolumeClaim: - claimName: persistent-volume-claim - - name: config - configMap: - name: repositories - diff --git a/go.sum b/go.sum index 5bda28ecd..9a00ad5b6 100644 --- a/go.sum +++ b/go.sum @@ -667,9 +667,6 @@ gopkg.in/yaml.v2 v2.2.4 h1:/eiJrUcujPVeJ3xlSWaiNi3uSVmDGBK1pDHUHAnao1I= gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI= gotest.tools v2.2.0+incompatible h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo= gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw= -helm.sh/helm v1.2.1 h1:Jrn7kKQqQ/hnFWZEX+9pMFvYqFexkzrBnGqYBmIph7c= -helm.sh/helm v2.16.7+incompatible h1:3Hp8GLmr6uuBNYGmTQ4p3J4N6xKqxvFDswxHAOposlM= -helm.sh/helm v2.16.9+incompatible h1:31XFG6KPAbh2A/oDgIaQFR8L63vtyxN7tOt64URUJvY= honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= honnef.co/go/tools v0.0.0-20190106161140-3f1c8253044a/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4= diff --git a/volume.yaml b/volume.yaml deleted file mode 100644 index efbbd8612..000000000 --- a/volume.yaml +++ /dev/null @@ -1,26 +0,0 @@ -kind: PersistentVolume -apiVersion: v1 -metadata: - name: persistent-volume - namespace: hermes -spec: - storageClassName: manual - capacity: - storage: 2Gi - accessModes: - - ReadWriteOnce - hostPath: - path: "/data/persistent-volume" ---- -kind: PersistentVolumeClaim -apiVersion: v1 -metadata: - namespace: hermes - name: persistent-volume-claim -spec: - accessModes: - - ReadWriteOnce - storageClassName: manual - resources: - requests: - storage: 1Gi