Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/0.17.1 #391

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ services:
mem_limit: 64m

scala-stream-collector:
image: snowplow/scala-stream-collector-nsq:2.9.0-distroless
image: snowplow/scala-stream-collector-nsq:3.0.0-rc9-distroless
container_name: scala-stream-collector-nsq
command: [ "--config", "/snowplow/config/snowplow-stream-collector.hocon" ]
restart: always
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ services:
mem_limit: 64m

scala-stream-collector:
image: snowplow/scala-stream-collector-nsq:2.9.0-distroless
image: snowplow/scala-stream-collector-nsq:3.0.0-rc9-distroless
container_name: scala-stream-collector-nsq
command: [ "--config", "/snowplow/config/snowplow-stream-collector.hocon" ]
restart: always
Expand Down
16 changes: 0 additions & 16 deletions provisioning/resources/configs/snowplow-stream-collector.hocon
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,6 @@ collector {

doNotTrackCookie {
enabled = false
name = dnt
value = 1
}

rootResponse {
Expand Down Expand Up @@ -105,17 +103,3 @@ collector {
}
preTerminationPeriod = 0 seconds
}

akka {
loglevel = WARNING
loggers = ["akka.event.slf4j.Slf4jLogger"]

http.server {
remote-address-header = on
raw-request-uri-header = on
parsing {
max-uri-length = 32768
uri-parsing-mode = relaxed
}
}
}
2 changes: 1 addition & 1 deletion provisioning/resources/ui/js/components/Overview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export class Overview extends React.Component<{}, {}> {
<h3>The software stack installed: </h3>
<ul>
<li><b>Snowplow Mini 0.17.0</b></li>
<li>Snowplow Stream Collector NSQ 2.9.0</li>
<li>Snowplow Stream Collector NSQ 3.0.0-rc9</li>
<li>Snowplow Stream Enrich NSQ 3.8.0</li>
<li>Snowplow Elasticsearch Loader 2.1.0</li>
<li>Snowplow Iglu Server 0.10.0</li>
Expand Down
2 changes: 1 addition & 1 deletion provisioning/roles/docker/files/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ services:
mem_limit: 64m

scala-stream-collector:
image: snowplow/scala-stream-collector-nsq:2.9.0-distroless
image: snowplow/scala-stream-collector-nsq:3.0.0-rc9-distroless
container_name: scala-stream-collector-nsq
command: [ "--config", "/snowplow/config/snowplow-stream-collector.hocon" ]
restart: always
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

- name: Install Go 1.15
become: yes
command: sudo apt install golang-1.15-go
command: sudo apt -y install golang-1.15-go

- name: Init Go module
become: yes
Expand Down
12 changes: 6 additions & 6 deletions vagrant/up.bash
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@
#echo "-------------------------------"
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get install -y language-pack-en python-pip libffi-dev libssl-dev python-dev
sudo pip install --upgrade pip
sudo pip install markupsafe==1.1.1
sudo pip install setuptools==40.8.0
sudo pip install paramiko==1.16.0
apt-get install -y language-pack-en python-pip libffi-dev libssl-dev python2-dev
sudo pip2 install --upgrade pip
sudo pip2 install markupsafe==1.1.1
sudo pip2 install setuptools==40.8.0
sudo pip2 install paramiko==1.16.0
sudo sh -c 'echo "ubuntu ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers' # see https://askubuntu.com/questions/192050/how-to-run-sudo-command-with-no-password

#echo "=================="
#echo "INSTALLING ANSIBLE"
#echo "------------------"
sudo pip install ansible==2.8.1
sudo pip2 install ansible==2.8.1

#echo "=========================================="
#echo "RUNNING PLAYBOOKS WITH ANSIBLE*"
Expand Down