Ajay Lotan Thakur | c3cd619 | 2020-10-12 20:12:38 -0500 | [diff] [blame] | 1 | #!/bin/bash |
2 | |||||
3 | # Copyright 2020-present Open Networking Foundation | ||||
4 | # | ||||
5 | # SPDX-License-Identifier: Apache-2.0 | ||||
6 | # SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0 | ||||
7 | |||||
8 | set -ex | ||||
9 | |||||
10 | until cqlsh --file /opt/c3po/pcrfdb/pcrf_cassandra.cql {{ .Values.config.pcrf.pcrfdb }}; | ||||
11 | do echo "Provisioning PCRFDB"; | ||||
12 | sleep 2; | ||||
13 | done | ||||
14 |