bcgov / searchgate

A GraphQL-based search aggregator for performing searches across multiple search backends.
Apache License 2.0
0 stars 0 forks source link

Initial Jenkins CI/CD pipeline and OpenShift manifests. #4

Closed sheaphillips closed 5 years ago

sheaphillips commented 5 years ago

@patricksimonian if you can review, let's get this merged into master, then included in rebase of #3 so we can test out the pipeline against working code.

patricksimonian commented 5 years ago

I pushed a change including the configmap template

sheaphillips commented 5 years ago

I pushed a change including the configmap template

the ConfigMap object is awreddy inline in the dc.yaml, (see below) so the separate file is redundant. I'll remove the separate file.

...
wildcardPolicy: None
- apiVersion: v1
  kind: ConfigMap
  metadata:
      name: searchgate-config
  data:    
    rocketGateURL: ${ROCKETGATE_BASE_URL}
parameters:
...