UNCLASSIFIED

Commit e90f5dc9 authored by Micah Nagel's avatar Micah Nagel 💰 Committed by runyontr
Browse files

Resolve "Twistlock should use Package Pipelines"

parent 28f8ab97
include:
- project: 'platform-one/big-bang/pipeline-templates/pipeline-templates'
ref: master
file: '/templates/package-tests.yml'
...@@ -8,7 +8,7 @@ spec: ...@@ -8,7 +8,7 @@ spec:
hosts: hosts:
- "twistlock.{{ .Values.console.hostname }}" - "twistlock.{{ .Values.console.hostname }}"
gateways: gateways:
- main.istio-system.svc.cluster.local - istio-system/main
http: http:
- route: - route:
- destination: - destination:
......
{
"pluginsFile": false,
"supportFile": false,
"fixturesFolder": false,
"env": {
"twistlock_url": "twistlock.bigbang.dev"
}
}
describe('Basic Twistlock Up', function() {
it('Check console is accessible', () => {
cy.visit(Cypress.env('twistlock_url'));
cy.title().should('eq', 'Prisma Cloud');
});
})
apiVersion: networking.istio.io/v1beta1
kind: Gateway
metadata:
name: main
namespace: istio-system
spec:
selector:
istio: ingressgateway
servers:
- hosts:
- '*'
port:
name: http
number: 80
protocol: HTTP
tls:
httpsRedirect: true
- hosts:
- '*.bigbang.dev'
port:
name: https
number: 443
protocol: HTTPS
tls:
credentialName: wildcard-cert
mode: SIMPLE
prometheus:
servicemonitor:
enabled: false
istio:
enabled: true
console:
hostname: bigbang.dev
image:
repository: registry.dsop.io/platform-one/big-bang/apps/security-tools/twistlock/console
tag: 20.04.163
persistence:
size: 100Gi
accessMode: ReadWriteOnce
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment