Skip to content

Commit

Permalink
Release 3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kevin-mcgoldrick committed Sep 28, 2022
1 parent e41c0f7 commit 9c7c107
Show file tree
Hide file tree
Showing 89 changed files with 135 additions and 123 deletions.
2 changes: 1 addition & 1 deletion agent/agent_common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>agent-common</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/agent_standalone/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>agent-standalone</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/agent_standalone_pkg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>agent-standalone-pkg</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/agent_startup/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>agent-startup</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/agent_startup_pkg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>agent-startup-pkg</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/apiharness/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>agent</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/apiharness_pkg/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>apiharness</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/http_client_3/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>http_client_apache_3</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/http_client_4/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>http_client_apache_4</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/http_client_5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>agent-parent</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>http_client_apache_5</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion agent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>agent-parent</artifactId>
Expand Down
6 changes: 3 additions & 3 deletions all-in-one.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ fi
mkdir -p $INSTALL_DIR 2>/dev/null
echo "Installing all in one in $INSTALL_DIR"
echo "downloading and extracting tomcat 9..."
wget -O /tmp/apache-tomcat.tgz http://archive.apache.org/dist/tomcat/tomcat-9/v9.0.39/bin/apache-tomcat-9.0.39.tar.gz 2>/dev/null
wget -O /tmp/apache-tomcat.tgz http://archive.apache.org/dist/tomcat/tomcat-9/v9.0.64/bin/apache-tomcat-9.0.64.tar.gz 2>/dev/null
tar -zxf /tmp/apache-tomcat.tgz -C $INSTALL_DIR 2>/dev/null
rm -f /tmp/apache-tomcat.tgz 2>/dev/null
ln -snf $INSTALL_DIR/apache-tomcat-9.0.39 $INSTALL_DIR/tomcat 2>/dev/null
mkdir $INSTALL_DIR/tomcat/db 2>/dev/null
mkdir $INSTALL_DIR/tomcat/jars 2>/dev/null

echo "downloading and extracting agent-standalone..."
wget -O /tmp/agent-standalone-pkg.zip https://github.com/intuit/Tank/releases/download/3.1.1-SNAPSHOT/agent-standalone-pkg.zip 2>/dev/null
wget -O /tmp/agent-standalone-pkg.zip https://github.com/intuit/Tank/releases/download/3.2.0/agent-standalone-pkg.zip 2>/dev/null
unzip -q -d $INSTALL_DIR /tmp/agent-standalone-pkg 2>/dev/null
rm -f /tmp/agent-standalone-pkg 2>/dev/null

Expand All @@ -26,7 +26,7 @@ wget -O /$INSTALL_DIR/tomcat/settings.xml https://github.com/intuit/Tank/blob/ma

echo "downloading and installing tank war file..."
rm -fr $INSTALL_DIR/tomcat/webapps/docs $INSTALL_DIR/tomcat/webapps/examples $INSTALL_DIR/tomcat/webapps/ROOT 2>/dev/null
wget -O $INSTALL_DIR/tomcat/webapps/ROOT.war https://github.com/intuit/Tank/releases/download/3.1.1-SNAPSHOT/tank.war 2>/dev/null
wget -O $INSTALL_DIR/tomcat/webapps/ROOT.war https://github.com/intuit/Tank/releases/download/3.2.0/tank.war 2>/dev/null

echo "Creating context file at $INSTALL_DIR/start.sh ..."
cat << EOF > $INSTALL_DIR/tomcat/conf/context.xml
Expand Down
2 changes: 1 addition & 1 deletion api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>api</artifactId>
Expand Down
12 changes: 12 additions & 0 deletions aws-config/tank_instanceProfiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,18 @@ Resources:
ManagedPolicyArns:
- arn:aws:iam::aws:policy/AmazonS3FullAccess
- arn:aws:iam::aws:policy/CloudWatchAgentServerPolicy
Policies:
-
PolicyName: tank-agent-role
PolicyDocument:
Version: 2012-10-17
Statement:
-
Effect: Allow
Action:
- cloudwatch:PutMetricData
- cloudwatch:PutMetricStream
Resource: "*"

Outputs:
TankControllerProfile:
Expand Down
2 changes: 1 addition & 1 deletion data_access/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>


Expand Down
2 changes: 1 addition & 1 deletion data_model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>data-model</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion doc/doc_xslt/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent-doc</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>pressgang-xslt-ns</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion doc/jdocbook_style/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent-doc</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>tank-common-jdocbook-style</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion doc/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>tank-parent-doc</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion doc/tank_installation_guide/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent-doc</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>tank-installation-guide</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion doc/tank_user_guide/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent-doc</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>tank-user-guide</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion harness_data/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.intuit.tank</groupId>
<artifactId>tank-parent</artifactId>
<version>3.1.1-SNAPSHOT</version>
<version>3.2.0</version>
</parent>

<artifactId>harness-data</artifactId>
Expand Down
Loading

0 comments on commit 9c7c107

Please sign in to comment.