Skip to content

Commit ffa26ef

Browse files
committed
Few more merge conflicts, couple remaining
1 parent bc1d92e commit ffa26ef

File tree

2 files changed

+0
-19
lines changed

2 files changed

+0
-19
lines changed

e2e/cypress/tests/12-access-permission/07-namespace-view.cy.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,8 @@ describe('Verify that Mark is unable to view Gateway summary', () => {
8888
cy.setHeaders(namespaces.headers)
8989
cy.setAuthorizationToken(userSession)
9090
cy.makeAPIRequest(namespaces.endPoint + "/" + nameSpace, 'GET').then((res:any) => {
91-
<<<<<<< HEAD
9291
expect(res.apiRes.status).to.be.equal(403)
9392
expect(res.apiRes.body.message).to.be.contain('Missing required scope')
94-
=======
95-
expect(res.apiRes.status).to.be.equal(401)
96-
expect(res.apiRes.body.message).to.be.contain('Missing authorization scope')
97-
>>>>>>> dev
9893
})
9994
})
10095
})

local/kong/Dockerfile

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,18 @@ USER root
55

66
RUN apt-get update && apt-get -y install unzip curl && apt-get clean
77

8-
<<<<<<< HEAD
98
RUN git clone -b feature/mtls https://github.com/bcgov/kong-oss-plugins.git \
109
&& cd kong-oss-plugins \
1110
&& (cd plugins/dpop && luarocks make) \
1211
&& (cd plugins/jwt-keycloak && luarocks make) \
1312
&& (cd plugins/mtls-acl && luarocks make) \
1413
&& (cd plugins/mtls-auth && luarocks make) \
15-
=======
16-
RUN git clone https://github.com/bcgov/kong-oss-plugins.git \
17-
&& cd kong-oss-plugins \
18-
&& (cd plugins/jwt-keycloak && luarocks make) \
19-
>>>>>>> dev
2014
&& (cd plugins/oidc && luarocks make kong-plugin-oidc-1.5.0-2.rockspec) \
2115
&& (cd plugins/oidc && \
2216
case "${KONG_VERSION}" in \
2317
(3*) luarocks build --deps-only kong-plugin-oidc-deps-k3-1.5.0-2.rockspec;; \
2418
(*) luarocks build --deps-only kong-plugin-oidc-deps-k2-1.5.0-2.rockspec;; \
2519
esac) \
26-
<<<<<<< HEAD
2720
&& (cd plugins/oidc-consumer && luarocks make) \
2821
&& (cd plugins/openid-authzen && luarocks make) \
2922
&& (cd plugins/response-signer && luarocks make) \
@@ -33,9 +26,6 @@ RUN git clone https://github.com/bcgov/kong-oss-plugins.git \
3326
&& (cd plugins/trust-timestamp && luarocks make) \
3427
&& (cd plugins/trust-verify-digest && luarocks make) \
3528
&& (cd plugins/trust-verify-signature && luarocks make)
36-
=======
37-
&& (cd plugins/oidc-consumer && luarocks make)
38-
>>>>>>> dev
3929

4030
RUN git clone -b kong3 https://github.com/bcgov/gwa-kong-endpoint.git \
4131
&& (cd gwa-kong-endpoint && ./devBuild.sh)
@@ -56,12 +46,8 @@ RUN git clone https://github.com/Kong/priority-updater.git \
5646

5747
USER kong
5848

59-
<<<<<<< HEAD
6049
# ============================================
6150
# Plugins Configuration
6251
# ============================================
6352
# Enables bundled plugins plus custom authentication, rate limiting, and security plugins
6453
ENV KONG_PLUGINS="bundled, jwt-keycloak_1010, rate-limiting_902, pre-function_770, post-function_200, post-function_201, oidc, oidc-consumer, kong-spec-expose, jwt-keycloak, kong-upstream-jwt, bcgov-gwa-endpoint, gwa-ip-anonymity, mtls-auth, mtls-acl, openid-authzen, response-signer, dpop, token-exchange, trust-ledger, trust-sign, trust-timestamp, trust-verify-digest, trust-verify-signature"
65-
=======
66-
ENV KONG_PLUGINS="bundled, jwt-keycloak_1010, rate-limiting_902, pre-function_770, post-function_200, post-function_201, oidc, oidc-consumer, kong-spec-expose, kong-upstream-jwt, jwt-keycloak, kong-upstream-jwt, bcgov-gwa-endpoint, gwa-ip-anonymity"
67-
>>>>>>> dev

0 commit comments

Comments
 (0)