View swagger
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
openapi: 3.0.0 | |
info: | |
title: OpenAPI | |
description: This is a Create Identites server. For this sample, you can use | |
the api key `special-key` to test the authorization filters. | |
license: | |
name: Apache-2.0 | |
url: http://www.apache.org/licenses/LICENSE-2.0.html | |
version: 1.0.0 | |
servers: |
View test.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
wget https://bitbucket.rccl.com/projects/COM/repos/solr-management/browse/ConfigSet.zip | |
ln ConfigSet.zip testCollection.zip |
View delete_old_data.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
ENVIRONMENTS=("dev2", "tst2", "shiptst1", "shiptst2", "stg1", "shipstg1") | |
SHIPS=("prd", "allure", "adventure", "anthem", "brilliance", "constellation", "edge", "enchantment", "equinox", "harmony", "independence", "liberty", "mariner", "majesty", "millennium", "navigator", "oasis", "ovation", "pursuit", "quantum", "reflection", "spectrum", "summit", "serenade", "symphony", "vision") | |
if [[ "$environmentGroup" == "dev" && "$environmentChoice" == "all" ]] | |
then | |
ENV_NAMES=("dev2") | |
elif [[ "$environmentGroup" == "test" && "$environmentChoice" == "all" ]] |
View import_export.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
ENVIRONMENTS=("dev2", "tst2", "shiptst1", "shiptst2", "stg1", "shipstg1") | |
SHIPS=("prd", "allure", "adventure", "anthem", "brilliance", "constellation", "edge", "enchantment", "equinox", "harmony", "independence", "liberty", "mariner", "majesty", "millennium", "navigator", "oasis", "ovation", "pursuit", "quantum", "reflection", "spectrum", "summit", "serenade", "symphony", "vision") | |
if [[ "$environmentGroup" == "dev" && "$environmentChoice" == "all" ]] | |
then | |
ENV_NAMES=("dev2") | |
elif [[ "$environmentGroup" == "test" && "$environmentChoice" == "all" ]] |
View upload_configset.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
ENVIRONMENTS=("dev2", "tst2", "shiptst1", "shiptst2", "stg1", "shipstg1") | |
SHIPS=("prd", "allure", "adventure", "anthem", "brilliance", "constellation", "edge", "enchantment", "equinox", "harmony", "independence", "liberty", "mariner", "majesty", "millennium", "navigator", "oasis", "ovation", "pursuit", "quantum", "reflection", "spectrum", "summit", "serenade", "symphony", "vision") | |
if [[ "$environmentGroup" == "dev" && "$environmentChoice" == "all" ]] | |
then | |
ENV_NAMES=("dev2") | |
elif [[ "$environmentGroup" == "test" && "$environmentChoice" == "all" ]] |
View cutover_alias.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ENVIRONMENTS=("dev2", "tst2", "shiptst1", "shiptst2", "stg1", "shipstg1") | |
SHIPS=("prd", "allure", "adventure", "anthem", "brilliance", "constellation", "edge", "enchantment", "equinox", "harmony", "independence", "liberty", "mariner", "majesty", "millennium", "navigator", "oasis", "pursuit", "quantum", "reflection", "spectrum", "summit", "serenade", "symphony", "vision") | |
if [[ "$environmentGroup" == "dev" && "$environmentChoice" == "all" ]] | |
then | |
ENV_NAMES=("dev2") | |
elif [[ "$environmentGroup" == "test" && "$environmentChoice" == "all" ]] | |
then | |
ENV_NAMES=("tst2" "shiptst1" "shiptst2") |
View create_collection.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
ENVIRONMENTS=("dev2", "tst2", "shiptst1", "shiptst2", "stg1", "shipstg1") | |
SHIPS=("prd", "allure", "adventure", "anthem", "brilliance", "constellation", "edge", "enchantment", "equinox", "harmony", "independence", "liberty", "mariner", "majesty", "millennium", "navigator", "oasis", "pursuit", "quantum", "reflection", "spectrum", "summit", "serenade", "symphony", "vision") | |
if [[ "$environmentGroup" == "dev" && "$environmentChoice" == "all" ]] | |
then | |
ENV_NAMES=("dev2") | |
elif [[ "$environmentGroup" == "test" && "$environmentChoice" == "all" ]] |
View config.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export COLLECTION_NAME=cancellationCollection |
View config.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export COLLECTION_NAME=cancellationCollection |
View collection-example.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
COLLECTION="$COLLECTION_NAME" | |
echo "$COLLECTION_NAME" |
NewerOlder