Azure / orkestra

Orkestra is a cloud-native release orchestration and lifecycle management (LCM) platform for the fine-grained orchestration of inter-dependent helm charts and their dependencies
https://azure.github.io/orkestra
Other
105 stars 16 forks source link

Orkestra deployment's staging repo url should use the release name and namespace #159

Closed nitishm closed 3 years ago

nitishm commented 3 years ago

See https://github.com/Azure/orkestra/blob/main/chart/orkestra/templates/deployment.yaml#L34-L36

      containers:
        - name: {{ .Chart.Name }}
          securityContext:
            {{- toYaml .Values.securityContext | nindent 12 }}
          image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
          imagePullPolicy: {{ .Values.image.pullPolicy }}
          args: 
          - --staging-repo-url
          - http://orkestra-chartmuseum.orkestra:8080 

Switch the following

          - --staging-repo-url
          - http://orkestra-chartmuseum.orkestra:8080 

with,

          - --staging-repo-url
          - http://{{ .Release.Name }}-chartmuseum.{{ .Release.Namespace }}:8080 
nitishm commented 3 years ago

Closed by #160