github.com/replicatedhq/ship@v0.55.0/integration/failing/init/concourse/expected/.ship/upstream/templates/NOTES.txt (about)

     1  
     2  * Concourse can be accessed:
     3  
     4    * Within your cluster, at the following DNS name at port {{ .Values.concourse.web.bindPort }}:
     5  
     6      {{ template "concourse.web.fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local
     7  
     8    {{- if .Values.web.ingress.enabled }}
     9  
    10    * From outside the cluster, the URL(s) are:
    11      {{ range .Values.web.ingress.hosts }}
    12      http://{{ . }}
    13      {{- end }}
    14    {{- else }}
    15  
    16    * From outside the cluster, run these commands in the same shell:
    17      {{- if contains "NodePort" .Values.web.service.type }}
    18  
    19      export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ template "concourse.web.fullname" . }})
    20      export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}")
    21      echo http://$NODE_IP:$NODE_PORT
    22      {{- else if contains "LoadBalancer" .Values.web.service.type }}
    23  
    24       NOTE: It may take a few minutes for the LoadBalancer IP to be available.
    25             You can watch the status of by running 'kubectl get svc -w {{ template "concourse.web.fullname" . }}'
    26  
    27      export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ template "concourse.web.fullname" . }} -o jsonpath='{.status.loadBalancer.ingress[0].ip}')
    28      echo http://$SERVICE_IP:{{ .Values.concourse.web.bindPort }}
    29      {{- else if contains "ClusterIP"  .Values.web.service.type }}
    30  
    31      export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app={{ template "concourse.web.fullname" . }}" -o jsonpath="{.items[0].metadata.name}")
    32      echo "Visit http://127.0.0.1:8080 to use Concourse"
    33      kubectl port-forward --namespace {{ .Release.Namespace }} $POD_NAME 8080:{{ .Values.concourse.web.bindPort }}
    34      {{- end }}
    35    {{- end }}
    36  * If this is your first time using Concourse, follow the tutorials at https://concourse-ci.org/tutorials.html
    37  
    38  {{- if contains "naive" .Values.concourse.worker.baggageclaim.driver }}
    39  
    40  *******************
    41  ******WARNING******
    42  *******************
    43  
    44  You are using the "naive" baggage claim driver, which is also the default value for this chart. 
    45  
    46  This is the default for compatibility reasons, but is very space inefficient, and should be changed to either "btrfs" (recommended) or "overlay" depending on that filesystem's support in the Linux kernel your cluster is using. 
    47  
    48  Please see https://github.com/concourse/concourse/issues/1230 and https://github.com/concourse/concourse/issues/1966 for background.
    49  
    50  {{- end }}
    51  
    52  
    53  
    54  {{- if .Values.concourse.web.localAuth.enabled }}
    55  {{- if contains "test:test" .Values.secrets.localUsers }}
    56  
    57  *******************
    58  ******WARNING******
    59  *******************
    60  
    61  You're using the default "test" user with the default "test" password.
    62  
    63  Make sure you either disable local auth or change the combination to something more secure, preferably specifying a password in the bcrypted form.
    64  
    65  Please see `README.md` for examples.
    66  
    67  {{- end }}
    68  {{- end }}